:root {
  --blue: #101f34;
  --blue-dark: #101f34;
  --blue-ink: #101f34;
  --yellow: #f5ae18;
  --yellow-soft: rgba(245,174,24,.16);
  --white: #ffffff;
  --ink: #101f34;
  --muted: rgba(16,31,52,.72);
  --line: rgba(16,31,52,.16);
  --surface: rgba(16,31,52,.045);
  --surface-2: rgba(245,174,24,.12);
  --success: #101f34;
  --shadow-sm: 0 8px 30px rgba(16,31,52,.10);
  --shadow: 0 20px 60px rgba(16,31,52,.16);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 14px;
  top: -80px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--yellow);
  color: var(--blue-ink);
  font-weight: 800;
}
.skip-link:focus { top: 14px; }

.container {
  width: min(calc(100% - 36px), var(--container));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 4px;
  border-radius: 99px;
  background: var(--yellow);
}

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(2.6rem, 7vw, 5.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.65rem); }
p { color: var(--muted); }

.topbar {
  background: var(--yellow);
  color: var(--blue-dark);
  font-size: .88rem;
}
.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar p { margin: 0; color: var(--blue-dark); }
.topbar-links { display: flex; align-items: center; gap: 18px; }
.topbar a { text-decoration: none; font-weight: 700; }
.topbar a:hover { color: var(--white); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(16,31,52,.97);
  backdrop-filter: blur(18px);
  border-bottom: 3px solid var(--yellow);
}
.navbar {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { width: 180px; height: auto; }
.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-menu a {
  position: relative;
  color: var(--white);
  font-size: .96rem;
  font-weight: 800;
  text-decoration: none;
}
.nav-menu a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 3px;
  border-radius: 99px;
  background: var(--yellow);
  transition: right .2s ease;
}
.nav-menu a:hover::after,
.nav-menu a[aria-current="page"]::after { right: 0; }
.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: var(--white);
}
.mobile-toggle:hover { background: rgba(255,255,255,.10); }
.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  display: block;
  width: 24px;
  height: 3px;
  margin: auto;
  border-radius: 99px;
  background: currentColor;
  content: "";
}
.mobile-toggle span { position: relative; }
.mobile-toggle span::before { position: absolute; top: -8px; }
.mobile-toggle span::after { position: absolute; top: 8px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--blue-dark);
  background: var(--yellow);
  box-shadow: 0 12px 28px rgba(16,31,52,.18);
  font-weight: 850;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(16,31,52,.28); }
.btn-yellow { color: var(--blue-ink); background: var(--yellow); box-shadow: 0 12px 28px rgba(16,31,52,.20); }
.btn-outline { color: var(--blue-dark); background: var(--white); border-color: var(--blue-dark); box-shadow: none; }
.btn-outline:hover { background: var(--surface); }
.btn-white { color: var(--blue-dark); background: var(--white); box-shadow: var(--shadow-sm); }
.btn-sm { min-height: 42px; padding: 9px 16px; font-size: .9rem; }

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-dark);
}
.hero-media, .page-hero-media {
  position: absolute;
  inset: 0;
}
.hero-media::after,
.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16,31,52,.92) 0%, rgba(16,31,52,.78) 42%, rgba(16,31,52,.30) 75%, rgba(16,31,52,.18) 100%),
    linear-gradient(0deg, rgba(16,31,52,.82) 0%, transparent 52%);
}
.hero-media img,
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 760px) 1fr;
  padding-block: 100px 90px;
}
.hero-copy h1 { max-width: 800px; margin-bottom: 24px; }
.hero-copy h1 span { color: var(--yellow); }
.hero-copy > p {
  max-width: 690px;
  color: rgba(255,255,255,.86);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  font-size: .9rem;
  font-weight: 750;
}
.hero-scroll {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-scroll::before { content: ""; width: 42px; height: 1px; background: rgba(255,255,255,.48); }

.quick-links {
  position: relative;
  z-index: 4;
  margin-top: -52px;
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.quick-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 104px;
  padding: 20px 24px;
  text-decoration: none;
  border-right: 1px solid var(--line);
  transition: background .18s ease;
}
.quick-item:last-child { border-right: 0; }
.quick-item:hover { background: var(--surface); }
.quick-icon {
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: var(--blue-dark);
  background: var(--yellow);
  font-size: 1rem;
  font-weight: 900;
}
.quick-item strong { display: block; color: var(--blue-ink); line-height: 1.25; }
.quick-item span:not(.quick-icon) { color: var(--muted); font-size: .86rem; }

.section { padding-block: 108px; }
.section-sm { padding-block: 72px; }
.section-alt { background: var(--surface); }
.section-dark { color: var(--white); background: var(--blue-dark); }
.section-dark p { color: rgba(255,255,255,.72); }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
}
.section-heading h2 { max-width: 760px; margin-bottom: 0; color: var(--blue-ink); }
.section-heading p { max-width: 520px; margin-bottom: 0; }
.section-dark .section-heading h2 { color: var(--white); }
.section-copy { max-width: 760px; }

.story-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
.story-media {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.story-media img { width: 100%; height: 100%; object-fit: cover; }
.story-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 188px;
  padding: 24px;
  border-radius: 22px;
  background: var(--yellow);
  color: var(--blue-ink);
  box-shadow: var(--shadow-sm);
}
.story-badge strong { display: block; font-size: 2rem; line-height: 1; }
.story-badge span { display: block; margin-top: 7px; font-size: .88rem; font-weight: 800; }
.story-copy h2 { color: var(--blue-ink); }
.check-list { display: grid; gap: 14px; margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 34px; color: var(--ink); font-weight: 700; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  color: var(--blue-dark);
  background: var(--yellow);
  font-size: .8rem;
  font-weight: 900;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}
.stat {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.stat strong { display: block; color: var(--blue-dark); font-size: 2rem; line-height: 1; }
.stat span { display: block; margin-top: 9px; color: var(--muted); font-size: .88rem; font-weight: 750; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  min-height: 285px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--surface-2);
  transition: transform .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card:hover::after { transform: scale(1.28); }
.service-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 34px;
  border-radius: 18px;
  color: var(--blue-dark);
  background: var(--yellow);
  font-size: .82rem;
  letter-spacing: .06em;
  font-weight: 900;
}

.service-icon svg {
  width: 30px;
  height: 30px;
  display: block;
}

.service-card h3, .service-card p { position: relative; z-index: 1; }
.service-card h3 { color: var(--blue-ink); }
.service-card p { margin-bottom: 0; }

.units-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.unit-card {
  position: relative;
  min-height: 610px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--white);
  box-shadow: var(--shadow);
}
.unit-card-media { position: absolute; inset: 0; }
.unit-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16,31,52,.96) 3%, rgba(16,31,52,.72) 48%, rgba(16,31,52,.12) 90%);
}
.unit-card-media img { width: 100%; height: 100%; object-fit: cover; }
.unit-card-content {
  position: relative;
  z-index: 2;
  min-height: 610px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 34px;
}
.unit-tag {
  align-self: flex-start;
  margin-bottom: auto;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--blue-ink);
  background: var(--yellow);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.unit-card h3 { margin-bottom: 12px; font-size: clamp(2rem, 4vw, 3rem); }
.unit-card p { max-width: 520px; color: rgba(255,255,255,.8); }
.unit-meta { display: grid; gap: 7px; margin: 12px 0 24px; color: rgba(255,255,255,.9); font-size: .93rem; font-weight: 700; }
.unit-meta a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.unit-meta a:hover { color: var(--yellow); }
.unit-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.feature-band {
  overflow: hidden;
  background: var(--yellow);
}
.feature-band-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 110px;
}
.feature-band-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  border-right: 1px solid rgba(16,31,52,.16);
  color: var(--blue-ink);
  font-weight: 900;
  text-align: center;
}
.feature-band-item:last-child { border-right: 0; }

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.social-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.social-card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--surface-2);
}
.social-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.social-card:hover .social-card-media img { transform: scale(1.03); }
.social-card-body { padding: 20px; }
.social-card-body strong { display: block; color: var(--blue-ink); }
.social-card-body p { margin: 8px 0 16px; font-size: .92rem; }
.social-link { color: var(--blue); font-weight: 850; text-decoration: none; }
.social-link:hover { text-decoration: underline; }
.social-note {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 5px solid var(--yellow);
  border-radius: 14px;
  background: var(--surface);
  color: var(--muted);
  font-size: .9rem;
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 54px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--blue-dark);
  box-shadow: var(--shadow);
}
.cta-panel::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -140px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: var(--blue);
  opacity: .55;
}
.cta-panel::after {
  content: "";
  position: absolute;
  right: 130px;
  bottom: -160px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: .14;
}
.cta-copy, .cta-actions { position: relative; z-index: 1; }
.cta-copy h2 { margin-bottom: 12px; color: var(--white); }
.cta-copy p { max-width: 680px; margin-bottom: 0; color: rgba(255,255,255,.72); }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: end; gap: 10px; }

.page-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-dark);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-block: 90px 70px;
}
.page-hero h1 { max-width: 920px; margin-bottom: 18px; }
.page-hero p { max-width: 720px; color: rgba(255,255,255,.82); font-size: 1.18rem; }
.breadcrumb { display: flex; gap: 8px; margin-bottom: 28px; color: rgba(255,255,255,.72); font-size: .9rem; font-weight: 700; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--yellow); }

.location-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}
.info-panel {
  position: sticky;
  top: 112px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.info-panel h3 { color: var(--blue-ink); }
.info-list { display: grid; gap: 18px; margin: 26px 0; }
.info-row { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: start; }
.info-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; color: var(--blue-dark); background: var(--yellow); font-weight: 900; }
.info-row strong { display: block; color: var(--blue-ink); }
.info-row span, .info-row a { color: var(--muted); text-decoration: none; }
.hours { display: grid; gap: 8px; padding-top: 8px; }
.hours-row { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); font-size: .92rem; }
.hours-row strong { color: var(--ink); }
.map-frame {
  width: 100%;
  min-height: 480px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.location-services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.location-service { padding: 19px; border: 1px solid var(--line); border-radius: 17px; background: var(--surface); }
.location-service strong { display: block; color: var(--blue-ink); }
.location-service span { color: var(--muted); font-size: .9rem; }

.gallery-strip {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  grid-template-rows: repeat(2, 260px);
  gap: 14px;
}
.gallery-strip figure { margin: 0; border-radius: 20px; overflow: hidden; background: var(--surface); }
.gallery-strip figure:first-child { grid-row: span 2; }
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; }

.site-footer {
  padding-top: 80px;
  color: var(--white);
  background: #101f34;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 60px;
}
.footer-brand img { width: 235px; opacity: 1; }
.footer-brand p { max-width: 360px; margin-top: 20px; color: rgba(255,255,255,.66); }
.footer-title { margin-bottom: 18px; color: var(--white); font-size: 1rem; letter-spacing: -.01em; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.68); text-decoration: none; }
.footer-links a:hover { color: var(--yellow); }
.footer-address { display: grid; gap: 8px; margin-bottom: 18px; color: rgba(255,255,255,.68); font-size: .9rem; }
.footer-bottom {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.58);
  font-size: .85rem;
}
.footer-bottom a { color: inherit; }

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 950;
  display: grid;
  gap: 10px;
}
.floating-btn {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: var(--blue-dark);
  background: var(--yellow);
  box-shadow: 0 12px 28px rgba(16,31,52,.24);
  font-weight: 950;
  text-decoration: none;
}
.floating-btn:hover { transform: translateY(-2px); }

.notice {
  padding: 18px 20px;
  border: 1px solid rgba(16,31,52,.18);
  border-radius: 16px;
  color: rgba(16,31,52,.78);
  background: rgba(16,31,52,.05);
  font-size: .92rem;
}
.notice strong { color: var(--blue-dark); }

.legal { max-width: 900px; }
.legal h2 { margin-top: 44px; color: var(--blue-ink); font-size: 1.8rem; }
.legal h3 { margin-top: 30px; color: var(--blue-ink); }
.legal li { color: var(--muted); margin-bottom: 8px; }


.history-poster {
  position: relative;
  padding: 12px;
  border: 3px solid var(--yellow);
  border-radius: var(--radius-lg);
  background: var(--blue-dark);
  box-shadow: var(--shadow);
}
.history-poster img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 12px);
}
.history-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--yellow);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.history-quote {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 5px solid var(--yellow);
  background: rgba(245,174,24,.12);
  color: var(--blue-dark);
  font-size: 1.12rem;
  font-weight: 850;
}
.unit-meta strong { color: var(--yellow); }
.info-icon {
  font-size: .62rem;
  letter-spacing: .05em;
}
.floating-btn {
  width: auto;
  min-width: 64px;
  padding-inline: 14px;
  font-size: .72rem;
  letter-spacing: .06em;
}

@media (max-width: 1040px) {
  .nav-menu { gap: 18px; }
  .nav-menu a:not(.btn) { display: none; }
  .hero-content { grid-template-columns: 1fr; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-item:nth-child(2) { border-right: 0; }
  .quick-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .story-grid { gap: 38px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-band-inner { grid-template-columns: repeat(2, 1fr); }
  .feature-band-item:nth-child(2) { border-right: 0; }
  .feature-band-item:nth-child(-n+2) { border-bottom: 1px solid rgba(16,31,52,.16); }
  .location-layout { grid-template-columns: 1fr; }
  .info-panel { position: static; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 2 / -1; }
}

@media (max-width: 780px) {
  .topbar { display: none; }
  .navbar { min-height: 82px; }
  .brand img { width: 132px; }
  .nav-menu {
    position: fixed;
    inset: 82px 14px auto;
    z-index: 1001;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--blue-dark);
    box-shadow: var(--shadow);
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu a:not(.btn) { display: block; padding: 14px; border-radius: 12px; }
  .nav-menu a:not(.btn):hover { background: rgba(255,255,255,.10); }
  .nav-menu a::after { display: none; }
  .nav-menu .btn { margin-top: 8px; }
  .mobile-toggle { display: block; }
  .hero, .hero-content { min-height: 670px; }
  .hero-content { padding-block: 70px 90px; }
  .hero-media::after, .page-hero-media::after {
    background: linear-gradient(0deg, rgba(16,31,52,.96) 0%, rgba(16,31,52,.68) 70%, rgba(16,31,52,.32) 100%);
  }
  .hero-scroll { display: none; }
  .quick-links { margin-top: -34px; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-item { min-height: 82px; border-right: 0; border-bottom: 1px solid var(--line); }
  .quick-item:last-child { border-bottom: 0; }
  .section { padding-block: 78px; }
  .section-heading { display: block; margin-bottom: 34px; }
  .section-heading p { margin-top: 16px; }
  .story-grid, .units-grid { grid-template-columns: 1fr; }
  .story-media { min-height: 430px; order: 2; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .unit-card, .unit-card-content { min-height: 560px; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-panel { grid-template-columns: 1fr; padding: 38px 28px; }
  .cta-actions { justify-content: flex-start; }
  .page-hero, .page-hero-content { min-height: 500px; }
  .location-services { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 220px; }
  .gallery-strip figure:first-child { grid-column: span 2; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: span 2; }
  .footer-grid > :last-child { grid-column: auto; }
}

@media (max-width: 520px) {
  .container { width: min(calc(100% - 26px), var(--container)); }
  h1 { font-size: 2.65rem; }
  .hero-actions .btn, .unit-actions .btn, .cta-actions .btn { width: 100%; }
  .hero-chips { gap: 8px; }
  .hero-chip { font-size: .82rem; }
  .quick-item { padding: 17px; }
  .stats, .social-grid { grid-template-columns: 1fr; }
  .stat { padding: 20px; }
  .story-badge { width: 160px; padding: 20px; }
  .service-card { min-height: auto; }
  .feature-band-inner { grid-template-columns: 1fr; }
  .feature-band-item { border-right: 0; border-bottom: 1px solid rgba(16,31,52,.16); }
  .feature-band-item:last-child { border-bottom: 0; }
  .unit-card-content { padding: 26px; }
  .gallery-strip { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(3, 300px); }
  .gallery-strip figure:first-child { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 24px; }
  .floating-actions { right: 12px; bottom: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* Fotos oficiais das unidades */
.unit-card-smi .unit-card-media img { object-position: 52% 46%; }
.unit-card-medianeira .unit-card-media img { object-position: 50% 48%; }

/* Logística própria e depoimentos */
.eyebrow-light { color: var(--white); }
.media-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .65fr);
  gap: 72px;
  align-items: center;
}
.media-feature-grid-reverse {
  grid-template-columns: minmax(320px, .65fr) minmax(0, .95fr);
}
.media-feature-copy h2 { margin-bottom: 24px; }
.section-dark .media-feature-copy h2 { color: var(--white); }
.media-feature-copy > p { font-size: 1.06rem; }
.section-dark .media-feature-copy > p { color: rgba(255,255,255,.78); }
.quality-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.quality-list li {
  position: relative;
  padding-left: 32px;
  color: var(--white);
  font-weight: 750;
}
.quality-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yellow);
  font-weight: 950;
}
.site-video-card {
  width: min(100%, 430px);
  margin: 0 auto;
  padding: 14px;
  border: 3px solid var(--yellow);
  border-radius: 30px;
  background: var(--blue-dark);
  box-shadow: var(--shadow);
}
.site-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  background: var(--blue-dark);
  object-fit: cover;
}
.site-video-card figcaption {
  padding: 14px 10px 4px;
  color: var(--white);
  font-size: .9rem;
  font-weight: 750;
  text-align: center;
}
.site-video-card-light { background: var(--white); }
.site-video-card-light figcaption { color: var(--blue-ink); }
.testimonials-section { background: var(--white); }
.testimonials-copy h2 { color: var(--blue-ink); }
.testimonial-highlight {
  margin-top: 30px;
  padding: 22px 24px;
  border-left: 6px solid var(--yellow);
  border-radius: 0 18px 18px 0;
  color: var(--white);
  background: var(--blue-dark);
  font-size: 1.12rem;
  font-weight: 850;
}

@media (max-width: 980px) {
  .media-feature-grid,
  .media-feature-grid-reverse { grid-template-columns: 1fr; gap: 46px; }
  .media-feature-grid-reverse .site-video-card { order: 2; }
  .media-feature-grid-reverse .media-feature-copy { order: 1; }
}

@media (max-width: 520px) {
  .site-video-card { width: min(100%, 360px); padding: 10px; border-radius: 24px; }
  .site-video-card video { border-radius: 16px; }
  .unit-card-smi .unit-card-media img { object-position: 52% 50%; }
  .unit-card-medianeira .unit-card-media img { object-position: 48% 50%; }
}


/* Contato compacto por WhatsApp no cabeçalho */
.whatsapp-header-button {
  order: 3;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 13px;
  border: 1px solid #25D366;
  border-radius: 10px;
  color: #ffffff;
  background: #25D366;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
  font-size: .84rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s ease, filter .2s ease;
}
.whatsapp-header-button:hover { color: #ffffff; transform: translateY(-2px); filter: brightness(.94); }
.whatsapp-header-button svg { width: 20px; height: 20px; display: block; }
.nav-menu { order: 2; margin-left: auto; }
.mobile-toggle { order: 4; }

/* Convite de avaliação das unidades */
.review-google-card {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 20px;
  border: 2px solid var(--yellow);
  border-radius: 18px;
  background: var(--blue-dark);
  color: var(--white);
}
.review-google-card strong { color: var(--white); font-size: 1.08rem; }
.review-google-card p { margin: 0; color: rgba(255,255,255,.8); font-size: .9rem; }
.review-stars { color: var(--yellow); letter-spacing: .12em; font-size: 1.05rem; }
.btn-review {
  width: 100%;
  margin-top: 4px;
  color: var(--blue-dark);
  background: var(--yellow);
  border-color: var(--yellow);
  text-align: center;
}
.btn-review:hover { color: var(--blue-dark); background: var(--white); border-color: var(--white); }

.floating-whatsapp { padding: 0; min-width: 58px; width: 58px; height: 58px; }
.floating-whatsapp svg { width: 30px; height: 30px; }



@media (max-width: 780px) {
  .whatsapp-header-button {
    margin-left: auto;
    min-height: 40px;
    padding: 7px 10px;
    border-radius: 9px;
    font-size: .78rem;
  }
  .whatsapp-header-button svg { width: 19px; height: 19px; }
  .mobile-toggle { margin-left: 6px; }
}

@media (max-width: 430px) {
  .whatsapp-header-button span { display: none; }
  .whatsapp-header-button { width: 42px; padding-inline: 0; }
}


/* V10: cabeçalho ampliado, assinatura da marca e WhatsApp mobile */
.navbar { min-height: 112px; }
.brand {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 0 0 auto;
}

.unit-highlight {
  display: grid;
  gap: 4px;
  margin: 4px 0 18px;
  padding: 13px 15px;
  border-left: 4px solid var(--yellow);
  border-radius: 0 12px 12px 0;
  background: rgba(255,255,255,.11);
}
.unit-highlight strong { color: var(--yellow); font-size: .95rem; }
.unit-highlight span { color: rgba(255,255,255,.9); font-size: .88rem; line-height: 1.45; }

.restaurant-feature {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
  margin-top: 50px;
  padding: 26px;
  border: 2px solid var(--yellow);
  border-radius: 28px;
  background: var(--blue-dark);
  box-shadow: var(--shadow-sm);
}
.restaurant-feature-media {
  overflow: hidden;
  min-height: 360px;
  border-radius: 20px;
  background: var(--blue-ink);
}
.restaurant-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.restaurant-feature-copy h3 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.7rem); }
.restaurant-feature-copy p { color: rgba(255,255,255,.82); }
.restaurant-feature-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

@media (max-width: 780px) {
  .navbar { min-height: 98px; gap: 7px; }
  .brand img { width: 118px; }
  .nav-menu { inset: 98px 14px auto; }
  .whatsapp-header-button {
    gap: 5px;
    min-height: 39px;
    padding: 7px 9px;
    font-size: .72rem;
  }
  .whatsapp-header-button span { display: inline; }
  .whatsapp-header-button svg { width: 18px; height: 18px; }
  .mobile-toggle { margin-left: 2px; }
  .restaurant-feature { grid-template-columns: 1fr; padding: 18px; gap: 24px; }
  .restaurant-feature-media, .restaurant-feature-media img { min-height: 300px; }
}

@media (max-width: 430px) {
  .whatsapp-header-button span { display: inline; }
  .whatsapp-header-button { width: auto; padding-inline: 8px; }
  .brand img { width: 108px; }
  .navbar { min-height: 94px; }
  .nav-menu { inset: 94px 12px auto; }
}


/* V14: botão flutuante do WhatsApp e destaque dos filtros UV */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(0,0,0,.25);
  border: 3px solid #ffffff;
  transition: transform .2s ease, filter .2s ease;
}
.whatsapp-float:hover { color:#ffffff; transform: translateY(-2px) scale(1.03); filter: brightness(.96); }
.whatsapp-float svg { width: 31px; height: 31px; display:block; }

.uv-feature {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: center;
  margin-top: 48px;
  padding: 26px;
  border: 2px solid var(--yellow);
  border-radius: 28px;
  background: var(--blue-dark);
  box-shadow: var(--shadow-sm);
}
.uv-feature-media { overflow:hidden; min-height:360px; border-radius:20px; background: var(--blue-ink); }
.uv-feature-media img { width:100%; height:100%; min-height:360px; object-fit:cover; }
.uv-feature-copy h3 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.6rem); }
.uv-feature-copy p { color: rgba(255,255,255,.84); }
.uv-feature-copy .unit-highlight { background: rgba(255,255,255,.08); margin-top: 18px; }

@media (max-width: 780px) {
  .whatsapp-float { right: 14px; bottom: 14px; width: 56px; height: 56px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
  .uv-feature { grid-template-columns: 1fr; padding: 18px; gap: 24px; }
  .uv-feature-media, .uv-feature-media img { min-height: 300px; }
}

.whatsapp-header-button{display:none !important;}


.unit-complex-highlight { gap: 9px; }
.unit-complex-highlight span { display: block; }
.unit-complex-highlight span b { color: var(--yellow); }

/* V17: cabeçalho mobile informativo, topbar desktop compacta e privacidade */
.mobile-header-info { display: none; }

.privacy-hero {
  padding: 86px 0 72px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 18%, rgba(245,174,24,.22), transparent 28%),
    var(--blue-dark);
}
.privacy-hero .eyebrow { color: var(--white); }
.privacy-hero h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 6vw, 5rem);
}
.privacy-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255,255,255,.78);
  font-size: 1.08rem;
}
.privacy-content {
  width: min(calc(100% - 36px), 900px);
  padding-block: 72px 88px;
}
.privacy-intro {
  margin-bottom: 38px;
  padding: 24px 26px;
  border-left: 5px solid var(--yellow);
  border-radius: 0 18px 18px 0;
  background: var(--surface);
}
.privacy-intro p:last-child,
.privacy-section p:last-child { margin-bottom: 0; }
.privacy-section { margin-top: 36px; }
.privacy-section h2 {
  margin-bottom: 14px;
  color: var(--blue-ink);
  font-size: clamp(1.45rem, 3vw, 2rem);
}
.privacy-section ul {
  display: grid;
  gap: 9px;
  padding-left: 22px;
  color: var(--muted);
}
.privacy-updated {
  display: inline-flex;
  margin-top: 42px;
  padding: 9px 13px;
  border-radius: 99px;
  color: var(--blue-ink);
  background: var(--yellow-soft);
  font-size: .85rem;
  font-weight: 800;
}

@media (min-width: 781px) {
  .topbar { font-size: .8rem; }
  .topbar-inner { min-height: 32px; }
  .home-page .topbar-inner { min-height: 28px; }
}

@media (max-width: 780px) {
  .navbar {
    min-height: 96px;
    justify-content: flex-start;
    gap: 10px;
  }
  .brand { flex: 0 0 auto; }
  .brand img { width: 108px; }
  .mobile-header-info {
    display: grid;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 190px;
    gap: 1px;
    padding: 0 2px;
    color: var(--white);
    font-size: .7rem;
    line-height: 1.2;
  }
  .mobile-header-info strong {
    color: var(--yellow);
    font-size: .72rem;
    letter-spacing: .04em;
    text-transform: uppercase;
  }
  .mobile-header-info a {
    color: var(--white);
    font-weight: 850;
    text-decoration: none;
  }
  .mobile-header-info span {
    color: rgba(255,255,255,.7);
    font-size: .66rem;
  }
  .mobile-toggle {
    flex: 0 0 auto;
    margin-left: auto;
  }
  .nav-menu { inset: 96px 14px auto; }
  .hero, .hero-content { min-height: 610px; }
  .hero-content {
    align-items: start;
    padding-block: 30px 74px;
  }
  .page-hero, .page-hero-content { min-height: 570px; }
  .page-hero-content {
    justify-content: flex-start;
    padding-block: 30px 58px;
  }
  .breadcrumb { margin-bottom: 16px; }
  .privacy-hero { padding: 48px 0 52px; }
  .privacy-content { width: min(calc(100% - 26px), 900px); padding-block: 52px 68px; }
}

@media (max-width: 430px) {
  .navbar { min-height: 92px; gap: 8px; }
  .brand img { width: 100px; }
  .mobile-header-info {
    max-width: 168px;
    font-size: .66rem;
  }
  .mobile-header-info strong { font-size: .68rem; }
  .mobile-header-info span { font-size: .62rem; }
  .nav-menu { inset: 92px 12px auto; }
  .hero-content,
  .page-hero-content { padding-top: 24px; }
  .privacy-intro { padding: 20px; }
}

/* V19: ícone proporcional, identificação das unidades e cabeçalho mobile compacto */
.page-hero-unit-title,
.page-hero-title-text {
  display: block;
}

.page-hero-unit-title {
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 900;
  letter-spacing: .015em;
}

@media (max-width: 780px) {
  .navbar {
    min-height: 74px;
  }

  .nav-menu {
    inset: 74px 14px auto;
  }

  .hero-copy h1,
  .hero-copy h1 span {
    font-weight: 900;
  }

  .page-hero-unit-title {
    margin-bottom: 8px;
    font-size: 1.08rem;
  }
}

@media (max-width: 430px) {
  .navbar {
    min-height: 70px;
  }

  .nav-menu {
    inset: 70px 12px auto;
  }
}

/* V22: cabeçalho desktop da V17 e estrutura horizontal no mobile */
.mobile-header-shortcuts {
  display: none;
}

@media (max-width: 780px) {
  .navbar {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
    padding-block: 7px;
  }

  .brand {
    position: static;
    width: auto;
    min-width: 0;
    transform: none;
    flex: 0 0 auto;
    justify-content: flex-start;
  }

  .brand img {
    width: 108px;
    max-height: 66px;
    object-fit: contain;
    object-position: center;
  }

  .mobile-header-info {
    position: static;
    display: grid;
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
    gap: 0;
    padding: 0;
    font-size: .6rem;
    line-height: 1.13;
    text-align: left;
  }

  .mobile-header-info strong {
    font-size: .62rem;
    letter-spacing: .015em;
    text-transform: none;
  }

  .mobile-header-info a {
    font-size: .6rem;
  }

  .mobile-header-info span {
    font-size: .54rem;
  }

  .mobile-header-shortcuts {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 0;
  }

  .mobile-header-shortcuts a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    color: var(--white);
    text-decoration: none;
    transition: color .2s ease, background .2s ease, transform .2s ease;
  }

  .mobile-header-shortcuts a:hover,
  .mobile-header-shortcuts a:focus-visible {
    color: var(--yellow);
    background: rgba(255,255,255,.09);
    transform: translateY(-1px);
  }

  .mobile-header-shortcuts svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-toggle {
    position: static;
    flex: 0 0 auto;
    margin: 0 0 0 auto;
  }

  .nav-menu {
    inset: 96px 14px auto;
  }

  #hero-principal .hero-content {
    padding-top: 70px;
  }
}

@media (max-width: 520px) {
  .hero .hero-actions {
    gap: 8px;
  }

  .hero .hero-actions .btn {
    flex: 1 1 132px;
    width: auto;
    min-height: 40px;
    padding: 8px 11px;
    border-radius: 9px;
    box-shadow: none;
    font-size: .76rem;
    line-height: 1.2;
  }

  .hero .hero-actions .btn-yellow {
    border-color: rgba(245,174,24,.48);
    color: var(--white);
    background: rgba(245,174,24,.72);
  }

  .hero .hero-actions .btn-white {
    border-color: rgba(255,255,255,.24);
    color: var(--white);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
  }
}

@media (max-width: 430px) {
  .navbar {
    min-height: 92px;
    gap: 7px;
  }

  .brand img {
    width: 100px;
    max-height: 62px;
  }

  .mobile-header-info {
    max-width: none;
    font-size: .56rem;
  }

  .mobile-header-info strong,
  .mobile-header-info a {
    font-size: .58rem;
  }

  .mobile-header-info span {
    font-size: .5rem;
  }

  .mobile-header-shortcuts {
    gap: 5px;
  }

  .mobile-header-shortcuts a {
    width: 35px;
    height: 35px;
  }

  .mobile-header-shortcuts svg {
    width: 20px;
    height: 20px;
  }

  .nav-menu {
    inset: 92px 12px auto;
  }

  #hero-principal .hero-content {
    padding-top: 62px;
  }
}

@media (max-width: 360px) {
  .navbar {
    min-height: 88px;
    gap: 5px;
  }

  .brand img {
    width: 94px;
    max-height: 58px;
  }

  .mobile-header-info {
    max-width: none;
    font-size: .52rem;
  }

  .mobile-header-info strong,
  .mobile-header-info a {
    font-size: .54rem;
  }

  .mobile-header-info span {
    font-size: .47rem;
  }

  .mobile-header-shortcuts {
    gap: 3px;
  }

  .mobile-header-shortcuts a {
    width: 32px;
    height: 32px;
  }

  .mobile-header-shortcuts svg {
    width: 18px;
    height: 18px;
  }

  .mobile-toggle {
    width: 42px;
    height: 42px;
  }

  .nav-menu {
    inset: 88px 12px auto;
  }
}
