:root {
  --paper:        #f4ebd9;
  --paper-2:      #ece0c6;
  --paper-3:      #e4d6b8;
  --ink:          #251c13;
  --ink-soft:     #5b4d3c;
  --ink-faint:    #8a7a64;
  --terracotta:   #b1471f;
  --terracotta-d: #8c3414;
  --clay:         #c8693a;
  --olive:        #4c5a2f;
  --olive-d:      #36421f;
  --amber:        #cf9026;
  --line:         rgba(37, 28, 19, .14);
  --line-strong:  rgba(37, 28, 19, .26);
  --shadow:       28px 30px 60px -34px rgba(37, 28, 19, .55);
  --shadow-sm:    10px 14px 30px -20px rgba(37, 28, 19, .5);

  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --wrap: 1200px;
  --gutter: clamp(1.25rem, 5vw, 4.5rem);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: clamp(1rem, .94rem + .3vw, 1.12rem);
  letter-spacing: .003em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }

:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 2px;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 460;
  line-height: 1.04;
  letter-spacing: -.012em;
  font-optical-sizing: auto;
  color: var(--ink);
  text-wrap: balance;
}

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::before {
  content: "";
  width: 1.7rem;
  height: 1px;
  background: currentColor;
  opacity: .65;
}

.lead { font-size: clamp(1.12rem, 1rem + .7vw, 1.42rem); line-height: 1.5; color: var(--ink-soft); }

.wrap { width: min(100% - var(--gutter) * 2, var(--wrap)); margin-inline: auto; }
.section { padding-block: clamp(4.5rem, 9vw, 8.5rem); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.sec-head { display: grid; gap: 1.1rem; max-width: 52ch; }
.sec-head h2 { font-size: clamp(2.1rem, 1.4rem + 3vw, 3.6rem); }
.sec-head--lg { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }

.btn {
  --bg: var(--terracotta);
  --fg: #fdf6e7;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .92em 1.5em;
  background: var(--bg);
  color: var(--fg);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  border-radius: 999px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  box-shadow: var(--shadow-sm);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); background: var(--terracotta-d); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.05em; height: 1.05em; }

.btn--ghost {
  --bg: transparent;
  --fg: var(--ink);
  border: 1.5px solid var(--line-strong);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(37,28,19,.05); border-color: var(--ink); transform: translateY(-2px); }

.btn--olive { --bg: var(--olive); }
.btn--olive:hover { --bg: var(--olive-d); }

.hero__cta .btn--ghost { --fg: #f6ecd8; border-color: rgba(246,236,216,.45); }
.hero__cta .btn--ghost:hover { background: rgba(246,236,216,.12); border-color: #f6ecd8; }

.site-head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem var(--gutter);
  transition: background .4s ease, padding .4s ease, box-shadow .4s ease;
}
.site-head.is-stuck {
  background: rgba(244, 235, 217, .86);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  box-shadow: 0 1px 0 var(--line), 0 14px 30px -28px rgba(37,28,19,.6);
  padding-block: .7rem;
}

.brand { display: flex; align-items: center; gap: .7rem; line-height: 1; }
.mark {
  display: grid;
  place-items: center;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: #f4ebd9;
  overflow: hidden;
  box-shadow: 0 3px 12px -5px rgba(37,28,19,.45), inset 0 0 0 1px rgba(37,28,19,.1);
  flex: none;
}
.mark img { width: 90%; height: 90%; object-fit: contain; }
.brand .name { font-family: var(--display); font-weight: 500; font-size: 1.18rem; letter-spacing: -.01em; }
.brand .name span { display: block; font-family: var(--sans); font-size: .64rem; letter-spacing: .28em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; margin-top: .15rem; }
.site-head.is-light .brand .name,
.site-head.is-light .nav-links a { color: #f6ecd8; }
.site-head.is-light .brand .name span { color: rgba(246,236,216,.7); }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.6vw, 2.4rem); }
.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.1rem); list-style: none; padding: 0; }
.nav-links a {
  font-size: .93rem;
  font-weight: 500;
  position: relative;
  padding-block: .3rem;
  transition: color .2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -.1rem;
  width: 100%; height: 1.5px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-call { display: inline-flex; }

.nav-toggle {
  display: none;
  width: 2.7rem; height: 2.7rem;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 1.1rem; height: 1.6px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform .3s ease, opacity .2s ease;
}
.nav-toggle span::before { transform: translate(-50%, -7px); }
.nav-toggle span::after  { transform: translate(-50%, 5px); }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #f6ecd8;
  isolation: isolate;
  padding: 0 var(--gutter) clamp(3rem, 7vw, 6rem);
}
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; transform: scale(1.04); }
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(20,12,6,.86) 0%, rgba(20,12,6,.38) 42%, rgba(20,12,6,.32) 70%, rgba(20,12,6,.5) 100%),
    radial-gradient(120% 80% at 80% 0%, rgba(177,71,31,.32), transparent 60%);
}

.hero__inner { width: min(100%, var(--wrap)); margin-inline: auto; }
.hero__since {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .74rem; letter-spacing: .26em; text-transform: uppercase; font-weight: 600;
  color: #f0c98a;
  margin-bottom: 1.6rem;
}
.hero__since::before { content:""; width: 2rem; height: 1px; background: currentColor; opacity: .7; }
.hero h1 {
  color: #fbf3e3;
  font-size: clamp(3.1rem, 1.6rem + 8vw, 8rem);
  font-weight: 420;
  line-height: .92;
  letter-spacing: -.02em;
  margin-bottom: .4rem;
}
.hero h1 em { font-style: italic; color: #f0c98a; }
.hero__sub {
  font-size: clamp(1.05rem, .95rem + .8vw, 1.45rem);
  max-width: 40ch;
  color: rgba(246,236,216,.92);
  margin-top: 1.4rem;
}
.hero__loc {
  display: inline-flex; align-items: center; gap: .55rem;
  margin-top: 1.2rem; font-size: .98rem; color: rgba(246,236,216,.8);
}
.hero__loc svg { width: 1.05em; height: 1.05em; opacity: .85; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.4rem; }

.scroll-hint {
  position: absolute;
  left: 50%; bottom: 1.4rem;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .66rem; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(246,236,216,.6);
}
.scroll-hint .dot { width: 1px; height: 2.6rem; background: linear-gradient(rgba(246,236,216,.7), transparent); animation: drip 2.2s ease-in-out infinite; }
@keyframes drip { 0%,100% { transform: scaleY(.4); transform-origin: top; opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

.about { background: var(--paper); }
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about__body .eyebrow { margin-bottom: 1.3rem; }
.about__body h2 { font-size: clamp(2.1rem, 1.4rem + 3vw, 3.6rem); margin-bottom: 1.4rem; }
.about__body p + p { margin-top: 1.1rem; }
.about__body .lead { margin-top: 1.6rem; }
.about__body p { color: var(--ink-soft); }
.about__body strong { color: var(--ink); font-weight: 600; }

.about__figure { position: relative; z-index: 0; }
.about__figure .photo {
  border-radius: 4px;
  box-shadow: var(--shadow);
  background: #fff;
  padding: .7rem .7rem 3.2rem;
  transform: rotate(-2.2deg);
  transition: transform .5s ease;
}
.about__figure .photo img { border-radius: 2px; }
.about__figure .photo figcaption {
  font-family: var(--display); font-style: italic; font-size: 1.02rem;
  text-align: center; color: var(--ink-soft); margin-top: .8rem;
}
.about__figure:hover .photo { transform: rotate(-1deg); }
.about__stamp {
  position: absolute; right: -1.1rem; top: -1.6rem; z-index: 3;
  width: clamp(6rem, 10vw, 8.4rem); height: clamp(6rem, 10vw, 8.4rem);
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--olive); color: #f6ecd8;
  text-align: center; line-height: 1.05; transform: rotate(7deg);
  box-shadow: var(--shadow-sm);
  border: 2px dashed rgba(246,236,216,.4);
}
.about__stamp b { font-family: var(--display); font-size: clamp(1.7rem, 4vw, 2.4rem); display: block; font-weight: 500; }
.about__stamp span { font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; }

.quote {
  background: var(--terracotta);
  color: #f9efdc;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.quote::before {
  content: "„";
  position: absolute; left: 2rem; top: -2.5rem;
  font-family: var(--display); font-size: 22rem; line-height: 1;
  color: rgba(249,239,220,.1); z-index: -1;
}
.quote blockquote {
  max-width: min(90vw, 40rem);
  margin-inline: auto;
  text-align: center;
}
.quote p {
  font-family: var(--display);
  font-size: clamp(1.8rem, 1.2rem + 3.4vw, 3.4rem);
  line-height: 1.1; font-weight: 420; font-style: italic;
}
.quote cite {
  display: block; margin-top: 1.6rem;
  font-family: var(--sans); font-style: normal;
  font-size: .76rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(249,239,220,.72);
}

.offer { background: var(--paper-2); }
.offer__head { display: flex; justify-content: space-between; align-items: end; gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.offer__note { max-width: 34ch; color: var(--ink-soft); font-size: 1rem; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.1rem, 2.4vw, 1.8rem); }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2rem 1.8rem 2.2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: var(--line-strong); }
.card__ico { width: 2.7rem; height: 2.7rem; color: var(--terracotta); }
.card__ico svg { width: 100%; height: 100%; }
.card h3 { font-size: 1.5rem; font-weight: 500; }
.card p { color: var(--ink-soft); font-size: .98rem; }
.card .tag {
  align-self: flex-start;
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  color: var(--olive-d); background: rgba(76,90,47,.12);
  padding: .35em .8em; border-radius: 999px; margin-top: auto;
}
.card--feature { background: var(--ink); color: #f1e6d2; border-color: transparent; }
.card--feature h3, .card--feature .card__ico { color: #f0c98a; }
.card--feature p { color: rgba(241,230,210,.78); }
.card--feature .tag { color: #f0c98a; background: rgba(240,201,138,.14); }

.perks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: clamp(2rem, 4vw, 3.2rem); }
.perk { display: flex; gap: .85rem; align-items: flex-start; }
.perk svg { width: 1.6rem; height: 1.6rem; color: var(--olive); flex: none; margin-top: .15rem; }
.perk b { display: block; font-weight: 600; font-size: 1rem; }
.perk span { font-size: .9rem; color: var(--ink-soft); }

.seating { background: var(--paper); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem, 3vw, 2.4rem); margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.scene {
  position: relative;
  isolation: isolate;
  border-radius: 8px;
  overflow: hidden;
  min-height: clamp(22rem, 42vw, 34rem);
  display: flex;
  align-items: flex-end;
  color: #f6ecd8;
  box-shadow: var(--shadow);
}
.scene img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1.1s cubic-bezier(.2,.7,.2,1); }
.scene:hover img { transform: scale(1.05); }
.scene::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(20,12,6,.82), rgba(20,12,6,.05) 55%); }
.scene__txt { padding: clamp(1.5rem, 3vw, 2.4rem); }
.scene__txt h3 { color: #fbf3e3; font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.3rem); font-weight: 480; }
.scene__txt p { color: rgba(246,236,216,.86); margin-top: .5rem; max-width: 32ch; font-size: .98rem; }
.scene__kicker { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 600; color: #f0c98a; }

.gallery { background: var(--olive-d); color: #efe7d3; }
.gallery .sec-head h2 { color: #fbf3e3; }
.gallery .eyebrow { color: #e7b873; }
.grid-photos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 12vw;
  gap: clamp(.6rem, 1.4vw, 1rem);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.grid-photos figure { position: relative; overflow: hidden; border-radius: 4px; cursor: zoom-in; background: #000; }
.grid-photos img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1), opacity .4s ease; }
.grid-photos figure:hover img { transform: scale(1.06); }
.grid-photos figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,12,6,.4), transparent 50%);
  opacity: 0; transition: opacity .4s ease;
}
.grid-photos figure:hover::after { opacity: 1; }
.g-a { grid-column: span 3; grid-row: span 2; }
.g-b { grid-column: span 3; grid-row: span 2; }
.g-c { grid-column: span 2; grid-row: span 2; }
.g-d { grid-column: span 2; grid-row: span 2; }
.g-e { grid-column: span 2; grid-row: span 2; }

.find { background: var(--paper-2); }
.find__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: stretch; }

.contact-card { display: flex; flex-direction: column; gap: 1.8rem; }
.hours {
  background: var(--ink); color: #f1e6d2;
  border-radius: 10px; padding: clamp(1.8rem, 3vw, 2.6rem);
  box-shadow: var(--shadow);
}
.hours .eyebrow { color: #f0c98a; }
.hours h3 { color: #fbf3e3; font-size: clamp(1.8rem, 1.3rem + 2vw, 2.7rem); font-weight: 460; margin: .8rem 0 .6rem; }
.hours p { color: rgba(241,230,210,.8); font-size: 1rem; max-width: 38ch; }
.hours__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hours__phone { font-family: var(--display); font-size: clamp(1.5rem, 1rem + 2vw, 2.1rem); letter-spacing: .01em; color: #fbf3e3; display: inline-block; margin-top: .4rem; }
.hours__phone:hover { color: #f0c98a; }

.coords { display: grid; gap: 1.1rem; font-style: normal; }
.coord { display: flex; gap: 1rem; align-items: flex-start; padding-bottom: 1.1rem; border-bottom: 1px solid var(--line); }
.coord:last-child { border-bottom: 0; padding-bottom: 0; }
.coord svg { width: 1.4rem; height: 1.4rem; color: var(--terracotta); flex: none; margin-top: .2rem; }
.coord b { display: block; font-weight: 600; }
.coord span, .coord a { color: var(--ink-soft); font-size: .98rem; }
.coord a:hover { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }

.map {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  position: relative;
  isolation: isolate;
  min-height: 26rem;
  background: #e7dcc0;
  transition: transform .4s ease, box-shadow .4s ease;
}
.map__frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 1; }
.map--live .map__art, .map--live .map__pin { opacity: 0; }
.map__art { position: absolute; inset: 0; width: 100%; height: 100%; }

.map__consent {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.1rem; text-align: center; padding: clamp(1.4rem, 4vw, 2.4rem) 1.4rem 5.5rem;
  background: linear-gradient(rgba(231,220,192,.52), rgba(231,220,192,.66));
}
.map__consent[hidden] { display: none; }
.map__consent p { max-width: 32ch; font-size: .92rem; line-height: 1.5; color: var(--ink-soft); }
.map__consent strong { color: var(--ink); }
.map__more { font-size: .82rem; color: var(--ink-soft); text-decoration: underline; text-underline-offset: 3px; }
.map__more:hover { color: var(--terracotta); }
.map__pin {
  position: absolute; left: 50%; top: 45%;
  transform: translate(-50%, -100%);
  width: 2.7rem; height: 2.7rem; z-index: 2;
  color: var(--terracotta);
  filter: drop-shadow(0 7px 6px rgba(37,28,19,.3));
}
.map__pin svg { width: 100%; height: 100%; display: block; }
.map__pin::before {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 2rem; height: 2rem; border-radius: 50%;
  border: 2px solid var(--terracotta);
  transform: translate(-50%, 40%); opacity: .5;
  animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: translate(-50%, 40%) scale(.3); opacity: .6; }
  100% { transform: translate(-50%, 40%) scale(1.7); opacity: 0; }
}
.map__bar {
  position: absolute; left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 4;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  background: rgba(244,235,217,.94);
  backdrop-filter: blur(6px);
  padding: .8rem 1.1rem; border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.map__bar b { font-family: var(--display); font-weight: 500; }
.map__bar > span > span { font-size: .85rem; color: var(--ink-soft); }

.site-foot { background: var(--ink); color: #d9ccb6; padding-block: clamp(3rem, 6vw, 4.5rem); }
.foot__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(217,204,182,.16); }
.foot__logo { display: inline-flex; align-items: center; gap: .8rem; line-height: 1; }
.foot__logo .mark { width: 3.4rem; height: 3.4rem; }
.foot__name { font-family: var(--display); font-weight: 500; font-size: 1.5rem; color: #fbf3e3; }
.foot__name span { display: block; font-family: var(--sans); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(217,204,182,.6); font-weight: 600; margin-top: .3rem; }
.foot__brand p { margin-top: 1rem; font-size: .95rem; color: rgba(217,204,182,.74); max-width: 34ch; }
.foot__links { display: inline-flex; gap: 1.4rem; flex-wrap: wrap; }
.legal-page .foot__bottom { border-top: 0; padding-top: 0; }
.site-foot h4 { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: #f0c98a; font-family: var(--sans); font-weight: 600; margin-bottom: 1.1rem; }
.site-foot ul { list-style: none; padding: 0; display: grid; gap: .6rem; }
.site-foot a { color: rgba(217,204,182,.85); font-size: .96rem; }
.site-foot a:hover { color: #fbf3e3; }
.foot__bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding-top: 1.8rem; font-size: .82rem; color: rgba(217,204,182,.6); }
.foot__bottom a { color: rgba(217,204,182,.8); }
.gbtn { display: inline-flex; align-items: center; gap: .6rem; }
.gbtn svg { width: 1.1rem; height: 1.1rem; }

.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
  background: rgba(20,12,6,.92);
  backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 92vw; max-height: 82vh; border-radius: 4px; box-shadow: 0 30px 80px -20px rgba(0,0,0,.7); }
.lightbox__close, .lightbox__nav button {
  position: absolute; color: #f6ecd8;
  width: 3rem; height: 3rem; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(246,236,216,.1); border: 1px solid rgba(246,236,216,.25);
  transition: background .2s ease, transform .2s ease;
}
.lightbox__close:hover, .lightbox__nav button:hover { background: rgba(246,236,216,.22); }
.lightbox__close { top: clamp(1rem,3vw,2rem); right: clamp(1rem,3vw,2rem); }
.lightbox__nav button { top: 50%; transform: translateY(-50%); }
.lightbox__nav .prev { left: clamp(.6rem,2vw,2rem); }
.lightbox__nav .next { right: clamp(.6rem,2vw,2rem); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

@media (max-width: 980px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__figure { max-width: 30rem; margin-inline: auto; order: -1; }
  .cards { grid-template-columns: 1fr; }
  .perks { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .find__grid { grid-template-columns: 1fr; }
  .grid-photos { grid-auto-rows: 28vw; }
  .foot__top { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 720px) {
  .nav-links, .nav-call { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .site-head.is-light .nav-toggle { color: #f6ecd8; border-color: rgba(246,236,216,.4); }

  .mobile-menu {
    position: fixed; inset: 0; z-index: 99;
    background: var(--ink); color: #f1e6d2;
    display: flex; flex-direction: column; justify-content: center; gap: 1.6rem;
    padding: var(--gutter);
    transform: translateY(-100%);
    transition: transform .45s cubic-bezier(.6,.05,.2,1);
  }
  .mobile-menu.open { transform: none; }
  .mobile-menu a { font-family: var(--display); font-size: 2rem; color: #f6ecd8; }
  .mobile-menu .btn { font-family: var(--sans); font-size: 1rem; align-self: flex-start; margin-top: 1rem; }
  body.menu-open { overflow: hidden; }
  .nav-toggle.is-active span { background: transparent; }
  .nav-toggle.is-active span::before { transform: translate(-50%, 0) rotate(45deg); }
  .nav-toggle.is-active span::after { transform: translate(-50%, 0) rotate(-45deg); }

  .grid-photos { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 40vw; }
  .g-a, .g-b, .g-c, .g-d, .g-e { grid-column: span 1; grid-row: span 1; }
  .g-a { grid-column: span 2; grid-row: span 1; }
  .perks { grid-template-columns: 1fr; }
  .offer__head { flex-direction: column; align-items: flex-start; }
  .lightbox__nav button { width: 2.6rem; height: 2.6rem; }
}

.mobile-menu { display: none; }
@media (max-width: 720px) { .mobile-menu { display: flex; } }

@media (min-width: 721px) { .mobile-menu { display: none !important; } }

.legal-page { background: var(--paper); }
.legal-top {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem var(--gutter);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
  background: rgba(244,235,217,.9);
  backdrop-filter: blur(10px);
}
.legal-back {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .92rem; font-weight: 500; color: var(--ink-soft);
}
.legal-back svg { width: 1.05em; height: 1.05em; }
.legal-back:hover { color: var(--terracotta); }

.legal { max-width: 50rem; padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.legal h1 { font-size: clamp(2.2rem, 1.5rem + 3vw, 3.4rem); margin: .8rem 0 1.4rem; }
.legal-intro { font-size: clamp(1.05rem, 1rem + .4vw, 1.2rem); color: var(--ink-soft); line-height: 1.6; max-width: 60ch; }
.legal section { margin-top: clamp(2rem, 4vw, 2.8rem); }
.legal h2 {
  font-size: clamp(1.3rem, 1.1rem + .8vw, 1.7rem);
  font-weight: 500; margin-bottom: .8rem;
  padding-top: 1.4rem; border-top: 1px solid var(--line);
}
.legal p { color: var(--ink-soft); line-height: 1.65; margin-bottom: .8rem; max-width: 64ch; }
.legal strong { color: var(--ink); font-weight: 600; }
.legal ul { margin: 0 0 .8rem; padding-left: 1.2rem; display: grid; gap: .7rem; max-width: 64ch; }
.legal li { color: var(--ink-soft); line-height: 1.6; }
.legal a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--terracotta-d); }
.legal-card {
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: 8px; padding: 1.2rem 1.4rem; margin-top: .4rem;
}
.legal-card p { margin-bottom: .3rem; }
.legal-date { font-style: italic; color: var(--ink-faint); }
