/* ==========================================================================
   AFY Stays — Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Palette — noir & gold, aligned to the AFY Stays logo */
  --cream: #FAF6EC;
  --cream-dark: #F0E7D2;
  --charcoal: #14120F;
  --charcoal-soft: #55504A;
  --terracotta: #C9972E;
  --terracotta-dark: #A87B22;
  --sage: #8A6D3B;
  --sage-dark: #6E5730;
  --gold: #E3C567;
  --white: #FFFFFF;
  --border: #E8DCC0;

  /* Type */
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --max-width: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(20, 18, 15, 0.10);
  --shadow-lg: 0 20px 50px rgba(20, 18, 15, 0.20);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.1rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.4rem; }

p { margin: 0 0 16px; color: var(--charcoal-soft); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.lede {
  font-size: 1.15rem;
  max-width: 620px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--terracotta);
  color: var(--charcoal);
  box-shadow: 0 8px 20px rgba(201, 151, 46, 0.35);
}
.btn-primary:hover { background: var(--terracotta-dark); }

.btn-secondary {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn-secondary:hover { background: var(--charcoal); color: var(--white); }

.btn-light {
  background: var(--white);
  color: var(--charcoal);
}
.btn-light:hover { background: var(--cream-dark); }

.btn-sage {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(138, 109, 59, 0.35);
}
.btn-sage:hover { background: var(--sage-dark); }

.btn-block { width: 100%; justify-content: center; }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 18, 15, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 151, 46, 0.25);
  overflow: visible;
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  opacity: 0;
  transform: translateY(-14px);
  pointer-events: none;
}

/* Homepage-only: fully transparent header floating over the video hero.
   Switched to fixed positioning so it overlays the hero instead of pushing
   it down (sticky still reserves flow space even when invisible). */
.site-header.header-transparent {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  box-shadow: none;
}
.site-header.header-transparent::before { display: none; }
.site-header.header-transparent .main-nav a {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}
.site-header.header-transparent .logo-icon {
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}
.site-header.header-transparent .logo-text {
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
}

/* Floating condensed pill nav — appears once the main header fades on scroll */
.floating-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 101;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px 8px 16px;
  border-radius: 999px;
  background: rgba(20, 18, 15, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(227, 197, 103, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translate(-50%, -14px) scale(0.94);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.floating-nav.is-visible {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  pointer-events: auto;
  animation: floatBob 3.8s ease-in-out infinite;
}
@keyframes floatBob {
  0%, 100% { transform: translate(-50%, 0) scale(1); }
  50% { transform: translate(-50%, -6px) scale(1); }
}
.floating-nav .floating-logo { display: flex; align-items: center; }
.floating-nav .floating-logo img { height: 24px; display: block; }
.floating-nav .floating-links { display: flex; gap: 2px; }
.floating-nav .floating-links a {
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-body);
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.floating-nav .floating-links a.active,
.floating-nav .floating-links a:hover {
  background: rgba(227, 197, 103, 0.16);
  color: var(--gold);
}
.floating-nav .floating-cta {
  background: linear-gradient(135deg, var(--gold), var(--terracotta));
  color: var(--charcoal);
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  font-family: var(--font-body);
  white-space: nowrap;
}

@media (max-width: 720px) {
  .floating-nav .floating-links { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .floating-nav.is-visible { animation: none; }
  .site-header, .floating-nav { transition: none; }
}

.site-header::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227, 197, 103, 0.9), transparent);
  background-size: 60% 100%;
  background-repeat: no-repeat;
  animation: headerLineSweep 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes headerLineSweep {
  0% { background-position: -60% 0; }
  50% { background-position: 130% 0; }
  100% { background-position: -60% 0; }
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.logo-icon {
  height: 34px;
  width: auto;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(227, 197, 103, 0.25));
}
.logo span { color: inherit; }

/* Header-only: logo icon on top, small wordmark stacked underneath */
.site-header .logo {
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

/* Premium floating, shimmering wordmark — header only */
.site-header .logo-text {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  background: linear-gradient(110deg, var(--terracotta) 10%, var(--gold) 35%, #fff6da 50%, var(--gold) 65%, var(--terracotta) 90%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: logoShimmer 5s linear infinite, logoFloat 3.4s ease-in-out infinite;
  will-change: transform, background-position;
}
.site-header .logo-text span { color: inherit; }

.site-header .logo::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 8px;
  background: radial-gradient(ellipse at center, rgba(227, 197, 103, 0.4) 0%, rgba(227, 197, 103, 0) 72%);
  filter: blur(1px);
  animation: logoShadowPulse 3.4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes logoShimmer {
  to { background-position: -220% center; }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes logoShadowPulse {
  0%, 100% { opacity: 0.55; transform: scaleX(1); }
  50% { opacity: 0.2; transform: scaleX(0.82) translateY(2px); }
}

@media (prefers-reduced-motion: reduce) {
  .site-header .logo-text,
  .site-header .logo::after,
  .site-header::before {
    animation: none !important;
  }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, text-shadow 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(201, 151, 46, 0.14);
  color: var(--gold);
  text-shadow: 0 0 14px rgba(227, 197, 103, 0.55);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions .btn-primary {
  font-size: 0.8rem;
  padding: 11px 20px;
}

/* Grouped nav dropdown — click to reveal secondary links (keeps the header lean) */
.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, text-shadow 0.2s ease;
}

.nav-dropdown-trigger .chevron {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.active,
.nav-dropdown.is-open .nav-dropdown-trigger {
  background: rgba(201, 151, 46, 0.14);
  color: var(--gold);
  text-shadow: 0 0 14px rgba(227, 197, 103, 0.55);
}

.nav-dropdown.is-open .nav-dropdown-trigger .chevron {
  transform: rotate(180deg);
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 170px;
  background: rgba(20, 18, 15, 0.97);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(227, 197, 103, 0.3);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 120;
}

.nav-dropdown.is-open .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-panel a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown-panel a:hover,
.nav-dropdown-panel a.active {
  background: rgba(227, 197, 103, 0.14);
  color: var(--gold);
}

.lang-switch {
  display: flex;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  overflow: hidden;
}

.lang-btn {
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 8px 12px;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
}

.lang-btn.active {
  background: var(--terracotta);
  color: var(--charcoal);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  margin: 5px 0;
  transition: 0.2s;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  padding: 72px 0 88px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--terracotta);
}

.hero-stat span {
  font-size: 0.85rem;
  color: var(--charcoal-soft);
}

.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--sage) 0%, var(--terracotta) 100%);
  box-shadow: var(--shadow-lg);
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.18) 0, transparent 40%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 20px);
}

.hero-visual .placeholder-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.1rem;
  background: rgba(20,18,15,0.45);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

/* Hero with video background (homepage) */

.hero-video {
  padding: 190px 0 210px;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: var(--charcoal);
}

.hero-video .container {
  display: block;
  position: relative;
  z-index: 2;
}

.hero-video .hero-copy { max-width: 640px; }

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,18,15,0.72) 0%, rgba(20,18,15,0.42) 45%, rgba(20,18,15,0.88) 100%);
  z-index: 1;
}

.hero-video .eyebrow { color: var(--gold); }
.hero-video h1 { color: var(--white); }
.hero-video .lede { color: rgba(255,255,255,0.88); }
.hero-video .hero-stat strong { color: var(--terracotta); }
.hero-video .hero-stat span { color: rgba(255,255,255,0.72); }

.hero-video .btn-secondary {
  border-color: rgba(255,255,255,0.85);
  color: var(--white);
}
.hero-video .btn-secondary:hover {
  background: var(--white);
  color: var(--charcoal);
}

/* ==========================================================================
   Sections generic
   ========================================================================== */

section { padding: 88px 0; }
.section-alt { background: var(--white); }
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Audience split (home) */

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.audience-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.audience-card.featured {
  border-color: var(--terracotta);
  box-shadow: var(--shadow-lg);
}

.audience-card .icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.audience-card.owners .icon-badge { background: rgba(138,109,59,0.15); color: var(--sage-dark); }
.audience-card.guests .icon-badge { background: rgba(201,151,46,0.15); color: var(--terracotta-dark); }

.audience-card ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.audience-card li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
  color: var(--charcoal-soft);
}

.audience-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage-dark);
  font-weight: 700;
}

.audience-card.guests li::before { color: var(--terracotta-dark); }

.audience-card .btn { margin-top: auto; align-self: flex-start; }

/* Cards / grids */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.info-card .icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 18px;
  color: var(--terracotta);
}

/* Properties grid */

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.property-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}
.property-card:hover { transform: translateY(-4px); }

.property-thumb {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--gold) 0%, var(--terracotta) 100%);
  position: relative;
}

.property-thumb.alt1 { background: linear-gradient(135deg, var(--sage) 0%, var(--gold) 100%); }
.property-thumb.alt2 { background: linear-gradient(135deg, var(--terracotta) 0%, var(--sage-dark) 100%); }

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

.property-rating {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--charcoal);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}
.property-rating svg { flex-shrink: 0; }

.property-thumb .placeholder-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,0.9);
  color: var(--charcoal);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
}

.property-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }

.property-body h3 { margin-bottom: 4px; }

.property-meta {
  font-size: 0.85rem;
  color: var(--charcoal-soft);
  margin-bottom: 14px;
}

.property-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.property-tags span {
  background: var(--cream-dark);
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--charcoal-soft);
}

.property-body .btn { margin-top: auto; }

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 8px;
}

.step .step-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--terracotta);
  display: block;
  margin-bottom: 10px;
}

/* Testimonial */

.testimonial-strip {
  background: var(--charcoal);
  color: var(--white);
}

.testimonial-strip h2, .testimonial-strip p { color: var(--white); }

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

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px;
}

.testimonial-card .stars { color: var(--gold); margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card .name { font-weight: 600; margin-top: 14px; }
.testimonial-card .role { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* CTA band */

.cta-band {
  background: linear-gradient(120deg, var(--charcoal) 0%, var(--sage) 55%, var(--terracotta) 100%);
  border-radius: var(--radius);
  padding: 56px;
  color: var(--white);
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.9); margin-left: auto; margin-right: auto; }
.cta-band .hero-actions { justify-content: center; }

/* Forms */

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { margin-bottom: 20px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--terracotta);
  outline-offset: 1px;
  background: var(--white);
}

.form-note {
  font-size: 0.85rem;
  color: var(--charcoal-soft);
  background: var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-top: 18px;
}

.form-success {
  display: none;
  background: rgba(124,148,115,0.15);
  border: 1px solid var(--sage);
  color: var(--sage-dark);
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-weight: 600;
}
.form-success.visible { display: block; }

/* Two column layout (contact / about) */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}
.contact-info-list li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-list .ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--terracotta);
}

/* Values grid (about) */

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

/* Footer */

.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.site-footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
}

.site-footer .logo { color: var(--terracotta); }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.75); transition: color 0.15s; }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

/* Page header (interior pages) */

.page-header {
  padding: 56px 0 48px;
  background: var(--cream-dark);
  text-align: center;
}
.page-header .eyebrow { }
.page-header p { margin-left: auto; margin-right: auto; }

/* Breadcrumb-ish badge row */
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.badge {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Pricing / process table-ish */
.process-list { counter-reset: pnum; }
.process-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.process-item:last-child { border-bottom: none; }
.process-item .pnum {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--terracotta);
  min-width: 44px;
}

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; aspect-ratio: 16/9; }
  .audience-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .properties-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .header-actions .btn-primary { display: none; }
  .site-header.nav-open .main-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--charcoal);
    flex-direction: column;
    padding: 12px 24px 20px;
    border-bottom: 1px solid rgba(201, 151, 46, 0.25);
  }
  .site-header.nav-open .main-nav a { padding: 12px 8px; }
  .nav-dropdown { width: 100%; }
  .site-header.nav-open .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 12px 8px;
  }
  .site-header.nav-open .nav-dropdown-panel {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 16px;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transition: max-height 0.25s ease;
  }
  .site-header.nav-open .nav-dropdown.is-open .nav-dropdown-panel {
    max-height: 200px;
    pointer-events: auto;
  }
  .card-grid { grid-template-columns: 1fr; }
  .properties-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-band { padding: 36px 20px; }
  section { padding: 56px 0; }
}
