/* Kuriosity Homes — brand-aligned palette */
:root {
  --color-orange: #e67e22;
  --color-orange-dark: #d35400;
  --color-gold: #f4b350;
  --color-cream: #fff9f4;
  --color-cream-dark: #f5ebe0;
  --color-brown: #4a3728;
  --color-brown-soft: #6d5344;
  --color-ink: #2c2419;
  --color-white: #ffffff;
  --font-display: "Playfair Display", Georgia, serif;
  --font-script: "Dancing Script", cursive;
  --font-body: "Lora", Georgia, serif;
  --shadow-soft: 0 12px 40px rgba(74, 55, 40, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --header-h: 88px;
  --announcement-h: 46px;
  --nav-bar-h: 104px;
  --sticky-top-total: calc(var(--announcement-h) + var(--nav-bar-h));
  --color-sticky-bar: #ff3d00;
  /* Design tokens (align with app theme / Tailwind palette) */
  --color-navy: #0a1628;
  --color-navy-light: #1a2b45;
  --color-gold-accent: #d4af37;
  --color-royal-blue: #1e3a8a;
  --color-nav-blue: #2563eb;
  --color-nav-blue-hover: #1d4ed8;
  --color-hero-gold: #e5c365;
  --font-hero: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --color-wa: #25d366;
  --font-sans: "Montserrat", system-ui, sans-serif;
  --transition: 0.25s ease;
  /* Matches Tailwind-style: color-mix(in oklab, #D4AF37 20%, transparent) for hover glow */
  --card-hover-gold-glow: color-mix(in oklab, #d4af37 20%, transparent);
  --card-hover-gold-glow-fallback: rgba(212, 175, 55, 0.22);
  /* Horizontal inset for page content — avoids edge-to-edge feel on wide viewports */
  --page-gutter: clamp(1.25rem, 5vw, 3rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--sticky-top-total);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-ink);
  background: var(--color-cream);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-orange-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-orange);
}

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

/* Single sticky stack: red bar + nav (no gap while scrolling) */
.site-top-sticky {
  position: sticky;
  top: 0;
  z-index: 120;
}

.announcement-bar {
  position: relative;
  background: var(--color-sticky-bar);
  color: var(--color-white);
  padding: 0.55rem var(--page-gutter);
  box-shadow: none;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  max-width: 1200px;
  margin-inline: auto;
}

@keyframes announcement-info-pulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 transparent);
  }
  50% {
    transform: scale(1.12);
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.65));
  }
}

@keyframes announcement-bolt-zap {
  0%,
  100% {
    transform: translateY(0) scale(1) rotate(-2deg);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25)) brightness(1);
  }
  20% {
    transform: translateY(-3px) scale(1.12) rotate(2deg);
    filter: drop-shadow(0 0 10px rgba(255, 235, 59, 0.85)) brightness(1.2);
  }
  40% {
    transform: translateY(0) scale(1.06) rotate(-1deg);
    filter: drop-shadow(0 0 6px rgba(255, 235, 59, 0.5)) brightness(1.08);
  }
  60% {
    transform: translateY(-2px) scale(1.1) rotate(1deg);
    filter: drop-shadow(0 0 12px rgba(255, 235, 59, 0.9)) brightness(1.25);
  }
  80% {
    transform: translateY(0) scale(1) rotate(0deg);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2)) brightness(1);
  }
}

.announcement-info {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
  opacity: 0.98;
  animation: announcement-info-pulse 2.5s ease-in-out infinite;
}

.announcement-inner > .announcement-info:last-of-type {
  animation-delay: 1.25s;
}

.announcement-info-svg {
  display: block;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
}

.announcement-bolt {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.announcement-bolt svg {
  display: block;
  animation: announcement-bolt-zap 1.35s ease-in-out infinite;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

@media (prefers-reduced-motion: reduce) {
  .announcement-info,
  .announcement-bolt svg {
    animation: none;
  }

  .announcement-info {
    transform: none;
    filter: none;
  }
}

.announcement-text {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(0.78rem, 2.2vw, 0.95rem);
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.25;
}

/* White nav — flows directly under announcement bar */
.site-header {
  position: relative;
  z-index: 1;
  background: var(--color-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: box-shadow var(--transition);
  margin-top: 0;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  width: min(80rem, calc(100vw - 2 * var(--page-gutter)));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-bar-h);
  /* Slightly less top padding so nav + CTA sit a bit higher in the bar */
  padding: 0.35rem 0 0.5rem;
  gap: 1rem;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
  min-width: 0;
}

.brand-block:hover {
  opacity: 0.92;
}

/* Header logo — no box; larger so the mark reads clearly */
.brand-logo {
  display: block;
  height: clamp(68px, 12vw, 100px);
  width: auto;
  max-width: min(280px, 48vw);
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}

.brand-name {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: #0f172a;
  letter-spacing: -0.02em;
}

.brand-tagline {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 102;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #0f172a;
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-toggle {
    margin-top: -6px;
  }
}

@media (min-width: 769px) {
  .main-nav {
    transform: translateY(-5px);
  }
}

.main-nav .nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.main-nav a {
  font-family: "Inter", var(--font-sans), system-ui, sans-serif;
  font-size: 0.875rem;
  color: #334155;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.15s ease, background-color 0.15s ease, transform 0.15s ease;
}

.main-nav a:not(.nav-cta):hover {
  color: var(--color-nav-blue);
}

.nav-cta {
  background: var(--color-nav-blue) !important;
  color: #ffffff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 0.375rem;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.nav-cta:hover {
  color: #ffffff !important;
  background: var(--color-nav-blue-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Hero — matches Hero.tsx */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 600px;
  padding: 2rem var(--page-gutter) 2.5rem;
}

@media (min-width: 768px) {
  .hero {
    height: 700px;
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    height: 750px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 22, 40, 0.9) 0%,
    rgba(26, 43, 69, 0.8) 50%,
    rgba(30, 58, 138, 0.7) 100%
  );
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(64px);
  animation: hero-blob-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-blob--gold {
  top: 5rem;
  left: 5rem;
  width: 16rem;
  height: 16rem;
  background: #d4af37;
  opacity: 0.2;
}

.hero-blob--blue {
  bottom: 5rem;
  right: 5rem;
  width: 18rem;
  height: 18rem;
  background: #3b82f6;
  opacity: 0.2;
  animation-delay: 1s;
}

@keyframes hero-blob-pulse {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.12;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-blob {
    animation: none;
  }
}

.hero-inner {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #ffffff;
  width: 100%;
  max-width: 64rem;
  margin-inline: auto;
  padding-inline: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 9999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@media (min-width: 768px) {
  .hero-badge {
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0.75rem 1.5rem;
  }
}

.hero-badge-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: #d4af37;
}

@media (min-width: 768px) {
  .hero-badge-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.hero-badge-text {
  font-family: "Inter", var(--font-hero), system-ui, sans-serif;
  font-size: 0.875rem;
  color: #f4e4bc;
}

@media (min-width: 768px) {
  .hero-badge-text {
    font-size: 1rem;
  }
}

.hero-title {
  font-family: "Inter", var(--font-hero), system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(2.25rem, 5vw, 3rem);
  color: #ffffff;
  margin: 0 0 1rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: clamp(2.75rem, 4.5vw, 3.75rem);
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: clamp(3.5rem, 5vw, 4.5rem);
  }
}

.hero-gradient-text {
  display: inline-block;
  margin-top: 0.125rem;
  background: linear-gradient(to right, #d4af37, #f4e4bc, #d4af37);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-family: "Inter", var(--font-hero), system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: #ffffff;
  margin: 0 0 1rem;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .hero-sub {
    font-size: clamp(1.875rem, 3.5vw, 2.25rem);
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-sub {
    font-size: clamp(2.25rem, 3vw, 2.5rem);
  }
}

.hero-meta {
  font-family: "Inter", var(--font-hero), system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #e5e7eb;
  margin: 0 auto 2rem;
  line-height: 1.625;
  max-width: 48rem;
}

@media (min-width: 768px) {
  .hero-meta {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-meta {
    font-size: 1.5rem;
  }
}

.hero-pills {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-pills {
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
}

.hero-pill {
  font-family: "Inter", var(--font-hero), system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 0.5rem 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

@media (min-width: 768px) {
  .hero-pill {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
}

.hero-pill-icon {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  color: #d4af37;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: stretch;
  max-width: 28rem;
  margin-inline: auto;
  margin-top: -0.5rem;
}

@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
    align-items: center;
    max-width: none;
  }
}

@media (min-width: 768px) {
  .hero-ctas {
    gap: 1.25rem;
    margin-top: -0.75rem;
  }
}

.btn-hero {
  font-family: "Inter", var(--font-sans), system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.375rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease, border-color 0.3s ease,
    background-color 0.3s ease;
}

@media (min-width: 768px) {
  .btn-hero {
    font-size: 1.125rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}

.btn-hero:hover {
  transform: scale(1.05);
}

.btn-hero-gold {
  padding: 1rem 1.5rem;
  color: #ffffff;
  border: none;
  background: linear-gradient(to right, #d4af37, #b8961f);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.btn-hero-gold:hover {
  color: #ffffff;
  background: linear-gradient(to right, #b8961f, #d4af37);
  box-shadow: 0 25px 50px -12px rgba(212, 175, 55, 0.35);
}

.btn-hero-wa {
  padding: 1rem 1.5rem;
  color: #ffffff;
  background: #22c55e;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.btn-hero-wa:hover {
  color: #000000;
  background: #16a34a;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 25px 50px -12px rgba(34, 197, 94, 0.35);
}

.hero-wa-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
}

@media (min-width: 640px) {
  .btn-hero {
    width: auto;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-dark));
  color: var(--color-white);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.35);
}

.btn-primary:hover {
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(230, 126, 34, 0.4);
}

.btn-outline {
  background: transparent;
  border-color: var(--color-brown);
  color: var(--color-brown);
}

.btn-outline:hover {
  background: var(--color-brown);
  color: var(--color-white);
}

.btn-block {
  width: 100%;
}

/* Sections */
.section {
  padding-top: clamp(4rem, 10vw, 6rem);
  padding-bottom: clamp(4rem, 10vw, 6rem);
  padding-inline: var(--page-gutter);
}

.section-label {
  display: block;
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--color-orange-dark);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  color: var(--color-brown);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.section-head.center {
  text-align: center;
  max-width: 560px;
  margin-inline: auto 0;
}

.section-head.center .section-intro {
  margin-inline: auto;
}

.section-intro {
  color: var(--color-brown-soft);
  margin: 0;
  max-width: 480px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-text .lead {
  font-size: 1.15rem;
  color: var(--color-brown);
}

.about-stats {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-stats li {
  display: flex;
  flex-direction: column;
}

.about-stats strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-orange-dark);
}

.about-stats span {
  font-size: 0.9rem;
  color: var(--color-brown-soft);
}

.about-visual {
  position: relative;
}

.about-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--color-gold);
}

.about-card blockquote {
  margin: 0 0 1rem;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-brown);
}

.about-card cite {
  font-size: 0.9rem;
  color: var(--color-brown-soft);
  font-style: normal;
}

/* Premium Amenities — matches Features.tsx */
.premium-amenities {
  background: linear-gradient(to bottom, #ffffff, #f9fafb);
  padding: 4rem var(--page-gutter);
}

@media (min-width: 768px) {
  .premium-amenities {
    padding: 6rem var(--page-gutter);
  }
}

.amenities-premium-wrap {
  width: min(80rem, 100%);
  margin-inline: auto;
}

.amenities-features-head {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .amenities-features-head {
    margin-bottom: 4rem;
  }
}

.amenities-features-head__kicker {
  display: flex;
  justify-content: center;
}

.amenities-kicker-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.amenities-line {
  display: block;
  height: 1px;
  flex-shrink: 0;
}

.amenities-line--kicker {
  width: 3rem;
}

.amenities-line--section {
  width: 4rem;
}

.amenities-line--to-gold {
  background: linear-gradient(to right, transparent, #d4af37);
}

.amenities-line--from-gold {
  background: linear-gradient(to left, transparent, #d4af37);
}

.amenities-section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .amenities-section-heading {
    gap: 0.75rem;
    margin-bottom: 3rem;
  }
}

.amenities-features-block {
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .amenities-features-block {
    margin-bottom: 5rem;
  }
}

.amenities-features-block--last {
  margin-bottom: 0;
}

.amenities-eyebrow {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d4af37;
  white-space: nowrap;
}

.amenities-premium-title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 600;
  color: #0a1628;
  text-align: center;
  margin: 0 0 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.amenities-premium-sub {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 400;
  color: #4b5563;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.6;
}

.amenities-subheading {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 600;
  color: #0a1628;
  margin: 0;
  text-align: center;
  line-height: 1.25;
}

.premium-amenities-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 0;
}

@media (min-width: 768px) {
  .premium-amenities-grid {
    gap: 2rem;
  }
}

.premium-amenities-grid--comfort {
  grid-template-columns: 1fr;
}

.premium-amenities-grid--health {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .premium-amenities-grid--comfort {
    grid-template-columns: repeat(2, 1fr);
  }

  .premium-amenities-grid--health {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .premium-amenities-grid--comfort {
    grid-template-columns: repeat(3, 1fr);
  }

  .premium-amenities-grid--health {
    grid-template-columns: repeat(4, 1fr);
  }
}

.premium-amenity-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f4f6;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}

@media (min-width: 768px) {
  .premium-amenity-card {
    padding: 2rem;
  }
}

.premium-amenity-card:hover {
  z-index: 4;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-0.5rem);
}

.premium-amenity-card__wash {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to bottom right, rgba(212, 175, 55, 0.05), transparent);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.premium-amenity-card:hover .premium-amenity-card__wash {
  opacity: 1;
}

.premium-amenity-card__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.premium-amenity-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.12);
  transform-origin: center center;
  transition: transform 0.3s ease;
  backface-visibility: hidden;
}

@media (min-width: 768px) {
  .premium-amenity-icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.25rem;
  }
}

.premium-amenity-card:hover .premium-amenity-icon {
  transform: scale(1.1) rotate(3deg);
}

.premium-amenity-icon--blue {
  background: linear-gradient(to bottom right, #3b82f6, #1d4ed8);
}

.premium-amenity-icon--green {
  background: linear-gradient(to bottom right, #22c55e, #15803d);
}

.premium-amenity-name {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0a1628;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.premium-amenity-desc {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #4b5563;
  margin: 0;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .premium-amenity-desc {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .premium-amenity-card,
  .premium-amenity-card:hover,
  .premium-amenity-icon,
  .premium-amenity-card__wash {
    transition-duration: 0.01ms;
  }

  .premium-amenity-card:hover {
    transform: none;
  }

  .premium-amenity-card:hover .premium-amenity-icon {
    transform: none;
  }
}

@media (max-width: 520px) {
  .amenities-subheading {
    white-space: normal;
    max-width: min(100%, 16rem);
  }
}

/* Our Achievement — matches Stats.tsx */
.section-achievement {
  position: relative;
  overflow: hidden;
  padding: 4rem var(--page-gutter);
  background: linear-gradient(to bottom right, #0a1628, #1a2b45 45%, #1e3a8a);
  color: #fff;
}

@media (min-width: 768px) {
  .section-achievement {
    padding: 6rem var(--page-gutter);
  }
}

.achievement-section-decor {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.achievement-section-decor__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
}

.achievement-section-decor__blob--gold {
  top: 2.5rem;
  left: 2.5rem;
  width: 8rem;
  height: 8rem;
  background: #d4af37;
}

.achievement-section-decor__blob--blue {
  bottom: 2.5rem;
  right: 2.5rem;
  width: 10rem;
  height: 10rem;
  background: #3b82f6;
}

.achievement-wrap {
  position: relative;
  z-index: 10;
  width: min(80rem, 100%);
  margin-inline: auto;
}

.achievement-head {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .achievement-head {
    margin-bottom: 4rem;
  }
}

.achievement-kicker-wrap {
  display: flex;
  justify-content: center;
}

.achievement-kicker-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.achievement-line {
  display: block;
  height: 1px;
  width: 3rem;
  flex-shrink: 0;
}

.achievement-line--to-gold {
  background: linear-gradient(to right, transparent, #d4af37);
}

.achievement-line--from-gold {
  background: linear-gradient(to left, transparent, #d4af37);
}

.achievement-eyebrow {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d4af37;
  white-space: nowrap;
}

.achievement-title {
  font-family: "Inter", "Montserrat", system-ui, sans-serif;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.achievement-intro {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 400;
  color: #d1d5db;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.6;
}

.achievement-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: left;
}

@media (min-width: 768px) {
  .achievement-stats {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .achievement-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.achievement-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: left;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

@media (min-width: 768px) {
  .achievement-card {
    padding: 2rem;
    border-radius: 1rem;
  }
}

.achievement-card:hover {
  z-index: 4;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(212, 175, 55, 0.2);
  transform: scale(1.05);
}

.achievement-card__shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
  opacity: 0;
  transform: translateX(-100%);
  transition:
    opacity 0.5s ease-out,
    transform 0.7s ease-out;
  pointer-events: none;
  z-index: 1;
}

.group:hover .achievement-card__shine {
  opacity: 1;
  transform: translateX(100%);
}

.achievement-icon {
  position: relative;
  z-index: 2;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #ffffff;
  transform-origin: center center;
  transition: transform 0.3s ease;
  backface-visibility: hidden;
}

@media (min-width: 768px) {
  .achievement-icon {
    width: 4rem;
    height: 4rem;
  }
}

.group:hover .achievement-icon {
  transform: scale(1.1);
}

.achievement-icon-svg {
  width: 1.75rem;
  height: 1.75rem;
}

@media (min-width: 768px) {
  .achievement-icon-svg {
    width: 2rem;
    height: 2rem;
  }
}

.achievement-icon--gold {
  background: linear-gradient(to bottom right, #d4af37, #b8961f);
}

.achievement-icon--blue {
  background: linear-gradient(to bottom right, #2563eb, #1e40af);
}

.achievement-value {
  position: relative;
  z-index: 2;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: linear-gradient(to right, #ffffff, #d1d5db);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (min-width: 1024px) {
  .achievement-value {
    font-size: clamp(2.25rem, 3vw, 3rem);
  }
}

.achievement-label {
  position: relative;
  z-index: 2;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #d1d5db;
  margin: 0;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .achievement-label {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .achievement-card,
  .achievement-card:hover,
  .achievement-icon,
  .achievement-card__shine {
    transition-duration: 0.01ms;
  }

  .achievement-card:hover {
    transform: none;
  }

  .group:hover .achievement-icon {
    transform: none;
  }

  .group:hover .achievement-card__shine {
    opacity: 0;
    transform: none;
  }
}

/* Photo Gallery — Figma: bg #0A1628, orbs, gradient kicker, card hovers */
.section-photo-gallery {
  position: relative;
  overflow: hidden;
  padding: 4rem var(--page-gutter);
  background: #0a1628;
  color: #fff;
}

@media (min-width: 768px) {
  .section-photo-gallery {
    padding: 6rem var(--page-gutter);
  }
}

.gallery-section-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.gallery-section-decor__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.1;
}

.gallery-section-decor__blob--gold {
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: #d4af37;
}

.gallery-section-decor__blob--blue {
  bottom: 0;
  left: 0;
  width: 20rem;
  height: 20rem;
  background: #3b82f6;
}

.gallery-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .gallery-header {
    margin-bottom: 4rem;
  }
}

.gallery-kicker-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.gallery-kicker-line {
  display: block;
  width: 3rem;
  height: 1px;
  flex-shrink: 0;
}

.gallery-kicker-line--left {
  background: linear-gradient(to right, transparent, #d4af37);
}

.gallery-kicker-line--right {
  background: linear-gradient(to left, transparent, #d4af37);
}

.gallery-kicker-label {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4af37;
}

.gallery-title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.875rem, 5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.gallery-sub {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  font-weight: 400;
  color: #d1d5db;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.6;
}

.photo-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .photo-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.gallery-photo {
  position: relative;
  margin: 0;
  height: 16rem;
  border-radius: 1rem;
  overflow: hidden;
  background: #1e2a3a;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.35), 0 8px 10px -6px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

@media (min-width: 768px) {
  .gallery-photo {
    height: 20rem;
  }
}

.gallery-photo:hover {
  z-index: 2;
  transform: scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.55);
}

/* Bottom vignette on hover — from-[#0A1628]/80 via-transparent */
.gallery-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.8), transparent, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.gallery-photo:hover::before {
  opacity: 1;
}

/* Gold frame on hover */
.gallery-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid #d4af37;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.gallery-photo:hover::after {
  opacity: 1;
}

.gallery-photo img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.85, 0.35, 1);
}

.gallery-photo:hover img {
  transform: scale(1.1);
}

@media (prefers-reduced-motion: reduce) {
  .gallery-photo {
    transition-duration: 0.01ms;
  }

  .gallery-photo::before,
  .gallery-photo::after {
    transition: none !important;
    opacity: 0 !important;
  }

  .gallery-photo:hover {
    transform: none;
  }

  .gallery-photo:hover img {
    transform: none;
  }
}

/* Testimonials */
.section.section-testimonials {
  padding: 4rem var(--page-gutter);
  background: linear-gradient(to bottom, #ffffff, #fff8e7);
}

@media (min-width: 768px) {
  .section.section-testimonials {
    padding: 6rem var(--page-gutter);
  }
}

.testimonials-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.testimonials-kicker-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.testimonials-kicker-line {
  width: 3rem;
  height: 1px;
  flex-shrink: 0;
}

.testimonials-kicker-line--left {
  background: linear-gradient(to right, transparent, #d4af37);
}

.testimonials-kicker-line--right {
  background: linear-gradient(to left, transparent, #d4af37);
}

.testimonials-kicker-label {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4af37;
}

.testimonials-title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  color: #0a1628;
  margin: 0 0 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.testimonials-sub {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: #4b5563;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: left;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #f3f4f6;
  box-shadow:
    0 10px 15px -3px rgba(10, 22, 40, 0.08),
    0 4px 6px -4px rgba(10, 22, 40, 0.06);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}

@media (min-width: 768px) {
  .testimonial-card {
    padding: 2rem;
  }
}

.testimonial-card:hover {
  box-shadow:
    0 25px 50px -12px rgba(10, 22, 40, 0.15),
    0 12px 24px -8px rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-0.5rem);
}

.testimonial-card-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 5rem;
  height: 5rem;
  background: linear-gradient(to bottom left, rgba(212, 175, 55, 0.1), transparent);
  border-bottom-left-radius: 1.5rem;
  pointer-events: none;
}

.testimonial-quote-icon-wrap {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  opacity: 0.1;
  color: #d4af37;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover .testimonial-quote-icon-wrap {
  opacity: 0.2;
}

.testimonial-quote-svg {
  display: block;
  width: 3rem;
  height: 3rem;
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  padding-right: 2.5rem;
}

.testimonial-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #d4af37;
  box-shadow: 0 4px 12px rgba(10, 22, 40, 0.12);
}

.testimonial-id {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
}

.testimonial-name {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0a1628;
  margin: 0;
  line-height: 1.3;
}

.testimonial-job {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
  margin: 0;
}

.testimonial-company {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
  margin: 0;
}

.testimonial-stars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.testimonial-star-icon {
  flex-shrink: 0;
  display: block;
}

.testimonial-quote {
  margin: 0;
  padding: 0;
  border: none;
  position: relative;
  z-index: 1;
}

.testimonial-quote p {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.65;
  color: #374151;
  margin: 0;
}

@media (min-width: 768px) {
  .testimonial-quote p {
    font-size: 1rem;
  }
}

.testimonial-footer {
  padding-top: 1rem;
  margin-top: 0;
  border-top: 1px solid #f3f4f6;
  position: relative;
  z-index: 1;
}

.testimonial-tenure {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-card {
    transition: none;
  }

  .testimonial-card:hover {
    transform: none;
  }

  .testimonial-quote-icon-wrap {
    transition: none;
  }
}

/* Google Reviews + Instagram */
.section-google-social {
  background: #ffffff;
  padding: 4rem var(--page-gutter);
}

@media (min-width: 768px) {
  .section-google-social {
    padding: 6rem var(--page-gutter);
  }
}

.section-instagram-social {
  background: #f4f2ef;
  padding: clamp(3.5rem, 8vw, 5rem) var(--page-gutter);
  padding-top: clamp(2rem, 5vw, 3rem);
}

.instagram-feed-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.instagram-feed-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.ig-feed-kicker-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.ig-feed-kicker-line {
  width: 3rem;
  height: 1px;
  flex-shrink: 0;
}

.ig-feed-kicker-line--left {
  background: linear-gradient(to right, transparent, #d4af37);
}

.ig-feed-kicker-line--right {
  background: linear-gradient(to left, transparent, #d4af37);
}

.ig-feed-kicker-label {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4af37;
}

.instagram-feed-title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  color: #0a1628;
  margin: 0 0 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.instagram-feed-lead {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #4b5563;
  max-width: 42rem;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .instagram-feed-lead {
    font-size: 1.25rem;
  }
}

.btn-instagram-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.5rem;
  padding: 0 1.5rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  border-radius: 0.375rem;
  background: linear-gradient(to right, #db2777, #9333ea, #f97316);
  box-shadow:
    0 20px 25px -5px rgba(219, 39, 119, 0.25),
    0 8px 10px -6px rgba(147, 51, 234, 0.2);
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.btn-instagram-gradient:hover {
  color: #fff;
  background: linear-gradient(to right, #be185d, #7e22ce, #ea580c);
  box-shadow:
    0 25px 50px -12px rgba(219, 39, 119, 0.35),
    0 12px 24px -8px rgba(147, 51, 234, 0.25);
  transform: scale(1.05);
}

.btn-instagram-gradient:focus-visible {
  outline: 2px solid #db2777;
  outline-offset: 2px;
}

.btn-instagram-gradient__icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .btn-instagram-gradient {
    transition: none;
  }

  .btn-instagram-gradient:hover {
    transform: none;
  }
}

.instagram-profile-shell {
  max-width: 64rem;
  margin: 0 auto 3rem;
}

@media (min-width: 768px) {
  .instagram-profile-shell {
    margin-bottom: 3rem;
  }
}

.instagram-profile-card--panel {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid #f3f4f6;
  padding: 1.5rem;
  box-shadow:
    0 25px 50px -12px rgba(10, 22, 40, 0.18),
    0 12px 24px -8px rgba(10, 22, 40, 0.08);
}

@media (min-width: 768px) {
  .instagram-profile-card--panel {
    padding: 2rem;
  }
}

.instagram-profile-blob {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  pointer-events: none;
  background: linear-gradient(to bottom left, rgba(236, 72, 153, 0.1), rgba(168, 85, 247, 0.1), rgba(249, 115, 22, 0.1));
  filter: blur(48px);
  transform: translate(30%, -30%);
}

.instagram-profile-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .instagram-profile-row {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
}

.instagram-card-avatar--gradient {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(to top right, #db2777, #9333ea, #f97316);
  box-shadow:
    0 20px 25px -5px rgba(219, 39, 119, 0.3),
    0 8px 10px -6px rgba(147, 51, 234, 0.2);
}

@media (min-width: 768px) {
  .instagram-card-avatar--gradient {
    width: 6rem;
    height: 6rem;
  }
}

.instagram-card-avatar__ig {
  width: 2.5rem;
  height: 2.5rem;
}

@media (min-width: 768px) {
  .instagram-card-avatar__ig {
    width: 3rem;
    height: 3rem;
  }
}

.instagram-card-body {
  flex: 1;
  min-width: 0;
  text-align: center;
}

@media (min-width: 768px) {
  .instagram-card-body {
    text-align: left;
  }
}

.instagram-handle {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a1628;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .instagram-handle {
    font-size: 1.875rem;
  }
}

.instagram-bio {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #4b5563;
  line-height: 1.55;
  margin: 0 0 1rem;
}

@media (min-width: 768px) {
  .instagram-bio {
    font-size: 1.125rem;
  }
}

.instagram-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  font-family: "Inter", system-ui, sans-serif;
}

@media (min-width: 768px) {
  .instagram-stats {
    justify-content: flex-start;
    gap: 1.5rem;
  }
}

.ig-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #374151;
}

@media (min-width: 768px) {
  .ig-stat {
    font-size: 1rem;
  }
}

.ig-stat-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.ig-stat-icon--gold {
  color: #d4af37;
}

.ig-stat-icon--pink {
  color: #db2777;
}

.ig-stat-icon--blue {
  color: #2563eb;
}

.ig-stat-num {
  font-weight: 600;
  color: #0a1628;
}

.btn-instagram-visit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-shrink: 0;
  min-height: 2.5rem;
  padding: 0 1.5rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #db2777;
  background: transparent;
  border: 2px solid #db2777;
  border-radius: 0.375rem;
  text-decoration: none;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.btn-instagram-visit:hover {
  color: #fff;
  background: #db2777;
  border-color: #db2777;
}

.btn-instagram-visit:focus-visible {
  outline: 2px solid #db2777;
  outline-offset: 2px;
}

.btn-instagram-visit__icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.google-reviews-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.google-section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.google-kicker-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.google-kicker-line {
  width: 3rem;
  height: 1px;
  flex-shrink: 0;
}

.google-kicker-line--left {
  background: linear-gradient(to right, transparent, #d4af37);
}

.google-kicker-line--right {
  background: linear-gradient(to left, transparent, #d4af37);
}

.google-kicker-label {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4af37;
}

.google-section-title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  color: #0a1628;
  margin: 0 0 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.google-section-sub {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: #4b5563;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.6;
}

.google-reviews-narrow {
  max-width: 56rem;
  margin: 0 auto;
}

.google-reviews-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom right, #ffffff, #f9fafb);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid #f3f4f6;
  box-shadow:
    0 25px 50px -12px rgba(10, 22, 40, 0.18),
    0 12px 24px -8px rgba(10, 22, 40, 0.08);
  text-align: left;
}

@media (min-width: 768px) {
  .google-reviews-panel {
    padding: 3rem;
  }
}

.google-panel-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.google-panel-blob--gold {
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background: #d4af37;
  opacity: 0.05;
  filter: blur(48px);
  transform: translate(25%, -25%);
}

.google-panel-blob--blue {
  bottom: 0;
  left: 0;
  width: 12rem;
  height: 12rem;
  background: #3b82f6;
  opacity: 0.05;
  filter: blur(48px);
  transform: translate(-25%, 25%);
}

.google-reviews-panel-content {
  position: relative;
  z-index: 1;
}

.google-reviews-panel-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .google-reviews-panel-head {
    flex-direction: row;
    align-items: center;
  }
}

.google-brand-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 768px) {
  .google-brand-block {
    width: auto;
    flex: 1;
    min-width: 0;
  }
}

.google-g-circle {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 15px -3px rgba(10, 22, 40, 0.12), 0 4px 6px -4px rgba(10, 22, 40, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .google-g-circle {
    width: 5rem;
    height: 5rem;
  }
}

.google-g-svg {
  width: 2.5rem;
  height: 2.5rem;
  display: block;
}

@media (min-width: 768px) {
  .google-g-svg {
    width: 3rem;
    height: 3rem;
  }
}

.google-brand-text {
  text-align: center;
  min-width: 0;
}

@media (min-width: 768px) {
  .google-brand-text {
    text-align: left;
  }
}

.google-reviews-label {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #374151;
  margin: 0 0 0.25rem;
}

@media (min-width: 768px) {
  .google-reviews-label {
    font-size: 1.25rem;
  }
}

.google-rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .google-rating-row {
    justify-content: flex-start;
  }
}

.google-stars-row {
  display: flex;
  gap: 0.125rem;
}

.google-star-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  display: block;
}

@media (min-width: 768px) {
  .google-star-icon:not(.google-star-icon--sm) {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.google-star-icon--sm {
  width: 1rem;
  height: 1rem;
}

.google-score {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a1628;
  line-height: 1;
}

@media (min-width: 768px) {
  .google-score {
    font-size: 1.875rem;
  }
}

.google-reviews-meta {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
  margin: 0;
}

@media (min-width: 768px) {
  .google-reviews-meta {
    font-size: 1rem;
  }
}

.btn-google-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  padding: 0.625rem 1.5rem;
  min-height: 2.5rem;
  border-radius: 0.375rem;
  text-decoration: none;
  white-space: nowrap;
  background: linear-gradient(to right, #2563eb, #1d4ed8);
  box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.25), 0 8px 10px -6px rgba(37, 99, 235, 0.2);
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.btn-google-all:hover {
  color: #fff;
  background: linear-gradient(to right, #1d4ed8, #1e40af);
  box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.35);
  transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
  .btn-google-all {
    transition: none;
  }

  .btn-google-all:hover {
    transform: none;
  }
}

.google-mini-reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .google-mini-reviews {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.google-mini-card {
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: 0 4px 6px -1px rgba(10, 22, 40, 0.08), 0 2px 4px -2px rgba(10, 22, 40, 0.06);
}

.google-mini-stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 0.75rem;
}

.google-mini-text {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-style: italic;
  line-height: 1.6;
  color: #374151;
  margin: 0 0 0.75rem;
}

@media (min-width: 768px) {
  .google-mini-text {
    font-size: 1rem;
  }
}

.google-mini-author {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.75rem;
  color: #6b7280;
  margin: 0;
}

@media (min-width: 768px) {
  .google-mini-author {
    font-size: 0.875rem;
  }
}

.google-panel-footer {
  border-left: 4px solid #d4af37;
  padding: 1.5rem;
  background: linear-gradient(to right, rgba(212, 175, 55, 0.1), transparent);
  border-radius: 0.75rem;
}

.google-footer-msg {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  margin: 0 0 0.5rem;
  line-height: 1.55;
}

@media (min-width: 768px) {
  .google-footer-msg {
    font-size: 1.125rem;
  }
}

.google-footer-loc {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  color: #4b5563;
  margin: 0;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .google-footer-loc {
    font-size: 1rem;
  }
}

.google-footer-pin {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: inherit;
}

/* Instagram highlights grid */
.ig-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  width: 100%;
}

@media (min-width: 768px) {
  .ig-highlights-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.ig-highlight-tile {
  position: relative;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow:
    0 10px 15px -3px rgba(10, 22, 40, 0.12),
    0 4px 6px -4px rgba(10, 22, 40, 0.08);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ig-highlight-tile:hover {
  transform: scale(1.05);
  box-shadow:
    0 25px 50px -12px rgba(10, 22, 40, 0.2),
    0 12px 24px -8px rgba(10, 22, 40, 0.12);
}

.ig-hl-gradient {
  position: absolute;
  inset: 0;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.ig-highlight-tile:hover .ig-hl-gradient {
  opacity: 1;
}

.ig-hl-tile--blue .ig-hl-gradient {
  background: linear-gradient(to bottom right, #60a5fa, #2563eb);
}

.ig-hl-tile--purple .ig-hl-gradient {
  background: linear-gradient(to bottom right, #c084fc, #9333ea);
}

.ig-hl-tile--orange .ig-hl-gradient {
  background: linear-gradient(to bottom right, #fb923c, #ea580c);
}

.ig-hl-tile--green .ig-hl-gradient {
  background: linear-gradient(to bottom right, #4ade80, #16a34a);
}

.ig-hl-tile--pink .ig-hl-gradient {
  background: linear-gradient(to bottom right, #f472b6, #db2777);
}

.ig-hl-tile--yellow .ig-hl-gradient {
  background: linear-gradient(to bottom right, #facc15, #ca8a04);
}

.ig-hl-tile--indigo .ig-hl-gradient {
  background: linear-gradient(to bottom right, #818cf8, #4f46e5);
}

.ig-hl-tile--red .ig-hl-gradient {
  background: linear-gradient(to bottom right, #f87171, #dc2626);
}

.ig-hl-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 0;
  padding: 1rem;
  color: #fff;
  text-align: center;
}

.ig-hl-emoji {
  font-size: clamp(2.25rem, 8vw, 3rem);
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .ig-hl-emoji {
    font-size: clamp(2.25rem, 4vw, 3rem);
  }
}

.ig-hl-label {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.35;
}

@media (min-width: 768px) {
  .ig-hl-label {
    font-size: 1rem;
  }
}

.ig-hl-hover-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  transition:
    background 0.3s ease,
    opacity 0.3s ease;
  pointer-events: none;
}

.ig-highlight-tile:hover .ig-hl-hover-overlay {
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.ig-hl-ig-icon {
  width: 2rem;
  height: 2rem;
  color: #fff;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .ig-highlight-tile {
    transition: none;
  }

  .ig-highlight-tile:hover {
    transform: none;
  }
}

.ig-section-footer {
  padding-bottom: 0.25rem;
}

.instagram-feed-cta {
  margin-top: 3rem;
  text-align: center;
}

.ig-footer-tagline {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #4b5563;
  margin: 0 0 1rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .ig-footer-tagline {
    font-size: 1.125rem;
  }
}

.btn-follow-ig-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.5rem;
  padding: 0 1.5rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0a1628;
  background: transparent;
  border: 2px solid #d4af37;
  border-radius: 0.375rem;
  text-decoration: none;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.btn-follow-ig-gold:hover {
  color: #fff;
  background: #d4af37;
  border-color: #d4af37;
}

.btn-follow-ig-gold:focus-visible {
  outline: 2px solid #d4af37;
  outline-offset: 2px;
}

.btn-follow-ig-gold .ig-outline-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
}

@media (prefers-reduced-motion: reduce) {
  .btn-follow-ig-gold {
    transition: none;
  }
}

@media (max-width: 768px) {
  .google-reviews-panel-head {
    flex-direction: column;
    align-items: center;
  }

  .google-brand-block {
    justify-content: center;
  }

  .btn-google-all {
    width: 100%;
    max-width: 20rem;
    justify-content: center;
  }

  .btn-instagram-visit {
    width: 100%;
    max-width: 20rem;
  }
}

/* Prime Location */
.section.section-prime-location {
  background: #f9fafb;
  padding: 3rem var(--page-gutter);
}

@media (min-width: 768px) {
  .section.section-prime-location {
    padding: 5rem var(--page-gutter);
  }
}

.location-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.prime-loc-header {
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .prime-loc-header {
    margin-bottom: 3rem;
  }
}

.prime-loc-title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.75rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .prime-loc-title {
    margin-bottom: 1rem;
  }
}

.prime-loc-lead {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #4b5563;
  margin: 0 0 0.5rem;
  line-height: 1.55;
}

@media (min-width: 768px) {
  .prime-loc-lead {
    font-size: 1.25rem;
  }
}

.prime-loc-address {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  margin: 0 0 0.5rem;
  line-height: 1.55;
}

@media (min-width: 768px) {
  .prime-loc-address {
    font-size: 1.125rem;
  }
}

.prime-loc-anchor {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prime-loc-anchor:hover {
  color: #1d4ed8;
}

@media (min-width: 768px) {
  .prime-loc-anchor {
    font-size: 1rem;
  }
}

.prime-loc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .prime-loc-grid {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .prime-loc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.prime-loc-card {
  background: #ffffff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(10, 22, 40, 0.08), 0 2px 4px -2px rgba(10, 22, 40, 0.06);
}

@media (min-width: 768px) {
  .prime-loc-card {
    padding: 2rem;
  }
}

.prime-loc-card-title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .prime-loc-card-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.prime-loc-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .prime-loc-stack {
    gap: 1.5rem;
  }
}

.prime-loc-block {
  margin: 0;
}

.prime-loc-subtitle {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.5rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .prime-loc-subtitle {
    font-size: 1.125rem;
  }
}

.prime-metro-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.prime-metro-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem;
  background: #f9fafb;
  border-radius: 0.25rem;
}

.prime-metro-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
}

.prime-metro-name {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
  margin: 0;
  line-height: 1.35;
}

@media (min-width: 768px) {
  .prime-metro-name {
    font-size: 1rem;
  }
}

.prime-metro-line {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #4b5563;
  margin: 0;
}

@media (min-width: 768px) {
  .prime-metro-line {
    font-size: 0.875rem;
  }
}

.prime-metro-dist {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #2563eb;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .prime-metro-dist {
    font-size: 0.875rem;
  }
}

.prime-loc-text {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .prime-loc-text {
    font-size: 1rem;
  }
}

.btn-prime-directions {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  background: #2563eb;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-prime-directions:hover {
  color: #fff;
  background: #1d4ed8;
}

@media (min-width: 768px) {
  .btn-prime-directions {
    font-size: 1rem;
  }
}

.prime-map-wrap {
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(10, 22, 40, 0.08), 0 2px 4px -2px rgba(10, 22, 40, 0.06);
  overflow: hidden;
  height: 400px;
  min-height: 0;
}

@media (min-width: 768px) {
  .prime-map-wrap {
    height: 500px;
  }
}

.prime-map-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* FAQ — matches FAQ.tsx layout */
.faq-section {
  padding: 3rem var(--page-gutter);
}

@media (min-width: 768px) {
  .faq-section {
    padding: 5rem var(--page-gutter);
  }
}

.faq-inner {
  max-width: 56rem;
  margin-inline: auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .faq-header {
    margin-bottom: 3rem;
  }
}

.faq-title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #111827;
  margin: 0 0 0.75rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .faq-title {
    margin-bottom: 1rem;
  }
}

.faq-intro {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.0625rem, 2.2vw, 1.25rem);
  color: #4b5563;
  margin: 0;
  line-height: 1.5;
}

.faq-panel {
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-details {
  margin: 0;
}

.faq-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1rem;
  text-align: left;
  background: transparent;
  border: none;
  transition: background-color 0.15s ease;
}

@media (min-width: 768px) {
  .faq-summary {
    padding: 1.5rem 1.5rem;
  }
}

.faq-summary:hover {
  background: #f9fafb;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-q {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #111827;
  margin: 0;
  padding-right: 1rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .faq-q {
    padding-right: 2rem;
  }
}

.faq-chevron-wrap {
  position: relative;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
}

.faq-chevron {
  position: absolute;
  inset: 0;
  width: 1.25rem;
  height: 1.25rem;
}

.faq-chevron-up {
  display: none;
  color: #2563eb;
}

.faq-chevron-down {
  display: block;
  color: #9ca3af;
}

.faq-details[open] .faq-chevron-up {
  display: block;
}

.faq-details[open] .faq-chevron-down {
  display: none;
}

.faq-answer {
  padding: 0 1rem 1rem;
}

@media (min-width: 768px) {
  .faq-answer {
    padding: 0 1.5rem 1.5rem;
  }
}

.faq-answer p {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  font-weight: 400;
  color: #4b5563;
  line-height: 1.625;
  margin: 0;
}

.faq-cta {
  margin-top: 2rem;
  text-align: center;
  background: #eff6ff;
  border-radius: 0.5rem;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .faq-cta {
    margin-top: 3rem;
    padding: 2rem;
  }
}

.faq-cta-title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 800;
  color: #111827;
  margin: 0 0 0.75rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .faq-cta-title {
    margin-bottom: 1rem;
  }
}

.faq-cta-text {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  color: #4b5563;
  line-height: 1.6;
  margin: 0 auto 1rem;
  max-width: 36rem;
}

@media (min-width: 768px) {
  .faq-cta-text {
    margin-bottom: 1.5rem;
  }
}

.faq-cta-actions {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .faq-cta-actions {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: background-color 0.15s ease, filter 0.15s ease;
}

.faq-cta-btn--contact {
  background: #2563eb;
}

.faq-cta-btn--contact:hover {
  background: #1d4ed8;
  color: #ffffff;
}

.faq-cta-btn--wa {
  background: #22c55e;
}

.faq-cta-btn--wa:hover {
  background: #16a34a;
  color: #ffffff;
}

@media (min-width: 640px) {
  .faq-cta-btn {
    min-width: 10rem;
  }
}

/* Contact form — matches ContactForm.tsx */
.contact-form-section {
  padding: 4rem var(--page-gutter);
  background: linear-gradient(to bottom, #f9fafb, #ffffff);
}

@media (min-width: 768px) {
  .contact-form-section {
    padding: 6rem var(--page-gutter);
  }
}

.contact-form-inner {
  max-width: 42rem;
  margin-inline: auto;
}

.contact-form-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .contact-form-head {
    margin-bottom: 3rem;
  }
}

.contact-form-kicker-wrap {
  display: inline-block;
  margin-bottom: 1rem;
}

.contact-form-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-form-kicker-line {
  height: 1px;
  width: 3rem;
  flex-shrink: 0;
}

.contact-form-kicker-line--left {
  background: linear-gradient(to right, transparent, #d4af37);
}

.contact-form-kicker-line--right {
  background: linear-gradient(to left, transparent, #d4af37);
}

.contact-form-kicker-label {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4af37;
}

.contact-form-title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  color: #0a1628;
  margin: 0 0 1rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.contact-form-sub {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #4b5563;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 36rem;
}

.contact-form-panel {
  text-align: left;
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .contact-form-panel {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  color: #0f172a;
  cursor: pointer;
}

.contact-form-label--plain {
  display: block;
}

.contact-form-label-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: #64748b;
}

.contact-form-input {
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 2.25rem;
  padding: 0.25rem 0.75rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  color: #0f172a;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

@media (min-width: 768px) {
  .contact-form-input {
    font-size: 0.875rem;
  }
}

.contact-form-input::placeholder {
  color: #94a3b8;
}

.contact-form-input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.contact-form-textarea {
  resize: none;
  min-height: 4rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  line-height: 1.5;
}

.contact-form-select-wrap {
  position: relative;
}

.contact-form-select {
  appearance: none;
  cursor: pointer;
  padding-right: 2.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  background-size: 1rem 1rem;
}

.contact-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.5rem;
  padding: 0 1.5rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  background: #2563eb;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.contact-form-submit:hover {
  background: #1d4ed8;
}

.contact-form-submit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.35);
}

.contact-form-note {
  min-height: 1.5rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  margin: 0;
  text-align: center;
}

.contact-form-note--success {
  color: #16a34a;
  font-weight: 600;
}

/* CTA + Location */
.cta-banner {
  background: linear-gradient(135deg, var(--color-brown) 0%, #3d2e22 100%);
  color: var(--color-cream);
}

.cta-banner > .container:first-of-type {
  padding-bottom: 0;
  text-align: center;
}

.location-heading {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
  margin: 0 0 0.5rem;
  scroll-margin-top: var(--sticky-top-total);
}

.location-address {
  margin: 0 0 2rem;
  opacity: 0.9;
  font-size: 1rem;
  max-width: 560px;
  margin-inline: auto;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.cta-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.75rem;
  color: var(--color-white);
}

.cta-copy p {
  margin: 0;
  opacity: 0.9;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cta-form input,
.cta-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: rgba(255, 249, 244, 0.55);
}

.cta-form .btn-primary {
  margin-top: 0.25rem;
}

.form-note {
  min-height: 1.5rem;
  font-size: 0.9rem;
  margin: 0;
}

.form-note.success {
  color: var(--color-gold);
}

/* Footer — matches Footer.tsx */
.site-footer--next {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: 3rem var(--page-gutter);
  background: linear-gradient(to bottom right, #0a1628 0%, #1a2b45 50%, #0a1628 100%);
}

@media (min-width: 768px) {
  .site-footer--next {
    padding: 4rem var(--page-gutter);
  }
}

.site-footer__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(64px);
}

.site-footer__blob--gold {
  top: 0;
  left: 25%;
  width: 16rem;
  height: 16rem;
  background: #d4af37;
  opacity: 0.05;
}

.site-footer__blob--blue {
  bottom: 0;
  right: 25%;
  width: 20rem;
  height: 20rem;
  background: #3b82f6;
  opacity: 0.05;
}

.site-footer__inner {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin-inline: auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem;
  }
}

.site-footer__col--brand {
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer__col--brand {
    text-align: left;
  }
}

.site-footer__logo {
  height: 8rem;
  width: auto;
  max-width: 100%;
  margin: 0 auto 1rem;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}

@media (min-width: 768px) {
  .site-footer__logo {
    height: 10rem;
    margin-left: 0;
    margin-right: 0;
  }
}

.site-footer__brand {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.site-footer__tagline {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #d1d5db;
  line-height: 1.5;
  margin: 0 0 1rem;
  max-width: 36rem;
}

.site-footer__col--brand .site-footer__tagline {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .site-footer__col--brand .site-footer__tagline {
    margin-left: 0;
    margin-right: 0;
  }
}

.site-footer__desc {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #9ca3af;
  line-height: 1.6;
  margin: 0 0 1.5rem;
  max-width: 36rem;
}

.site-footer__col--brand .site-footer__desc {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .site-footer__col--brand .site-footer__desc {
    margin-left: 0;
    margin-right: 0;
  }
}

.site-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .site-footer__social {
    justify-content: flex-start;
  }
}

.site-footer__social-ig {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(to top right, #db2777, #9333ea, #f97316);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-footer__social-ig:hover {
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.site-footer__social-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.site-footer__social-google {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-footer__social-google:hover {
  transform: scale(1.1);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.site-footer__social-star {
  width: 1.5rem;
  height: 1.5rem;
  color: #facc15;
  fill: #facc15;
  stroke: #facc15;
}

.site-footer__heading {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #d4af37;
  margin: 0 0 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer__heading {
    text-align: left;
  }
}

.site-footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-footer__contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #d1d5db;
  line-height: 1.5;
  transition: color 0.15s ease;
}

.site-footer__contact-row:hover {
  color: #d4af37;
}

.site-footer__contact-row--phones {
  align-items: center;
}

.site-footer__contact-row a {
  color: inherit;
  text-decoration: none;
}

.site-footer__contact-row a:hover {
  color: #d4af37;
}

.site-footer__row-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: rgba(255, 255, 255, 0.85);
}

.site-footer__row-icon--vc {
  margin-top: 0;
}

.site-footer__contact-row:hover .site-footer__row-icon {
  color: inherit;
}

.site-footer__phones p {
  margin: 0;
  line-height: 1.5;
}

.site-footer__phones p + p {
  margin-top: 0.25rem;
}

.site-footer__hours {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: #d1d5db;
}

.site-footer__hours-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.site-footer__hours-text {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.5;
}

.site-footer__hours-text p {
  margin: 0;
}

.site-footer__hours-text p + p {
  margin-top: 0.25rem;
}

.site-footer__bar {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer__bar {
    margin-top: 3rem;
    flex-direction: row;
    text-align: left;
  }
}

.site-footer__copy {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  color: #9ca3af;
  margin: 0;
  line-height: 1.5;
  max-width: 48rem;
}

.site-footer__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .site-footer__badge {
    justify-content: flex-end;
  }
}

.site-footer__pulse {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: #d4af37;
  flex-shrink: 0;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

.site-footer__badge-label {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  color: #9ca3af;
}

.footer-wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 95;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-wa-float:hover {
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

@media (max-width: 767px) {
  .site-footer__contact-list,
  .site-footer__hours {
    max-width: 22rem;
    margin-inline: auto;
  }

  .site-footer__contact-row {
    text-align: left;
  }
}

@media (max-width: 768px) {
  :root {
    --announcement-h: 52px;
    --nav-bar-h: 82px;
  }

  .nav-toggle {
    display: flex;
    z-index: 140;
  }

  .brand-tagline {
    display: none;
  }

  .brand-logo {
    height: 62px;
    max-width: 200px;
  }

  .brand-block {
    gap: 0.65rem;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 88vw);
    height: 100vh;
    background: var(--color-white);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
    padding: calc(var(--sticky-top-total) + 1rem) 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 130;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    z-index: 110;
  }

  .footer-wa-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .footer-wa-float svg {
    width: 26px;
    height: 26px;
  }
}

/* Extra mobile hardening for narrow phones */
@media (max-width: 640px) {
  html,
  body {
    overflow-x: clip;
  }

  .header-inner {
    min-height: var(--nav-bar-h);
    padding: 0.25rem 0 0.4rem;
    gap: 0.75rem;
  }

  .main-nav {
    width: min(280px, 90vw);
    padding: calc(var(--sticky-top-total) + 0.75rem) 1rem 1.5rem;
  }

  .main-nav .nav-list {
    gap: 1rem;
  }

  .hero {
    height: auto;
    min-height: 540px;
    padding-top: 1.25rem;
    padding-bottom: 2rem;
  }

  .hero-blob--gold {
    top: 2.25rem;
    left: 1rem;
    width: 10rem;
    height: 10rem;
  }

  .hero-blob--blue {
    right: 1rem;
    bottom: 2rem;
    width: 11rem;
    height: 11rem;
  }

  .hero-title br {
    display: none;
  }

  .hero-meta {
    max-width: 34rem;
    margin-bottom: 1.5rem;
  }

  .hero-pills {
    gap: 0.6rem;
    margin-bottom: 1.5rem;
  }

  .hero-pill {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .faq-q,
  .testimonial-name,
  .site-footer__copy,
  .prime-loc-address {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 420px) {
  :root {
    --announcement-h: 56px;
    --nav-bar-h: 76px;
  }

  .brand-logo {
    height: 56px;
    max-width: 176px;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .hero {
    min-height: 500px;
    padding-top: 1rem;
  }

  .hero-title {
    font-size: clamp(1.75rem, 9vw, 2.1rem);
    line-height: 1.2;
  }

  .hero-sub {
    font-size: clamp(1rem, 5.4vw, 1.25rem);
  }

  .hero-meta {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .btn-hero-gold,
  .btn-hero-wa {
    padding: 0.9rem 1rem;
  }
}
