/* ===========================================================
   OMORFIA THE SALON — Design System v2
   Palette: deep aubergine ink · warm ivory paper · brass gold
   dusty rose · bottle moss
   Display: Fraunces · Body: Manrope
   Motif: Greek meander (meander) — nod to "omorfia" (ομορφιά)
   =========================================================== */

/* ─────────────────────────────────────────
   1. DESIGN TOKENS
   ───────────────────────────────────────── */
:root {
  --ink:        #241220;
  --ink-soft:   #4a3b45;
  --paper:      #f3ecdf;
  --paper-deep: #eae0cd;
  --gold:       #c6a15b;
  --gold-deep:  #7a5b26;
  --gold-light: #e8cfa0;
  --rose:       #c98f87;
  --moss:       #2b3a29;
  --moss-deep:  #1e2a1c;
  --line:       #ddcdad;
  --white:      #fffaf2;

  --font-display: "Fraunces", "Iowan Old Style", "Georgia", serif;
  --font-body:    "Manrope", "Segoe UI", system-ui, sans-serif;

  --container:  min(76rem, 92vw);
  --radius:     2px;
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Spacing scale */
  --space-xs: clamp(1.5rem, 3vw, 2.5rem);
  --space-sm: clamp(2.5rem, 5vw, 4rem);
  --space-md: clamp(4rem, 7vw, 6.5rem);
  --space-lg: clamp(5rem, 9vw, 9rem);
}

/* Force light mode always */
@media (prefers-color-scheme: dark) {
  :root { color-scheme: light; }
}

/* ─────────────────────────────────────────
   2. RESET & BASE
   ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.93rem + 0.28vw, 1.12rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: var(--container);
  margin-inline: auto;
}

/* ─────────────────────────────────────────
   3. ACCESSIBILITY
   ───────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: 1rem; top: -3rem;
  background: var(--ink);
  color: var(--white);
  padding: .75rem 1.25rem;
  z-index: 9999;
  border-radius: 2px;
  transition: top .2s var(--ease);
  font-weight: 700;
  font-size: .85rem;
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}

/* ─────────────────────────────────────────
   4. TYPOGRAPHY
   ───────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(3rem, 2rem + 5.5vw, 7rem); }
h2 { font-size: clamp(2.2rem, 1.6rem + 3vw, 4rem); }
h3 { font-size: clamp(1.4rem, 1.1rem + 1.5vw, 2.1rem); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: .6em;
  margin-bottom: .8em;
}
.eyebrow::before {
  content: "";
  width: 1.4em; height: 1px;
  background: currentColor;
  display: inline-block;
  flex-shrink: 0;
}
.eyebrow--light { color: rgba(243,236,223,.75); }
.eyebrow--light::before { background: rgba(243,236,223,.5); }

.lede {
  font-size: clamp(1.05rem, .95rem + .5vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 44ch;
  line-height: 1.5;
  margin: 0;
}

/* ─────────────────────────────────────────
   5. BUTTONS
   ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .04em;
  padding: .95em 1.75em;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    transform .3s var(--ease),
    background .3s var(--ease),
    color .3s var(--ease),
    border-color .3s var(--ease),
    box-shadow .3s var(--ease);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }
.btn--small { padding: .65em 1.2em; font-size: .72rem; }
.btn[disabled] { opacity: .4; cursor: not-allowed; transform: none; }

.btn-primary {
  background: var(--ink); color: var(--white); border-color: var(--ink);
}
.btn-primary:hover { background: var(--moss-deep); border-color: var(--moss-deep); box-shadow: 0 8px 24px rgba(36,18,32,.18); }

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

.btn-gold {
  background: var(--gold); color: var(--ink); border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--white); box-shadow: 0 8px 24px rgba(198,161,91,.28); }

.btn-outline-light {
  background: transparent;
  color: rgba(243,236,223,.92);
  border-color: rgba(243,236,223,.4);
}
.btn-outline-light:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ─────────────────────────────────────────
   6. MEANDER MOTIF
   ───────────────────────────────────────── */
.meander {
  display: block; width: 100%; height: 16px;
  flex-shrink: 0;
}
.meander--gold  { color: var(--gold); }
.meander--moss  { color: rgba(243,236,223,.5); }
.meander--paper { color: rgba(243,236,223,.2); }

/* ─────────────────────────────────────────
   7. CUSTOM CURSOR (desktop only)
   ───────────────────────────────────────── */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, [role="button"] { cursor: none; }
}
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
}
.cursor-dot {
  position: absolute;
  top: -4px; left: -4px;
  width: 8px; height: 8px;
  background: var(--gold-deep);
  border-radius: 50%;
  transform: translate(var(--cx, 0), var(--cy, 0));
  transition: none;
}
.cursor-ring {
  position: absolute;
  top: -20px; left: -20px;
  width: 40px; height: 40px;
  border: 1.5px solid var(--gold-deep);
  border-radius: 50%;
  opacity: .5;
  transition: transform .12s var(--ease), width .2s var(--ease), height .2s var(--ease), top .2s var(--ease), left .2s var(--ease);
}
body.cursor-hover .cursor-ring {
  width: 60px; height: 60px;
  top: -30px; left: -30px;
  opacity: .7;
  border-color: var(--gold);
}

/* ─────────────────────────────────────────
   8. TOP BAR
   ───────────────────────────────────────── */
.topbar {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  z-index: 200;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .6rem 0;
  font-size: .75rem;
  letter-spacing: .02em;
}
.topbar a { opacity: .85; transition: opacity .2s, color .2s; }
.topbar a:hover { opacity: 1; color: var(--gold); }
.topbar-address {
  display: flex; align-items: center; gap: .4em;
}
.topbar-address svg { width: .9em; height: .9em; flex-shrink: 0; color: var(--gold); }
.topbar-links {
  display: flex; align-items: center; gap: 1.4rem;
}
.topbar-phone { display: flex; align-items: center; gap: .4em; }
.topbar-phone svg { width: .9em; height: .9em; color: var(--gold); }
.topbar-ig { display: flex; align-items: center; gap: .4em; }
.topbar-ig svg { width: .9em; height: .9em; color: var(--rose); }
.topbar-spt { opacity: .55; }
.topbar-spt a { text-decoration: underline; }

@media (max-width: 860px) {
  .topbar-address { display: none; }
  .topbar .container { justify-content: flex-end; }
  .topbar-spt { display: none; }
}
@media (max-width: 560px) {
  .topbar-ig span { display: none; }
}

/* ─────────────────────────────────────────
   9. NAVIGATION
   ───────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243,236,223,.93);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(36,18,32,.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 0;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 52px;
  width: 52px;
  display: block;
  object-fit: contain;
  border-radius: 50%;
}
.logo-fallback { display: none; }
.wordmark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: baseline;
  gap: .5rem;
  letter-spacing: .01em;
}
.wordmark small {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .5rem;
  letter-spacing: .26em;
  color: var(--gold-deep);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.nav-link {
  position: relative;
  padding-block: .25rem;
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .12em;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1.5px;
  background: var(--gold);
  transition: right .3s var(--ease);
}
.nav-link:hover::after,
.nav-link[aria-current="page"]::after { right: 0; }

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

.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--ink);
  position: relative;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav-toggle span::before { content: ""; position: absolute; top: -7px; }
.nav-toggle span::after  { content: ""; position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    height: 100dvh;
    width: min(85vw, 24rem);
    background: var(--ink);
    color: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    padding: 2.5rem 2.5rem;
    font-size: 1.1rem;
    transform: translateX(110%);
    transition: transform .45s var(--ease);
    z-index: 90;
    box-shadow: -8px 0 40px rgba(36,18,32,.3);
  }
  .nav-links[data-open="true"] { transform: translateX(0); }
  .nav-link { font-size: .9rem; letter-spacing: .1em; }
  .nav-link::after { background: var(--gold); }
  .nav-cta { margin-left: 0; margin-top: 1rem; }
}

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(36,18,32,.5);
  z-index: 89;
  backdrop-filter: blur(2px);
}
.nav-overlay.show { display: block; }

/* ─────────────────────────────────────────
   10. HERO
   ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: min(100svh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform-origin: center;
  will-change: transform;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(36,18,32,.88) 0%,
      rgba(36,18,32,.65) 40%,
      rgba(43,58,41,.55) 70%,
      rgba(30,42,28,.78) 100%),
    radial-gradient(ellipse 80% 70% at 65% 40%,
      rgba(198,161,91,.12) 0%,
      transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: flex-end;
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
  width: var(--container);
  margin-inline: auto;
}

.hero-text { color: var(--paper); }
.hero-text .eyebrow { margin-bottom: 1.2rem; }

.hero-headline {
  font-size: clamp(4rem, 3rem + 7vw, 9rem);
  font-weight: 300;
  line-height: .95;
  color: var(--paper);
  letter-spacing: -.03em;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
  font-weight: 200;
}

.hero-lede {
  font-size: clamp(.9rem, .8rem + .4vw, 1.05rem);
  color: rgba(243,236,223,.72);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 1.5rem;
  margin-bottom: 0;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2.5rem;
}

.hero-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .75rem;
  color: var(--paper);
  flex-shrink: 0;
}
.hero-rating-inner {
  background: rgba(243,236,223,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(243,236,223,.15);
  padding: 1rem 1.2rem;
  text-align: right;
}
.hero-stars {
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: .1em;
  line-height: 1;
}
.hero-rating-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: .4rem;
}
.hero-rating-text strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  color: var(--white);
}
.hero-rating-text span {
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(243,236,223,.65);
  margin-top: .2rem;
}
.hero-info-pill {
  display: flex;
  align-items: center;
  gap: .4em;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(243,236,223,.7);
  padding: .45em .8em;
  border: 1px solid rgba(243,236,223,.18);
  background: rgba(243,236,223,.06);
}
.hero-info-pill svg { width: .85em; height: .85em; color: var(--gold); }

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(243,236,223,.5);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: scrollPulse 2.5s ease-in-out infinite;
}
.hero-scroll-hint svg { width: 1rem; height: 1rem; }
@keyframes scrollPulse {
  0%, 100% { opacity: .5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(4px); }
}

@media (max-width: 860px) {
  .hero-content {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
  .hero-rating {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: flex-start;
  }
  .hero-rating-inner { text-align: left; }
  .hero-rating-text { align-items: flex-start; }
  .hero-scroll-hint { display: none; }
  .hero { min-height: min(85svh, 700px); }
  .hero-headline { font-size: clamp(3.5rem, 2.5rem + 8vw, 5.5rem); }
}

/* ─────────────────────────────────────────
   11. MARQUEE STRIP
   ───────────────────────────────────────── */
.marquee-strip {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  padding: .9rem 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 1.2rem;
  animation: marqueeScroll 32s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(.95rem, .85rem + .4vw, 1.15rem);
  font-style: italic;
  font-weight: 300;
  letter-spacing: .01em;
  will-change: transform;
}
.marquee-track .dot {
  color: var(--gold);
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ─────────────────────────────────────────
   12. BRAND STORY
   ───────────────────────────────────────── */
.section-story {
  background: var(--moss);
  color: var(--paper);
  padding: var(--space-md) 0;
}

.story-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.story-visual {
  position: relative;
}
.story-visual-inner {
  aspect-ratio: 4/5;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(198,161,91,.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(201,143,135,.15) 0%, transparent 50%),
    linear-gradient(135deg, var(--moss-deep), rgba(36,18,32,.8));
  border: 1px solid rgba(243,236,223,.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  overflow: hidden;
}
.story-omega {
  font-family: var(--font-display);
  font-size: clamp(8rem, 6rem + 8vw, 14rem);
  color: rgba(243,236,223,.06);
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
  pointer-events: none;
}
.story-visual-text {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: auto;
}
.story-stat {
  display: flex;
  flex-direction: column;
}
.story-stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.story-stat-label {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(243,236,223,.6);
  margin-top: .2rem;
}

.story-text .eyebrow { color: var(--gold); }
.story-text h2 {
  font-size: clamp(2rem, 1.6rem + 2.5vw, 3.4rem);
  margin-bottom: 1.5rem;
  color: var(--paper);
}
.story-text h2 em { font-style: italic; color: var(--gold); }
.story-text p {
  color: rgba(243,236,223,.82);
  line-height: 1.7;
  font-size: 1.05rem;
}

.story-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 2rem;
}
.story-highlight-item {
  display: flex;
  align-items: center;
  gap: .4em;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(243,236,223,.75);
  padding: .4em .9em;
  border: 1px solid rgba(243,236,223,.2);
}
.story-highlight-item svg { width: .9em; height: .9em; color: var(--gold); }

.story-visual-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--moss-deep);
}

.story-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85) contrast(1.05);
  transition: transform .6s var(--ease);
}
.story-visual:hover .story-photo { transform: scale(1.03); }

.story-photo-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(to top, rgba(36,18,32,.85) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

@media (max-width: 820px) {
  .story-layout { grid-template-columns: 1fr; }
  .story-visual { max-width: 22rem; }
  .story-visual-photo { aspect-ratio: 16/9; }
}

/* ─────────────────────────────────────────
   13. SECTION SHARED STYLES
   ───────────────────────────────────────── */
section { padding: var(--space-md) 0; }

.section-head {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head h2 { max-width: 18ch; }
.section-head h2 em { font-style: italic; color: var(--gold-deep); }
.section-head .lede { margin: 0; }

/* ─────────────────────────────────────────
   14. SERVICES
   ───────────────────────────────────────── */
.services-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 0;
  border: 1px solid var(--line);
  overflow: hidden;
  border-bottom: none;
}
.svc-tab {
  flex: 1;
  padding: 1rem 1.2rem;
  background: var(--paper-deep);
  border: none;
  border-right: 1px solid var(--line);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease);
  display: flex;
  align-items: center;
  gap: .6em;
}
.svc-tab:last-child { border-right: none; }
.svc-tab:hover { background: var(--paper); color: var(--ink); }
.svc-tab.active {
  background: var(--ink);
  color: var(--paper);
}
.svc-tab.active .svc-tab-num { color: var(--gold); }
.svc-tab-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: .9rem;
  color: var(--gold-deep);
  transition: color .25s;
}

.services-content {
  border: 1px solid var(--line);
  background: var(--white);
}

.svc-panel { display: none; }
.svc-panel.active {
  display: block;
  animation: panelFadeIn .4s var(--ease);
}
@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .svc-panel.active { animation: none; }
}

.svc-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.svc-panel-desc {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: space-between;
}
.svc-panel-copy {
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.7;
  margin: 0;
}
.svc-list {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  gap: 0;
}
.svc-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
}
.svc-list li:last-child { border-bottom: none; }
.svc-list li span:first-child { font-weight: 700; }
.svc-list li span:last-child {
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: right;
}

@media (max-width: 700px) {
  .svc-panel-inner { grid-template-columns: 1fr; }
  .svc-panel-desc { border-right: none; border-bottom: 1px solid var(--line); }
  .services-tabs { flex-wrap: wrap; }
  .svc-tab { flex: 1 1 calc(50% - 1px); border-bottom: 1px solid var(--line); }
}

.services-note {
  margin-top: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: .6em;
  font-size: .82rem;
  color: var(--ink-soft);
  padding: .9rem 1.2rem;
  background: var(--paper-deep);
  border: 1px solid var(--line);
}
.services-note svg { width: 1.1em; height: 1.1em; flex-shrink: 0; margin-top: .1rem; color: var(--gold-deep); }

/* ─────────────────────────────────────────
   15. GALLERY
   ───────────────────────────────────────── */
.section-gallery { padding-bottom: 0; }

.gallery-filter {
  display: flex;
  gap: .4rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.gf-btn {
  background: transparent;
  border: 1px solid var(--line);
  padding: .5em 1.2em;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  border-radius: 999px;
  transition: all .25s var(--ease);
}
.gf-btn:hover { border-color: var(--ink); color: var(--ink); }
.gf-btn.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-auto-rows: clamp(7vw, 9vw, 180px);
  gap: .4rem;
  padding: 0;
  margin-top: 0;
}

.g-item {
  grid-column: span 2;
  grid-row: span 2;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--paper-deep);
  border: 1px solid var(--line);
}
.g-item.tall { grid-row: span 3; }
.g-item.wide { grid-column: span 3; }

.g-item-inner {
  position: absolute;
  inset: 0;
  transition: transform .6s var(--ease);
}
.g-item:hover .g-item-inner { transform: scale(1.04); }
.g-item:hover .g-overlay { opacity: 1; }

/* Real photo gallery images */
.g-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.g-placeholder {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(198,161,91,.12) 0%, transparent 60%),
    linear-gradient(145deg, var(--paper-deep), var(--line));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  color: var(--gold-deep);
}
.g-placeholder svg { width: 22%; max-width: 3rem; height: auto; opacity: .45; }
.g-placeholder span {
  font-size: clamp(.55rem, .5rem + .3vw, .72rem);
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .7;
  text-align: center;
  padding: 0 .5rem;
}

.g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(36,18,32,.65);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: .75rem;
  opacity: 0;
  transition: opacity .3s var(--ease);
  backdrop-filter: blur(2px);
}
.g-overlay span:first-child {
  color: var(--paper);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.g-tag {
  color: rgba(243,236,223,.6) !important;
  font-size: .62rem !important;
  letter-spacing: .08em;
  margin-top: .2rem;
}

.gallery-cta {
  padding: 2rem 0 var(--space-md);
  text-align: center;
  display: flex;
  justify-content: center;
}

@media (max-width: 860px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: clamp(18vw, 22vw, 160px);
  }
  .g-item.wide { grid-column: span 4; }
  .g-item { grid-column: span 2; grid-row: span 2; }
  .g-item.tall { grid-row: span 3; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 40vw; }
  .g-item, .g-item.wide { grid-column: span 2; grid-row: span 2; }
  .g-item.tall { grid-row: span 3; }
}

/* ─────────────────────────────────────────
   16. REVIEWS
   ───────────────────────────────────────── */
.section-reviews {
  background: var(--paper-deep);
}

.reviews-rating-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 3rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
}
.rrb-score {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.rrb-num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 2.2rem + 2vw, 4rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}
.rrb-stars {
  font-size: 1.3rem;
  color: #f6ab00;
  letter-spacing: .05em;
  display: flex;
  flex-direction: column;
}
.rrb-count {
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: .2rem;
}
.rrb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.rrb-tag {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  padding: .35em .7em;
  border-radius: 999px;
  background: var(--paper);
}

.review-featured {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.review-featured-inner {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(2rem, 4vw, 3.5rem);
  position: relative;
  overflow: hidden;
}
.review-featured-inner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
}
.review-quote-mark {
  font-family: var(--font-display);
  font-size: clamp(5rem, 4rem + 4vw, 9rem);
  color: rgba(198,161,91,.18);
  position: absolute;
  top: -.5rem;
  right: 2rem;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.review-featured-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.1rem + 1.5vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--paper);
  margin: 0 0 2rem;
  max-width: 40ch;
  position: relative;
}
.review-featured-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.review-avatar {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-author {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--paper);
}
.review-badge {
  display: block;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(243,236,223,.6);
  margin-top: .2rem;
}
.review-stars {
  font-size: 1rem;
  color: #f6ab00;
  margin-top: .3rem;
  letter-spacing: .05em;
}
.review-date {
  display: block;
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(243,236,223,.5);
  margin-top: .2rem;
}

/* Carousel */
.reviews-carousel-wrap { position: relative; }
.reviews-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(22rem, 100%), 1fr));
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.reviews-carousel::-webkit-scrollbar { display: none; }

.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(1.4rem, 2.5vw, 2rem);
  scroll-snap-align: start;
  flex-shrink: 0;
  position: relative;
}
.review-card-stars {
  font-size: 1rem;
  color: #f6ab00;
  letter-spacing: .05em;
  margin-bottom: .8rem;
}
.review-card-text {
  font-size: .95rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.review-card-author {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.review-card-name {
  font-weight: 700;
  font-size: .88rem;
  color: var(--ink);
}
.review-card-date {
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.reviews-carousel-nav {
  display: flex;
  gap: .5rem;
  margin-top: 1.2rem;
  justify-content: flex-end;
}
.rcn-btn {
  width: 44px; height: 44px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.rcn-btn:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.rcn-btn svg { width: 1.1em; height: 1.1em; }

.reviews-google-cta {
  margin-top: 2.5rem;
  padding: 1rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-size: .88rem;
  color: var(--ink-soft);
}
.reviews-google-cta svg { flex-shrink: 0; }

/* ─────────────────────────────────────────
   17. LOCATION
   ───────────────────────────────────────── */
.section-location { padding-top: var(--space-sm); }

.location-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}

.location-card { padding-top: var(--space-xs); }
.location-card h2 em { font-style: italic; color: var(--gold-deep); }

.location-dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .6rem 1.3rem;
  margin: 1.8rem 0 2rem;
  font-size: .95rem;
}
.location-dl dt {
  color: var(--gold-deep);
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  align-self: start;
  padding-top: .15em;
  white-space: nowrap;
}
.location-dl dd {
  margin: 0;
  color: var(--ink-soft);
}
.location-dl a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.location-dl a:hover { color: var(--gold-deep); }

.location-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2rem; }

.location-social {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.location-social a {
  width: 2.5rem; height: 2.5rem;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: all .25s var(--ease);
}
.location-social a:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.map-frame {
  border: 1px solid var(--ink);
  min-height: 360px;
  overflow: hidden;
  filter: sepia(.08) saturate(.9);
}
.map-frame iframe {
  width: 100%; height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

@media (max-width: 860px) { .location-layout { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────
   18. BOOKING CTA
   ───────────────────────────────────────── */
.section-cta {
  position: relative;
  overflow: hidden;
  padding: var(--space-md) 0;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 50%, rgba(198,161,91,.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(201,143,135,.08) 0%, transparent 50%),
    linear-gradient(125deg, var(--ink) 0%, var(--moss-deep) 60%, var(--ink) 100%);
}
.cta-content {
  position: relative;
  z-index: 1;
  color: var(--paper);
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}
.cta-content h2 {
  font-size: clamp(2.2rem, 1.7rem + 3vw, 3.8rem);
  color: var(--paper);
  margin: .8rem 0 1rem;
}
.cta-content h2 em { color: var(--gold); font-style: italic; }
.cta-content .lede { color: rgba(243,236,223,.72); margin-inline: auto; }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  justify-content: center;
  margin-top: 2.4rem;
}

/* ─────────────────────────────────────────
   19. FOOTER
   ───────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(243,236,223,.8);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}

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

.footer-brand {}
.footer-logo {
  height: 72px;
  width: 72px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 1.2rem;
  opacity: .92;
}
.footer-wordmark-fallback {
  margin-bottom: 1.2rem;
}
.footer-tagline {
  font-size: .85rem;
  color: rgba(243,236,223,.6);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: .8rem;
}
.footer-social a {
  width: 2.4rem; height: 2.4rem;
  border: 1px solid rgba(243,236,223,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(243,236,223,.65);
  transition: all .25s var(--ease);
}
.footer-social a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.footer-grid h4 {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
  font-weight: 700;
}
.footer-grid ul {
  display: grid;
  gap: .6rem;
  font-size: .9rem;
}
.footer-grid a:hover { color: var(--gold); }

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(243,236,223,.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .8rem;
  font-size: .75rem;
  color: rgba(243,236,223,.45);
  margin-top: 0;
}
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   20. LIGHTBOX
   ───────────────────────────────────────── */
.lb-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,10,18,.88);
  z-index: 1000;
  backdrop-filter: blur(6px);
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox:not([hidden]),
.lb-backdrop:not(.hidden) {
  /* Activated via JS class toggling */
}
.lb-open .lb-backdrop { display: block; }
.lb-open .lightbox { display: flex; }

.lb-content {
  position: relative;
  max-width: 90vw;
  max-height: 85dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
}
.lb-img {
  max-width: 90vw;
  max-height: 80dvh;
  object-fit: contain;
  border: 1px solid rgba(243,236,223,.12);
}
.lb-caption {
  color: rgba(243,236,223,.7);
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: center;
}

.lb-close {
  position: fixed;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: rgba(243,236,223,.1);
  border: 1px solid rgba(243,236,223,.2);
  color: var(--paper);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .2s var(--ease);
  z-index: 1002;
}
.lb-close:hover { background: rgba(243,236,223,.25); }

.lb-prev, .lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(243,236,223,.1);
  border: 1px solid rgba(243,236,223,.18);
  color: var(--paper);
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background .2s var(--ease);
  z-index: 1002;
}
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }
.lb-prev:hover, .lb-next:hover { background: rgba(243,236,223,.25); }

/* ─────────────────────────────────────────
   21. FLOATING WHATSAPP
   ───────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 80;
  background: #25D366;
  color: #fff;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: transform .3s var(--ease-spring), box-shadow .3s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.45); }
.whatsapp-float svg { width: 1.7rem; height: 1.7rem; }
.whatsapp-float span { display: none; }

/* ─────────────────────────────────────────
   22. SCROLL REVEAL
   ───────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal].delay-1 { transition-delay: .1s; }
[data-reveal].delay-2 { transition-delay: .2s; }
[data-reveal].delay-3 { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}

/* ─────────────────────────────────────────
   23. UTILITY
   ───────────────────────────────────────── */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ─────────────────────────────────────────
   24. BOOKING PAGE (book.html overrides)
   ───────────────────────────────────────── */
.booking-shell { padding: var(--space-sm) 0 var(--space-md); }
.booking-head { max-width: 48rem; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.booking-head h1 {
  font-size: clamp(2.2rem, 1.8rem + 2.5vw, 3.5rem);
  margin-top: .6rem;
}

.stepper {
  display: flex;
  gap: .4rem;
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  flex-wrap: wrap;
}
.stepper li {
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 700;
  font-size: .72rem; letter-spacing: .05em;
  color: var(--ink-soft);
  padding: .45rem .8rem .45rem .55rem;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--paper);
}
.stepper li .dot {
  width: 1.4rem; height: 1.4rem;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-style: italic;
  background: var(--paper-deep); color: var(--ink-soft); font-size: .8rem;
}
.stepper li[data-state="active"] { border-color: var(--ink); color: var(--ink); }
.stepper li[data-state="active"] .dot { background: var(--ink); color: var(--paper); }
.stepper li[data-state="done"] { color: var(--gold-deep); }
.stepper li[data-state="done"] .dot { background: var(--gold); color: var(--ink); }

.booking-card {
  margin-top: clamp(1.8rem, 4vw, 3rem);
  border: 1px solid var(--ink);
  background: var(--paper);
  padding: clamp(1.8rem, 4vw, 3.5rem);
}

.step-panel { display: none; }
.step-panel[data-active="true"] {
  display: block;
  animation: fadeUp .5s var(--ease);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .step-panel[data-active="true"] { animation: none; }
}

.step-panel h2 { font-size: clamp(1.6rem, 1.3rem + 1.5vw, 2.3rem); margin-bottom: .4rem; }
.step-panel .step-sub { color: var(--ink-soft); margin-bottom: 2rem; max-width: 52ch; }

.option-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; }
@media (max-width: 560px) { .option-grid { grid-template-columns: 1fr; } }
.option-card { position: relative; }
.option-card input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.option-card label {
  display: block; border: 1px solid var(--line);
  padding: 1.2rem 1.4rem; cursor: pointer;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.option-card label .idx {
  font-family: var(--font-display); font-style: italic;
  color: var(--gold-deep); font-size: .9rem;
}
.option-card label h3 { font-size: 1.1rem; margin: .35rem 0 .2rem; }
.option-card label p { margin: 0; font-size: .85rem; color: var(--ink-soft); }
.option-card input:checked + label { border-color: var(--ink); background: var(--paper-deep); }
.option-card input:focus-visible + label { outline: 2px solid var(--gold-deep); outline-offset: 2px; }

.field { margin-bottom: 1.4rem; }
.field label { display: block; font-weight: 700; font-size: .85rem; margin-bottom: .5rem; }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem;
  border: 1px solid var(--line); background: var(--white);
  padding: .85em 1em; border-radius: var(--radius); color: var(--ink);
  transition: border-color .2s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
.field textarea { resize: vertical; min-height: 6rem; }
.field .hint { font-size: .75rem; color: var(--ink-soft); margin-top: .35rem; }

.time-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(6.5rem, 1fr)); gap: .6rem; }
.time-chip { position: relative; }
.time-chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.time-chip label {
  display: block; text-align: center;
  padding: .7em .4em; border: 1px solid var(--line);
  font-size: .85rem; font-weight: 600; cursor: pointer;
  transition: all .2s var(--ease);
}
.time-chip input:checked + label { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.time-chip input:focus-visible + label { outline: 2px solid var(--gold-deep); outline-offset: 2px; }

.summary-list {
  list-style: none; margin: 0 0 2rem; padding: 0;
  border-top: 1px solid var(--line);
}
.summary-list li {
  display: flex; justify-content: space-between;
  gap: 1rem; padding: .85rem 0;
  border-bottom: 1px solid var(--line); font-size: .95rem;
}
.summary-list .k { color: var(--ink-soft); }
.summary-list .v { font-weight: 700; text-align: right; }

.step-actions {
  display: flex; justify-content: space-between;
  align-items: center; margin-top: 2.5rem; gap: 1rem; flex-wrap: wrap;
}

.error-text { color: #8c3b2e; font-size: .8rem; margin-top: .6rem; display: none; }
.error-text[data-show="true"] { display: block; }

.confirm-note {
  display: flex; gap: .8rem; align-items: flex-start;
  background: var(--paper-deep); border: 1px solid var(--line);
  padding: 1rem 1.2rem; font-size: .86rem; color: var(--ink-soft);
  margin-bottom: 2rem;
}
.confirm-note svg { width: 1.2rem; height: 1.2rem; flex-shrink: 0; margin-top: .15rem; color: var(--gold-deep); }

.done-panel { text-align: center; padding: 2rem 0; }
.done-omega {
  font-family: var(--font-display);
  font-size: clamp(4rem, 3rem + 4vw, 7rem);
  color: var(--gold-deep);
  display: inline-block;
  margin-bottom: 1rem;
  line-height: 1;
  font-style: italic;
}
