/* =================================================================
   POLY TÜRKBÜKÜ — BODRUM
   AUTHOR: SENTURK
   ================================================================= */

:root {
  /* Colors */
  --bone:        #F5EFE6;
  --paper:      #FBF7F0;
  --cream:      #EBE0CC;
  --sand:       #D4B896;
  --sand-soft:  #E7D5B5;
  --terracotta: #C97B5A;
  --rust:       #A65A3E;
  --olive:      #6B7251;
  --olive-soft: #8A9173;
  --earth:      #4A3829;
  --ink:        #1F1812;
  --line:       rgba(74, 56, 41, 0.18);

  /* Type */
  --display: "Cormorant Garamond", "Times New Roman", serif;
  --body:    "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Scale */
  --container: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(72px, 10vw, 140px);

  /* Motion */
  --ease:        cubic-bezier(.22, .61, .36, 1);
  --ease-soft:   cubic-bezier(.4, 0, .2, 1);
  --t-fast: .25s;
  --t-mid:  .5s;
  --t-slow: .9s;
}

/* ============ RESET ============ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--earth);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; }

/* Selection */
::selection { background: var(--terracotta); color: var(--paper); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ============ LOADER ============ */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ink);
  display: grid; place-items: center;
  transition: opacity .8s var(--ease), visibility .8s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader-logo-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  isolation: isolate;
}
/* Sıcak terracotta glow — logo belirdikten sonra şişip söner */
.loader-logo-wrap::before {
  content: "";
  position: absolute;
  inset: -60% -25%;
  z-index: -1;
  background: radial-gradient(ellipse at center,
    rgba(201, 123, 90, .35) 0%,
    rgba(201, 123, 90, .08) 45%,
    rgba(201, 123, 90, 0) 70%);
  filter: blur(20px);
  opacity: 0;
  transform: scale(.7);
  animation: loaderGlow 2.6s var(--ease-soft) .9s forwards;
}
.loader-logo {
  display: block;
  width: auto;
  max-width: min(320px, 62vw);
  height: auto;
  max-height: 110px;
  object-fit: contain;
  /* Koyu logoyu loader'da beyaza çevir; başlangıçta blur'lu */
  filter: brightness(0) invert(1) blur(14px);
  opacity: 0;
  transform: scale(.94);
  animation: loaderLogoIn 1.4s var(--ease) .15s forwards;
}

@keyframes loaderLogoIn {
  to {
    opacity: 1;
    transform: scale(1);
    filter: brightness(0) invert(1) blur(0);
  }
}
@keyframes loaderGlow {
  0%   { opacity: 0; transform: scale(.7); }
  40%  { opacity: 1; transform: scale(1.05); }
  100% { opacity: 0; transform: scale(1.15); }
}

.loader-bar {
  position: absolute; bottom: 18%; left: 50%; transform: translateX(-50%);
  width: 120px; height: 1px; background: rgba(245, 239, 230, .15);
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%; width: 0;
  background: var(--bone);
  animation: loaderProgress 1.4s var(--ease) forwards;
  animation-delay: .3s;
}
@keyframes loaderProgress { to { width: 100%; } }

/* ============ HEADER ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter);
  background: transparent;
  transition: background var(--t-mid) var(--ease), padding var(--t-mid) var(--ease), backdrop-filter var(--t-mid) var(--ease);
}
.site-header.is-scrolled {
  background: rgba(31, 24, 18, .85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px var(--gutter);
}

.brand {
  position: relative;
  display: flex; align-items: center;
  line-height: 1;
  color: var(--bone);
  height: 44px;
}
.brand-logo,
.brand-icon {
  display: block;
  width: auto; height: 100%;
  object-fit: contain;
  transition: opacity .55s var(--ease);
  /* Logos provided as light-toned PNGs on transparent bg.
     If you have dark-only logos, comment out the next two lines. */
  filter: brightness(0) invert(1); /* turn dark logo white over hero */
}
.brand-icon {
  position: absolute;
  left: 0; top: 0;
  aspect-ratio: 1 / 1;
  height: 100%;
  width: auto;
  opacity: 0;
  pointer-events: none;
}

/* States */
.brand.is-icon .brand-logo { opacity: 0; }
.brand.is-icon .brand-icon { opacity: 1; }

/* When the header is condensed/scrolled, shrink the brand a touch */
.site-header.is-scrolled .brand { height: 38px; }

.site-nav ul {
  display: flex; gap: clamp(20px, 3vw, 44px);
}
.site-nav a {
  color: var(--bone);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--bone);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.site-nav a:hover::after { transform: scaleX(1); }

.header-actions {
  display: flex; align-items: center; gap: 18px;
}
.lang-toggle {
  color: var(--bone);
  font-size: 12px; letter-spacing: .2em; font-weight: 500;
  padding: 8px 0;
  display: flex; align-items: center; gap: 6px;
}
.lang-toggle .lang-divider { opacity: .4; }
.lang-toggle .lang-tr, .lang-toggle .lang-en {
  opacity: .5; transition: opacity var(--t-fast);
}
html[data-lang="tr"] .lang-toggle .lang-tr,
html[data-lang="en"] .lang-toggle .lang-en { opacity: 1; }

.btn-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  border: 1px solid rgba(245, 239, 230, .55);
  color: var(--bone);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  transition: background var(--t-fast) var(--ease), color var(--t-fast), border-color var(--t-fast);
}
.btn-pill:hover {
  background: var(--bone);
  color: var(--ink);
  border-color: var(--bone);
}

.mobile-toggle {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column; justify-content: center; gap: 5px;
  align-items: center;
}
.mobile-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--bone);
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.mobile-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-toggle.is-open span:nth-child(2) { opacity: 0; }
.mobile-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 90;
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 80px var(--gutter);
  opacity: 0; visibility: hidden;
  transition: opacity var(--t-mid) var(--ease), visibility var(--t-mid);
}
.mobile-nav.is-open { opacity: 1; visibility: visible; }
.mobile-nav ul {
  display: flex; flex-direction: column; gap: 24px; text-align: center;
}
.mobile-nav a {
  color: var(--bone);
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: .04em;
}
.mobile-nav a:hover { color: var(--terracotta); }
.mobile-nav-foot {
  margin-top: 60px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--sand);
  font-size: 13px; letter-spacing: .15em;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  color: var(--bone);
}

.hero-slideshow { position: absolute; inset: 0; z-index: 0; }
.hero-slideshow .slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease-soft);
}
.hero-slideshow .slide.is-active { opacity: 1; }
.hero-slideshow .slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.02);
}
/* Ken-Burns gentle zoom on active slide */
.hero-slideshow .slide.is-active img {
  animation: kenBurns 9s var(--ease-soft) forwards;
}
@keyframes kenBurns {
  from { transform: scale(1.02); }
  to   { transform: scale(1.12); }
}

.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    /* Vignette — kenarlar belirgin koyu */
    radial-gradient(ellipse 130% 90% at 50% 50%,
      rgba(31, 24, 18, 0) 25%,
      rgba(31, 24, 18, .50) 100%),
    /* Ana karartma: üst-orta-alt smooth gradient */
    linear-gradient(180deg,
      rgba(31, 24, 18, .80) 0%,
      rgba(31, 24, 18, .70) 28%,
      rgba(31, 24, 18, .65) 62%,
      rgba(31, 24, 18, .90) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  padding-top: 80px;
}

.kicker {
  font-size: 11px; letter-spacing: .38em; font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: .9;
  display: inline-flex; align-items: center; gap: 14px;
}
.kicker::before {
  content: ""; width: 40px; height: 1px; background: currentColor; opacity: .6;
}

.hero-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 8.4vw, 132px);
  line-height: .95;
  letter-spacing: -.01em;
  margin-bottom: 32px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, .25);
}
.hero-title > span,
.hero-title > em { display: block; }
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--sand);
  padding-left: clamp(40px, 8vw, 120px);
}
.hero-title > span:last-of-type {
  font-size: .58em;
  font-style: italic;
  font-weight: 300;
  padding-left: clamp(60px, 12vw, 180px);
  margin-top: .15em;
  opacity: .92;
}

.hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 300;
  max-width: 540px;
  margin-bottom: 44px;
  opacity: .9;
  line-height: 1.55;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 32px;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background var(--t-fast) var(--ease), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
  cursor: pointer;
}
.btn-primary {
  background: var(--bone);
  color: var(--ink);
}
.btn-primary:hover {
  background: var(--terracotta);
  color: var(--bone);
}
.btn-ghost {
  background: transparent;
  color: var(--bone);
  border-color: rgba(245, 239, 230, .55);
}
.btn-ghost:hover {
  background: rgba(245, 239, 230, .12);
  border-color: var(--bone);
}
.btn-light {
  background: var(--bone);
  color: var(--ink);
}
.btn-light:hover { background: var(--sand); }
.btn-arrow {
  font-size: 14px; letter-spacing: 0;
  transition: transform var(--t-fast) var(--ease);
}
.btn:hover .btn-arrow { transform: translate(3px, -3px); }

.hero-meta {
  position: absolute; z-index: 2;
  bottom: 60px; right: var(--gutter);
  display: flex; align-items: center; gap: 24px;
}
.slide-counter {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .1em;
}
.slide-divider {
  display: inline-block; width: 24px; height: 1px;
  background: currentColor; opacity: .5;
}
.slide-dots { display: flex; gap: 8px; }
.slide-dots .dot {
  width: 24px; height: 2px;
  background: rgba(245, 239, 230, .35);
  border-radius: 0;
  transition: background var(--t-fast);
}
.slide-dots .dot.is-active { background: var(--bone); }
.slide-dots .dot:hover { background: var(--sand); }

.scroll-indicator {
  position: absolute; z-index: 2;
  bottom: 60px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: .35em; text-transform: uppercase;
  opacity: .85;
  transition: opacity var(--t-fast);
}
.scroll-indicator:hover { opacity: 1; }
.scroll-arrow {
  width: 1px; height: 36px;
  background: currentColor; position: relative;
  animation: scrollHint 2s var(--ease-soft) infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: scaleY(.4); transform-origin: top; opacity: .3; }
  50%      { transform: scaleY(1); opacity: 1; }
}

/* Hero reveals on load */
.hero .reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: heroReveal 1s var(--ease) forwards;
}
.hero .kicker.reveal { animation-delay: 1.2s; }
.hero-title > span:nth-of-type(1).reveal { animation-delay: 1.35s; }
.hero-title em.reveal                    { animation-delay: 1.5s; }
.hero-title > span:nth-of-type(2).reveal { animation-delay: 1.65s; }
.hero-sub.reveal                         { animation-delay: 1.85s; }
.hero-cta.reveal                         { animation-delay: 2s; }
@keyframes heroReveal { to { opacity: 1; transform: translateY(0); } }

/* ============ SECTIONS ============ */
.section {
  padding-block: var(--section-y);
  position: relative;
}

.section-kicker {
  font-size: 11px; letter-spacing: .38em; font-weight: 500;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 28px;
}
.section-kicker--light { color: var(--sand); }

.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(38px, 6.4vw, 92px);
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 36px;
  max-width: 1000px;
}
.section-title em {
  font-style: italic; font-weight: 300;
  color: var(--terracotta);
  display: block;
  padding-left: clamp(30px, 5vw, 80px);
}
.section-title--light { color: var(--bone); }
.section-title--light em { color: var(--sand); }

.section-lead {
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 300;
  max-width: 600px;
  color: var(--earth);
  line-height: 1.65;
  margin-bottom: 56px;
}
.section-lead--light { color: rgba(245, 239, 230, .85); }

/* ============ CONCEPT ============ */
.concept { background: var(--bone); }
.concept-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 64px);
  margin-top: 32px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
}
.feature {
  position: relative;
}
.feature-num {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .15em;
  color: var(--terracotta);
  display: block; margin-bottom: 18px;
}
.feature h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 30px);
  margin-bottom: 14px;
  color: var(--ink);
  line-height: 1.15;
}
.feature p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--earth);
  opacity: .85;
}

/* ============ GALLERY ============ */
.gallery-section { background: var(--paper); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: clamp(8px, 1vw, 14px);
  padding: 0 var(--gutter);
  margin-top: 24px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  grid-row: span 2;
}
.gallery-item--tall { grid-row: span 3; }
.gallery-item--wide { grid-row: span 2; grid-column: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 1.2s var(--ease-soft);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(31, 24, 18, .7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--bone);
  padding: 7px 14px;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }

/* ============ MENU CTA ============ */
.menu-cta {
  position: relative;
  color: var(--bone);
  overflow: hidden;
  text-align: center;
}
.menu-cta-bg { position: absolute; inset: 0; z-index: 0; }
.menu-cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.menu-cta-veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(31, 24, 18, .8), rgba(31, 24, 18, .65));
}
.menu-cta-content {
  position: relative; z-index: 2;
  text-align: center;
}
.menu-cta-content .section-kicker,
.menu-cta-content .section-title,
.menu-cta-content .section-lead { margin-inline: auto; }
.menu-cta-content .section-title em { padding-left: 0; }
.menu-cta-content .section-lead { margin-bottom: 40px; }

/* ============ RESERVATION ============ */
.reservation { background: var(--bone); }
.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.reservation-intro .section-lead { margin-bottom: 44px; }

.reservation-contact {
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.rc-label {
  font-size: 10px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
  font-weight: 500;
}
.rc-phone {
  display: block;
  font-family: var(--display);
  font-size: clamp(24px, 2.4vw, 32px);
  color: var(--ink);
  margin-bottom: 8px;
  transition: color var(--t-fast);
}
.rc-phone:hover { color: var(--terracotta); }
.rc-email {
  font-size: 14px;
  color: var(--earth);
  opacity: .8;
  letter-spacing: .02em;
}
.rc-email:hover { color: var(--terracotta); opacity: 1; }

/* Form */
.reservation-form {
  background: var(--paper);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.field label {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--earth);
  font-weight: 600;
  display: flex; align-items: baseline; gap: 8px;
}
.field-optional {
  font-size: 9px;
  letter-spacing: .15em;
  opacity: .55;
  font-weight: 400;
  text-transform: none;
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 10px 0 12px;
  font-size: 15px;
  color: var(--ink);
  border-radius: 0;
  transition: border-color var(--t-fast);
  width: 100%;
  font-family: var(--body);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--terracotta);
}
.field textarea { resize: vertical; min-height: 80px; }
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%234A3829' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 10px;
  padding-right: 22px;
  cursor: pointer;
}
.field input:invalid:not(:placeholder-shown):not(:focus) { border-bottom-color: var(--rust); }

/* Honeypot — hidden from real users */
.hp-field {
  position: absolute; left: -9999px; width: 1px; height: 1px;
  overflow: hidden;
}

.btn-block { width: 100%; margin-top: 12px; position: relative; }
.btn-block .btn-spinner {
  position: absolute;
  width: 16px; height: 16px;
  border: 2px solid rgba(245, 239, 230, .3);
  border-top-color: var(--bone);
  border-radius: 50%;
  opacity: 0;
  animation: none;
}
.btn-block.is-loading .btn-text { opacity: 0; }
.btn-block.is-loading .btn-spinner {
  opacity: 1;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn-block:disabled { cursor: not-allowed; opacity: .85; }

.form-note {
  font-size: 11.5px;
  opacity: .65;
  line-height: 1.5;
  margin-top: 4px;
}

/* ============ VISIT ============ */
.visit { background: var(--cream); }
.visit-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.va-label {
  font-size: 10px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
  font-weight: 600;
}
.va-text {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 32px;
}

.nav-buttons {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.nav-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--earth);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.nav-btn:hover {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.nav-btn svg { flex-shrink: 0; }

.visit-hours { margin-bottom: 40px; }
.visit-hours ul {
  display: flex; flex-direction: column; gap: 8px;
}
.visit-hours li {
  display: flex; justify-content: space-between;
  font-family: var(--display);
  font-size: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.visit-contact { display: flex; flex-direction: column; gap: 4px; }
.vc-line {
  font-family: var(--display);
  font-size: 19px;
  color: var(--ink);
  padding: 6px 0;
  transition: color var(--t-fast);
}
.vc-line:hover { color: var(--terracotta); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink);
  color: var(--bone);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245, 239, 230, .12);
}
.footer-logo {
  display: block;
  max-width: 180px;
  width: auto;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: .95;
}
.footer-tagline {
  font-family: var(--display);
  font-size: 18px;
  font-style: italic;
  color: var(--sand);
  margin-top: 20px;
  max-width: 320px;
  line-height: 1.4;
}
.footer-label {
  font-size: 10px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 18px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a, .footer-contact a {
  font-size: 14px;
  color: var(--bone);
  opacity: .85;
  transition: opacity var(--t-fast), color var(--t-fast);
}
.footer-nav a:hover, .footer-contact a:hover {
  opacity: 1; color: var(--sand);
}
.footer-contact p {
  font-size: 14px;
  line-height: 1.6;
  opacity: .85;
  margin-bottom: 10px;
}
.footer-bottom {
  padding-top: 32px;
  font-size: 12px;
  opacity: .6;
  letter-spacing: .04em;
}

/* ============ TOAST ============ */
.toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translate(-50%, 100px);
  background: var(--ink);
  color: var(--bone);
  padding: 16px 28px;
  font-size: 13px;
  letter-spacing: .08em;
  z-index: 200;
  opacity: 0;
  transition: transform .5s var(--ease), opacity .5s var(--ease);
  max-width: calc(100vw - 32px);
  text-align: center;
  border-left: 3px solid var(--terracotta);
}
.toast.is-show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.toast.is-success { border-left-color: var(--olive); }
.toast.is-error { border-left-color: var(--rust); }

/* ============ SCROLL REVEAL ============ */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .site-nav { display: none; }
  .mobile-toggle { display: flex; }
  .header-actions .btn-pill { display: none; }
  .header-actions .lang-toggle { color: var(--bone); }

  .reservation-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }
  .concept-features { grid-template-columns: 1fr; gap: 36px; padding-top: 40px; }
  .feature { padding-left: 0; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item--tall { grid-row: span 2; }
  .gallery-item--wide { grid-column: span 2; grid-row: span 2; }
}

@media (max-width: 640px) {
  .hero-content { padding-top: 100px; }
  .hero-title em { padding-left: 24px; }
  .hero-title > span:last-of-type { padding-left: 40px; }
  .hero-meta { bottom: 30px; left: var(--gutter); right: var(--gutter); justify-content: space-between; }
  .scroll-indicator { display: none; }

  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .gallery-item--tall,
  .gallery-item--wide { grid-row: span 1; grid-column: span 1; }

  .nav-buttons { flex-direction: column; }
  .nav-btn { justify-content: flex-start; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .hero-slideshow .slide.is-active img { animation: none; transform: scale(1); }
}