/* ==========================================================================
   Pensiunea Dobrina — design system v3 · "casa inimii"
   Inspired by the great Lake Como houses: warm white paper, soft-black ink,
   one saffron accent. Thin editorial serif (Fraunces), quiet grotesque
   (Switzer), a whisper of script. Typography does the talking.
   ========================================================================== */

@import url('../fonts/fonts.css');

:root {
  --paper: #fdfcf8;
  --tint: #f5f1e6;
  --ink: #353532;
  --ink-soft: #6f6e66;
  --ink-faint: #9b9a90;

  --saff: #dfa31f;
  --saff-deep: #a3790f;

  --hair: #e8e2d2;
  --hair-soft: #efeadd;

  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Switzer', 'Helvetica Neue', Arial, sans-serif;
  --script: 'Pinyon Script', cursive;

  --ease: cubic-bezier(.22, .6, .2, 1);
  --slow: 1s;

  --w: 1280px;
  --w-prose: 680px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--serif); font-weight: 250; line-height: 1.12;
  margin: 0 0 .45em; color: var(--ink); letter-spacing: .002em;
}
em { font-style: italic; }
p { margin: 0 0 1.15em; }
:focus-visible { outline: 1.5px solid var(--saff); outline-offset: 4px; }
::selection { background: #f3e3bb; color: var(--ink); }

.wrap { width: min(var(--w), 100% - clamp(40px, 7vw, 110px)); margin-inline: auto; }
.wrap--prose { width: min(var(--w-prose), 100% - 48px); margin-inline: auto; }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 300; background: var(--ink); color: #fff; padding: 10px 18px; font-size: 13px; }
.skip-link:focus { left: 14px; top: 14px; }

/* ==========================================================================
   Header — paper, hairline, crest in the middle
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 120;
  background: var(--paper);
  background: color-mix(in srgb, var(--paper) 97%, transparent);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hair);
  transition: box-shadow .4s var(--ease);
}
.site-header.scrolled { box-shadow: 0 14px 40px -32px rgba(53, 53, 50, .5); }
/* backdrop-filter would become the containing block for the fixed mobile nav */
body.nav-open .site-header { -webkit-backdrop-filter: none; backdrop-filter: none; background: var(--paper); }
body.nav-open { overflow: hidden; }
.site-header .wrap { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 30px); height: 84px; position: relative; }

.brand { display: flex; flex-direction: column; align-items: center; gap: 2px; text-decoration: none; }
@media (min-width: 941px) {
  .brand { position: absolute; left: 50%; transform: translateX(-50%); }
}
.brand img { width: 40px; height: auto; }
.brand-name { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.brand-name .b1 { font-family: var(--serif); font-weight: 350; font-size: 15px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink); }
.brand-name .b2 { display: none; }

.main-nav { display: flex; align-items: center; gap: clamp(10px, 1.8vw, 26px); margin-right: auto; }
.main-nav a {
  position: relative; text-decoration: none; padding: 6px 1px;
  font-size: 11px; font-weight: 400; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-soft); transition: color .35s;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--saff); transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease);
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--ink); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.main-nav .btn { display: none; }

.header-cta { display: flex; align-items: center; gap: 22px; }
.header-tel { text-decoration: none; font-size: 11.5px; font-weight: 400; letter-spacing: .1em; color: var(--ink-soft); transition: color .35s; white-space: nowrap; }
.header-tel:hover { color: var(--ink); }
.header-cta .btn { border-color: var(--ink); color: var(--ink); }
.header-cta .btn:hover { background: var(--ink); color: var(--paper); }

.nav-toggle { display: none; }

/* ==========================================================================
   Buttons & links — typography first
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-size: 10.5px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; text-decoration: none; cursor: pointer;
  padding: 17px 38px; background: transparent; border: 1px solid var(--ink);
  color: var(--ink); border-radius: 0;
  transition: background .45s var(--ease), color .45s var(--ease), border-color .45s var(--ease);
}
.btn:hover { background: var(--ink); color: var(--paper); }
.btn--solid { background: var(--ink); color: var(--paper); }
.btn--solid:hover { background: var(--saff-deep); border-color: var(--saff-deep); }
.btn--light { border-color: rgba(255, 255, 255, .85); color: #fff; }
.btn--light:hover { background: #fff; border-color: #fff; color: var(--ink); }
.btn--sm { padding: 12px 24px; font-size: 9.5px; }

.t-link {
  display: inline-flex; align-items: baseline; gap: 10px; text-decoration: none;
  font-family: var(--sans); font-size: 11.5px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--saff-deep); padding-bottom: 5px; position: relative; transition: color .35s;
}
.t-link::before { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--saff); opacity: .55; }
.t-link::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease); }
.t-link:hover { color: var(--ink); }
.t-link:hover::after { transform: scaleX(1); transform-origin: left; }
.t-link .arr { font-family: var(--serif); font-size: 15px; }
.t-link--light { color: #fff; }
.t-link--light::before { background: #fff; }
.t-link--light::after { background: #fff; }

.cta-serif {
  font-family: var(--serif); font-weight: 300; font-style: italic; font-size: 21px;
  color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--hair);
  padding-bottom: 3px; transition: border-color .4s, color .4s;
}
.cta-serif:hover { border-color: var(--saff); color: var(--saff-deep); }

/* ==========================================================================
   Hero — image band, then poetry on paper
   ========================================================================== */
.hero { position: relative; height: clamp(440px, 78svh, 820px); overflow: hidden; isolation: isolate; }
.hero-media, .hero .media { position: absolute; inset: 0; z-index: -1; background: var(--tint); }
.hero-media img, .hero .media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 38%;
  filter: brightness(.97) saturate(.92);
  animation: kenburns 9s var(--ease) both;
}
@keyframes kenburns { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero-caption {
  position: absolute; left: 0; right: 0; bottom: 26px; text-align: center;
  font-size: 10px; font-weight: 500; letter-spacing: .3em; text-transform: uppercase; color: rgba(255, 255, 255, .85);
  text-shadow: 0 1px 14px rgba(20, 20, 18, .5);
}

/* Poetry block (the opening quote) */
.poetry { text-align: center; padding-block: clamp(80px, 11vw, 150px) clamp(60px, 8vw, 110px); }
.poetry h1, .poetry .po-quote {
  font-family: var(--serif); font-weight: 150; font-size: clamp(38px, 6.2vw, 78px);
  line-height: 1.16; color: var(--ink); margin: 0 auto 28px; max-width: 21ch; text-wrap: balance;
}
.poetry .po-quote em, .poetry h1 em { font-weight: 200; }
.poetry-attr { font-size: 10.5px; font-weight: 500; letter-spacing: .3em; text-transform: uppercase; color: var(--ink-faint); margin: 0; }
.poetry-note { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 17px; color: var(--ink-soft); margin: 18px auto 0; max-width: 46ch; }

/* Intro prose */
.intro-prose { text-align: center; max-width: var(--w-prose); margin-inline: auto; padding-bottom: clamp(70px, 9vw, 120px); }
.intro-prose p { font-size: 18px; line-height: 2; color: var(--ink-soft); }
.intro-prose .welcome { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 26px; color: var(--ink); display: block; margin-top: 26px; }
.intro-prose .welcome .scr { font-family: var(--script); font-style: normal; font-size: 1.45em; color: var(--saff-deep); margin-left: 6px; }
.intro-actions { display: flex; gap: 30px; justify-content: center; align-items: center; flex-wrap: wrap; margin-top: 40px; }

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding-block: clamp(84px, 11vw, 160px); position: relative; }
.section--dark { background: var(--tint); }
.section--tight { padding-block: clamp(60px, 8vw, 110px); }

.sec-label {
  display: flex; align-items: center; gap: 16px;
  font-size: 10.5px; font-weight: 500; letter-spacing: .3em; text-transform: uppercase;
  color: var(--saff-deep); margin-bottom: clamp(22px, 3.4vw, 38px); white-space: nowrap;
}
.sec-label::after { content: ''; height: 1px; flex: 0 1 90px; background: var(--hair); }
.sec-label--center { justify-content: center; }
.sec-label--center::before { content: ''; height: 1px; flex: 0 1 90px; background: var(--hair); }

.sec-title { font-size: clamp(34px, 4.6vw, 58px); font-weight: 200; line-height: 1.12; text-wrap: balance; margin-bottom: .5em; }
.sec-title em { font-weight: 250; }
.sec-lead { font-size: 16.5px; line-height: 1.95; color: var(--ink-soft); max-width: 62ch; }
.sec-lead a { color: var(--saff-deep); text-decoration: none; border-bottom: 1px solid var(--hair); }
.sec-lead a:hover { border-color: var(--saff); }

/* Statement / lyric */
.statement { text-align: center; max-width: 980px; margin-inline: auto; }
.statement blockquote {
  margin: 0; font-family: var(--serif); font-style: italic; font-weight: 200;
  font-size: clamp(27px, 4.2vw, 52px); line-height: 1.32; color: var(--ink); text-wrap: balance;
}
.statement blockquote .hl { color: var(--saff-deep); }
.statement-attr { margin-top: 28px; font-size: 10px; font-weight: 500; letter-spacing: .3em; text-transform: uppercase; color: var(--ink-faint); }
.statement-attr::before { content: ''; display: block; width: 1px; height: 40px; background: var(--hair); margin: 0 auto 18px; }

/* The letter */
.letter { max-width: 640px; margin-inline: auto; text-align: center; }
.letter .lt-body { font-family: var(--serif); font-weight: 300; font-style: italic; font-size: clamp(20px, 2.4vw, 27px); line-height: 1.74; color: var(--ink); }
.letter .lt-body p { margin-bottom: 1em; }
.letter .lt-sign { font-family: var(--script); font-size: clamp(34px, 4vw, 46px); color: var(--saff-deep); margin-top: 30px; line-height: 1.2; }
.letter .lt-role { font-size: 10px; font-weight: 500; letter-spacing: .3em; text-transform: uppercase; color: var(--ink-faint); margin-top: 8px; }

/* Editorial split */
.editorial { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(22px, 3.4vw, 56px); align-items: center; }
.ed-media { grid-column: 1 / 8; position: relative; }
.ed-media img { width: 100%; height: auto; }
.ed-body { grid-column: 8 / 13; position: relative; }
.editorial--rev .ed-media { grid-column: 6 / 13; order: 2; }
.editorial--rev .ed-body { grid-column: 1 / 6; order: 1; }
.ed-copy { grid-column: 1 / 6; order: 1; }
.ed-wide { grid-column: 7 / 13; order: 2; }
.ed-media .ed-cap { margin-top: 13px; font-size: 10px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-faint); }
.ed-media--stack { padding-bottom: 60px; overflow: visible; }
.ed-media--stack .over { position: absolute; right: -6%; bottom: 0; width: 44%; border: 7px solid var(--paper); box-shadow: 0 30px 70px -42px rgba(53, 53, 50, .55); }
.section--dark .ed-media--stack .over { border-color: var(--tint); }

.ghost-num { display: none; }

.sig { margin-top: 32px; }
.sig .scr { font-family: var(--script); font-size: 38px; color: var(--saff-deep); line-height: 1.1; display: block; }
.sig small { display: block; font-family: var(--sans); font-size: 9.5px; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; color: var(--ink-faint); margin-top: 8px; }

/* ==========================================================================
   Suites
   ========================================================================== */
.suite { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(24px, 3.6vw, 60px); align-items: center; }
.suite + .suite { margin-top: clamp(70px, 9vw, 130px); }
.suite-media { grid-column: 1 / 8; position: relative; overflow: hidden; background: var(--tint); }
.suite-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 15 / 10; transition: transform 1.4s var(--ease); }
.suite:hover .suite-media img { transform: scale(1.03); }
.suite-num { position: absolute; top: 18px; left: 22px; color: rgba(255, 255, 255, .92); font-family: var(--serif); font-weight: 300; font-size: 14px; letter-spacing: .26em; text-shadow: 0 1px 10px rgba(20,20,18,.4); }
.suite-body { grid-column: 8 / 13; }
.suite--rev .suite-media { grid-column: 6 / 13; order: 2; }
.suite--rev .suite-body { grid-column: 1 / 6; order: 1; }
.suite-kicker { font-size: 10px; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; color: var(--saff-deep); display: block; margin-bottom: 14px; }
.suite-title { font-size: clamp(28px, 3vw, 40px); font-weight: 200; margin-bottom: 13px; }
.suite-desc { font-size: 15px; color: var(--ink-soft); margin-bottom: 22px; }
.suite-specs { list-style: none; margin: 0 0 26px; padding: 0; }
.suite-specs li {
  display: flex; justify-content: space-between; gap: 18px; align-items: baseline;
  padding: 11px 1px; border-top: 1px solid var(--hair); font-size: 12.5px; letter-spacing: .03em;
}
.suite-specs li:last-child { border-bottom: 1px solid var(--hair); }
.suite-specs .k { color: var(--ink-faint); font-weight: 400; }
.suite-specs .v { font-weight: 400; color: var(--ink); text-align: right; }
.price-line { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; }
.price-line .p { font-family: var(--serif); font-weight: 200; font-size: 42px; color: var(--ink); line-height: 1; }
.price-line .u { font-size: 10px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); line-height: 1.7; }

/* ==========================================================================
   Stats
   ========================================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(26px, 4vw, 56px); }
.stat { border-top: 1px solid var(--hair); padding-top: 22px; }
.stat .n { font-family: var(--serif); font-weight: 150; font-size: clamp(42px, 4.4vw, 64px); line-height: 1; color: var(--ink); }
.stat .n small { font-size: .42em; color: var(--saff-deep); margin-left: 2px; }
.stat .l { display: block; margin-top: 11px; font-size: 10px; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-faint); }

/* ==========================================================================
   Menu teaser rows
   ========================================================================== */
.mt-rows { border-top: 1px solid var(--hair); }
.mt-row { display: grid; grid-template-columns: 1fr auto; gap: 4px 28px; align-items: baseline; padding: 24px 1px; border-bottom: 1px solid var(--hair); transition: padding .4s var(--ease); }
.mt-row:hover { padding-left: 12px; }
.mt-name { font-family: var(--serif); font-weight: 250; font-size: clamp(21px, 2.1vw, 28px); color: var(--ink); }
.mt-price { font-family: var(--serif); font-weight: 250; font-size: 21px; color: var(--saff-deep); white-space: nowrap; }
.mt-price small { font-size: 12px; letter-spacing: .06em; color: var(--ink-faint); }
.mt-desc { grid-column: 1 / -1; font-size: 13.5px; color: var(--ink-soft); margin: 0; max-width: 60ch; }

/* ==========================================================================
   Services list
   ========================================================================== */
.services { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(46px, 6vw, 100px); }
.services--3 { grid-template-columns: repeat(3, 1fr); gap: 0 clamp(30px, 4vw, 64px); }
.figures--3 { grid-template-columns: repeat(3, 1fr); }
.service { border-top: 1px solid var(--hair); padding: 24px 1px 26px; display: grid; grid-template-columns: auto 1fr; gap: 4px 24px; align-items: baseline; }
.service .s-i { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 14px; color: var(--saff-deep); }
.service h3 { font-size: 21px; font-weight: 300; margin: 0; }
.service p { grid-column: 2; font-size: 13.5px; color: var(--ink-soft); margin: 0; }

/* ==========================================================================
   Figures
   ========================================================================== */
.figures { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.6vw, 36px); }
.figure { margin: 0; }
.figure .fig-media { overflow: hidden; background: var(--tint); }
.figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; filter: saturate(.92); transition: transform 1.3s var(--ease); }
.figure:hover img { transform: scale(1.045); }
.figure figcaption { padding-top: 15px; }
.figure .f-t { display: block; font-family: var(--serif); font-weight: 300; font-size: 22px; color: var(--ink); }
.figure .f-d { display: block; margin-top: 4px; font-size: 13px; line-height: 1.75; color: var(--ink-soft); }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.6vw, 22px); }
.gallery a { position: relative; display: block; overflow: hidden; aspect-ratio: 4 / 3; background: var(--tint); }
.gallery img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.92); transition: transform 1.2s var(--ease); }
.gallery a:hover img { transform: scale(1.045); }

.lightbox { border: none; padding: 0; background: rgba(30, 29, 26, .94); max-width: 100vw; max-height: 100vh; width: 100vw; height: 100vh; display: none; align-items: center; justify-content: center; }
.lightbox[open] { display: flex; }
.lightbox::backdrop { background: transparent; }
.lightbox img { max-width: min(1500px, 92vw); max-height: 86vh; object-fit: contain; }
.lb-btn { position: fixed; top: 50%; transform: translateY(-50%); z-index: 5; background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, .4); width: 52px; height: 52px; display: grid; place-items: center; cursor: pointer; font-size: 19px; transition: background .3s, color .3s; }
.lb-btn:hover { background: #fff; color: var(--ink); }
.lb-prev { left: 24px; } .lb-next { right: 24px; }
.lb-close { position: fixed; top: 22px; right: 24px; transform: none; }

/* ==========================================================================
   Banner — full-bleed image with a line of serif
   ========================================================================== */
.banner { position: relative; isolation: isolate; color: #fff; text-align: center; overflow: hidden; }
.banner .media { position: absolute; inset: 0; z-index: -2; background: var(--tint); }
.banner .media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.88) saturate(.86); }
.banner::before { content: ''; position: absolute; inset: 0; z-index: -1; background: rgba(28, 27, 23, .44); }
.banner .inner { padding-block: clamp(100px, 14vw, 190px); }
.banner h2 { color: #fff; font-weight: 200; font-size: clamp(34px, 5vw, 64px); line-height: 1.1; margin-bottom: 16px; text-wrap: balance; text-shadow: 0 2px 30px rgba(20, 20, 18, .35); }
.banner p { color: rgba(255, 255, 255, .92); max-width: 520px; margin: 0 auto 36px; font-size: 15.5px; }
.banner .sec-label { color: #f2d690; justify-content: center; }
.banner .sec-label::before, .banner .sec-label::after { content: ''; height: 1px; flex: 0 1 70px; background: rgba(255, 255, 255, .4); }
.banner-tel { display: block; font-family: var(--serif); font-weight: 200; font-size: clamp(30px, 4vw, 46px); color: #fff; text-decoration: none; margin-bottom: 30px; transition: color .4s; }
.banner-tel:hover { color: #f2d690; }
.banner-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 840px; margin-inline: auto; border-top: 1px solid var(--hair); }
.faq details { border-bottom: 1px solid var(--hair); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: var(--serif); font-weight: 300; font-size: clamp(20px, 2vw, 25px); color: var(--ink); padding: 25px 1px; transition: color .35s;
}
.faq summary:hover { color: var(--saff-deep); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: var(--serif); font-weight: 200; font-size: 26px; color: var(--saff-deep); transition: transform .4s var(--ease); flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .fa-body { padding: 0 1px 26px; color: var(--ink-soft); font-size: 14.5px; max-width: 70ch; }
.faq .fa-body a { color: var(--saff-deep); }

/* ==========================================================================
   Forms — underline on paper
   ========================================================================== */
.form-elegant { max-width: 860px; margin-inline: auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 46px; }
.form-grid .full { grid-column: 1 / -1; }
.field { display: grid; gap: 9px; }
.field label { font-size: 9.5px; font-weight: 500; letter-spacing: .26em; text-transform: uppercase; color: var(--saff-deep); }
.field input, .field select, .field textarea {
  font: 300 16px var(--sans); color: var(--ink); background: transparent;
  border: 0; border-bottom: 1px solid var(--hair); border-radius: 0;
  padding: 9px 1px 13px; width: 100%; transition: border-color .35s;
}
.field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--saff-deep) 50%), linear-gradient(135deg, var(--saff-deep) 50%, transparent 50%); background-position: calc(100% - 13px) 55%, calc(100% - 8px) 55%; background-size: 5px 5px; background-repeat: no-repeat; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--saff); }
.field textarea { resize: vertical; min-height: 92px; }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 26px; margin-top: 48px; flex-wrap: wrap; }
.form-consent { display: flex; gap: 12px; align-items: flex-start; font-size: 12px; line-height: 1.7; color: var(--ink-soft); max-width: 430px; }
.form-consent input { width: 15px; height: 15px; margin-top: 3px; accent-color: var(--saff-deep); }
.hp { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; overflow: hidden; }

/* ==========================================================================
   Contact rows + map
   ========================================================================== */
.contact-rows { border-top: 1px solid var(--hair); max-width: 960px; margin-inline: auto; }
.contact-row { display: grid; grid-template-columns: 200px 1fr auto; gap: 16px 40px; align-items: baseline; padding: 28px 1px; border-bottom: 1px solid var(--hair); }
.contact-row .c-k { font-size: 10px; font-weight: 500; letter-spacing: .26em; text-transform: uppercase; color: var(--saff-deep); }
.contact-row .c-v { font-family: var(--serif); font-weight: 250; font-size: clamp(20px, 2.2vw, 27px); color: var(--ink); }
.contact-row .c-v a { text-decoration: none; transition: color .35s; }
.contact-row .c-v a:hover { color: var(--saff-deep); }
.contact-row .c-v small { display: block; font-family: var(--sans); font-weight: 300; font-size: 12.5px; color: var(--ink-soft); margin-top: 4px; }

.map-embed { position: relative; }
.map-embed iframe { width: 100%; height: 500px; border: 0; display: block; filter: grayscale(.3) sepia(.06); }
.map-overlay { position: absolute; left: 0; bottom: 0; background: var(--paper); color: var(--ink-soft); padding: 32px 36px; max-width: 350px; border-top: 2px solid var(--saff); }
.map-overlay .mo-t { font-family: var(--serif); font-weight: 250; font-size: 24px; color: var(--ink); margin-bottom: 8px; }
.map-overlay p { font-size: 13px; margin: 0 0 18px; }

/* ==========================================================================
   Menu page
   ========================================================================== */
.menu-nav { position: sticky; top: 84px; z-index: 90; background: var(--paper); background: color-mix(in srgb, var(--paper) 97%, transparent); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border-bottom: 1px solid var(--hair); }
.menu-nav .wrap { display: flex; gap: clamp(16px, 2.4vw, 32px); overflow-x: auto; scrollbar-width: none; }
.menu-nav .wrap::-webkit-scrollbar { display: none; }
.menu-nav a { flex: none; position: relative; font-size: 10px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); text-decoration: none; padding: 16px 1px; transition: color .3s; }
.menu-nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: var(--saff); transform: scaleX(0); transition: transform .4s var(--ease); }
.menu-nav a:hover { color: var(--ink); }
.menu-nav a.active { color: var(--ink); }
.menu-nav a.active::after { transform: scaleX(1); }

.menu-tools { display: flex; gap: 26px; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; padding-block: clamp(36px, 4.6vw, 60px) 6px; }
.menu-search { position: relative; flex: 1 1 320px; max-width: 460px; }
.menu-search input { width: 100%; padding: 10px 1px 13px 32px; font: 300 15.5px var(--sans); color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid var(--hair); border-radius: 0; outline: none; transition: border-color .3s; }
.menu-search input:focus { border-color: var(--saff); }
.menu-search svg { position: absolute; left: 1px; top: 50%; transform: translateY(-50%); width: 15px; height: 15px; color: var(--saff-deep); pointer-events: none; }
.menu-meta { display: flex; gap: 24px; align-items: center; }
.menu-note { font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint); }

.menu-cat { scroll-margin-top: 150px; padding-block: clamp(60px, 7vw, 96px); }
.menu-cat:nth-of-type(even) { background: var(--tint); }
.mc-head { text-align: center; margin-bottom: clamp(36px, 4.6vw, 60px); }
.mc-title { font-size: clamp(36px, 4.4vw, 56px); font-weight: 200; margin: 0; }
.mc-title .init { font-style: italic; font-weight: 250; color: var(--saff-deep); }
.mc-sub { font-size: 10px; font-weight: 500; letter-spacing: .32em; text-transform: uppercase; color: var(--saff-deep); display: block; margin-top: 10px; }
.mc-orn { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 20px; color: var(--saff); font-size: 7px; }
.mc-orn::before, .mc-orn::after { content: ''; width: 64px; height: 1px; background: var(--hair); }

.menu-list { max-width: 840px; margin-inline: auto; }
.dish { scroll-margin-top: 170px; padding: 22px 1px; border-bottom: 1px solid var(--hair); }
.dish:first-child { border-top: 1px solid var(--hair); }
.dish-row { display: flex; align-items: baseline; gap: 13px; }
.dish-row + .dish-row { margin-top: 2px; }
.dish-name { font-family: var(--serif); font-weight: 300; font-size: clamp(19px, 2vw, 23px); color: var(--ink); line-height: 1.3; }
.dish-weight { font-size: 9.5px; font-weight: 500; letter-spacing: .14em; color: var(--saff-deep); white-space: nowrap; text-transform: uppercase; }
.dish-row::after { content: ''; flex: 1; border-bottom: 1px dotted var(--hair); transform: translateY(-5px); min-width: 28px; }
.dish-price { font-family: var(--serif); font-weight: 300; font-size: 20px; color: var(--ink); white-space: nowrap; order: 10; }
.dish-price small { font-size: 11.5px; letter-spacing: .05em; color: var(--ink-faint); }
.dish-sub { font-family: var(--serif); font-size: 14.5px; font-style: italic; font-weight: 300; color: var(--ink-soft); margin: 4px 0 0; }
.dish-ing { font-size: 12.5px; line-height: 1.7; color: var(--ink-faint); margin: 4px 0 0; max-width: 64ch; }
.dish-meta { display: flex; flex-wrap: wrap; gap: 5px 14px; margin-top: 7px; }
.allerg { font-size: 9px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--saff-deep); }
.allerg + .allerg::before { content: '·'; margin-right: 14px; color: var(--ink-faint); }
.menu-empty { text-align: center; padding: 80px 20px; display: none; }
.menu-empty .me-title { font-family: var(--serif); font-weight: 250; font-size: 30px; color: var(--ink); }
.menu-legal { font-size: 12px; line-height: 1.85; color: var(--ink-faint); text-align: center; max-width: 660px; margin: 52px auto 0; }

/* ==========================================================================
   Footer — paper & hairlines
   ========================================================================== */
.site-footer { background: var(--tint); border-top: 1px solid var(--hair); }
.footer-word { padding: clamp(64px, 9vw, 110px) 0 0; text-align: center; }
.footer-word .fw { font-family: var(--serif); font-weight: 150; color: var(--ink); font-size: clamp(32px, 6vw, 80px); letter-spacing: .12em; text-transform: uppercase; line-height: 1.1; }
.footer-word .fw span { font-style: italic; font-weight: 250; text-transform: none; letter-spacing: .02em; color: var(--saff-deep); }
.footer-word .fl { margin-top: 12px; font-size: 9.5px; font-weight: 500; letter-spacing: .34em; text-transform: uppercase; color: var(--ink-faint); }
.footer-main { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(30px, 4vw, 60px); padding-block: clamp(54px, 7vw, 84px) 54px; }
.f-title { font-size: 9.5px; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; color: var(--saff-deep); margin: 0 0 20px; }
.f-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; font-size: 13.5px; }
.f-links a { text-decoration: none; color: var(--ink-soft); transition: color .3s; }
.f-links a:hover { color: var(--ink); }
.f-text { font-size: 13px; line-height: 1.95; margin: 0; color: var(--ink-soft); }
.f-text a { color: var(--ink); text-decoration: none; transition: color .3s; }
.f-text a:hover { color: var(--saff-deep); }
.f-text .big { font-family: var(--serif); font-weight: 250; font-size: 20px; }
.footer-bottom { border-top: 1px solid var(--hair); padding-block: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 11px; letter-spacing: .05em; color: var(--ink-faint); }
.footer-bottom a { color: var(--saff-deep); text-decoration: none; }

/* Mobile bar */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 110; display: none;
  grid-template-columns: 1fr 1fr 1.25fr; background: var(--paper);
  background: color-mix(in srgb, var(--paper) 98%, transparent);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-top: 1px solid var(--hair); padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar a { display: grid; place-items: center; gap: 3px; padding: 11px 6px 12px; font-size: 9px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); text-decoration: none; }
.mobile-bar a svg { width: 16px; height: 16px; color: var(--saff-deep); }
.mobile-bar a.mb-cta { background: var(--ink); color: var(--paper); }
.mobile-bar a.mb-cta svg { color: var(--saff); }

.wa-float { position: fixed; right: 26px; bottom: 26px; z-index: 100; width: 50px; height: 50px; display: grid; place-items: center; background: var(--paper); color: var(--ink); border: 1px solid var(--hair); border-radius: 50%; box-shadow: 0 16px 40px -22px rgba(53, 53, 50, .4); transition: transform .35s var(--ease), color .35s; }
.wa-float:hover { transform: translateY(-3px); color: var(--saff-deep); }
.wa-float svg { width: 23px; height: 23px; }

/* ==========================================================================
   Reveal
   ========================================================================== */
.reveal { opacity: 0; translate: 0 26px; transition: opacity var(--slow) var(--ease), translate var(--slow) var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; translate: 0 0; }
.reveal-img { overflow: hidden; }
.reveal-img img { transition: transform 1.5s var(--ease); transition-delay: var(--d, 0s); }
.reveal-img:not(.in) img { transform: scale(1.06); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-img img { opacity: 1; translate: none; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero-media img, .hero .media img, .page-hero .media img { animation: none; }
}

/* page-hero (legacy class used by inner pages = image band) */
.page-hero { position: relative; height: clamp(360px, 56svh, 600px); overflow: hidden; isolation: isolate; }
.page-hero .media { position: absolute; inset: 0; z-index: -1; background: var(--tint); }
.page-hero .media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; filter: brightness(.96) saturate(.9); animation: kenburns 8s var(--ease) both; }
.page-hero .inner { display: none; }
/* page head (white block under the band) */
.page-head { text-align: center; padding-block: clamp(56px, 8vw, 100px) clamp(20px, 3vw, 36px); }
.page-head .ph-kicker { display: inline-flex; align-items: center; gap: 16px; font-size: 10px; font-weight: 500; letter-spacing: .3em; text-transform: uppercase; color: var(--saff-deep); margin-bottom: 18px; }
.page-head .ph-kicker::before, .page-head .ph-kicker::after { content: ''; width: 44px; height: 1px; background: var(--hair); }
.page-head h1 { font-weight: 150; font-size: clamp(40px, 6vw, 76px); line-height: 1.08; margin-bottom: 14px; text-wrap: balance; }
.page-head h1 em { font-weight: 200; }
.page-head .ph-sub { max-width: 560px; margin: 0 auto; color: var(--ink-soft); font-size: 16px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .figures { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .main-nav { gap: 12px; }
}

@media (max-width: 940px) {
  .editorial, .editorial--rev { grid-template-columns: 1fr; }
  .ed-media, .ed-body, .editorial--rev .ed-media, .editorial--rev .ed-body,
  .ed-copy, .ed-wide { grid-column: 1 / -1 !important; order: initial; }
  .ed-body { margin-top: 32px; }
  .ed-wide { margin-top: 40px; }

  .suite, .suite--rev { grid-template-columns: 1fr; }
  .suite-media, .suite-body, .suite--rev .suite-media, .suite--rev .suite-body { grid-column: 1 / -1; order: initial; }
  .suite-body { margin-top: 28px; }

  .services, .services--3 { grid-template-columns: 1fr; }
  .figures--3 { grid-template-columns: repeat(2, 1fr); }
  .ed-media--stack .over { right: 0; border-width: 5px; }
  .contact-row { grid-template-columns: 1fr; gap: 8px; }

  .main-nav { display: none; }
  .header-tel { display: none; }
  .brand { position: static; transform: none; translate: none; margin-right: auto; flex-direction: row; gap: 10px; }
  .brand img { width: 36px; }

  .nav-toggle {
    display: grid; place-items: center; width: 46px; height: 46px;
    background: transparent; border: 1px solid var(--hair); cursor: pointer;
    position: relative; z-index: 140;
  }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ''; display: block; width: 19px; height: 1.5px; background: var(--ink); position: relative; transition: all .4s var(--ease); }
  .nav-toggle span::before { position: absolute; top: -6.5px; }
  .nav-toggle span::after { position: absolute; top: 6.5px; }
  body.nav-open .nav-toggle { background: var(--paper); border-color: var(--ink); }
  body.nav-open .nav-toggle span::before, body.nav-open .nav-toggle span::after { height: 2px; background: var(--ink) !important; }
  body.nav-open .nav-toggle span { background: transparent !important; }
  body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
  body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

  .main-nav {
    position: fixed; inset: 0; z-index: 130; display: flex; flex-direction: column; justify-content: center; gap: 2px;
    background: var(--paper);
    opacity: 0; pointer-events: none; transition: opacity .45s var(--ease);
    overflow-y: auto; padding: 70px 0 40px;
  }
  body.nav-open .main-nav { opacity: 1; pointer-events: auto; }
  .main-nav a { font-family: var(--serif); font-weight: 250; font-size: 30px; letter-spacing: .02em; text-transform: none; color: var(--ink); padding: 11px 20px; text-align: center; }
  .main-nav a::after { display: none; }
  .main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--saff-deep); }
  .main-nav .btn { display: inline-flex; margin: 26px auto 0; }

  .mobile-bar { display: grid; }
  .wa-float { display: none; }
  body { padding-bottom: 60px; }
  .menu-nav { top: 76px; }
  .site-header .wrap { height: 76px; }
}

@media (max-width: 600px) {
  body { font-size: 15.5px; }
  .wrap { width: calc(100% - 40px); }
  .gallery { grid-template-columns: 1fr 1fr; }
  .figures, .figures--3 { grid-template-columns: 1fr; }
  .figure img { aspect-ratio: 16 / 10; }
  .form-grid { grid-template-columns: 1fr; gap: 28px; }
  .stats { gap: 24px 18px; }
  .banner-actions .btn, .intro-actions .btn { width: 100%; }
  .map-overlay { position: static; max-width: none; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .menu-nav { top: 68px; }
  .site-header .wrap { height: 68px; }
  .poetry h1, .poetry .po-quote { max-width: 14ch; }
}

/* ==========================================================================
   Print (menu)
   ========================================================================== */
@media print {
  .site-header, .menu-nav, .menu-tools, .mobile-bar, .wa-float, .site-footer,
  .banner, .page-hero, .hero { display: none !important; }
  .page-head { padding: 20px 0 8px; }
  .menu-cat, .menu-cat:nth-of-type(even) { background: #fff !important; padding: 12px 0; }
  .dish { break-inside: avoid; }
  body { background: #fff; font-size: 11.5px; }
}
