/* Coastal Cuts - shared stylesheet */

:root {
  --ink: #0a0908;
  --cream: #f4ecd8;
  --paper: #faf6ec;
  --gold: #b8945c;
  --gold-bright: #d4ad6f;
  --gold-deep: #8a6f3e;
  --teal: #2c5e6e;
  --teal-deep: #1a4250;
  --muted: #8a7e6c;
  --line: rgba(10, 9, 8, 0.12);
  --line-dark: rgba(244, 236, 216, 0.18);
  --shadow: 0 18px 50px rgba(10, 9, 8, 0.18);
  --shadow-deep: 0 28px 80px rgba(10, 9, 8, 0.28);
}

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

html { scroll-behavior: smooth; background: var(--paper); }

body {
  min-height: 100vh;
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
button, input, select, textarea { font: inherit; }
img, video { max-width: 100%; display: block; }

/* Skip link */
.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 14px;
  border-radius: 4px;
  border: 2px solid var(--gold);
  text-decoration: none;
  transition: top 0.15s;
}
.skip-link:focus { top: 16px; }

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  padding: 14px 28px;
  background: rgba(10, 9, 8, 0.96);
  color: var(--cream);
  border-bottom: 1px solid var(--gold-deep);
  backdrop-filter: blur(12px);
}
.brand-mark {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}
.brand-mark .name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  color: var(--cream);
}
.brand-mark .tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  opacity: 0.85;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 1;
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-book {
  background: var(--gold);
  color: var(--ink);
  padding: 10px 18px;
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.78rem;
  transition: background 0.15s, transform 0.15s;
}
.nav-book:hover,
.nav-book:focus-visible {
  background: var(--gold-bright);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--gold-deep);
  width: 42px;
  height: 42px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 1.2rem;
}

@media (max-width: 800px) {
  .topbar { padding: 12px 18px; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 24px 24px;
    background: rgba(10, 9, 8, 0.98);
    border-top: 1px solid var(--gold-deep);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s, opacity 0.18s;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line-dark);
  }
  .nav-links .nav-book {
    margin-top: 12px;
    text-align: center;
  }
  .menu-toggle { display: block; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 84svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 36px;
  align-items: end;
  padding: 100px 32px 80px;
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(10,9,8,0.5) 0%, rgba(10,9,8,0.2) 35%, rgba(10,9,8,0.85) 100%),
    radial-gradient(ellipse at 80% 20%, rgba(184,148,92,0.25) 0%, transparent 55%),
    linear-gradient(135deg, #1f1815 0%, #0a0908 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero.with-photo {
  background:
    linear-gradient(90deg, rgba(10,9,8,0.92) 0%, rgba(10,9,8,0.68) 42%, rgba(10,9,8,0.35) 100%),
    linear-gradient(180deg, rgba(10,9,8,0.34) 0%, rgba(10,9,8,0.12) 38%, rgba(10,9,8,0.9) 100%),
    url("hero-barbershop.jpg") center / cover no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent 0, transparent 3px, rgba(244,236,216,0.025) 4px);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero-lede {
  max-width: 560px;
  margin-top: 22px;
  font-size: 1.15rem;
  line-height: 1.55;
  color: rgba(244, 236, 216, 0.86);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  background: rgba(244, 236, 216, 0.1);
  border: 1px solid rgba(244, 236, 216, 0.24);
  border-radius: 3px;
  color: rgba(244, 236, 216, 0.86);
  font-size: 0.82rem;
  font-weight: 700;
}
.chair-card {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: end;
  width: min(100%, 360px);
  padding: 26px;
  background: rgba(10, 9, 8, 0.78);
  border: 1px solid rgba(184, 148, 92, 0.56);
  border-radius: 4px;
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(14px);
}
.chair-card .eyebrow {
  color: var(--gold);
  margin-bottom: 12px;
}
.chair-card .eyebrow::before {
  background: var(--gold);
}
.chair-card strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 600;
  color: var(--cream);
}
.chair-card p {
  margin-top: 12px;
  color: rgba(244, 236, 216, 0.76);
  line-height: 1.55;
}
.chair-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.8rem;
}
.chair-card a:hover,
.chair-card a:focus-visible {
  color: var(--gold-bright);
}

.booking-strip {
  padding: 0;
  background: var(--ink);
  color: var(--cream);
  border-bottom: 1px solid var(--gold-deep);
}
.booking-strip-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid var(--line-dark);
}
.booking-strip-inner div {
  min-height: 108px;
  padding: 22px 28px;
  border-right: 1px solid var(--line-dark);
}
.booking-strip-inner strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--gold);
}
.booking-strip-inner span {
  display: block;
  margin-top: 7px;
  color: rgba(244, 236, 216, 0.72);
  line-height: 1.35;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 3px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn:hover, .btn:focus-visible { transform: translateY(-1px); }
.btn:disabled {
  opacity: 0.48;
  cursor: not-allowed;
  transform: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--gold-bright);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244, 236, 216, 0.4);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover, .btn-dark:focus-visible {
  background: #1a1715;
}

/* Sections */
section {
  padding: 96px 32px;
}
section.tight { padding: 72px 32px; }
section.dark {
  background: var(--ink);
  color: var(--cream);
}

.container {
  max-width: 1080px;
  margin: 0 auto;
}
.container.narrow { max-width: 760px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.32em;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold-deep);
}
section.dark .eyebrow { color: var(--gold); }
section.dark .eyebrow::before { background: var(--gold); }

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  text-wrap: balance;
}
h2 em { font-style: italic; color: var(--gold); }

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.lede {
  max-width: 600px;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--muted);
}
section.dark .lede { color: rgba(244, 236, 216, 0.74); }

/* Service grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 56px;
  background: var(--line);
  border: 1px solid var(--line);
}
.services-grid .item {
  background: var(--paper);
  padding: 36px 32px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  transition: background 0.2s;
}
.services-grid .item:hover {
  background: var(--cream);
}
.services-grid .item .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
  min-width: 32px;
  padding-top: 4px;
}
.services-grid .item .body {
  flex: 1;
}
.services-grid .item h3 {
  margin-bottom: 4px;
}
.services-grid .item .meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.services-grid .item .meta .price {
  color: var(--ink);
  font-weight: 700;
  font-size: 1rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}
.section-head .lede {
  max-width: 390px;
}
.shop-picks {
  background:
    linear-gradient(135deg, rgba(44,94,110,0.08), transparent 42%),
    var(--cream);
}
.pick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.pick-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 14px 34px rgba(10, 9, 8, 0.1);
}
.pick-card.featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--gold-deep);
}
.pick-tag {
  align-self: flex-start;
  padding: 6px 9px;
  background: rgba(44,94,110,0.1);
  color: var(--teal-deep);
  border-radius: 2px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
}
.pick-card.featured .pick-tag {
  background: rgba(184,148,92,0.16);
  color: var(--gold);
}
.pick-card h3 {
  margin-top: 18px;
  font-size: 2rem;
}
.pick-card p {
  color: var(--muted);
  line-height: 1.55;
}
.pick-card.featured p {
  color: rgba(244, 236, 216, 0.72);
}
.pick-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 28px;
}
.pick-meta strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  line-height: 1;
}
.pick-meta span {
  color: var(--gold-deep);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}
.pick-card.featured .pick-meta span {
  color: var(--gold);
}
.pick-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 22px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 3px;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}
.pick-card.featured a {
  background: var(--gold);
  color: var(--ink);
}
.pick-card a:hover,
.pick-card a:focus-visible {
  background: var(--gold-bright);
  color: var(--ink);
}
.services-grid .item p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

@media (max-width: 720px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Service rows (services.html) */
.service-rows {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}
.service-rows .row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr) auto auto;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.service-rows .row .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
}
.service-rows .row .desc {
  font-size: 0.96rem;
  color: var(--muted);
}
.service-rows .row .time {
  font-size: 0.84rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.service-rows .row .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-deep);
  text-align: right;
  min-width: 80px;
}
.service-rows .row .save {
  display: inline-block;
  margin-left: 6px;
  background: var(--gold);
  color: var(--ink);
  padding: 2px 7px;
  border-radius: 2px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  vertical-align: middle;
}

@media (max-width: 720px) {
  .service-rows .row {
    grid-template-columns: 1fr auto;
    gap: 6px 14px;
  }
  .service-rows .row .name { grid-column: 1; grid-row: 1; }
  .service-rows .row .price { grid-column: 2; grid-row: 1; text-align: right; }
  .service-rows .row .desc { grid-column: 1 / -1; grid-row: 2; }
  .service-rows .row .time { grid-column: 1 / -1; grid-row: 3; }
}

/* Two-column split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.image-left .split-text { order: 2; }
.split-image {
  background: var(--ink);
  border-radius: 4px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(135deg, rgba(184,148,92,0.18) 0%, transparent 50%),
    radial-gradient(circle at 30% 30%, rgba(184,148,92,0.18) 0%, transparent 50%),
    linear-gradient(180deg, #1a1413 0%, #0a0908 100%);
}
.split-image.with-photo[data-photo] {
  background-image: var(--photo-url);
  background-size: cover;
  background-position: center top;
}
.split-image .placeholder {
  text-align: center;
  padding: 32px;
  color: rgba(184,148,92,0.45);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Bebas Neue', sans-serif;
}

@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
    padding: 78px 22px 54px;
  }
  .chair-card {
    justify-self: stretch;
  }
  .booking-strip-inner {
    grid-template-columns: 1fr;
    border-left: 0;
  }
  .booking-strip-inner div {
    min-height: 0;
    padding: 18px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }
  .section-head {
    display: block;
  }
  .section-head .lede {
    margin-top: 8px;
  }
  .pick-grid {
    grid-template-columns: 1fr;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .split.image-left .split-text { order: 1; }
  .split-image { aspect-ratio: 4/3; max-height: 380px; }
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.quote {
  background: var(--paper);
  border-top: 2px solid var(--gold);
  padding: 28px 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  line-height: 1.5;
  color: var(--ink);
  position: relative;
}
.quote::before {
  content: '"';
  position: absolute;
  top: -28px;
  left: 18px;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  font-weight: 600;
}
.quote .who {
  display: block;
  margin-top: 16px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
section.dark .quote {
  background: rgba(244, 236, 216, 0.05);
  color: var(--cream);
  border-top-color: var(--gold);
}
section.dark .quote .who { color: rgba(244, 236, 216, 0.6); }

@media (max-width: 800px) {
  .testimonials {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* Booking widget */
.booking {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 48px;
  margin-top: 48px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.booking-form {
  padding: 40px;
}
.booking-summary {
  background: var(--ink);
  color: var(--cream);
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.field {
  display: block;
  margin-bottom: 22px;
}
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input,
.field select {
  width: 100%;
  padding: 14px 16px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 3px;
  font-size: 0.98rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s;
}
.field input:focus,
.field select:focus {
  border-color: var(--gold);
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}
.time-grid button {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 3px;
  padding: 12px 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.15s;
}
.time-grid button:hover:not(:disabled) {
  border-color: var(--gold);
  color: var(--gold-deep);
}
.time-grid button.selected {
  background: var(--ink);
  color: var(--gold);
  border-color: var(--ink);
}
.time-grid button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.94rem;
}
.summary-row .label { color: rgba(244, 236, 216, 0.7); }
.summary-row .value {
  color: var(--cream);
  font-weight: 600;
  text-align: right;
}
.summary-row.total {
  border-bottom: none;
  border-top: 1px solid var(--gold);
  padding-top: 22px;
  margin-top: 14px;
}
.summary-row.total .label {
  color: var(--gold);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.16em;
  font-size: 1rem;
}
.summary-row.total .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--cream);
}
.deposit-note {
  margin-top: 18px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(244, 236, 216, 0.6);
}

@media (max-width: 800px) {
  .booking {
    grid-template-columns: 1fr;
  }
  .booking-form, .booking-summary { padding: 28px; }
}

/* Stripe-style modal (demo) */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 8, 0.78);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 24px;
}
.modal-backdrop.open {
  display: flex;
  animation: fadeIn 0.2s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: white;
  border-radius: 6px;
  width: 100%;
  max-width: 460px;
  padding: 32px;
  box-shadow: 0 30px 100px rgba(0,0,0,0.4);
  font-family: 'Source Sans 3', sans-serif;
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.modal .stripe-mark {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  color: #635bff;
}
.modal .close-btn {
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: #555;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .close-btn:hover { background: #f0f0f0; }
.modal h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: #0a0908;
}
.modal .pay-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #0a0908;
  margin-bottom: 24px;
}
.modal .field-group {
  margin-bottom: 14px;
}
.modal .field-group label {
  display: block;
  font-size: 0.78rem;
  color: #555;
  margin-bottom: 6px;
  font-weight: 500;
}
.modal .field-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.96rem;
}
.modal .row-fields {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 8px;
}
.modal .pay-btn {
  width: 100%;
  background: #635bff;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.96rem;
  cursor: pointer;
  margin-top: 16px;
}
.modal .pay-btn:hover { background: #5048d6; }
.modal .demo-banner {
  background: #fff8e6;
  border: 1px solid #f4d76b;
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 0.78rem;
  color: #6e5400;
  margin-bottom: 18px;
  line-height: 1.5;
}

/* Footer */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 32px 32px;
}
footer .footer-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
footer h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 18px;
}
footer p, footer a {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(244, 236, 216, 0.78);
  text-decoration: none;
}
footer a:hover { color: var(--gold); }
footer .brand-mark .name { color: var(--cream); }
footer .credit {
  border-top: 1px solid var(--line-dark);
  margin-top: 48px;
  padding-top: 22px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(244, 236, 216, 0.5);
}
footer .credit a { color: var(--gold); }

@media (max-width: 800px) {
  footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}
@media (max-width: 480px) {
  footer .footer-grid { grid-template-columns: 1fr; }
}

/* Page hero (smaller, for inner pages) */
.page-hero {
  background: var(--ink);
  color: var(--cream);
  padding: 72px 32px;
  text-align: center;
  border-bottom: 1px solid var(--gold-deep);
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.page-hero p {
  max-width: 580px;
  margin: 0 auto;
  color: rgba(244, 236, 216, 0.78);
  font-size: 1.08rem;
}

/* Mobile tweaks */
@media (max-width: 480px) {
  section { padding: 64px 22px; }
  section.tight { padding: 48px 22px; }
  .hero { padding: 58px 18px 38px; }
  .hero h1 { font-size: 3.05rem; }
  .hero-lede { font-size: 1.02rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-proof { gap: 6px; }
  .hero-proof span {
    min-height: 30px;
    font-size: 0.76rem;
  }
  .chair-card {
    display: none;
  }
  .booking-form, .booking-summary { padding: 24px 22px; }
  .field input, .field select { font-size: 16px; /* iOS no-zoom */ }
}
