*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Brand palette ── */
  --pink:        #FF2576;
  --pink-light:  #FF82B4;
  --pink-dark:   #CC1060;

  --navy:        #1a2e4a;
  --navy-mid:    #2a4a6e;
  --navy-light:  #3a6090;

  --slate:       #c8d8e8;
  --slate-light: #dde8f2;
  --slate-xlight:#eef4f9;

  --bg:          #e8f0f7;
  --bg-white:    #f4f8fc;
  --rule:        #c0d0e0;

  --text:        #1a2e4a;
  --text-muted:  #4a6880;
  --white:       #ffffff;
  --font:        'Helvetica Neue', Arial, sans-serif;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.4;
}

/* ── TOP UTILITY BAR ── */
.utility-bar {
  background: var(--navy);
  color: var(--slate);
  font-size: 11px;
  display: flex;
  justify-content: flex-end;
  gap: 0;
  border-bottom: 1px solid var(--navy-mid);
}
.utility-bar a {
  color: var(--slate);
  text-decoration: none;
  padding: 6px 14px;
  border-left: 1px solid var(--navy-mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.utility-bar a:hover { background: var(--navy-mid); color: var(--white); }

/* ── HEADER ── */
header {
  background: var(--bg-white);
  border-bottom: 2px solid var(--rule);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.logo-wrap {
  padding: 14px 24px 14px 0;
  border-right: 1px solid var(--rule);
}
.logo-wrap img { height: 79px; display: block; }

.search-wrap {
  padding: 14px 24px;
  border-right: 1px solid var(--rule);
}
.search-box {
  display: flex;
  border: 1px solid var(--rule);
  background: var(--slate-light);
}
.search-box input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text);
  outline: none;
}
.search-box button {
  background: var(--pink);
  color: var(--white);
  border: none;
  padding: 0 16px;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.search-box button:hover { background: var(--pink-dark); }

.header-actions {
  padding: 14px 0 14px 24px;
  display: flex;
  gap: 20px;
}
.header-actions a {
  color: var(--navy);
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.header-actions a .icon { font-size: 20px; }
.header-actions a:hover { color: var(--pink); }

/* ── MAIN NAV ── */
nav {
  background: var(--navy);
  border-bottom: 3px solid var(--pink);
}
nav ul {
  list-style: none;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
nav ul li { border-right: 1px solid rgba(255,255,255,0.12); }
nav ul li:first-child { border-left: 1px solid rgba(255,255,255,0.12); }
nav ul li a {
  display: block;
  color: var(--white);
  text-decoration: none;
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
nav ul li a:hover, nav ul li a.active {
  background: rgba(255,255,255,0.08);
  color: var(--pink-light);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-bottom: 3px solid var(--pink);
}

/* full-bleed photo fills the whole hero */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://www.departmentofinformation.org/wp-content/uploads/2025/08/Flamingo-Beach-01.jpg') center center / cover no-repeat;
  z-index: 0;
}

/* solid colour panel on the left ~55% width, with a diagonal right edge */
.hero-panel {
  position: relative;
  z-index: 2;
  background: var(--navy);
  width: 58%;
  padding: 52px 56px 52px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  clip-path: polygon(0 0, calc(100% - 60px) 0, 100% 100%, 0 100%);
  padding-right: 80px;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.hero-panel h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.hero-panel h1 span { color: var(--pink-light); }
.hero-panel p {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 420px;
}

.btn {
  display: inline-block;
  padding: 11px 26px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.btn-pink  { background: var(--pink); color: var(--white); }
.btn-pink:hover { background: var(--pink-dark); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.45);
  margin-left: 10px;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

/* ── TRACK BAR (below hero, USPS-style) ── */
.track-bar {
  background: var(--slate-xlight);
  border-bottom: 1px solid var(--rule);
}
.track-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 220px 1fr auto auto;
  align-items: stretch;
  border-left: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}
.track-bar-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 18px 20px 18px 0;
  border-right: 1px solid var(--rule);
  display: flex;
  align-items: center;
}
.track-bar input {
  border: none;
  background: transparent;
  padding: 18px 16px;
  font-size: 13px;
  color: var(--text);
  outline: none;
  font-family: var(--font);
  letter-spacing: 0.03em;
  flex: 1;
}
.track-bar input::placeholder { color: var(--text-muted); }
.track-bar-note {
  font-size: 10px;
  color: var(--text-muted);
  padding: 18px 16px;
  border-left: 1px solid var(--rule);
  display: flex;
  align-items: center;
  letter-spacing: 0.03em;
}
.track-bar button {
  background: var(--pink);
  color: var(--white);
  border: none;
  padding: 0 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-left: 1px solid var(--rule);
}
.track-bar button:hover { background: var(--pink-dark); }

/* ── MAIN CONTENT ── */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 48px;
}

/* section label strip */
.section-header {
  display: flex;
  align-items: center;
  margin: 32px 0 0;
  border: 1px solid var(--rule);
  border-bottom: none;
  background: var(--bg-white);
}
.section-header .label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--pink);
  padding: 6px 16px;
  border-right: 1px solid var(--rule);
  white-space: nowrap;
}
.section-header .title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 16px;
}

/* ── QUICK TOOLS GRID ── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--rule);
  background: var(--bg-white);
}
.tool-cell {
  padding: 22px 20px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.15s;
}
.tool-cell:nth-child(4n) { border-right: none; }
.tool-cell:nth-last-child(-n+4) { border-bottom: none; }
.tool-cell:hover { background: var(--slate-light); }
.tool-cell .cell-icon { font-size: 26px; }
.tool-cell .cell-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tool-cell .cell-desc { font-size: 11px; color: var(--text-muted); line-height: 1.5; }
.tool-cell .cell-link {
  font-size: 10px;
  color: var(--pink);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: auto;
}

/* ── TWO COLUMN SECTION ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--rule);
  background: var(--bg-white);
}
.col-pane {
  padding: 28px 24px;
  border-right: 1px solid var(--rule);
}
.col-pane:last-child { border-right: none; }
.col-pane h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}

/* rates table */
.rates-table { width: 100%; border-collapse: collapse; }
.rates-table tr { border-bottom: 1px solid var(--rule); }
.rates-table tr:last-child { border-bottom: none; }
.rates-table td { padding: 9px 0; font-size: 12px; }
.rates-table td:last-child { text-align: right; font-weight: 700; color: var(--navy); }
.rates-table .service { color: var(--text); }
.rates-table .transit { color: var(--text-muted); font-size: 11px; }

/* news list */
.news-list { list-style: none; }
.news-list li {
  border-bottom: 1px solid var(--rule);
  padding: 10px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: start;
}
.news-list li:last-child { border-bottom: none; }
.news-date {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--pink);
  text-transform: uppercase;
  line-height: 1.3;
  padding-top: 1px;
}
.news-title { font-size: 12px; color: var(--text); line-height: 1.45; }
.news-title a { color: var(--navy); text-decoration: none; font-weight: 600; }
.news-title a:hover { color: var(--pink); }

/* ── PROMO STRIP ── */
.promo-strip {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--rule);
  background: var(--bg-white);
}
.promo-cell {
  padding: 22px 20px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.promo-cell:last-child { border-right: none; }
.promo-badge {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  width: fit-content;
}
.promo-cell h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.promo-cell p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.promo-cell a {
  font-size: 11px;
  color: var(--pink);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: auto;
}
.promo-cell a:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 3px solid var(--pink);
  color: var(--slate);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col {
  padding: 32px 20px 32px 0;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.footer-col:last-child { border-right: none; padding-right: 0; }
.footer-col:not(:first-child) { padding-left: 24px; }
.footer-col .footer-logo { height: 46px; margin-bottom: 14px; display: block; }
.footer-col p { font-size: 11px; color: var(--slate); line-height: 1.6; }
.footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer-col ul li a {
  font-size: 12px;
  color: var(--slate);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before {
  content: '›';
  color: var(--pink);
  font-weight: 700;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: var(--navy-light);
  letter-spacing: 0.04em;
}
.footer-bottom a { color: var(--navy-light); text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .header-inner { grid-template-columns: auto 1fr; }
  .header-actions { display: none; }
  nav ul li a { padding: 11px 14px; font-size: 12px; }

  .hero { min-height: auto; flex-direction: column; }
  .hero-panel {
    width: 100%;
    clip-path: none;
    padding: 36px 24px;
  }

  .track-bar-inner { grid-template-columns: 1fr auto; }
  .track-bar-label { display: none; }
  .track-bar-note { display: none; }

  .tools-grid { grid-template-columns: repeat(2,1fr); }
  .tool-cell:nth-child(2n) { border-right: none; }
  .two-col { grid-template-columns: 1fr; }
  .col-pane { border-right: none; border-bottom: 1px solid var(--rule); }
  .promo-strip { grid-template-columns: 1fr; }
  .promo-cell { border-right: none; border-bottom: 1px solid var(--rule); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
