/* PhoenixGlow Studio One-Pager — Design System */

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

:root {
  /* Light / Default — straight from the logo background */
  --cream: #EFE3CE;
  --cream-soft: #F6ECDC;
  --cream-deep: #E5D5BB;
  --paper: #FBF6EC;
  --espresso: #1A1612;
  --espresso-soft: #2A231C;
  --espresso-mute: rgba(26, 22, 18, 0.62);
  --espresso-faint: rgba(26, 22, 18, 0.18);
  --gold: #A8843E;
  --gold-soft: #C4A05A;
  --gold-deep: #8C6A2C;
  --rule: rgba(26, 22, 18, 0.12);

  /* Accent (overridden by tweaks) */
  --accent: #A8843E;
  --accent-soft: #C4A05A;
  --accent-deep: #8C6A2C;

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --display: 'Italiana', 'Cormorant Garamond', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --pad-x: clamp(20px, 5vw, 80px);
  --section-y: clamp(80px, 10vw, 160px);
}

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

html, body {
  background: var(--cream);
  color: var(--espresso);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { overflow-x: hidden; }

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

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

/* ── Type scale ─────────────────────────────── */

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow-dark {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--espresso-mute);
}

.display {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.005em;
  text-wrap: balance;
}

.subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.3;
  color: var(--espresso-soft);
}

.lead {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--espresso-soft);
  text-wrap: pretty;
  max-width: 56ch;
}

.body { font-size: 15px; line-height: 1.65; color: var(--espresso-soft); text-wrap: pretty; }

.caps-mono {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Buttons ────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--espresso);
  background: var(--espresso);
  color: var(--cream);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  border-radius: 0;
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--espresso);
  border: 1px solid var(--espresso);
}
.btn-ghost:hover { background: var(--espresso); color: var(--cream); }

.btn-whatsapp {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn-whatsapp:hover { background: var(--accent-deep); border-color: var(--accent-deep); }

/* ── Layout helpers ─────────────────────────── */

.section {
  padding: var(--section-y) var(--pad-x);
  position: relative;
}

.section--alt { background: var(--cream-soft); }
.section--paper { background: var(--paper); }
.section--dark { background: var(--espresso); color: var(--cream); }
.section--dark .lead, .section--dark .body, .section--dark .subtitle { color: rgba(239, 227, 206, 0.78); }
.section--dark .eyebrow-dark { color: rgba(239, 227, 206, 0.6); }

.container {
  max-width: 1320px;
  margin: 0 auto;
}

.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--accent);
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}

/* ── Nav ────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad-x);
  background: rgba(239, 227, 206, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--rule);
  transition: padding 0.3s ease;
}
.nav-logo {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--espresso);
}
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--espresso-soft);
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--espresso);
  color: var(--espresso);
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--espresso); color: var(--cream); }

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

/* ── Hero ───────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px var(--pad-x) 80px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 100px);
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  align-items: center;
}

.hero-text { display: flex; flex-direction: column; gap: 28px; }

.hero-title-wrap { display: flex; flex-direction: column; gap: 18px; }

.hero-title {
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: 0.005em;
  font-weight: 400;
  color: var(--espresso);
}
.hero-title .gold { color: var(--accent); font-style: italic; font-family: var(--serif); font-weight: 300; }

.hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }
.hero-meta span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--espresso-mute);
}

.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--cream-soft);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual img { width: 75%; height: auto; }
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid var(--accent);
  opacity: 0.3;
  pointer-events: none;
}

.hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid var(--rule);
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
  background: var(--cream);
}
.marquee-track {
  display: inline-flex;
  gap: 56px;
  animation: marquee 60s linear infinite;
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.4em;
  color: var(--espresso-mute);
  text-transform: uppercase;
  padding-left: 56px;
}
.marquee-track .star { color: var(--accent); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { aspect-ratio: 1/1; max-width: 420px; margin: 0 auto; }
}

/* ── Section header ─────────────────────────── */

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  margin-bottom: 72px;
}
.section-head--left { align-items: flex-start; text-align: left; }
.section-head .ornament {
  width: 64px;
  height: auto;
  color: var(--accent);
  margin-bottom: 4px;
}

/* ── Services ───────────────────────────────── */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.service {
  background: var(--paper);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: background 0.3s ease;
}
.service:hover { background: var(--cream-soft); }

.service-num {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.service-name {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--espresso);
}
.service-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--espresso-soft);
}
.service-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.service-price {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--espresso);
  white-space: nowrap;
}
.service-duration {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--espresso-mute);
}

.service-tag {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 6px 10px;
  background: var(--paper);
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .service { padding: 36px 28px; }
}

/* ── About ──────────────────────────────────── */

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.about-img {
  aspect-ratio: 4/5;
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
  max-width: 620px;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(26, 22, 18, 0.45);
  backdrop-filter: blur(8px);
  padding: 8px 12px;
}

.about-text { display: flex; flex-direction: column; gap: 24px; }
.signature {
  font-family: var(--display);
  font-style: normal;
  font-size: 24px;
  color: var(--accent);
  margin-top: 8px;
}

.about-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
  color: var(--espresso-soft);
  border-left: 1px solid var(--accent);
  padding-left: 24px;
  margin-top: 12px;
  text-wrap: pretty;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img { max-width: 480px; aspect-ratio: 1/1; }
}

/* ── Studio ─────────────────────────────────── */

.section--studio { background: var(--paper); }

.studio-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.studio-text { display: flex; flex-direction: column; gap: 28px; }

.studio-pillars {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}

.studio-pillar {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
}
.studio-pillar:last-child { border-bottom: 1px solid var(--rule); }

.studio-pillar-num {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--accent);
  padding-top: 2px;
}

.studio-pillar h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}

.studio-pillar p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--espresso-soft);
}

.studio-img-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.studio-img {
  aspect-ratio: 4/5;
  background: var(--cream-deep);
  overflow: hidden;
  position: relative;
}
.studio-img::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid var(--accent);
  opacity: 0.4;
  pointer-events: none;
}
.studio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-img-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-top: 4px;
}
.studio-img-caption .caps {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}
.studio-img-caption .loc {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--espresso-mute);
}

@media (max-width: 900px) {
  .studio-grid { grid-template-columns: 1fr; }
  .studio-img { max-width: 480px; margin: 0 auto; aspect-ratio: 1/1; }
}

/* ── Gallery ────────────────────────────────── */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item {
  aspect-ratio: 4/5;
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  border: none;
  padding: 0;
  display: block;
  width: 100%;
  font: inherit;
  color: inherit;
  text-align: left;
  isolation: isolate;
}
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s ease;
  display: block;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(26, 22, 18, 0) 55%,
    rgba(26, 22, 18, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.gallery-item__caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  color: var(--cream);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.gallery-item__label {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.gallery-item__sub {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(239, 227, 206, 0.72);
  margin-top: 4px;
}
.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
}
.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
}
.gallery-item:hover .gallery-item__caption,
.gallery-item:focus-visible .gallery-item__caption {
  opacity: 1;
  transform: translateY(0);
}
.gallery-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { aspect-ratio: 1/1.1; }
  .gallery-item__caption { opacity: 1; transform: none; }
  .gallery-item::after { opacity: 1; }
}

/* ── Gallery lightbox ──────────────────────── */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(20, 16, 12, 0.92);
  display: grid;
  grid-template-columns: 64px 1fr 64px;
  align-items: center;
  padding: 32px;
  animation: lightboxFade 0.25s ease;
}
@keyframes lightboxFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.gallery-lightbox__stage {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-height: 100%;
  min-height: 0;
}
.gallery-lightbox__stage img {
  max-width: 100%;
  max-height: calc(100vh - 160px);
  object-fit: contain;
  display: block;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.gallery-lightbox__caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--cream);
  text-align: center;
}
.gallery-lightbox__label {
  font-family: var(--serif);
  font-size: 20px;
}
.gallery-lightbox__sub {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(239, 227, 206, 0.6);
}
.gallery-lightbox__close,
.gallery-lightbox__nav {
  background: transparent;
  border: 1px solid rgba(239, 227, 206, 0.3);
  color: var(--cream);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  font-family: var(--serif);
}
.gallery-lightbox__close { font-size: 22px; line-height: 1; }
.gallery-lightbox__nav { font-size: 28px; line-height: 1; }
.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover {
  background: rgba(239, 227, 206, 0.08);
  border-color: var(--cream);
}
.gallery-lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
}
.gallery-lightbox__nav--prev { grid-column: 1; justify-self: start; }
.gallery-lightbox__nav--next { grid-column: 3; justify-self: end; }

@media (max-width: 600px) {
  .gallery-lightbox { grid-template-columns: 1fr; padding: 16px; }
  .gallery-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .gallery-lightbox__nav--prev { left: 12px; grid-column: auto; }
  .gallery-lightbox__nav--next { right: 12px; grid-column: auto; }
  .gallery-lightbox__stage { grid-column: 1; }
  .gallery-lightbox__stage img { max-height: calc(100vh - 200px); }
}

/* ── Pricing ────────────────────────────────── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(40px, 5vw, 80px) clamp(40px, 6vw, 100px);
}

.price-group { display: flex; flex-direction: column; gap: 4px; }

.price-group h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--accent);
  text-transform: uppercase;
  font-style: normal;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dotted var(--rule);
  gap: 16px;
}
.price-row:last-child { border-bottom: none; }
.price-row .name {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--espresso);
}
.price-row .price {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--espresso);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.price-row .note {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--espresso-mute);
  letter-spacing: 0.04em;
  margin-top: 2px;
  grid-column: 1 / -1;
}

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

/* ── Voucher ────────────────────────────────── */

.voucher {
  background: var(--espresso);
  color: var(--cream);
  padding: clamp(60px, 8vw, 100px) clamp(40px, 6vw, 100px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.voucher-card {
  aspect-ratio: 1.6/1;
  background: linear-gradient(135deg, var(--accent-deep) 0%, var(--accent) 50%, var(--accent-soft) 100%);
  color: var(--espresso);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  border: 1px solid var(--accent-soft);
}
.voucher-card::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(26, 22, 18, 0.25);
  pointer-events: none;
}
.voucher-card-top { display: flex; justify-content: space-between; align-items: flex-start; }
.voucher-card-label {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}
.voucher-card-amount {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 0.02em;
}
.voucher-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.voucher-text { display: flex; flex-direction: column; gap: 22px; }
.voucher-text .title { color: var(--cream); }
.voucher-text .eyebrow { color: var(--accent-soft); }
.voucher-text .lead { color: rgba(239, 227, 206, 0.82); }

@media (max-width: 900px) {
  .voucher { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Contact ────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.contact-cell {
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-right: 1px solid var(--rule);
}
.contact-cell:last-child { border-right: none; }
.contact-cell h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact-cell .big {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.4;
  color: var(--espresso);
}
.contact-cell .body { font-size: 14px; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-cell { border-right: none; border-bottom: 1px solid var(--rule); }
  .contact-cell:last-child { border-bottom: none; }
}

/* ── Final CTA ──────────────────────────────── */

.cta-final {
  text-align: center;
  padding: clamp(100px, 14vw, 200px) var(--pad-x);
  background: var(--cream-soft);
  position: relative;
  overflow: hidden;
}

.cta-final::before, .cta-final::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.08;
  pointer-events: none;
}
.cta-final::before { top: -100px; left: -100px; }
.cta-final::after { bottom: -100px; right: -100px; }

.cta-final-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 720px;
  margin: 0 auto;
}

/* ── Footer ─────────────────────────────────── */

.footer {
  background: var(--espresso);
  color: rgba(239, 227, 206, 0.7);
  padding: 60px var(--pad-x) 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1320px;
  margin: 0 auto;
}
.footer h5 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 18px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; transition: color 0.2s; }
.footer ul a:hover { color: var(--cream); }
.footer-brand {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin-bottom: 12px;
}
.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--accent-soft);
  margin-bottom: 18px;
}
.footer-bottom {
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(239, 227, 206, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(239, 227, 206, 0.5);
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Sticky WhatsApp CTA ────────────────────── */

.sticky-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px 14px 18px;
  background: #25D366;
  color: white;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35), 0 4px 12px rgba(0,0,0,0.15);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s;
  cursor: pointer;
}
.sticky-wa:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.45), 0 6px 16px rgba(0,0,0,0.2);
}
.sticky-wa svg { width: 22px; height: 22px; }
.sticky-wa .label-mobile { display: none; }
@media (max-width: 540px) {
  .sticky-wa { padding: 14px; }
  .sticky-wa .label-desktop { display: none; }
}

/* ── Scroll reveal ──────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ── Modal ──────────────────────────────────── */

.modal-bg {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(26, 22, 18, 0.84);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 20px;
  animation: fade-in 0.25s ease;
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--paper);
  max-width: 640px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  padding: 44px 44px 36px;
  position: relative;
  border: 1px solid var(--rule);
}
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 32px; height: 32px;
  background: transparent;
  border: 1px solid var(--rule);
  cursor: pointer;
  font-size: 16px;
  color: var(--espresso);
  display: grid; place-items: center;
}
.modal h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 6px;
}
.modal h3 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 22px 0 10px;
}
.modal p {
  font-size: 14px; line-height: 1.7; color: var(--espresso-soft);
  margin-bottom: 8px;
}
.modal address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
  color: var(--espresso-soft);
}
