/* ========================================================================
   Birdies & Beaches — Mobile Golf · San Diego
   Fun · sporty · upscale · family-friendly · SoCal
   ======================================================================== */

:root {
  /* Brand palette */
  --sunset:      #ff6b47;   /* primary coral */
  --sunset-700:  #e54a26;
  --peach:       #ffb088;
  --peach-light: #ffd4b8;
  --cream:       #fff8ee;   /* page background */
  --cream-200:   #ffeed6;
  --cream-300:   #ffe0b8;
  --ocean:       #0d9488;   /* primary teal */
  --ocean-700:   #0c6e64;
  --ocean-light: #14b8a6;
  --ocean-50:    #e6f7f4;
  --navy:        #0a1f3d;
  --navy-700:    #142d4f;
  --sun:         #fbbf24;
  --sun-light:   #fde68a;
  --sage:        #84cc16;
  --paper:       #ffffff;
  --ink:         #181818;
  --slate:       #5b6776;
  --slate-light: #8a96a3;
  --line:        rgba(10, 31, 61, 0.10);
  --line-strong: rgba(10, 31, 61, 0.18);
  --shadow-soft: 0 24px 60px -28px rgba(10, 31, 61, 0.30);
  --shadow-md:   0 12px 32px -16px rgba(10, 31, 61, 0.20);
  --shadow-sm:   0 4px 14px -6px rgba(10, 31, 61, 0.15);

  --radius-sm:  8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 999px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--ocean-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--sunset); }

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', 'Outfit', 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 0.5rem;
  color: var(--navy);
}
h1 { font-size: clamp(2.6rem, 5.6vw, 4.6rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 700; }
h3 { font-size: 1.4rem; font-weight: 600; }
p  { margin: 0 0 1rem; color: var(--slate); }

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

/* ---------- Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 238, 0.92);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Bricolage Grotesque', 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.logo .amp { color: var(--sunset); margin: 0 2px; }
.logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.logo-img {
  height: 64px;
  width: auto;
  display: block;
  transition: transform .3s ease;
}
.logo-img:hover { transform: scale(1.04); }
.site-footer .logo-img { height: 84px; }
@media (max-width: 920px) {
  .logo-img { height: 52px; }
  .site-footer .logo-img { height: 72px; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.96rem;
  padding: 6px 0;
  position: relative;
  transition: color .2s;
}
.nav-links a:hover { color: var(--sunset); }
.nav-links a.active { color: var(--sunset); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 3px;
  background: var(--sunset);
  border-radius: 2px;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--cream) !important;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.92rem;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--sunset); color: var(--cream) !important; transform: translateY(-1px); }
.menu-btn {
  display: none;
  background: var(--paper);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  cursor: pointer;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 600;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s, box-shadow .2s;
  text-align: center;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: var(--sunset);
  color: var(--paper);
  border-color: var(--sunset);
  box-shadow: 0 10px 24px -10px rgba(255, 107, 71, 0.6);
}
.btn-primary:hover { background: var(--sunset-700); border-color: var(--sunset-700); color: var(--paper); transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: var(--cream); transform: translateY(-2px); }
.btn-cream {
  background: var(--paper);
  color: var(--navy);
  border-color: var(--paper);
}
.btn-cream:hover { background: var(--sunset); color: var(--paper); border-color: var(--sunset); transform: translateY(-2px); }
.btn-ocean {
  background: var(--ocean);
  color: var(--paper);
  border-color: var(--ocean);
  box-shadow: 0 10px 24px -10px rgba(13, 148, 136, 0.5);
}
.btn-ocean:hover { background: var(--ocean-700); border-color: var(--ocean-700); color: var(--paper); transform: translateY(-2px); }

/* ---------- Tag / pill ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-200);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 600;
}
.tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sunset); }
.tag.coral  { background: #ffe1d6; color: var(--sunset-700); }
.tag.teal   { background: var(--ocean-50); color: var(--ocean-700); }
.tag.sun    { background: var(--sun-light); color: #92400e; }
.tag.sage   { background: #ecfccb; color: #4d7c0f; }
.tag.navy   { background: var(--navy); color: var(--cream); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 110px;
  background: var(--cream);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 70% at 90% 10%, rgba(255, 176, 136, 0.35), transparent 60%),
    radial-gradient(50% 60% at 5% 95%, rgba(20, 184, 166, 0.18), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero h1 {
  margin: 22px 0 22px;
  letter-spacing: -0.03em;
}
.hero h1 .underline {
  color: var(--sunset);
  position: relative;
  display: inline-block;
}
.hero h1 .underline::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 8px;
  background: var(--sun);
  z-index: -1;
  border-radius: 2px;
}
.hero .lede {
  font-size: 1.18rem;
  color: var(--slate);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stats .item strong {
  display: block;
  font-family: 'Bricolage Grotesque', 'Outfit', sans-serif;
  font-size: 1.7rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stats .item span {
  font-size: 0.82rem;
  color: var(--slate);
  font-weight: 500;
}

/* hero visual */
.hero-card-wrap {
  position: relative;
}
.hero-stamp {
  position: absolute;
  width: 210px;
  height: 210px;
  top: -38px;
  left: -68px;
  z-index: 10;
  transform: rotate(-10deg);
  filter: drop-shadow(0 14px 28px rgba(10, 31, 61, 0.35));
  transition: transform .4s ease;
  pointer-events: auto;
  object-fit: contain;
}
.hero-stamp:hover { transform: rotate(-3deg) scale(1.04); }

@media (max-width: 920px) {
  .hero-stamp {
    width: 150px;
    height: 150px;
    top: -28px;
    left: auto;
    right: -12px;
  }
}

.hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ocean);
  box-shadow: var(--shadow-soft);
  transform: rotate(2deg);
  transition: transform .3s ease;
}
.hero-card:hover { transform: rotate(0deg); }
.hero-card .hero-img {
  position: absolute;
  inset: 0;
  background-image: url('photo-tent-sunset-beach.jpg');
  background-size: cover;
  background-position: center;
}
.hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 31, 61, 0.6));
}
.hero-card .badge {
  position: absolute;
  z-index: 3;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
}
.hero-card .badge .badge-dot {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.hero-card .badge-1 { top: 24px; left: -16px; transform: rotate(-3deg); }
.hero-card .badge-1 .badge-dot { background: var(--cream-200); color: var(--sunset); }
.hero-card .badge-2 { bottom: 28px; right: -16px; transform: rotate(2deg); }
.hero-card .badge-2 .badge-dot { background: var(--ocean-50); color: var(--ocean-700); }

/* decorative sun */
.sun-deco {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--sun), var(--sunset) 70%);
  filter: blur(2px);
  opacity: 0.55;
  z-index: 1;
  pointer-events: none;
}

/* ---------- Wave divider ---------- */
.wave {
  display: block;
  width: 100%;
  height: 70px;
  line-height: 0;
}
.wave svg { width: 100%; height: 100%; display: block; }

/* ---------- Section base ---------- */
section.section {
  padding: 100px 0;
  position: relative;
}
.section-head {
  max-width: 740px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-head .tag { margin-bottom: 16px; }
.section-head h2 { margin-bottom: 14px; letter-spacing: -0.02em; }
.section-head p { font-size: 1.1rem; }

/* ---------- Cards grid ---------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card .icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  font-size: 1.4rem;
  background: var(--cream-200);
  color: var(--sunset);
}
.card.coral .icon { background: #ffe1d6; color: var(--sunset-700); }
.card.teal  .icon { background: var(--ocean-50); color: var(--ocean-700); }
.card.sun   .icon { background: var(--sun-light); color: #b45309; }
.card.sage  .icon { background: #ecfccb; color: #4d7c0f; }
.card.peach .icon { background: var(--peach-light); color: var(--sunset-700); }
.card.navy  .icon { background: #d4dce8; color: var(--navy); }
.card h3 { margin-bottom: 10px; color: var(--navy); }
.card p { color: var(--slate); margin-bottom: 0; font-size: 0.97rem; line-height: 1.65; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--sunset);
  color: var(--paper);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 50%;
  margin-bottom: 18px;
}
.step:nth-child(2) .num { background: var(--ocean); box-shadow: 0 6px 16px -6px rgba(13, 148, 136, 0.5); }
.step:nth-child(3) .num { background: var(--sun); color: var(--navy); }
.step:nth-child(4) .num { background: var(--navy); }
.step h3 { margin-bottom: 8px; font-size: 1.2rem; }
.step p { font-size: 0.95rem; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}
.pricing-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}
.pricing-grid-4 .price { padding: 34px 26px; }
.pricing-grid-4 .price h3 { font-size: 1.45rem; }
.pricing-grid-4 .price .amount { font-size: 2.4rem; }
.pricing-grid-4 .price li { font-size: 0.92rem; }
.pricing-grid-4 .price .subtitle { font-size: 0.88rem; }

/* Single featured weekend card */
.price-feature {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
  color: var(--cream);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.price-feature .pf-body { padding: 50px 48px; display: flex; flex-direction: column; gap: 20px; position: relative; z-index: 1; }
.price-feature .pf-body h3 { color: var(--cream); font-size: 2rem; }
.price-feature .pf-body p { color: rgba(255, 248, 238, 0.78); font-size: 1.05rem; }
.price-feature .pf-body .amount { color: var(--cream); border-top-color: rgba(255, 248, 238, 0.18); }
.price-feature .pf-body .amount small { color: var(--sun-light); }
.price-feature .pf-body ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.price-feature .pf-body li {
  display: flex;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255, 248, 238, 0.88);
  line-height: 1.55;
}
.price-feature .pf-body li::before {
  content: '';
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(251, 191, 36, 0.2) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fbbf24' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/12px no-repeat;
}
.price-feature .pf-img {
  background-image: url('photo-tent-firepit.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}
.price-feature .pf-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 31, 61, 0.4) 0%, transparent 30%);
}
.price-feature .pf-tag {
  display: inline-flex;
  width: fit-content;
  background: var(--sun);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.price {
  background: var(--paper);
  border-radius: var(--radius-xl);
  padding: 42px 36px;
  border: 2px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .2s;
}
.price:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--sunset);
}
.price.featured {
  background: linear-gradient(180deg, var(--navy), var(--navy-700));
  color: var(--cream);
  border-color: var(--navy);
}
.price.featured:hover { border-color: var(--sun); }
.price.featured h3,
.price.featured .amount { color: var(--cream); }
.price.featured .subtitle { color: rgba(255, 248, 238, 0.7); }
.price.featured .amount small { color: var(--sun-light); }
.price.featured li { color: rgba(255, 248, 238, 0.88); }

.price-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  background: var(--cream-200);
  color: var(--sunset-700);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
}
.price.featured .price-tag { background: var(--sun); color: var(--navy); }
.feat-pill {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sunset);
  color: var(--paper);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px -6px rgba(255, 107, 71, 0.5);
}
.price h3 { font-size: 1.7rem; }
.price .subtitle {
  font-size: 0.95rem;
  color: var(--slate);
  margin: 0;
}
.amount {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  padding-top: 12px;
  border-top: 2px solid var(--line);
}
.amount small {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-light);
  margin-left: 6px;
}
.price.featured .amount { border-top-color: rgba(255, 248, 238, 0.18); }
.price ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.price li {
  display: flex;
  gap: 12px;
  font-size: 0.96rem;
  color: var(--slate);
  line-height: 1.6;
}
.price li::before {
  content: '';
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--ocean-50) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d9488' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/12px no-repeat;
}
.price.featured li::before {
  background-color: rgba(251, 191, 36, 0.2);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fbbf24' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery .tile {
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease;
  box-shadow: var(--shadow-sm);
}
.gallery .tile::after {
  content: attr(data-label);
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: var(--paper);
  color: var(--navy);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s;
}
.gallery .tile:hover { transform: scale(1.02); }
.gallery .tile:hover::after { opacity: 1; transform: translateY(0); }
.gallery .tile.wide { grid-column: span 2; }
.gallery .tile.tall { grid-row: span 2; }

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.quote {
  background: var(--paper);
  padding: 32px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
  transition: transform .3s ease;
}
.quote:nth-child(2) { transform: translateY(20px); }
.quote:hover { transform: translateY(-4px); }
.quote:nth-child(2):hover { transform: translateY(16px); }
.quote .stars {
  color: var(--sun);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 0.08em;
}
.quote p {
  color: var(--navy);
  font-size: 1.02rem;
  margin-bottom: 22px;
  line-height: 1.6;
}
.quote .by {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px dashed var(--line-strong);
}
.quote .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream-200);
  color: var(--sunset);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
}
.quote:nth-child(2) .avatar { background: var(--ocean-50); color: var(--ocean-700); }
.quote:nth-child(3) .avatar { background: var(--sun-light); color: #b45309; }
.quote .by div { font-size: 0.88rem; color: var(--slate); }
.quote .by strong { display: block; color: var(--navy); font-weight: 600; margin-bottom: 2px; }

/* ---------- Stats strip ---------- */
.stats {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sunset), transparent 70%);
  filter: blur(20px);
  opacity: 0.5;
  top: -100px;
  right: -80px;
}
.stats::after {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--ocean-light), transparent 70%);
  filter: blur(20px);
  opacity: 0.4;
  bottom: -100px;
  left: -60px;
}
.stats .stat { position: relative; z-index: 1; }
.stats .num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  display: block;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.stats .lbl {
  font-size: 0.85rem;
  color: var(--sun);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ---------- CTA ---------- */
.cta {
  position: relative;
  padding: 80px 50px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(50% 80% at 80% 0%, rgba(251, 191, 36, 0.45), transparent 60%),
    radial-gradient(50% 80% at 0% 100%, rgba(20, 184, 166, 0.35), transparent 60%),
    linear-gradient(135deg, var(--sunset) 0%, var(--peach) 100%);
  color: var(--navy);
  text-align: center;
  overflow: hidden;
}
.cta h2 {
  color: var(--navy);
  max-width: 720px;
  margin: 18px auto 14px;
  font-size: clamp(2rem, 3.6vw, 3rem);
}
.cta p {
  color: rgba(10, 31, 61, 0.78);
  max-width: 580px;
  margin: 0 auto 30px;
  font-size: 1.08rem;
}
.cta .tag {
  background: var(--paper);
  color: var(--navy);
}

/* ---------- Form ---------- */
form.contact-form {
  display: grid;
  gap: 20px;
  background: var(--paper);
  padding: 44px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 14px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--cream);
  color: var(--ink);
  transition: border-color .2s, background .2s;
  font-size: 0.97rem;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sunset);
  background: var(--paper);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  background: var(--ocean-50);
  color: var(--ocean-700);
  border: 1.5px solid var(--ocean-light);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.95rem;
}
.form-success.show { display: block; }

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  transition: border-color .2s, box-shadow .2s;
}
.faq[open] { border-color: var(--sunset); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 1.08rem;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--sunset);
  transition: transform .25s;
  line-height: 1;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq p {
  margin: 14px 0 0;
  font-size: 0.97rem;
  color: var(--slate);
  line-height: 1.75;
}

/* ---------- Page hero ---------- */
.page-hero {
  padding: 90px 0 70px;
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 70% at 90% 0%, rgba(255, 176, 136, 0.4), transparent 60%),
    radial-gradient(45% 60% at 0% 100%, rgba(20, 184, 166, 0.18), transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin: 18px 0 14px; }
.page-hero p { max-width: 640px; margin: 0 auto; font-size: 1.15rem; }

/* ---------- Service area chips ---------- */
.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 880px;
  margin: 0 auto;
}
.areas span {
  background: var(--paper);
  color: var(--navy);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1.5px solid var(--line);
  transition: border-color .2s, color .2s, transform .15s;
}
.areas span:hover { border-color: var(--sunset); color: var(--sunset); transform: translateY(-2px); }

/* ---------- Split layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split-img {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  transform: rotate(-2deg);
  transition: transform .3s ease;
}
.split-img:hover { transform: rotate(0); }

/* ---------- Timeline ---------- */
.timeline {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.timeline .moment {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  background: var(--paper);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform .2s;
}
.timeline .moment:hover { transform: translateX(6px); border-color: var(--sunset); }
.timeline .moment .time {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.35rem;
  color: var(--sunset);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.timeline .moment strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 4px;
}
.timeline .moment p { margin: 0; font-size: 0.96rem; color: var(--slate); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 248, 238, 0.78);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--sunset), transparent 70%);
  filter: blur(40px);
  opacity: 0.35;
  pointer-events: none;
}
.site-footer .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 248, 238, 0.12);
}
.footer-grid h4 {
  color: var(--sun);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.footer-grid a {
  color: rgba(255, 248, 238, 0.78);
  display: block;
  padding: 5px 0;
  font-size: 0.94rem;
  font-weight: 500;
}
.footer-grid a:hover { color: var(--sun); }
.footer-brand .logo { color: var(--cream); }
.footer-brand p {
  color: rgba(255, 248, 238, 0.65);
  margin-top: 14px;
  font-size: 0.94rem;
  line-height: 1.7;
}
.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
  color: rgba(255, 248, 238, 0.5);
}

/* ---------- Logo strip ---------- */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}
.logo-strip span {
  background: var(--paper);
  padding: 14px 26px;
  border-radius: var(--radius-md);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  border: 1px solid var(--line);
}

/* ---------- Comparison table ---------- */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.compare-table th, .compare-table td {
  padding: 18px 24px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.compare-table th:first-child, .compare-table td:first-child { text-align: left; }
.compare-table thead th {
  background: var(--cream);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.compare-table thead th:first-child { font-family: 'Inter', sans-serif; font-size: 0.82rem; font-weight: 600; color: var(--slate); text-transform: uppercase; letter-spacing: 0.06em; }
.compare-table tbody td { color: var(--slate); }
.compare-table tbody td:first-child { color: var(--navy); font-weight: 500; }
.compare-table .featured-col { background: var(--cream-200); color: var(--sunset-700) !important; font-weight: 600; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td { background: var(--cream); }
.compare-table tbody tr:hover .featured-col { background: var(--cream-300); }

/* ---------- Info card / aside ---------- */
.info-card {
  background: linear-gradient(180deg, var(--navy), var(--navy-700));
  color: var(--cream);
  padding: 38px 34px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, var(--sunset), transparent 70%);
  filter: blur(30px);
  opacity: 0.5;
  pointer-events: none;
}
.info-card h3 { color: var(--cream); font-size: 1.5rem; margin-bottom: 14px; position: relative; }
.info-card p { color: rgba(255, 248, 238, 0.7); margin: 0 0 24px; position: relative; }
.info-card .info-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 248, 238, 0.12);
  color: var(--cream);
  position: relative;
}
.info-card .info-link:last-child { border-bottom: none; }
.info-card .info-link:hover { color: var(--sun); }
.info-card .info-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-md);
  background: rgba(255, 248, 238, 0.1);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.info-card .info-link small {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sun);
  margin-bottom: 3px;
  font-weight: 600;
}
.info-card .info-link strong { font-weight: 600; font-size: 1rem; }

/* ---------- Util ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 36px; }
.mb-2 { margin-bottom: 16px; }
.bg-cream-200 { background: var(--cream-200); }
.bg-ocean-50 { background: var(--ocean-50); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media (max-width: 920px) {
  .nav-links { display: none; }
  .menu-btn { display: inline-flex; }
  .hero { padding: 50px 0 70px; }
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-card { aspect-ratio: 4 / 3; transform: none; }
  .grid-3, .grid-2, .pricing-grid, .pricing-grid-4, .testimonials, .stats { grid-template-columns: 1fr; }
  .price-feature { grid-template-columns: 1fr; }
  .price-feature .pf-img { aspect-ratio: 16/9; }
  .price-feature .pf-body ul { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-img { transform: none; }
  .steps { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery .tile.wide { grid-column: span 2; }
  .gallery .tile.tall { grid-row: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .quote:nth-child(2) { transform: none; }
  .stats { padding: 44px 26px; }
  .cta { padding: 60px 28px; }
}
@media (max-width: 540px) {
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  form.contact-form { padding: 30px 24px; }
  section.section { padding: 70px 0; }
  .timeline .moment { grid-template-columns: 1fr; gap: 4px; }
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0 24px;
  border-top: 1px solid var(--line);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 0;
  color: var(--navy);
  font-weight: 500;
}
