/* =========================================================
   Arshē — editorial-clinical · cream paper
   Accent pair: deep terracotta + soft bright peach
   ========================================================= */

:root {
  --paper: #f3ede1;
  --paper-2: #ece4d3;
  --ink: #3a2c22;             /* warm espresso — replaces near-black */
  --ink-soft: #6b5648;
  --ink-fade: rgba(58, 44, 34, 0.55);
  --hair: rgba(58, 44, 34, 0.22);
  --hair-strong: rgba(58, 44, 34, 0.45);

  /* accent pair */
  --terra-deep: #9c4a2a;        /* deep terracotta — primary accent */
  --terra-deep-2: #b25a36;      /* a touch lighter, for hovers/gradients */
  --terra-soft: #f0a382;        /* soft bright peach — secondary accent */
  --terra-soft-2: #f6c2a8;      /* even softer, for halos */
  --rooibos: #6b1f22;           /* deep red-brown — accent for date/labels */

  /* legacy alias kept for safety */
  --oxblood: var(--terra-deep);

  --serif: "Fraunces", "Times New Roman", serif;
  --mono: "DM Mono", ui-monospace, monospace;

  --measure: 62ch;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
  --rail-w: 56px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-variation-settings: "opsz" 14, "SOFT" 30;
  font-weight: 380;
  line-height: 1.5;
  font-size: 17px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: clip;
  max-width: 100%;
}

/* paper texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 80% at 30% 0%, rgba(255, 240, 220, 0.45), transparent 60%),
    radial-gradient(120% 80% at 100% 100%, rgba(240, 163, 130, 0.10), transparent 55%),
    linear-gradient(180deg, var(--paper), var(--paper-2));
  z-index: -2;
}
.grain {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
  opacity: 0.55;
  mix-blend-mode: multiply;
}

/* ============== Cursor glow ============== */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center,
      rgba(240, 163, 130, 0.55) 0%,
      rgba(246, 194, 168, 0.30) 35%,
      rgba(246, 194, 168, 0.0) 70%);
  filter: blur(38px);
  pointer-events: none;
  z-index: -1;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.6s ease;
  will-change: transform, opacity;
  mix-blend-mode: multiply;
}
.cursor-glow.active { opacity: 1; }

@media (hover: none), (prefers-reduced-motion: reduce), (max-width: 880px) {
  .cursor-glow { display: none; }
}

::selection { background: var(--oxblood); color: var(--paper); }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--oxblood); }

/* ============== i18n ============== */
html[lang="en"] *[lang]:not([lang="en"]) { display: none !important; }
html[lang="ru"] *[lang]:not([lang="ru"]) { display: none !important; }
html[lang="et"] *[lang]:not([lang="et"]) { display: none !important; }
*[lang] { display: revert; }

/* When language span sits inline, ensure no extra spacing */
.hero-eyebrow span[lang],
.hc-status span[lang],
.hc-key span[lang],
.foot-label span[lang],
.meta-label span[lang],
.block-label span[lang],
.nav a span[lang],
.topbar-cta span[lang],
.hc-cta span[lang],
.cr-tick + span[lang],
.hero-creds > span > span[lang],
.checks span[lang],
.hours dt span[lang],
.hours dd span[lang],
.m-main p span[lang],
.menu-foot span[lang],
.atelier-text p span[lang],
.lede span[lang],
.three h3 span[lang],
.three p span[lang],
.bottle figcaption span[lang],
.booking-lede span[lang],
.field label span[lang],
.micro span[lang],
.submit span[lang],
.hf-note span[lang],
.hero-sub span[lang],
.rail-right span[lang] { display: inline; }
.hero-sub span[lang] em { font-style: italic; color: var(--ink); }

/* ============== Top bar ============== */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 14px clamp(20px, 4vw, 48px);
  gap: 24px;
  background: linear-gradient(180deg, var(--paper) 70%, transparent);
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  border-bottom: 1px solid var(--hair);
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--hair-strong);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-fade);
  font-weight: 500;
}
.lang-switch button {
  background: transparent;
  border: 0;
  padding: 7px 10px;
  color: inherit;
  cursor: pointer;
  font: inherit;
  border-right: 1px solid var(--hair);
  transition: background 0.2s, color 0.2s;
}
.lang-switch button:last-child { border-right: 0; }
.lang-switch button:hover { color: var(--ink); }
.lang-switch button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
}

.brand {
  display: flex;
  align-items: baseline;
  letter-spacing: -0.01em;
}
.brand-mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  line-height: 1;
}
.brand-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  margin-left: -1px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 32px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav a { padding: 4px 0; border-bottom: 1px solid transparent; transition: color .25s, border-color .25s; display: inline-flex; align-items: baseline; gap: 6px; }
.nav a:hover { border-bottom-color: var(--oxblood); color: var(--oxblood); }
.nav .num { color: var(--ink-fade); font-size: 10px; }

.topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  transition: background .3s, color .3s;
}
.topbar-cta:hover { background: var(--ink); color: var(--paper); }

@media (max-width: 820px) {
  .nav { display: none; }
  .topbar { grid-template-columns: 1fr auto; }
}

/* ============== Side rails ============== */
.rail {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-fade);
  pointer-events: none;
}
.rail span { writing-mode: vertical-rl; transform: rotate(180deg); }
.rail-left { left: 18px; }
.rail-right { right: 18px; }
.rail-right span { transform: rotate(0deg); writing-mode: vertical-rl; }

@media (max-width: 1100px) { .rail { display: none; } }

/* ============== Hero ============== */
.hero {
  padding: 140px clamp(20px, 5vw, 96px) 80px;
  position: relative;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--oxblood);
  box-shadow: 0 0 0 3px rgba(240, 163, 130, 0.55);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(240, 163, 130, 0.55); }
  50% { box-shadow: 0 0 0 9px rgba(240, 163, 130, 0); }
}

.hero-title {
  margin: 36px 0 28px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(120px, 24vw, 360px);
  line-height: 0.86;
  letter-spacing: -0.05em;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 380;
}
.ht-line { display: inline-flex; align-items: flex-start; gap: 0; }
.ht-word { display: inline-block; }
.ht-italic {
  font-style: italic;
  color: inherit;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 380;
}

.phon { font-family: var(--mono); font-style: normal; font-size: 11px; color: var(--ink-fade); letter-spacing: 0; }
.ht-aster {
  font-family: var(--mono);
  font-size: 0.13em;
  font-style: normal;
  color: var(--terra-soft);
  align-self: flex-start;
  margin-left: 0.05em;
  margin-top: 0.18em;
  font-weight: 400;
}

.hero-mid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 460px);
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
  margin-bottom: 60px;
}
.hero-mid-left {
  display: flex;
  flex-direction: column;
  gap: 36px;
  justify-content: flex-end;
}

/* Hero photo with arched (alcove) top */
.hero-photo {
  margin: -60px 0 0;
  position: relative;
  align-self: start;
  aspect-ratio: 5 / 8;
  width: 100%;
  overflow: hidden;
  background: var(--paper-2);
  border-radius: 50% 50% 14px 14px / 24% 24% 14px 14px;
  box-shadow:
    0 30px 60px -22px rgba(58, 44, 34, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 70%, rgba(58, 44, 34, 0.15) 100%);
  pointer-events: none;
}
.hero-sub {
  max-width: 44ch;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0;
}
.hero-sub em { font-style: italic; color: var(--ink); }

/* Hero card — studio status */
.hero-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 26px 22px;
  border: 1px solid var(--hair-strong);
  background: rgba(255, 252, 245, 0.55);
  min-width: 280px;
  position: relative;
}
.hc-tag {
  position: absolute;
  top: -10px;
  left: 18px;
  background: var(--paper);
  padding: 0 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-fade);
}
.hc-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.hc-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--oxblood);
  box-shadow: 0 0 0 4px rgba(240, 163, 130, 0.55);
  animation: pulse 2.4s ease-in-out infinite;
}
.hc-status {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.hc-month {
  margin-left: auto;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--rooibos);
}
.hc-rule { border: 0; border-top: 1px solid var(--hair); margin: 4px 0 8px; width: 100%; }
.hc-line {
  margin: 0;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  align-items: baseline;
  padding: 4px 0;
}
.hc-key { color: var(--ink-fade); text-transform: uppercase; letter-spacing: 0.16em; font-size: 10px; }
.hc-val { color: var(--ink); font-family: var(--serif); font-style: italic; font-size: 16px; letter-spacing: 0; line-height: 1.2; }
.hc-cta {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px 10px 16px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}
.hc-cta:hover { background: var(--terra-soft); color: var(--ink); }
.hc-cta svg { transition: transform 0.3s; }
.hc-cta:hover svg { transform: translateX(3px); }

/* Hero credentials strip */
.hero-creds {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  flex-wrap: wrap;
  padding: 22px 0 28px;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  margin: 0 0 60px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-creds span { display: inline-flex; align-items: center; gap: 8px; }
.cr-tick {
  display: inline-grid;
  place-items: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--terra-soft);
  color: var(--terra-deep);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0;
  font-family: var(--mono);
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(156, 74, 42, 0.18);
}

@media (max-width: 880px) {
  .hero-mid { grid-template-columns: 1fr; }
  .hero-card { min-width: 0; }
  .hero-photo { margin-top: 0; aspect-ratio: 9 / 16; }
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-top: 1px solid var(--hair-strong);
  border-bottom: 1px solid var(--hair-strong);
  background: var(--hair);
}
.meta-block {
  background: var(--paper);
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.meta-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-fade);
}
.meta-value {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.1;
  font-weight: 380;
}

@media (max-width: 800px) {
  .hero-meta { grid-template-columns: repeat(2, 1fr); }
}

.hero-footnote {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-fade);
}
.hero-footnote em { font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--ink); }
.ticker {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  max-width: 360px;
  width: 100%;
  border-top: 1px solid var(--hair);
  padding-top: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 10px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}
.ticker > span {
  display: inline-block;
  animation: tick 28s linear infinite;
  padding-left: 100%;
  will-change: transform;
}
@keyframes tick { to { transform: translateX(-100%); } }

@media (max-width: 720px) {
  .hero-footnote { grid-template-columns: 1fr; }
  .ticker { display: none; }
}

/* ============== Sections (numbered blocks) ============== */
.block {
  display: grid;
  grid-template-columns: var(--rail-w) auto 1fr;
  gap: clamp(20px, 4vw, 56px);
  padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 96px);
  border-top: 1px solid var(--hair-strong);
  position: relative;
}
.block-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.9;
  color: var(--oxblood);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.block-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  align-self: start;
  padding-top: 14px;
  white-space: nowrap;
}
.block-body { max-width: 84ch; }
.block-body .lede {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.32;
  font-weight: 330;
  letter-spacing: -0.005em;
  margin: 0 0 60px;
  max-width: 28ch;
}
.block-body .lede em { font-style: italic; color: var(--oxblood); }

@media (max-width: 760px) {
  .block { grid-template-columns: 1fr; gap: 24px; }
  .block-label { padding-top: 0; }
  .block-body .lede { margin-bottom: 36px; }
}

/* ============== Three column (philosophie) ============== */
.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
  border-top: 1px solid var(--hair);
  padding-top: 28px;
}
.three > div { position: relative; }
.three-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--oxblood);
  display: block;
  margin-bottom: 18px;
}
.three h3 {
  font-family: var(--serif);
  font-weight: 380;
  font-style: italic;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 14px;
}
.three p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

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

/* ============== Menu (soins) ============== */
.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--hair-strong);
}
.menu-row {
  display: grid;
  grid-template-columns: 56px 1fr auto auto;
  gap: clamp(16px, 3vw, 40px);
  align-items: baseline;
  padding: 28px 0 26px;
  border-bottom: 1px solid var(--hair);
  position: relative;
  transition: background 0.4s, padding 0.4s;
}
.menu-row::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.7, 0, 0.2, 1);
}
.menu-row:hover::after { transform: scaleX(1); }
.menu-row:hover .m-no { color: var(--oxblood); }

.m-no {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--ink-fade);
  align-self: start;
  padding-top: 10px;
  transition: color 0.3s;
}
.m-main h3 {
  font-family: var(--serif);
  font-weight: 380;
  font-style: italic;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.1;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.m-main p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}
.m-main .et {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-fade);
  display: inline-block;
  margin-left: 6px;
  padding-left: 12px;
  border-left: 1px solid var(--hair);
}
.m-tag {
  font-family: var(--mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oxblood);
  vertical-align: middle;
  margin-left: 8px;
}
.m-time {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ink-fade);
  align-self: start;
  padding-top: 12px;
}
.m-price {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2vw, 28px);
  align-self: start;
  padding-top: 4px;
  white-space: nowrap;
}
.menu-row.featured .m-no { color: var(--oxblood); }
.menu-row.featured { background: linear-gradient(90deg, transparent, rgba(240, 163, 130, 0.18) 50%, rgba(156, 74, 42, 0.06) 80%, transparent); }

.menu-foot {
  margin: 32px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-fade);
  letter-spacing: 0.04em;
  max-width: 70ch;
}

@media (max-width: 720px) {
  .menu-row {
    grid-template-columns: 36px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 8px;
  }
  .m-time { grid-column: 2; padding-top: 0; }
  .m-price { grid-column: 2; padding-top: 0; }
  .m-main { grid-column: 2; }
  .m-no { grid-row: 1 / 4; }
}

/* ============== Atelier ============== */
.atelier-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.atelier-text p { color: var(--ink-soft); line-height: 1.6; max-width: 50ch; }
.atelier-text p + p { margin-top: 18px; }

.hours {
  margin: 36px 0 0;
  border-top: 1px solid var(--hair);
  padding-top: 18px;
  display: grid;
  gap: 6px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.hours div { display: grid; grid-template-columns: 110px 1fr; }
.hours dt { color: var(--ink-fade); text-transform: uppercase; letter-spacing: 0.2em; font-size: 10px; padding-top: 2px; }
.hours dd { margin: 0; color: var(--ink); }

.bottle {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.bottle svg {
  width: 100%;
  max-width: 220px;
  filter: drop-shadow(0 30px 30px rgba(58, 44, 34, 0.14));
}
.bottle figcaption {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-fade);
}

@media (max-width: 880px) {
  .atelier-grid { grid-template-columns: 1fr; }
  .bottle { order: -1; }
}

/* ============== Booking ============== */
.booking-lede { max-width: 36ch; }

.booking {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--hair-strong);
  border-left: 1px solid var(--hair-strong);
}
.field {
  grid-column: span 2;
  border-right: 1px solid var(--hair-strong);
  border-bottom: 1px solid var(--hair-strong);
  padding: 22px 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  background: rgba(255, 252, 245, 0.4);
}
.field-half { grid-column: span 1; }
.field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-fade);
}
.field input,
.field select,
.field textarea {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 380;
  font-style: italic;
  background: transparent;
  border: 0;
  border-bottom: 1px solid transparent;
  padding: 4px 0 6px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
  width: 100%;
}
.field textarea { font-style: normal; font-size: 16px; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-fade); font-style: italic; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--oxblood); }
.field select { font-style: italic; cursor: pointer; appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(-45deg, transparent 50%, var(--ink) 50%); background-position: calc(100% - 14px) 14px, calc(100% - 8px) 14px; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 28px; }

.form-foot {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px;
  border-right: 1px solid var(--hair-strong);
  border-bottom: 1px solid var(--hair-strong);
  background: rgba(255, 252, 245, 0.4);
}
.micro {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-fade);
  letter-spacing: 0.04em;
  max-width: 50ch;
}
.submit {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.submit:hover { background: var(--oxblood); border-color: var(--oxblood); }
.submit svg { transition: transform 0.3s; }
.submit:hover svg { transform: translateX(4px); }

.form-status {
  grid-column: span 2;
  margin: 16px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--oxblood);
  min-height: 16px;
}

@media (max-width: 680px) {
  .booking { grid-template-columns: 1fr; }
  .field, .field-half { grid-column: span 1; }
  .form-foot { grid-column: span 1; grid-template-columns: 1fr; }
}

/* ============== Footer ============== */
.foot {
  border-top: 1px solid var(--hair-strong);
  padding: 80px clamp(20px, 5vw, 96px) 0;
  position: relative;
}
.foot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 48px);
  padding-bottom: 80px;
}
.foot-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-fade);
  display: block;
  margin-bottom: 14px;
}
.foot-grid p {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
}
.foot-grid a:hover { color: var(--oxblood); }

@media (max-width: 760px) {
  .foot-grid { grid-template-columns: repeat(2, 1fr); }
}

.foot-mark {
  border-top: 1px solid var(--hair);
  padding: 30px 0 26px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--serif);
  font-style: italic;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--ink);
  overflow: visible;
}
.fm-word {
  display: inline-flex;
  align-items: baseline;
  font-size: clamp(80px, 22vw, 360px);
  line-height: 0.85;
  font-weight: 350;
  font-variation-settings: "opsz" 144, "SOFT" 60, "wght" 350;
}
.fm-l {
  display: inline-block;
  transform-origin: 50% 80%;
  opacity: 0;
  transform: translateY(60px) scaleY(0.55);
  font-variation-settings: "opsz" 144, "SOFT" 0, "wght" 280;
  transition:
    opacity 0.9s ease,
    transform 1.2s cubic-bezier(0.18, 0.7, 0.06, 1.0),
    font-variation-settings 1.6s cubic-bezier(0.2, 0.7, 0.1, 1),
    color 0.4s ease;
  transition-delay: calc(var(--i, 0) * 90ms);
  cursor: default;
}
.foot-mark.in .fm-l {
  opacity: 1;
  transform: translateY(0) scaleY(1);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 400;
}
.foot-mark.in .fm-l:nth-child(odd) {
  animation: fmBreathe 6s ease-in-out infinite;
  animation-delay: calc(0.6s + var(--i, 0) * 0.4s);
}
.foot-mark.in .fm-l:nth-child(even) {
  animation: fmBreatheAlt 6s ease-in-out infinite;
  animation-delay: calc(0.6s + var(--i, 0) * 0.4s);
}
.fm-l:hover {
  color: var(--terra-soft);
  transform: translateY(-6px) scaleY(1.03) rotate(-3deg) !important;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 600 !important;
  animation-play-state: paused;
  text-shadow: 0 8px 24px rgba(240, 163, 130, 0.35);
}
@keyframes fmBreathe {
  0%, 100% { font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 400; }
  50%      { font-variation-settings: "opsz" 144, "SOFT" 60,  "wght" 520; }
}
@keyframes fmBreatheAlt {
  0%, 100% { font-variation-settings: "opsz" 144, "SOFT" 60,  "wght" 520; }
  50%      { font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 400; }
}

.fm-tag {
  font-family: var(--mono);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-fade);
  align-self: end;
  padding-bottom: 1.2em;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .foot-mark.in .fm-l { animation: none; }
  .fm-l { transition: opacity 0.001ms, transform 0.001ms, font-variation-settings 0.001ms; }
}

/* ============== Reveal animations ============== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.7, 0.1, 1);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
