/* ===== Tokens ===== */
:root {
  --bg: #f7f1e4;
  --bg-alt: #efe5d2;
  --bg-card: #fffcf6;
  --text: #2a2016;
  --text-muted: #5e5142;
  --gold: #8f560d;
  --gold-light: #c47d1d;
  --gold-lighter: #dba03f;
  --border: rgba(120, 84, 32, 0.18);

  --ink: #1c150d;
  --ink-alt: #241b10;
  --cream-text: #f5efe0;
  --cream-text-muted: rgba(245, 239, 224, 0.75);
  --border-on-dark: rgba(219, 160, 63, 0.22);

  --font-display: 'Syne', sans-serif;
  --font-script: 'Playball', cursive;
  --font-body: 'Raleway', sans-serif;
  --font-light: 'Poppins', sans-serif;

  --container-w: 1180px;
  --ease: cubic-bezier(.16,.84,.44,1);
  --header-h: 210px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Film-grain atmosphere, sits above all backgrounds, below content interaction */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--gold); color: var(--ink); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 0; }

/* Scroll-reveal: elements fade/rise into view via .is-visible (toggled in script.js) */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--d, 0s);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}


.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #0d0c11;
  padding: 10px 16px;
  z-index: 1000;
}
.skip-link:focus { left: 16px; top: 16px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.01em; }

.eyebrow {
  font-family: var(--font-script);
  font-size: 2.1rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.eyebrow::before {
  content: "\2726";
  font-family: var(--font-body);
  font-size: .55em;
  color: var(--gold);
  transform: translateY(-2px);
}

.section { padding: 88px 0; }
/* The first section of a page sits right under the transparent floating header */
main > .section:first-of-type { padding-top: calc(var(--header-h) + 88px); }
.section--alt { background: var(--bg-alt); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section__head h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 12px; }
.section__head p { color: var(--text-muted); }

.btn {
  position: relative;
  display: inline-block;
  font-family: var(--font-light);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 15px 34px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 1px;
  overflow: hidden;
  isolation: isolate;
  transition: color .3s ease, transform .3s var(--ease), box-shadow .3s ease;
}
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
  z-index: -1;
}
.btn:hover { color: var(--ink); transform: translateY(-2px); box-shadow: 0 10px 30px -10px rgba(143,86,13,.45); }
.btn:hover::before { transform: scaleX(1); }
.btn--solid { background: var(--gold); color: var(--ink); }
.btn--solid::before { background: var(--gold-light); }

/* ===== Header =====
   Absolute (not fixed/sticky): overlays the hero, then scrolls away with the
   page exactly like the reference design. Inner pages clear it via a single
   rule on the first section (see ".section" below) — no negative-margin
   cancellation, so a header/logo size change can't open a gap. */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
}
.site-header__logo img { height: 154px; width: auto; }

.site-nav { position: relative; padding-top: 16px; }
.site-nav::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 12%, var(--gold) 88%, transparent);
}
.site-nav ul { display: flex; gap: 32px; }
.site-nav a {
  font-family: var(--font-light);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--cream-text);
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.site-nav a:hover, .site-nav a.is-active { color: var(--gold-lighter); border-color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--gold-lighter); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 91%, 0 100%);
}
.hero__bg {
  position: absolute;
  inset: -24px;
  background-size: cover;
  background-position: center;
  animation: heroZoom 24s var(--ease) infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.13); } }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 25% 15%, rgba(214,139,26,.22), transparent 60%),
    linear-gradient(180deg, rgba(10,9,13,.45) 0%, rgba(10,9,13,.78) 60%, rgba(10,9,13,.97) 100%);
}
.hero__signature {
  position: absolute;
  left: -3%; bottom: -8%;
  font-family: var(--font-script);
  font-size: clamp(7rem, 20vw, 15rem);
  color: rgba(245, 195, 120, .07);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  line-height: 1;
}
.hero__content { position: relative; z-index: 1; width: 100%; display: flex; justify-content: center; padding: 0 24px; }
.hero__panel { position: relative; max-width: 560px; width: 100%; text-align: center; padding: 64px 48px 60px; margin-top: 94px; }
.hero__panel::before {
  content: "";
  position: absolute;
  inset: -8% -20%;
  background: radial-gradient(ellipse at center, rgba(10,9,13,.74) 35%, rgba(10,9,13,.5) 52%, transparent 76%);
  z-index: -1;
}
.hero__ring {
  display: inline-block;
  width: 13px; height: 13px;
  border: 1px solid var(--gold-lighter);
  border-radius: 50%;
  margin-bottom: 22px;
}
.hero__welcome {
  display: block;
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.7rem);
  color: var(--gold-lighter);
  margin-bottom: 20px;
  letter-spacing: 0;
}
.hero__logo { margin: 0 auto 28px; height: 118px; width: auto; }
.hero__panel p { color: rgba(255,255,255,.92); font-size: 1rem; line-height: 1.9; margin-bottom: 26px; }
.hero__divider { display: block; width: 110px; height: 1px; background: rgba(255,255,255,.35); margin: 0 auto 22px; }
.hero__panel address {
  font-style: normal;
  font-family: var(--font-light);
  font-size: .9rem;
  letter-spacing: .01em;
  color: rgba(255,255,255,.78);
}

/* ===== Page hero (banner on every inner page) ===== */
.page-hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 56px;
}
.page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,9,13,.3) 0%, rgba(10,9,13,.5) 55%, rgba(10,9,13,.95) 100%);
}
.page-hero__title {
  position: relative; z-index: 1;
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
  text-align: right;
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: 0;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: rgba(255,255,255,.92);
}

.dash-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.dash-heading::before { content: ""; width: 32px; height: 1px; background: rgba(42,32,22,.4); flex-shrink: 0; }

/* ===== Intro / About blocks ===== */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.intro img { border-radius: 4px; box-shadow: 0 24px 50px -22px rgba(42,32,22,.4); }
.intro__text p { color: var(--text-muted); margin-bottom: 18px; }

.address-card {
  margin-top: 24px;
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  background: var(--bg-card);
  border-radius: 4px;
  font-family: var(--font-light);
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ===== Preview cards (menu/gallery on homepage) ===== */
.preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.preview-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--border);
  min-height: 360px;
  display: flex;
  align-items: flex-end;
}
.preview-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.preview-card:hover img { transform: scale(1.06); }
.preview-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,12,17,0) 30%, rgba(13,12,17,.92) 100%);
}
.preview-card__body { position: relative; z-index: 1; padding: 28px; width: 100%; }
.preview-card__body h3 { font-size: 1.5rem; margin-bottom: 6px; color: var(--cream-text); }
.preview-card__body a { color: var(--gold-lighter); font-family: var(--font-light); font-size: 0.9rem; text-transform: uppercase; letter-spacing: .04em; }

/* ===== Google rating badge (homepage band + compact footer variant) ===== */
.g-stars { position: relative; display: inline-block; font-size: 1.5rem; letter-spacing: .12em; line-height: 1; }
.g-stars__track { color: var(--border); }
.g-stars__fill {
  position: absolute; inset: 0;
  width: calc(var(--rating) / 5 * 100%);
  overflow: hidden;
  white-space: nowrap;
  color: var(--gold);
}

.g-rating { text-align: center; max-width: 540px; margin: 0 auto; }
.g-rating__row { display: flex; align-items: baseline; justify-content: center; gap: 16px; margin: 10px 0 12px; }
.g-rating__number { font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 3.4rem); font-weight: 700; color: var(--gold); line-height: 1; }
.g-rating__count { font-family: var(--font-light); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 18px; }
.g-rating__line { color: var(--text-muted); margin-bottom: 28px; }
.g-rating__cta.btn { display: inline-flex; align-items: center; gap: 10px; }
.g-rating__mark { width: 18px; height: 18px; flex-shrink: 0; }

.g-rating--compact { text-align: left; max-width: none; margin: 18px 0 0; }
.g-rating--compact .g-rating__row { justify-content: flex-start; gap: 10px; margin: 0 0 4px; }
.g-rating--compact .g-rating__number { font-size: 1.3rem; color: var(--gold-lighter); }
.g-rating--compact .g-stars { font-size: 1rem; letter-spacing: .08em; }
.g-rating--compact .g-stars__fill { color: var(--gold-lighter); }
.g-rating--compact .g-rating__count { margin-bottom: 8px; }
.g-rating--compact .g-rating__cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-light); font-size: .85rem; color: var(--gold-lighter);
}
.g-rating--compact .g-rating__cta:hover { color: var(--gold-light); }
.g-rating--compact .g-rating__mark { width: 14px; height: 14px; }

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  grid-auto-flow: dense;
  gap: 14px;
}
.gallery-grid figure {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--border);
  cursor: zoom-in;
  grid-column: span 2;
  grid-row: span 1;
}
.gallery-grid figure:nth-child(3n+1) { grid-row: span 2; }
.gallery-grid figure:nth-child(5n+2) { grid-column: span 1; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .6s ease; filter: saturate(.85); }
.gallery-grid figure:hover img { transform: scale(1.08); filter: saturate(1.05); }
.gallery-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  font-family: var(--font-light);
  font-size: .78rem;
  letter-spacing: .03em;
  color: var(--gold-lighter);
  background: linear-gradient(0deg, rgba(10,9,13,.92), transparent);
  transform: translateY(100%);
  transition: transform .35s var(--ease);
}
.gallery-grid figure:hover figcaption { transform: translateY(0); }

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(13,12,17,.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border: 1px solid var(--border); }
.lightbox__close {
  position: absolute; top: 24px; right: 32px;
  font-size: 2rem; color: var(--gold-lighter);
  background: none; border: 0; cursor: pointer;
  line-height: 1;
}

/* ===== Intro Video Modal ===== */
body.intro-open { overflow: hidden; }

.intro-modal {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(13, 12, 17, .97);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vh 24px;
}
.intro-modal.is-open { display: flex; }

.intro-modal__frame {
  position: relative;
  width: min(920px, 92vw);
  aspect-ratio: 16 / 9;
  border: 1px solid var(--gold-lighter);
  background: #000;
  box-shadow: 0 50px 120px -30px rgba(0, 0, 0, .8);
  opacity: 0;
  transform: scale(.96);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.intro-modal.is-open .intro-modal__frame { opacity: 1; transform: none; }
.intro-modal__frame video {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
}

.intro-modal__ornament {
  position: absolute; width: 30px; height: 30px;
  pointer-events: none;
}
.intro-modal__ornament--tl { top: -1px; left: -1px; border-top: 2px solid var(--gold-lighter); border-left: 2px solid var(--gold-lighter); }
.intro-modal__ornament--br { bottom: -1px; right: -1px; border-bottom: 2px solid var(--gold-lighter); border-right: 2px solid var(--gold-lighter); }

.intro-modal__sound {
  position: absolute; bottom: 18px; right: 18px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(13, 12, 17, .55);
  border: 1px solid var(--border-on-dark);
  border-radius: 50%;
  color: var(--cream-text);
  cursor: pointer;
  transition: border-color .3s, color .3s;
}
.intro-modal__sound:hover { border-color: var(--gold-lighter); color: var(--gold-lighter); }
.intro-modal__sound svg { width: 19px; height: 19px; }
.intro-modal__sound .icon-on { display: none; }
.intro-modal__sound[aria-pressed="true"] .icon-off { display: none; }
.intro-modal__sound[aria-pressed="true"] .icon-on { display: block; }

.intro-modal__close {
  position: absolute; top: -48px; right: 0;
  font-family: var(--font-light);
  font-size: .78rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--cream-text-muted);
  background: none; border: 1px solid var(--border-on-dark);
  padding: 9px 18px;
  cursor: pointer;
  transition: color .3s, border-color .3s;
}
.intro-modal__close:hover { color: var(--gold-lighter); border-color: var(--gold-lighter); }

@media (max-width: 640px) {
  .intro-modal__close { top: -42px; padding: 7px 14px; font-size: .7rem; }
  .intro-modal__sound { width: 38px; height: 38px; bottom: 12px; right: 12px; }
}

/* ===== Fix Menu Preview Card ===== */
.section--ink-menu { background: var(--ink); position: relative; overflow: hidden; }
.section--ink-menu::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(219, 160, 63, .1), transparent 60%);
  pointer-events: none;
}

.fix-menu-card {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 88px) clamp(28px, 6vw, 72px);
  border: 1px solid var(--border-on-dark);
  background: linear-gradient(180deg, var(--ink-alt), var(--ink));
}

.fix-menu-card__ornament { position: absolute; width: 56px; height: 56px; border: 1px solid var(--gold-lighter); opacity: .55; }
.fix-menu-card__ornament--tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.fix-menu-card__ornament--tr { top: 14px; right: 14px; border-left: 0; border-bottom: 0; }
.fix-menu-card__ornament--bl { bottom: 14px; left: 14px; border-right: 0; border-top: 0; }
.fix-menu-card__ornament--br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }

.fix-menu-card__head { text-align: center; margin-bottom: 56px; }
.fix-menu-card__script { display: block; font-family: var(--font-script); font-size: clamp(3.4rem, 8vw, 5rem); color: var(--gold-lighter); line-height: 1; }
.fix-menu-card__sub { display: block; font-family: var(--font-light); font-size: .8rem; letter-spacing: .35em; text-transform: uppercase; color: var(--cream-text-muted); margin-top: 6px; }
.fix-menu-card__year { display: block; font-family: var(--font-script); font-style: italic; font-size: 1.3rem; color: var(--gold-lighter); margin-top: 10px; }

.fix-menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.fix-menu-block + .fix-menu-block { margin-top: 40px; }

.fix-menu-cat {
  font-family: var(--font-display); font-size: 1.4rem; color: var(--gold-lighter);
  text-transform: uppercase; letter-spacing: .04em; margin-bottom: 18px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border-on-dark);
}
.fix-menu-list li { margin-bottom: 16px; }
.fix-menu-list li:last-child { margin-bottom: 0; }
.fix-menu-list strong { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--cream-text); font-weight: 700; }
.fix-menu-list em { display: block; font-style: italic; font-family: var(--font-body); font-size: .85rem; color: var(--cream-text-muted); margin-top: 2px; }

.fix-menu-divider {
  height: 1px; margin: 56px 0 36px;
  background: linear-gradient(90deg, transparent, var(--gold-lighter) 12%, var(--gold-lighter) 88%, transparent);
  opacity: .5;
}

.fix-menu-table__row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 14px 0; border-bottom: 1px solid var(--border-on-dark); font-size: .88rem; color: var(--cream-text-muted); }
.fix-menu-table__row--head span { font-family: var(--font-light); text-transform: uppercase; letter-spacing: .08em; font-size: .75rem; color: var(--gold-lighter); }
.fix-menu-table__row:last-child { border-bottom: 0; }

.fix-menu-download { text-align: center; margin-top: 48px; }

@media (max-width: 760px) {
  .fix-menu-grid { grid-template-columns: 1fr; gap: 40px; }
  .fix-menu-table__row { grid-template-columns: 1fr; gap: 6px; }
}

/* ===== Menu page ===== */
.menu-panel {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.menu-panel img { margin-left: auto; margin-right: auto; box-shadow: 0 24px 50px -22px rgba(42,32,22,.4); }
.menu-panel p { color: var(--text-muted); margin-bottom: 28px; }

/* ===== Contact ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
}
.contact-info h2 { margin-bottom: 18px; }
.contact-info p { color: var(--text-muted); margin-bottom: 14px; }
.contact-info a:hover { color: var(--gold); }

#contactForm {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
}

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-row .form-group { margin-bottom: 0; }

/* ===== Datepicker (Türkçe, gg/aa/yyyy) ===== */
.datepicker { position: relative; }
.datepicker input { cursor: pointer; }
.datepicker__panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 50;
  width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 16px;
  box-shadow: 0 16px 40px -12px rgba(0,0,0,.6);
}
.datepicker__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.datepicker__title { font-family: var(--font-light); font-size: .92rem; color: var(--gold); text-transform: capitalize; }
.datepicker__nav {
  background: none; border: 1px solid var(--border); color: var(--text);
  width: 28px; height: 28px; border-radius: 3px; cursor: pointer; font-size: 1.1rem; line-height: 1;
  transition: border-color .2s ease, color .2s ease;
}
.datepicker__nav:hover { border-color: var(--gold); color: var(--gold); }
.datepicker__weekdays, .datepicker__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
}
.datepicker__weekdays span { font-family: var(--font-light); font-size: .72rem; color: var(--text-muted); padding-bottom: 6px; }
.datepicker__day {
  background: none; border: 0; color: var(--text);
  font-family: var(--font-body); font-size: .85rem;
  padding: 7px 0; border-radius: 3px; cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.datepicker__day:hover:not(.is-disabled) { background: var(--border); color: var(--gold); }
.datepicker__day.is-today { border: 1px solid var(--gold); }
.datepicker__day.is-selected { background: var(--gold); color: var(--ink); font-weight: 600; }
.datepicker__day.is-disabled { color: var(--text-muted); opacity: .35; cursor: not-allowed; }
.datepicker__day--empty { cursor: default; }
.form-group label {
  display: block;
  font-family: var(--font-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input, .form-group textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 16px;
  border-radius: 3px;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-honeypot { position: absolute; left: -9999px; top: -9999px; }

.form-status { margin-top: 16px; padding: 12px 16px; border-radius: 3px; font-size: 0.95rem; }
.form-status--ok { background: rgba(143,86,13,.15); border: 1px solid var(--gold); color: var(--gold); }
.form-status--err { background: rgba(220,60,60,.1); border: 1px solid #d65c5c; color: #9b2c2c; }

/* ===== Legal pages ===== */
.legal { max-width: 760px; margin: 0 auto; }
.legal h2 { margin: 36px 0 12px; font-size: 1.3rem; }
.legal p { color: var(--text-muted); margin-bottom: 14px; }

/* ===== Marquee ticker ===== */
.marquee {
  overflow: hidden;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
  gap: 0;
}
.marquee__track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 0 28px;
  white-space: nowrap;
}
.marquee__track span::after { content: "\2726"; margin-left: 28px; color: var(--text-muted); font-size: .8em; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== Footer =====
   Kept as a dark editorial anchor (matches hero) while the rest of the page
   is light — scoping the theme variables here flips every var()-driven rule
   inside (including the nested .marquee) back to dark/cream-on-dark. */
.site-footer {
  --bg: var(--ink);
  --bg-alt: var(--ink-alt);
  --text: var(--cream-text);
  --text-muted: var(--cream-text-muted);
  --border: var(--border-on-dark);
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  margin-top: 80px;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 64px 24px 40px;
}
.site-footer__logo { height: 56px; width: auto; margin-bottom: 14px; }
.site-footer__col p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 8px; }
.site-footer__col h2 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: .04em; color: var(--gold-lighter); margin-bottom: 14px; font-family: var(--font-light); font-weight: 500; }
.site-footer__col a:hover { color: var(--gold-lighter); }
.site-footer__bottom { border-top: 1px solid var(--border); padding: 18px 24px; }
.site-footer__bottom p { color: var(--text-muted); font-size: 0.82rem; text-align: center; }
.opening-hours { color: var(--gold-lighter) !important; font-family: var(--font-light); font-size: 0.85rem !important; margin-top: 4px !important; }

/* ===== WhatsApp FAB ===== */
.whatsapp-fab {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 90;
  width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 24px -6px rgba(0,0,0,.5);
  border: 2px solid transparent;
  transition: transform .25s var(--ease), border-color .25s ease, box-shadow .25s ease;
}
.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.05);
  border-color: var(--gold-lighter);
  box-shadow: 0 12px 30px -6px rgba(0,0,0,.6);
}

/* ===== Contact map ===== */
.map-embed {
  margin-top: 20px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ===== Responsive ===== */
@media (max-width: 880px) {
  .intro, .contact-layout { grid-template-columns: 1fr; }
  .preview-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery-grid figure, .gallery-grid figure:nth-child(3n+1), .gallery-grid figure:nth-child(5n+2) { grid-column: span 1; grid-row: span 1; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .hero__signature { display: none; }
}

@media (max-width: 700px) {
  :root { --header-h: 112px; }
  .site-header__logo img { height: 64px; }
  .site-header__inner { padding: 18px 20px; }
  .hero__panel { padding: 48px 24px 44px; margin-top: 32px; }
  .hero__logo { height: 88px; }
  .page-hero { min-height: 300px; padding-bottom: 32px; }
  .page-hero__title { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .whatsapp-fab { right: 16px; bottom: 16px; width: 50px; height: 50px; }
  .whatsapp-fab svg { width: 24px; height: 24px; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--bg);
    border-bottom: 0 solid var(--border);
    max-height: 0;
    padding-top: 0;
    overflow: hidden;
    transition: max-height .3s ease, border-bottom-width .3s ease;
  }
  .site-nav::before { display: none; }
  .site-nav.is-open { max-height: 400px; border-bottom-width: 1px; }
  .site-nav ul { flex-direction: column; gap: 0; padding: 8px 24px 20px; }
  .site-nav li { border-bottom: 1px solid var(--border); }
  .site-nav a { display: block; padding: 14px 0; color: var(--text); }
  .site-nav a:hover, .site-nav a.is-active { color: var(--gold); border-color: var(--gold); }
  .gallery-grid { grid-template-columns: 1fr; }
  .site-footer__bottom .marquee { font-size: .68rem; }
  .site-footer__inner { grid-template-columns: 1fr; }
}

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