/* ════════════════════════════════════════════
   DOMA fitting studio — Website styles
   ════════════════════════════════════════════ */

:root {
  --blush: #FEE0E0;
  --orange: #FB5918;
  --orange-deep: #E14A0F;
  --green: #165947;
  --green-deep: #0D3B2E;
  --peach: #FDA299;
  --yellow: #FFEF3E;
  --white: #FFFFFF;
  --black: #1A1A1A;

  --font-head: 'Anton', 'Impact', 'Arial Narrow', sans-serif;
  --font-body: 'Roboto', system-ui, sans-serif;

  --max: 1320px;
  --pad-x: clamp(20px, 5vw, 80px);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--blush);
  font-family: var(--font-body);
  color: var(--green);
  overflow-x: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

::selection { background: var(--orange); color: var(--white); }

/* ──────── HEADLINE / TYPE UTILS ─────── */
.h-display {
  font-family: var(--font-head);
  font-weight: 400; /* Anton is single-weight */
  text-transform: uppercase;
  color: var(--orange);
  line-height: 0.88;
  letter-spacing: -0.01em;
}

.h-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.h-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
}

.tagline-it {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
  text-transform: lowercase;
  letter-spacing: 0.01em;
}

/* ────────  NAV  ─────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad-x);
  background: transparent;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.nav.scrolled {
  background: rgba(254, 224, 224, 0.98);
  padding-top: 12px;
  padding-bottom: 12px;
  box-shadow: 0 1px 0 rgba(22,89,71,0.08);
}
/* Safari can retain a stale containing-block reference for a fixed descendant
   even after backdrop-filter is toggled off — so avoid backdrop-filter on the
   header altogether rather than trying to reverse it. */
.nav.nav-open {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 30px;
  line-height: 1;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
  transition: height .35s ease;
}
.nav.scrolled .nav-logo img { height: 32px; }
.nav-logo small {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  text-transform: lowercase;
  letter-spacing: 0.22em;
  color: var(--green);
  opacity: 0.7;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  padding: 8px 2px;
  position: relative;
  transition: color .2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 2px;
  height: 2px;
  background: var(--orange);
  transition: right .25s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--orange);
}
.nav-links a.active::after, .nav-links a:hover::after { right: 0; }

.nav-cta {
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 999px;
  transition: background .2s ease, transform .15s ease;
}
.nav-cta:hover { background: var(--orange-deep); transform: translateY(-1px); }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 60;
}
.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav.nav-open .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.nav-open .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

html.no-scroll, html.no-scroll body { overflow: hidden; }

/* ──────── BUTTONS ──────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  transition: background .2s ease, color .2s ease, transform .15s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-secondary:hover { background: var(--green); color: var(--blush); }
.btn-on-green {
  background: var(--yellow);
  color: var(--green);
}
.btn-on-green:hover { background: var(--white); }
.btn-on-green-secondary {
  background: transparent;
  color: var(--yellow);
  border: 2px solid var(--yellow);
}
.btn-on-green-secondary:hover { background: var(--yellow); color: var(--green); }
.btn .arrow {
  width: 16px; height: 12px;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 6h13M9 1l5 5-5 5' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
          mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 6h13M9 1l5 5-5 5' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
  transition: transform .25s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

/* ──────── SECTION SHELL ────────────── */
.section {
  position: relative;
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
  overflow: hidden;
}
.section-inner { max-width: var(--max); margin: 0 auto; position: relative; }
.bg-blush  { background: var(--blush);  color: var(--green); }
.bg-green  { background: var(--green);  color: rgba(255,255,255,0.85); }
.bg-yellow { background: var(--yellow); color: var(--green); }

.bg-green .h-eyebrow { color: var(--yellow); }
.bg-green .h-eyebrow::before { background: var(--yellow); }
.bg-green .h-display { color: var(--yellow); }
.bg-yellow .h-display { color: var(--orange); }

/* ──────── DECORATIVE PIECES ────────── */
.deco { position: absolute; pointer-events: none; }
.deco svg { display: block; width: 100%; height: 100%; }
.blob {
  position: absolute;
  background: var(--peach);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  pointer-events: none;
}
.star {
  position: absolute;
  opacity: 0.6;
  pointer-events: none;
}

/* ════════════════════════════════════
   1. HERO
   ════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 80px;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-tag {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.7;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-tag::before, .hero-tag::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--green);
  opacity: 0.4;
}
.hero-tag::after { flex: 1; max-width: 80px; }

.hero h1 {
  font-family: var(--font-head);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--orange);
  font-size: clamp(64px, 12vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.015em;
  margin-bottom: 36px;
  max-width: 14ch;
}
.hero h1 .it {
  font-style: italic;
  color: var(--orange);
}
.hero-sub {
  max-width: 620px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--green);
  font-weight: 400;
  margin-bottom: 44px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-tagline {
  position: absolute;
  bottom: 0; right: 0;
  font-family: var(--font-head);
  font-style: italic;
  color: var(--orange);
  font-size: clamp(20px, 2.2vw, 36px);
  letter-spacing: 0.01em;
}

.hero-meta {
  position: absolute;
  bottom: 8px;
  left: var(--pad-x);
  right: var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: var(--max);
  margin: 0 auto;
  z-index: 2;
  gap: 24px;
}
.hero-meta-item {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.55;
  line-height: 1.6;
}
.hero-meta-item strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 400;
  font-style: italic;
  text-transform: lowercase;
  letter-spacing: 0;
  font-size: 22px;
  color: var(--orange);
  opacity: 1;
  margin-bottom: 2px;
}

/* hero decoration */
.hero-deco-squiggle-tr {
  top: 100px; right: 6%;
  width: clamp(140px, 18vw, 280px);
  height: 100px;
  transform: rotate(-8deg);
}
.hero-deco-zigzag {
  bottom: 24%; left: 48%;
  width: 110px; height: 90px;
  opacity: 0.9;
  transform: rotate(8deg);
}
.hero-blob {
  bottom: -120px; right: -100px;
  width: 480px; height: 440px;
  opacity: 0.55;
}
.hero-blob-yellow {
  top: 18%; right: 8%;
  width: 60px; height: 60px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.95;
}
.hero-star {
  top: 18%; right: 30%;
  width: 80px; height: 80px;
}

/* ════════════════════════════════════
   2. WHAT IS DOMA  (green)
   ════════════════════════════════════ */
.what-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
}
.what h2 {
  font-family: var(--font-head);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--yellow);
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.88;
  letter-spacing: -0.01em;
  margin-top: 28px;
}
.what-copy {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  font-weight: 300;
}
.what-copy p + p { margin-top: 18px; }
.what-copy strong {
  color: var(--white);
  font-weight: 500;
}

.what-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 100px;
}
.stat {
  padding: 0;
  position: relative;
}
.stat-num {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(50px, 6vw, 90px);
  color: var(--yellow);
  line-height: 0.9;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
}
.stat-label strong { color: #fff; font-weight: 500; display: block; margin-bottom: 2px; letter-spacing: 0.04em; text-transform: uppercase; font-size: 11px; }

.what-deco-squiggle {
  top: 50px; right: 5%;
  width: 200px; height: 90px;
  opacity: 0.6;
}
.what-blob {
  top: -120px; left: -80px;
  width: 320px; height: 320px;
  background: var(--orange);
  opacity: 0.12;
}

/* ════════════════════════════════════
   3. THE ROOMS  (blush)
   ════════════════════════════════════ */
.rooms-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 70px;
  flex-wrap: wrap;
}
.rooms-head h2 {
  font-family: var(--font-head);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--green);
  font-size: clamp(54px, 8vw, 130px);
  line-height: 0.86;
  letter-spacing: -0.015em;
  max-width: 14ch;
}
.rooms-head .h-eyebrow { margin-bottom: 20px; }
.rooms-head-right {
  max-width: 380px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--green);
  opacity: 0.85;
  padding-bottom: 10px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.room-card {
  display: flex;
  flex-direction: column;
  position: relative;
}
.room-photo {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--peach);
  isolation: isolate;
}
.room-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1);
}
.room-card:hover .room-photo img { transform: scale(1.05); }

/* arch mask for room 1 */
.room-photo-arch {
  border-radius: 50% 50% 0 0 / 22% 22% 0 0;
  aspect-ratio: 4 / 5;
}
/* blob mask */
.room-photo-blob {
  border-radius: 58% 42% 55% 45% / 50% 60% 40% 50%;
  aspect-ratio: 4 / 5;
}
/* scalloped photo via clip-path-like mask using svg */
.room-photo-scallop {
  aspect-ratio: 4 / 5;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 125' preserveAspectRatio='none'%3E%3Cpath d='M0,12 Q5,0 12,8 Q18,0 25,8 Q31,0 38,8 Q44,0 50,8 Q56,0 62,8 Q69,0 75,8 Q82,0 88,8 Q95,0 100,12 L100,113 Q95,125 88,117 Q82,125 75,117 Q69,125 62,117 Q56,125 50,117 Q44,125 38,117 Q31,125 25,117 Q18,125 12,117 Q5,125 0,113 Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 125' preserveAspectRatio='none'%3E%3Cpath d='M0,12 Q5,0 12,8 Q18,0 25,8 Q31,0 38,8 Q44,0 50,8 Q56,0 62,8 Q69,0 75,8 Q82,0 88,8 Q95,0 100,12 L100,113 Q95,125 88,117 Q82,125 75,117 Q69,125 62,117 Q56,125 50,117 Q44,125 38,117 Q31,125 25,117 Q18,125 12,117 Q5,125 0,113 Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

/* placeholder photo (cast area) */
.room-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  padding: 32px;
  background: var(--peach);
  color: var(--green);
}
.room-photo-placeholder::before {
  content: "";
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.15;
}
.placeholder-label {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.7;
  line-height: 1.5;
}
.placeholder-label strong {
  display: block;
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 400;
  text-transform: lowercase;
  letter-spacing: 0;
  font-size: 22px;
  color: var(--green);
  opacity: 1;
  margin-bottom: 2px;
}

.room-meta {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 14px;
}
.room-num {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--orange);
  font-weight: 700;
}
.room-size {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--green);
  opacity: 0.5;
  margin-left: auto;
}
.room-name {
  font-family: var(--font-head);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--green);
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 0.92;
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.room-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--green);
  opacity: 0.85;
}

/* split layout: large arch left, 2x2 blob grid right */
.rooms-grid.rooms-grid-split {
  grid-template-columns: 0.85fr 1fr;
  align-items: stretch;
  gap: 40px;
}
.room-card-feature .room-photo-arch {
  aspect-ratio: auto;
  flex: 1 1 auto;
  min-height: 420px;
}
.rooms-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 28px;
}
.room-card-mini .room-photo {
  margin-bottom: 16px;
}
.room-card-mini .room-photo-blob {
  aspect-ratio: 5 / 7;
}
.room-card-mini .room-name {
  font-size: clamp(22px, 1.9vw, 30px);
  margin-bottom: 8px;
}
.room-card-mini .room-desc {
  font-size: 13px;
}
.room-card-mini .room-photo-placeholder { padding: 20px; }
/* gentle variety across the four blobs */
.rooms-mini-grid .room-card-mini:nth-child(2) .room-photo-blob {
  border-radius: 45% 55% 42% 58% / 55% 48% 52% 45%;
}
.rooms-mini-grid .room-card-mini:nth-child(3) .room-photo-blob {
  border-radius: 52% 48% 60% 40% / 45% 55% 45% 55%;
}
.rooms-mini-grid .room-card-mini:nth-child(4) .room-photo-blob {
  border-radius: 60% 40% 48% 52% / 52% 45% 55% 48%;
}

/* rooms decoration */
.rooms-deco-zigzag {
  top: 8%; right: 4%;
  width: 90px; height: 80px;
  opacity: 0.7;
}
.rooms-deco-squiggle {
  bottom: 60px; left: 30%;
  width: 200px; height: 70px;
  opacity: 0.5;
}

/* ════════════════════════════════════
   4. THE OFFER (yellow)
   ════════════════════════════════════ */
.offer-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.offer-head h2 {
  font-family: var(--font-head);
  font-weight: 400;
  color: var(--orange);
  font-size: clamp(54px, 8vw, 130px);
  line-height: 0.86;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.offer-head .h-eyebrow { margin-bottom: 20px; }
.offer-head-right {
  max-width: 380px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--green);
  padding-bottom: 8px;
}
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.pkg {
  border-radius: 28px;
  padding: 44px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.pkg-essential {
  background: var(--blush);
  color: var(--green);
}
.pkg-allin {
  background: var(--green);
  color: var(--white);
}
.pkg-badge {
  position: absolute;
  top: 32px; right: 32px;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
}
.pkg-allin .pkg-badge {
  background: var(--yellow);
  color: var(--green);
}
.pkg-label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
  opacity: 0.55;
}
.pkg-allin .pkg-label { color: var(--yellow); opacity: 0.9; }
.pkg-name {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(60px, 7vw, 96px);
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}
.pkg-essential .pkg-name { color: var(--orange); }
.pkg-allin .pkg-name { color: var(--yellow); }

.pkg-desc {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 28px;
  opacity: 0.92;
  max-width: 38ch;
}
.pkg-allin .pkg-desc { color: rgba(255,255,255,0.82); }
.pkg-list {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}
.pkg-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  font-size: 14px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(22,89,71,0.12);
}
.pkg-allin .pkg-list li {
  border-bottom-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.88);
}
.pkg-list li:last-child { border-bottom: none; }
.pkg-list .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 7px;
}
.pkg-allin .pkg-list .dot { background: var(--yellow); }
.pkg-cta { align-self: flex-start; margin-top: auto; }

.pkg-allin::after {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  background: var(--yellow);
  border-radius: 50% 60% 40% 55% / 55% 45% 60% 40%;
  opacity: 0.08;
}

.pkg-quote {
  background: var(--blush);
  color: var(--green);
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.5vw, 32px);
  padding: 10px 16px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 28px;
  line-height: 1.1;
}

.extras {
  background: var(--orange);
  color: var(--white);
  border-radius: 28px;
  padding: clamp(36px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}
.extras h3 {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 56px);
  text-transform: uppercase;
  color: var(--yellow);
  line-height: 0.9;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
  max-width: 16ch;
}
.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 36px;
}
.extras-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
}
.extras-item::before {
  content: "→";
  color: var(--yellow);
  font-weight: 700;
  flex-shrink: 0;
}
.extras-item strong { color: var(--white); font-weight: 600; }

.offer-ctas {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.offer-deco-blob {
  top: -120px; right: -100px;
  width: 360px; height: 360px;
  background: var(--peach);
  opacity: 0.35;
}

/* ════════════════════════════════════
   FAQ (yellow)
   ════════════════════════════════════ */
.faq-deco-blob {
  bottom: -150px; left: -120px;
  width: 380px; height: 380px;
  background: var(--peach);
  opacity: 0.30;
}
.faq-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.faq-head h2 {
  font-family: var(--font-head);
  font-weight: 400;
  color: var(--orange);
  font-size: clamp(54px, 8vw, 130px);
  line-height: 0.86;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.faq-head .h-eyebrow { margin-bottom: 20px; }
.faq-head-right {
  max-width: 340px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--green);
  padding-bottom: 10px;
}
.faq-list {
  max-width: 940px;
  position: relative;
}
.faq-item { border-top: 1.5px solid rgba(22, 89, 71, 0.22); }
.faq-item:last-child { border-bottom: 1.5px solid rgba(22, 89, 71, 0.22); }
.faq-q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.35;
  color: var(--green);
  transition: color 0.15s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--orange); }
.faq-mark {
  flex: none;
  position: relative;
  width: 20px; height: 20px;
  margin-top: 2px;
}
.faq-mark i {
  position: absolute;
  background: var(--orange);
  border-radius: 2px;
}
.faq-mark .bar-h { top: 50%; left: 0; width: 100%; height: 3px; transform: translateY(-50%); }
.faq-mark .bar-v { left: 50%; top: 0; height: 100%; width: 3px; transform: translateX(-50%); }
.faq-item[open] .faq-mark .bar-v { display: none; }
.faq-a {
  padding: 2px 56px 28px 0;
  max-width: 72ch;
  animation: faqOpen 0.25s ease;
}
.faq-a p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--green);
  opacity: 0.88;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════
   5. WHY DOMA (blush)
   ════════════════════════════════════ */
.why-head {
  margin-bottom: 70px;
}
.why-head h2 {
  font-family: var(--font-head);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--green);
  font-size: clamp(54px, 8vw, 130px);
  line-height: 0.86;
  letter-spacing: -0.015em;
  margin-top: 24px;
  max-width: 13ch;
}
.why-head h2 .acc { color: var(--orange); }

/* rotating accent word */
.word-rotate {
  display: inline-block;
  will-change: transform, opacity;
}
@keyframes wordRoll {
  0%   { opacity: 1; transform: translateY(0); }
  42%  { opacity: 0; transform: translateY(-0.4em); }
  58%  { opacity: 0; transform: translateY(0.4em); }
  100% { opacity: 1; transform: translateY(0); }
}
.word-rotate.rolling { animation: wordRoll 0.6s ease both; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 2px solid rgba(22,89,71,0.15);
}
.why-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 36px 40px 36px 0;
  border-bottom: 2px solid rgba(22,89,71,0.15);
  position: relative;
}
.why-item:nth-child(odd) {
  border-right: 2px solid rgba(22,89,71,0.15);
  padding-right: 40px;
}
.why-item:nth-child(even) {
  padding-left: 40px;
}
.why-num {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
}
.why-h {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(22px, 2.5vw, 32px);
  text-transform: uppercase;
  color: var(--green);
  line-height: 0.96;
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.why-p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--green);
  opacity: 0.85;
}
.why-p strong { font-weight: 500; }

.why-deco-squiggle {
  top: 50px; right: 4%;
  width: 200px; height: 80px;
  opacity: 0.5;
}
.why-deco-zigzag {
  bottom: 20%; left: 2%;
  width: 80px; height: 70px;
  opacity: 0.6;
}

/* ════════════════════════════════════
   6. ABOUT (green)
   ════════════════════════════════════ */
.about-head {
  margin-bottom: 70px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.about-head h2 {
  font-family: var(--font-head);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--yellow);
  font-size: clamp(54px, 8vw, 130px);
  line-height: 0.86;
  letter-spacing: -0.015em;
  margin-top: 24px;
}
.about-head-right {
  max-width: 360px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  padding-bottom: 12px;
}

.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
}
.founder-portrait {
  aspect-ratio: 4 / 5;
  background: var(--peach);
  overflow: hidden;
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.founder-portrait:has(.placeholder-label) {
  padding: 24px;
}
.founder-portrait.nelly {
  border-radius: 50% 50% 0 0 / 22% 22% 0 0;
  background: var(--blush);
}
.founder-portrait.marian {
  border-radius: 50% 50% 0 0 / 22% 22% 0 0;
  background: var(--yellow);
}
.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder-portrait .placeholder-label {
  color: var(--green);
  opacity: 0.85;
  text-align: center;
}
.founder-portrait .placeholder-label strong {
  color: var(--green);
  opacity: 1;
  font-size: 22px;
}
.founder-name {
  font-family: var(--font-head);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--yellow);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.92;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.founder-role {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--peach);
  font-weight: 600;
  margin-bottom: 18px;
}
.founder-bio {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
}
.founder-bio strong { color: var(--white); font-weight: 500; }
.founder-bio p + p { margin-top: 14px; }

.about-footer {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-family: var(--font-head);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  max-width: 30ch;
}
.about-footer .acc { color: var(--yellow); font-style: italic; text-transform: lowercase; }

.about-deco-squiggle {
  top: 60px; right: 5%;
  width: 220px; height: 80px;
  opacity: 0.45;
}
.about-deco-blob {
  bottom: 100px; right: -100px;
  width: 280px; height: 280px;
  background: var(--orange);
  opacity: 0.12;
}

/* ════════════════════════════════════
   7. LET'S TALK (blush)
   ════════════════════════════════════ */
.talk-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.talk-left h2 {
  font-family: var(--font-head);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--orange);
  font-size: clamp(70px, 10vw, 180px);
  line-height: 0.86;
  letter-spacing: -0.015em;
  margin-top: 24px;
  margin-bottom: 36px;
}
.talk-sub {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65;
  color: var(--green);
  max-width: 480px;
  margin-bottom: 36px;
}
.talk-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.talk-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  border-top: 2px solid rgba(22,89,71,0.15);
  padding-top: 36px;
}
.talk-info-item {
  font-size: 13px;
  line-height: 1.55;
  color: var(--green);
}
.talk-info-item .lbl {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 8px;
  display: block;
}
.talk-info-item a:hover { color: var(--orange); }
.talk-info-item strong {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.005em;
  color: var(--green);
  display: block;
  line-height: 1.1;
}

/* form card */
.form-card {
  background: var(--green);
  color: var(--white);
  border-radius: 28px;
  padding: clamp(32px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.form-card-head {
  font-family: var(--font-head);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(28px, 3vw, 44px);
  color: var(--yellow);
  line-height: 0.92;
  margin-bottom: 28px;
  letter-spacing: -0.005em;
}
.form-row { margin-bottom: 18px; position: relative; }
.form-row label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 8px;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  transition: border-color .2s ease, background .2s ease;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--yellow);
  background: rgba(255,255,255,0.1);
}
.form-row textarea { resize: vertical; min-height: 110px; }
.form-row select option { color: var(--green); background: var(--white); }
.form-row.invalid input,
.form-row.invalid textarea {
  border-color: var(--peach);
  background: rgba(253,162,153,0.12);
}
.form-row .err {
  font-size: 11px;
  color: var(--peach);
  margin-top: 6px;
  display: none;
  letter-spacing: 0.05em;
}
.form-row.invalid .err { display: block; }

.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-submit {
  background: var(--yellow);
  color: var(--green);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 999px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  transition: background .2s ease, transform .15s ease;
}
.form-submit:hover { background: var(--white); transform: translateY(-1px); }
.form-note {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  margin-top: 14px;
  text-align: center;
}
.form-success {
  display: none;
  text-align: center;
  padding: 30px 0;
}
.form-success .h {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 36px;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.form-success .p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.6;
}
.form-card.sent .form-inputs { display: none; }
.form-card.sent .form-success { display: block; }

.talk-deco-zigzag {
  top: 80px; right: 4%;
  width: 80px; height: 70px;
}
.talk-deco-squiggle {
  bottom: 80px; left: 30%;
  width: 200px; height: 70px;
  opacity: 0.5;
}

/* ════════════════════════════════════
   8. FOOTER (green)
   ════════════════════════════════════ */
.site-footer {
  background: var(--green);
  color: rgba(255,255,255,0.7);
  padding: clamp(60px, 8vw, 100px) var(--pad-x) 36px;
  position: relative;
  overflow: hidden;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto 60px;
}
.footer-brand .logo {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(60px, 7vw, 96px);
  color: var(--orange);
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}
.footer-brand .sub {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: lowercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.footer-brand .tag {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 400;
  color: var(--yellow);
  font-size: 28px;
  letter-spacing: 0.01em;
}
.footer-brand .tag::before {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: var(--yellow);
  opacity: 0.55;
  margin-bottom: 16px;
}
.footer-logo {
  height: clamp(88px, 10vw, 118px);
  width: auto;
  display: block;
  margin-bottom: 30px;
}
.footer-col h3 {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}
.footer-col li a { transition: color .2s ease; }
.footer-col li a:hover { color: var(--yellow); }

.footer-mega {
  font-family: var(--font-head);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--orange);
  font-size: clamp(80px, 14vw, 280px);
  line-height: 0.84;
  letter-spacing: -0.025em;
  margin: 40px 0 30px;
  text-align: center;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  max-width: var(--max);
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom-left, .footer-bottom-right {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-right { display: flex; gap: 18px; }

.footer-deco-squiggle {
  top: 30px; right: 6%; left: auto;
  width: 200px; height: 80px;
  opacity: 0.25;
}

/* ════════════════════════════════════
   BOOKING SHEET (modal)
   ════════════════════════════════════ */
.sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(13, 59, 46, 0.5);
  backdrop-filter: blur(8px);
  z-index: 99;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .3s ease;
}
.sheet-backdrop.open { display: flex; opacity: 1; }

.sheet {
  background: var(--blush);
  border-radius: 28px;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow: auto;
  position: relative;
  padding: 44px;
  transform: translateY(20px);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.sheet-backdrop.open .sheet { transform: translateY(0); }
.sheet-close {
  position: absolute;
  top: 22px; right: 22px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}
.sheet-close:hover { background: var(--orange); color: var(--white); }
.sheet-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 14px;
}
.sheet h3 {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--orange);
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.sheet-sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--green);
  margin-bottom: 28px;
  max-width: 50ch;
}

.sheet-cal {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 24px;
}
.cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.cal-month {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 22px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.cal-nav {
  display: flex;
  gap: 8px;
}
.cal-nav button {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--green);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.cal-nav button:hover { background: var(--orange); color: var(--white); }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-dow {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.5;
  padding: 6px 0;
  font-weight: 600;
}
.cal-day {
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--green);
  font-weight: 500;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.cal-day:hover:not(.disabled) {
  background: var(--peach);
}
.cal-day.disabled {
  color: rgba(22,89,71,0.25);
  cursor: not-allowed;
}
.cal-day.today {
  outline: 1.5px dashed var(--orange);
  outline-offset: -2px;
}
.cal-day.selected {
  background: var(--orange);
  color: var(--white);
}

.slot-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}
.slot {
  padding: 12px;
  text-align: center;
  border-radius: 10px;
  background: var(--blush);
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
  border: 1.5px solid transparent;
}
.slot:hover { border-color: var(--orange); }
.slot.selected { background: var(--orange); color: var(--white); }

.sheet-confirm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.sheet-summary {
  font-size: 13px;
  color: var(--green);
}
.sheet-summary .v {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 22px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  display: block;
}

/* ════════════════════════════════════
   TWEAKS PANEL — minimal
   ════════════════════════════════════ */
.tweaks-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--white);
  border-radius: 20px;
  padding: 22px;
  width: 280px;
  box-shadow: 0 16px 50px rgba(22,89,71,0.2);
  z-index: 60;
  display: none;
}
.tweaks-panel.on { display: block; }
.tweaks-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.tweaks-head .t {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 22px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.tweaks-close {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--green);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tweak-row { margin-bottom: 14px; }
.tweak-row .lbl {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green);
  opacity: 0.6;
  margin-bottom: 8px;
}
.tweak-opts { display: flex; gap: 6px; }
.tweak-opt {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--blush);
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1.5px solid transparent;
  cursor: pointer;
  flex: 1;
  text-align: center;
}
.tweak-opt.active { border-color: var(--orange); color: var(--orange); }

body[data-deco="low"] .deco,
body[data-deco="low"] .blob,
body[data-deco="low"] .star { opacity: 0.15; }
body[data-deco="off"] .deco,
body[data-deco="off"] .blob,
body[data-deco="off"] .star { display: none; }

/* ════════════════════════════════════
   ROOMS CTA
   ════════════════════════════════════ */
.rooms-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: clamp(40px, 5vw, 64px);
}
.rooms-cta .note {
  font-size: 13px;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.55;
}

/* ════════════════════════════════════
   GALLERY PAGE
   ════════════════════════════════════ */
.gallery-section { padding-top: clamp(150px, 16vw, 200px); }
.gallery-head {
  max-width: var(--max);
  margin: 0 auto clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: end;
}
.gallery-head h1 {
  font-family: var(--font-head);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--green);
  font-size: clamp(52px, 8vw, 116px);
  line-height: 0.88;
  letter-spacing: -0.01em;
  margin-top: 18px;
}
.gallery-head h1 em {
  font-style: italic;
  color: var(--orange);
}
.gallery-head-right {
  font-size: 16px;
  line-height: 1.6;
  color: var(--green);
  opacity: 0.85;
  padding-bottom: 8px;
}
.gallery-back {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.gallery-back:hover { color: var(--orange-deep); }

.gallery-grid {
  max-width: var(--max);
  margin: 0 auto;
  columns: 3;
  column-gap: 20px;
}
.gallery-tile {
  break-inside: avoid;
  margin: 0 0 20px;
}
.gallery-img {
  position: relative;
  overflow: hidden;
  background: var(--peach);
}
.gallery-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(.2,.6,.2,1);
}
.gallery-tile:hover .gallery-img img { transform: scale(1.05); }
/* Real photos keep their natural aspect ratio — true masonry, no cropping.
   The ratio-* classes only size the placeholder boxes, which have no intrinsic image. */
.gallery-img:not(.is-placeholder) { aspect-ratio: auto; }
.gallery-ratio-portrait  { aspect-ratio: 4 / 5; }
.gallery-ratio-tall      { aspect-ratio: 3 / 4; }
.gallery-ratio-square    { aspect-ratio: 1 / 1; }
.gallery-ratio-landscape { aspect-ratio: 4 / 3; }
.gallery-ratio-wide      { aspect-ratio: 3 / 2; }
.gallery-img.is-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  padding: 28px;
}
.gallery-cap {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 12px;
}
.gallery-cap .n {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--orange);
  font-weight: 700;
}
.gallery-cap .l {
  font-size: 13px;
  color: var(--green);
  opacity: 0.8;
}

/* ════════════════════════════════════
   LEGAL PAGES (imprint / privacy / terms)
   ════════════════════════════════════ */
.legal-section { padding-top: clamp(150px, 16vw, 200px); }
.legal-inner { max-width: 780px; margin: 0 auto; }
.legal-back {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.legal-back:hover { color: var(--orange-deep); }
.legal-inner h1 {
  font-family: var(--font-head);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--green);
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin: 18px 0 24px;
}
.legal-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--green);
  opacity: 0.85;
  max-width: 60ch;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.legal-block {
  border-top: 1.5px solid rgba(22, 89, 71, 0.18);
  padding: 28px 0;
}
.legal-block h2 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.legal-block .ph {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--green);
  opacity: 0.5;
  line-height: 1.7;
}
.legal-block p {
  font-size: 15px;
  line-height: 1.72;
  color: var(--green);
  opacity: 0.9;
  max-width: 68ch;
}
.legal-block p + p { margin-top: 12px; }
.legal-block p strong { font-weight: 700; opacity: 1; }
.legal-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  max-width: 68ch;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-list li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--green);
  opacity: 0.9;
  position: relative;
  padding-left: 22px;
}
.legal-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--orange);
}
/* contracting party card */
.legal-party {
  border: 1.5px solid rgba(22, 89, 71, 0.2);
  border-radius: 16px;
  padding: 22px 24px;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.legal-party .pk {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.legal-party p { font-size: 15px; line-height: 1.7; color: var(--green); }
.legal-party a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.legal-party a:hover { color: var(--orange); }
/* language toggle */
.legal-langs {
  display: flex;
  gap: 8px;
  margin-bottom: clamp(28px, 3.5vw, 40px);
}
.legal-lang-btn {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 18px;
  border: 1.5px solid rgba(22, 89, 71, 0.28);
  border-radius: 999px;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.legal-lang-btn:hover { border-color: var(--green); }
.legal-lang-btn.is-active {
  background: var(--green);
  color: var(--blush);
  border-color: var(--green);
}
.legal-lang { display: none; }
.legal-lang.is-active { display: block; }
.legal-note {
  font-size: 13px;
  line-height: 1.6;
  color: var(--green);
  opacity: 0.7;
  font-style: italic;
  max-width: 68ch;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.legal-sub {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.55;
  margin: 16px 0 6px;
}
.legal-callout {
  border-left: 3px solid var(--orange);
  background: rgba(251, 89, 24, 0.06);
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
  margin: 4px 0 14px;
  max-width: 68ch;
}
.legal-callout p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--orange-deep);
  opacity: 1;
  margin: 0;
}
.legal-authority {
  font-size: 15px;
  line-height: 1.6;
  color: var(--green);
  opacity: 0.9;
  max-width: 68ch;
  margin-top: 12px;
  padding-left: 14px;
  border-left: 1.5px solid rgba(22, 89, 71, 0.25);
}

/* ════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════ */
@media (max-width: 920px) {
  .nav-burger { display: flex; order: 3; }
  .nav-cta { padding: 10px 16px; font-size: 11px; order: 2; }

  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2px;
    background: rgba(254, 224, 224, 0.98);
    padding: 110px 32px 40px;
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 55;
    overflow-y: auto;
  }
  .nav.nav-open .nav-links { transform: translateX(0); }
  .nav-links a {
    width: 100%;
    font-size: 22px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(22,89,71,0.12);
  }
  .nav-links a::after { display: none; }

  .hero { min-height: auto; padding-top: 140px; padding-bottom: 120px; justify-content: flex-start; }
  .hero-meta { position: static; flex-direction: column; align-items: flex-start; margin: 60px 0 0; max-width: none; gap: 18px; }
  .hero-tagline { position: static; margin-top: 24px; display: block; }
  .hero-deco-zigzag, .hero-star, .hero-blob-yellow { display: none; }

  .what-grid { grid-template-columns: 1fr; gap: 24px; }
  .what-stats { grid-template-columns: 1fr; }
  .stat { padding-bottom: 0; }

  .rooms-grid { grid-template-columns: 1fr; }
  .rooms-grid.rooms-grid-split { grid-template-columns: 1fr; gap: 32px; }
  .rooms-mini-grid { grid-template-columns: 1fr 1fr; }

  .gallery-head { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .gallery-grid { columns: 2; }

  .offer-grid { grid-template-columns: 1fr; }
  .extras-grid { grid-template-columns: 1fr; gap: 12px; }
  .pkg-badge { position: static; align-self: flex-start; order: -1; margin-bottom: 16px; }

  .faq-head { display: block; }
  .faq-head-right { margin-top: 18px; max-width: none; padding-bottom: 0; }
  .faq-a { padding-right: 24px; }

  .why-grid { grid-template-columns: 1fr; }
  .why-item:nth-child(odd) { border-right: none; padding-right: 0; }
  .why-item:nth-child(even) { padding-left: 0; }
  .why-item { grid-template-columns: 60px 1fr; padding: 28px 0; }

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

  .talk-grid { grid-template-columns: 1fr; }
  .talk-info { grid-template-columns: 1fr; }
  .form-2col { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .sheet { padding: 28px 22px; }
  .slot-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .hero h1 { font-size: clamp(54px, 16vw, 88px); }
  .pkg { padding: 28px; }
  .extras { padding: 28px; }
  .footer-top { grid-template-columns: 1fr; }
  .tweaks-panel { left: 16px; right: 16px; width: auto; bottom: 16px; }
  .gallery-grid { columns: 1; }
  .rooms-mini-grid { grid-template-columns: 1fr; }
}
