/* ================= tokens ================= */
:root {
  --navy: #101f3c;
  --navy-deep: #0a1428;
  --green: #1e6b3c;
  --green-leaf: #6aa84f;
  --gold: #a97e2f;
  --gold-pale: #e9dcc0;
  --paper: #f7f5ef;
  --ink: #15181d;
  --white: #ffffff;

  --display: "Fraunces", Georgia, serif;
  --body: "Public Sans", -apple-system, sans-serif;

  --max: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

::selection { background: var(--gold); color: var(--navy-deep); }

h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.12; }

img, svg { display: block; }

a { color: inherit; }

/* ================= shared ================= */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.75rem;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 0.8rem 1.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 3px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

/* sheen sweep on hover */
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}
.btn:hover::after { animation: sheen 0.7s ease forwards; }

@keyframes sheen {
  to { left: 130%; }
}
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.btn-solid { background: var(--gold); color: var(--navy-deep); }
.btn-ghost { border: 1px solid currentColor; color: inherit; }

/* ================= header ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 5vw;
  background: var(--paper);
  border-bottom: 1px solid rgba(16, 31, 60, 0.12);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(16, 31, 60, 0.12); }

.site-nav a.active { color: var(--green); }

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.brand-leaf { width: 26px; height: 26px; }
.brand-word {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.brand-word em { font-style: italic; font-weight: 400; color: var(--green); }

.site-nav { display: flex; align-items: center; gap: 1.6rem; }
.site-nav a {
  position: relative;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--navy);
}
.site-nav a:hover { color: var(--green); }

/* underline grow on hover (skip the pill CTA) */
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-nav a:not(.nav-cta):hover::after,
.site-nav a.active:not(.nav-cta)::after { transform: scaleX(1); }
.site-nav .nav-cta {
  background: var(--navy);
  color: var(--paper);
  padding: 0.5rem 1.1rem;
  border-radius: 3px;
}
.site-nav .nav-cta:hover { background: var(--green); color: var(--paper); }

.nav-toggle { display: none; }

/* ================= hero ================= */
.hero {
  position: relative;
  max-width: none;
  margin: 0;
  padding: 5.5rem 5vw 3rem;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% -10%, rgba(106, 168, 79, 0.14), transparent 70%),
    radial-gradient(ellipse 40% 40% at 85% 20%, rgba(169, 126, 47, 0.1), transparent 70%),
    var(--paper);
}
.hero > * { max-width: var(--max); margin-left: auto; margin-right: auto; }

/* hero entrance sequence */
.hero .eyebrow,
.hero h1,
.hero-sub,
.hero-actions {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero .eyebrow { animation-delay: 0.05s; }
.hero h1 { animation-delay: 0.15s; }
.hero-sub { animation-delay: 0.3s; }
.hero-actions { animation-delay: 0.45s; }

@keyframes rise {
  to { opacity: 1; transform: none; }
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  color: var(--navy);
  margin-bottom: 1.4rem;
}
.hero-em { font-style: italic; font-weight: 500; color: var(--green); }

.hero-sub {
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  color: rgba(21, 24, 29, 0.75);
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero .btn-ghost { color: var(--navy); }

/* signature loop */
.loop-figure { margin-top: 4rem; }
.loop-svg { width: min(560px, 90%); margin: 0 auto; }
.loop-track { stroke: rgba(16, 31, 60, 0.1); stroke-width: 10; stroke-linecap: round; }
.loop-draw {
  stroke: var(--green);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 1560;
  stroke-dashoffset: 1560;
  animation:
    loop-draw 3.2s ease-out forwards 0.4s,
    loop-flow 14s linear infinite 3.6s;
}

/* after draw, dashes keep flowing around the loop forever */
@keyframes loop-flow {
  from { stroke-dasharray: 40 30; stroke-dashoffset: 0; }
  to { stroke-dasharray: 40 30; stroke-dashoffset: -1560; }
}
.loop-label {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  fill: var(--navy);
  text-anchor: middle;
}
.loop-figure figcaption {
  margin-top: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: rgba(21, 24, 29, 0.6);
}

@keyframes loop-draw {
  to { stroke-dashoffset: 0; }
}

/* ================= marquee ================= */
.marquee {
  overflow: hidden;
  background: var(--gold-pale);
  border-top: 1px solid rgba(169, 126, 47, 0.25);
  border-bottom: 1px solid rgba(169, 126, 47, 0.25);
  padding: 0.8rem 0;
}
.marquee-track {
  display: flex;
  gap: 2.2rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  color: var(--navy);
  white-space: nowrap;
}
.marquee-track .dot { color: var(--gold); font-style: normal; }
.marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ================= association bar ================= */
.assoc-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding: 1.1rem 5vw;
  background: var(--navy);
  color: var(--paper);
}
.assoc-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
}
.assoc-name { font-family: var(--display); font-size: 1.15rem; font-weight: 600; }
.assoc-name small { font-family: var(--body); font-size: 0.7rem; font-weight: 400; opacity: 0.7; margin-left: 0.4rem; }
.assoc-sep { width: 1px; height: 1.4rem; background: rgba(247, 245, 239, 0.3); }

/* ================= divisions ================= */
.division { padding: 5rem 5vw; overflow: hidden; }
.division-inner { max-width: var(--max); margin: 0 auto; }

/* split layout: copy + photos */
.division-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}
.division-flip .division-copy { order: 2; }
.division-flip .division-media { order: 1; }

.division-media {
  position: relative;
  margin: 0;
}
.division-media img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(10, 20, 40, 0.35);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.division-media img:hover { transform: scale(1.02); }
.division-media .media-stack {
  position: absolute;
  width: 55%;
  right: -6%;
  bottom: -12%;
  border: 4px solid var(--paper);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}
.div-gold .division-media img { box-shadow: 0 20px 50px rgba(169, 126, 47, 0.3); }

@media (max-width: 900px) {
  .division-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .division-flip .division-copy { order: 1; }
  .division-flip .division-media { order: 2; }
  .division-media .media-stack { right: 0; bottom: -10%; }
  .division-media { margin-bottom: 2rem; }
}

.division-head { max-width: 620px; margin-bottom: 2.5rem; }
.division h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.head-sub { font-style: italic; font-weight: 400; font-size: 0.75em; }
.division-lede { font-size: 1.05rem; opacity: 0.85; }

.div-navy { background: var(--navy); color: var(--paper); }
.div-green { background: var(--green); color: var(--paper); }
.div-gold { background: var(--gold-pale); color: var(--ink); }
.div-gold h2, .div-gold .head-sub { color: var(--gold); }

.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.9rem 2rem;
  margin-bottom: 2.5rem;
}
.feature-list li {
  position: relative;
  padding-left: 1.6rem;
  font-weight: 500;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 0.7em;
  height: 0.4em;
  border-left: 2.5px solid currentColor;
  border-bottom: 2.5px solid currentColor;
  transform: rotate(-45deg);
  opacity: 0.8;
}

.feature-inline { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }

.pull-quote {
  border-left: 3px solid var(--gold);
  padding: 0.4rem 0 0.4rem 1.4rem;
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.pull-quote p {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.4;
}

/* attire cards */
.attire-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.attire-card {
  background: var(--white);
  border: 1px solid rgba(169, 126, 47, 0.35);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.attire-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(169, 126, 47, 0.25);
}
.attire-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.attire-card:hover img { transform: scale(1.05); }
.attire-card-body { padding: 1.4rem 1.6rem 1.6rem; }
.attire-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.5rem; }
.attire-card p { font-size: 0.92rem; opacity: 0.8; }

/* ================= process ================= */
.process {
  padding: 5rem 5vw;
  background:
    radial-gradient(ellipse 50% 60% at 15% 100%, rgba(30, 107, 60, 0.08), transparent 70%),
    var(--paper);
}
.process-inner { max-width: var(--max); margin: 0 auto; }
.process .eyebrow { color: var(--green); opacity: 1; }
.process-title { font-size: clamp(1.9rem, 4vw, 2.6rem); color: var(--navy); margin-bottom: 2.5rem; }

.process-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  counter-reset: step;
}
.process-step { position: relative; padding-top: 0.5rem; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-pale);
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  scale: 0;
}
.reveal.in .process-step .step-num {
  animation: num-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: calc(var(--i, 0) * 90ms + 0.2s);
}

@keyframes num-pop {
  to { scale: 1; }
}
.process-step h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.5rem; }
.process-step p { font-size: 0.93rem; opacity: 0.8; }

/* connecting line between steps on wide screens */
@media (min-width: 960px) {
  .process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 1.7rem;
    left: 3.2rem;
    right: -1.2rem;
    border-top: 2px dashed rgba(16, 31, 60, 0.2);
  }
}

/* ================= testimonials ================= */
.testimonials {
  padding: 5rem 5vw;
  background: var(--gold-pale);
  text-align: center;
}
.testimonials .eyebrow { color: var(--gold); opacity: 1; }
.testimonials-title { font-size: clamp(1.9rem, 4vw, 2.6rem); color: var(--navy); margin-bottom: 2.5rem; }

.testimonial-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  text-align: left;
}
.testimonial {
  background: var(--white);
  border-radius: 6px;
  padding: 2rem 1.8rem 1.6rem;
  box-shadow: 0 6px 24px rgba(169, 126, 47, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: translate 0.3s cubic-bezier(0.22, 1, 0.36, 1), rotate 0.3s ease, box-shadow 0.3s ease;
}
.testimonial:hover {
  translate: 0 -6px;
  rotate: -0.6deg;
  box-shadow: 0 16px 36px rgba(169, 126, 47, 0.22);
}
.testimonial blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--navy);
  flex: 1;
}
.testimonial figcaption {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
}

/* ================= faq ================= */
.faq { padding: 5rem 5vw; }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq .eyebrow { color: var(--green); opacity: 1; }
.faq-title { font-size: clamp(1.9rem, 4vw, 2.4rem); color: var(--navy); margin-bottom: 2rem; }

.faq-item {
  border-bottom: 1px solid rgba(16, 31, 60, 0.15);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 2.5rem 1.2rem 0;
  font-size: 0.95rem;
  opacity: 0.85;
}
.faq-item a { color: var(--green); font-weight: 600; }

/* ================= about ================= */
.about { padding: 4.5rem 5vw; }
.about-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}
.about-grid .eyebrow { color: var(--green); opacity: 1; }
.about-grid p:not(.eyebrow) { font-size: 0.98rem; opacity: 0.85; }

/* ================= why ================= */
.why {
  background: var(--navy-deep);
  color: var(--paper);
  padding: 4rem 5vw;
  text-align: center;
}
.why-title { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 2rem; }
.why-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  max-width: 820px;
  margin: 0 auto;
}
.why-list li {
  border: 1px solid rgba(247, 245, 239, 0.35);
  border-radius: 999px;
  padding: 0.55rem 1.3rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.25s ease, border-color 0.25s ease, translate 0.25s ease;
}
.why-list li:hover {
  background: var(--green);
  border-color: var(--green);
  translate: 0 -3px;
}

/* ================= footer ================= */
.site-footer {
  background: var(--navy);
  color: var(--paper);
  padding: 4rem 5vw 2rem;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}
.brand-word-lg { font-size: 1.8rem; color: var(--paper); }
.brand-word-lg em { color: var(--green-leaf); }
.footer-tag { font-size: 0.8rem; letter-spacing: 0.2em; opacity: 0.6; margin-top: 0.3rem; }

.footer-contact { font-style: normal; font-size: 0.95rem; }
.footer-contact p { margin-bottom: 1rem; }
.footer-contact a { color: var(--gold-pale); text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }

.footer-social a {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: var(--gold-pale);
  text-decoration: none;
}
.footer-social a:hover { text-decoration: underline; }

.footer-map {
  max-width: var(--max);
  margin: 0 auto 2.5rem;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(247, 245, 239, 0.2);
}
.footer-map iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
  filter: grayscale(0.3);
}

.footer-fine {
  text-align: center;
  font-size: 0.78rem;
  opacity: 0.55;
  border-top: 1px solid rgba(247, 245, 239, 0.15);
  padding-top: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
}

/* ================= scroll progress ================= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--green), var(--gold));
  z-index: 100;
}

/* ================= back to top ================= */
.to-top {
  position: fixed;
  right: 26px;
  bottom: 96px;
  z-index: 60;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-pale);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  translate: 0 12px;
  pointer-events: none;
  transition: opacity 0.3s ease, translate 0.3s ease, background 0.2s ease;
  box-shadow: 0 6px 18px rgba(10, 20, 40, 0.3);
}
.to-top svg { width: 20px; height: 20px; }
.to-top.show { opacity: 1; translate: 0 0; pointer-events: auto; }
.to-top:hover { background: var(--green); }
.to-top:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

@media (max-width: 600px) {
  .to-top { right: 18px; bottom: 84px; width: 40px; height: 40px; }
}

/* ================= whatsapp ================= */
.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.wa-icon {
  width: 18px;
  height: 18px;
  fill: #25d366;
  flex-shrink: 0;
}

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.75rem 1.2rem 0.75rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: wa-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both 1.2s;
}
.wa-float svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}
.wa-float:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; }

@keyframes wa-pop {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 600px) {
  .wa-float { right: 16px; bottom: 16px; padding: 0.8rem; }
  .wa-float-label { display: none; }
}

/* ================= reveal on scroll ================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* staggered children inside revealed sections */
.reveal .stagger {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.reveal.in .stagger { opacity: 1; transform: none; }

/* ================= reduced motion ================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .loop-draw { animation: none; stroke-dashoffset: 0; }
  .reveal, .reveal .stagger { opacity: 1; transform: none; transition: none; }
  .hero .eyebrow, .hero h1, .hero-sub, .hero-actions { animation: none; opacity: 1; transform: none; }
  .btn:hover, .attire-card:hover, .attire-card:hover img, .division-media img:hover { transform: none; }
  .wa-float { animation: none; opacity: 1; }
  .wa-float:hover { transform: none; }
  .btn::after, .marquee-track, .division-media .media-stack { animation: none; }
  .step-num { scale: 1; }
  .reveal.in .process-step .step-num { animation: none; }
  .testimonial:hover, .why-list li:hover { translate: none; rotate: none; }
  .to-top { transition: none; }
}

/* ================= mobile nav ================= */
@media (max-width: 720px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid rgba(16, 31, 60, 0.12);
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 0.9rem 5vw; border-top: 1px solid rgba(16, 31, 60, 0.08); }
  .site-nav .nav-cta { border-radius: 0; text-align: center; }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
  }
  .nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--navy);
  }

  .hero { padding-top: 3.5rem; }
  .division { padding: 3.5rem 5vw; }
}
