:root {
  --cream: #F7F3EC;
  --cream-dark: #EDE6D8;
  --navy: #1A2B4A;
  --navy-light: #243A5E;
  --gold: #B8956A;
  --gold-light: #D4B896;
  --gold-dark: #9A7A52;
  --text: #2C3E50;
  --text-muted: #5A6B7D;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(26, 43, 74, 0.08);
  --shadow-lg: 0 8px 40px rgba(26, 43, 74, 0.12);
  --radius: 8px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { color: inherit; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--navy);
  line-height: 1.2;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.8;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem 0;
}

.text-italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.95rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

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

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

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--cream);
}

.btn-sm {
  padding: 0.7rem 1.5rem;
  font-size: 0.72rem;
}

/* ── Header / Nav ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(247, 243, 236, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 149, 106, 0.15);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-emblem {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
  line-height: 1;
}

.logo-sub {
  font-size: 0.55rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  transition: color var(--transition);
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--gold-dark);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 0.5rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--navy);
}

.menu-toggle svg {
  width: 28px;
  height: 28px;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid rgba(184, 149, 106, 0.2);
  padding: 1.5rem 2rem 2rem;
  box-shadow: var(--shadow);
  z-index: 999;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile a {
  display: block;
  padding: 0.85rem 0;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  border-bottom: 1px solid rgba(184, 149, 106, 0.15);
}

.nav-mobile a.active {
  color: var(--gold-dark);
}

.nav-mobile .btn {
  margin-top: 1.25rem;
  width: 100%;
}

/* ── Page hero (inner pages) ── */
.page-hero {
  padding: 10rem 0 4rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23EDE6D8' fill-opacity='0.5' d='M0,60 C360,120 720,0 1080,60 C1260,90 1380,80 1440,70 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat top center;
  background-size: cover;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

/* ── Home hero ── */
.home-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 400px;
  padding-top: 72px;
}

.home-hero-left {
  padding: 4rem 3rem 4rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.home-hero-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23EDE6D8' fill-opacity='0.5' d='M0,60 C360,120 720,0 1080,60 C1260,90 1380,80 1440,70 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat top center;
  background-size: cover;
  pointer-events: none;
}

.home-hero .brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.08em;
  line-height: 1;
}

.home-hero .brand-sub {
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.home-hero .tagline-small {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 2rem;
}

.home-hero-description {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.home-hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.home-hero-right {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5rem 2.5rem 3rem;
  position: relative;
  overflow: hidden;
}

.home-hero-right::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  opacity: 0.08;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23B8956A' d='M50 5 C30 40 10 60 50 95 C90 60 70 40 50 5Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.slogan {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-light);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.hero-illustration {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  position: relative;
  z-index: 1;
}

.hero-illustration svg {
  width: 100%;
  max-width: 300px;
  opacity: 0.85;
}

/* ── Sections ── */
.section {
  padding: 5rem 0;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark .section-subtitle {
  color: var(--gold-light);
}

.section-dark .section-intro {
  color: rgba(255, 255, 255, 0.75);
}

.section-sand {
  background: var(--cream-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-intro {
  margin: 0 auto;
}

/* ── Service cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.section-dark .service-card {
  background: var(--navy-light);
}

.service-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.25rem;
  color: var(--gold);
}

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.section-dark .service-card h3 {
  color: var(--gold-light);
}

.service-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

.section-dark .service-card p {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Client segments ── */
.segments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.segment-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}

.segment-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.segment-problem {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 300;
}

.segment-message {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-dark);
}

/* ── Steps / Journey ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  counter-reset: step;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
}

.section-dark .step-number {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

.section-dark .step-card p {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Stats ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item .stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Promise banner ── */
.promise-banner {
  background: var(--navy);
  padding: 4rem 2rem;
  text-align: center;
}

.promise-banner blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  color: var(--gold-light);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ── Pain points ── */
.pain-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
}

.pain-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--gold);
  transform: scale(1.03);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.pricing-price {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-price .amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
}

.pricing-price .period {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 2rem;
}

.pricing-features li {
  font-size: 0.85rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(184, 149, 106, 0.15);
  color: var(--text-muted);
  font-weight: 300;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.pricing-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
}

.pricing-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Service detail (services page) ── */
.service-detail {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(184, 149, 106, 0.2);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail-icon {
  width: 64px;
  height: 64px;
  color: var(--gold);
}

.service-detail h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-detail .do-list,
.service-detail .limit-list {
  margin-top: 1.5rem;
}

.service-detail h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.service-detail ul {
  list-style: none;
}

.service-detail ul li {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-muted);
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
}

.service-detail .do-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

.service-detail .limit-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

/* ── Zones ── */
.zones-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.zone-tag {
  padding: 0.6rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(184, 149, 106, 0.3);
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.section-dark .zone-tag {
  background: var(--navy-light);
  border-color: rgba(184, 149, 106, 0.4);
  color: var(--gold-light);
}

/* ── Contact form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info-block {
  padding: 2.5rem;
  background: var(--navy);
  border-radius: var(--radius);
  color: var(--white);
}

.contact-info-block h3 {
  color: var(--gold-light);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-icon svg {
  width: 16px;
  height: 16px;
}

.contact-item strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.contact-item span,
.contact-item a {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--white);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--gold-light);
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(184, 149, 106, 0.3);
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ── FAQ ── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(184, 149, 106, 0.2);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── CTA section ── */
.cta-section {
  padding: 5rem 2rem;
  text-align: center;
  background: var(--cream);
}

.cta-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Palm divider ── */
.palm-divider {
  text-align: center;
  padding: 2rem 0;
  color: var(--gold);
  opacity: 0.5;
}

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  padding: 4rem 0 2rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-brand {
  color: var(--white);
  font-size: 1.5rem;
}

.footer-brand .logo-sub {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  margin-top: 1rem;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 0.3rem 0;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 300;
}

/* ── Limits notice ── */
.limits-notice {
  background: rgba(26, 43, 74, 0.04);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  margin-top: 3rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.limits-notice h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.limits-notice p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .home-hero {
    grid-template-columns: 1fr;
  }

  .home-hero-left {
    padding: 3rem 2rem;
  }

  .home-hero-right {
    min-height: 450px;
    padding: 3rem 2rem;
  }

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

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: none;
  }

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

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: block; }

  .page-hero {
    padding: 8rem 0 3rem;
  }

  .segments-grid,
  .pain-list,
  .contact-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .steps-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* ── Dual audience ── */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.audience-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.audience-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.audience-card p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.section-dark .audience-card {
  background: var(--navy-light);
}

.section-dark .audience-card p {
  color: rgba(255, 255, 255, 0.75);
}

/* ── Inline CTA strip ── */
.inline-cta {
  text-align: center;
  padding: 2.5rem 2rem;
  margin-top: 2.5rem;
  background: rgba(184, 149, 106, 0.08);
  border-radius: var(--radius);
}

.inline-cta p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-weight: 300;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
}

.testimonial-card cite {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
}

.testimonial-placeholder {
  border: 1px dashed rgba(184, 149, 106, 0.5);
  background: rgba(247, 243, 236, 0.5);
}

.testimonial-placeholder blockquote {
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-size: 0.88rem;
}

/* ── Partners ── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.partner-item {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.partner-item svg {
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.partner-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.partner-item p {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

.section-dark .partner-item {
  background: var(--navy-light);
}

.section-dark .partner-item h4 {
  color: var(--gold-light);
}

.section-dark .partner-item p {
  color: rgba(255, 255, 255, 0.65);
}

/* ── Photo placeholders ── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.photo-placeholder {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
  border: 1px dashed rgba(184, 149, 106, 0.4);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}

.photo-placeholder svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.photo-placeholder span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Values (Notre engagement) ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}

.value-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

.commitment-list {
  list-style: none;
  max-width: 800px;
}

.commitment-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(184, 149, 106, 0.2);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.commitment-list li:last-child {
  border-bottom: none;
}

.commitment-list strong {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.commitment-list span {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── City page links ── */
.zone-tag-link {
  text-decoration: none;
  transition: all var(--transition);
}

.zone-tag-link:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.footer-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
}

.footer-cities a {
  display: inline;
  font-size: 0.82rem;
  padding: 0;
}

.footer-cities a::after {
  content: ' ·';
  color: rgba(255, 255, 255, 0.3);
}

.footer-cities a:last-child::after {
  content: '';
}

/* ── Business card (print) ── */
.business-card-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  background: #e8e4dc;
}

.business-card {
  width: 900px;
  max-width: 100%;
  height: 520px;
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  background: var(--cream);
  box-shadow: var(--shadow-lg);
  border-radius: 4px;
  overflow: hidden;
}

.bc-left {
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bc-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.08em;
  line-height: 1;
}

.bc-sub {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

.bc-tagline-small {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 1.5rem;
}

.bc-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: auto;
}

.bc-service {
  text-align: center;
}

.bc-service svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.bc-service span {
  display: block;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.35;
}

.bc-right {
  background: var(--navy);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bc-slogan {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-light);
  line-height: 1.5;
}

.bc-phone {
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  margin: 1.5rem 0;
}

.bc-contact-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.6rem;
  font-weight: 300;
}

.bc-contact-line svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

.bc-print-note {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 600px;
}

@media print {
  .business-card-page { background: white; padding: 0; }
  .bc-print-note, .site-header { display: none; }
  .business-card { box-shadow: none; }
}

@media (max-width: 1024px) {
  .audience-grid,
  .testimonials-grid,
  .partners-grid,
  .photo-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .audience-grid,
  .testimonials-grid,
  .partners-grid,
  .photo-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .commitment-list li {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .business-card {
    height: auto;
    grid-template-columns: 1fr;
  }

  .bc-services {
    grid-template-columns: repeat(2, 1fr);
  }
}
