/* ==========================================================================
   MACAKLIN — Warm rustic luxury
   Hand-crafted CSS. No framework, no build step.
   ========================================================================== */

/* Fonts are self-hosted (assets/fonts + css/fonts.css) — no Google servers, GDPR-clean. */

:root {
  /* palette */
  --paper:        #F7F1E6;
  --cream:        #F4ECDD;
  --cream-2:      #EFE4D0;
  --sand:         #E7DAC2;
  --ink:          #2C2018;
  --ink-soft:     #4A3A28;
  --muted:        #6B5436;
  --wood:         #7A5230;
  --wood-mid:     #94612F;
  --wood-dark:    #4D3320;
  --forest:       #2F4A3A;
  --forest-deep:  #28412F;
  --terracotta:   #C26B3E;
  --terracotta-d: #A8542B;
  --gold:         #C79A4E;
  --line:         rgba(44, 32, 24, 0.14);
  --line-soft:    rgba(44, 32, 24, 0.08);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --container: 1200px;
  --radius:   14px;
  --radius-s: 10px;
  --shadow:   0 18px 50px -24px rgba(44, 32, 24, 0.45);
  --shadow-s: 0 8px 24px -16px rgba(44, 32, 24, 0.4);

  --z-header: 50;
  --z-menu:   60;
  --z-lightbox: 90;
  --z-gecko:  80;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

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

/* ---------- layout primitives ------------------------------------------ */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }
.section { padding: clamp(64px, 9vw, 132px) 0; position: relative; }
.section--tint { background: var(--paper); }
.section--wood { background: var(--forest-deep); color: var(--cream); }

.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--terracotta);
  margin: 0 0 18px;
}
.kicker::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: 0.7; }
.section--wood .kicker { color: var(--gold); }
.center .kicker { justify-content: center; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; color: var(--ink); margin: 0; line-height: 1.06; letter-spacing: -0.01em; }
.section--wood h1, .section--wood h2, .section--wood h3 { color: var(--cream); }

.h-display { font-size: clamp(2.6rem, 6.4vw, 5rem); }
.h-section { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
.h-card    { font-size: clamp(1.5rem, 2.4vw, 2rem); }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--ink-soft); max-width: 60ch; line-height: 1.75; }
.section--wood .lead { color: rgba(244, 236, 221, 0.82); }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }
.section-head { margin-bottom: clamp(40px, 6vw, 72px); }

/* ---------- buttons ---------------------------------------------------- */
.btn {
  --b: var(--terracotta);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 30px; cursor: pointer;
  font-family: var(--sans); font-size: 15px; font-weight: 600; letter-spacing: 0.01em;
  border: 1px solid var(--b); border-radius: 100px; background: var(--b); color: #fff;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .1s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--terracotta-d); border-color: var(--terracotta-d); }
.btn:active { transform: scale(0.985); }
.btn .ico { width: 18px; height: 18px; }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: rgba(44,32,24,.06); border-color: var(--ink-soft); color: var(--ink); }

.btn--light { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.55); color: #fff; backdrop-filter: blur(4px); }
.btn--light:hover { background: rgba(255,255,255,.92); color: var(--ink); border-color: #fff; }

.btn--full { width: 100%; white-space: normal; }
.btn--lg { min-height: 58px; font-size: 16px; }

/* ---------- header / nav ----------------------------------------------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-header);
  display: flex; align-items: center;
  padding: 18px clamp(20px, 5vw, 48px);
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.header::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom, rgba(20,14,9,.5), rgba(20,14,9,0));
  opacity: 1; transition: opacity .35s ease;
}
.header.scrolled {
  background: rgba(247, 241, 230, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line-soft), 0 10px 30px -22px rgba(44,32,24,.5);
  padding-top: 12px; padding-bottom: 12px;
}
.header.scrolled::before { opacity: 0; }

.nav { position: relative; z-index: 1; width: 100%; max-width: 1320px; margin: 0 auto; display: flex; align-items: center; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 58px; width: auto; transition: filter .35s ease; }
.header:not(.scrolled) .brand-logo { filter: drop-shadow(0 0 2px rgba(255,255,255,.9)) drop-shadow(0 0 14px rgba(255,255,255,.55)); }

/* social icons in header */
.nav-socials { display: flex; align-items: center; gap: 10px; margin-right: auto; margin-left: 4px; }
.nav-socials .social { width: 40px; height: 40px; color: #fff; border-color: rgba(255,255,255,.42); }
.nav-socials .social:hover { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }
.scrolled .nav-socials .social { color: var(--ink-soft); border-color: var(--line); }
.scrolled .nav-socials .social:hover { background: var(--forest); border-color: var(--forest); color: #fff; }
.brand-word {
  font-family: var(--serif); font-weight: 600; font-size: 1.55rem; letter-spacing: .14em;
  color: #fff; line-height: 1; transition: color .35s ease;
}
.brand-sub { display: block; font-family: var(--sans); font-size: 9px; font-weight: 600; letter-spacing: .28em; color: rgba(255,255,255,.75); margin-top: 4px; transition: color .35s ease; }
.scrolled .brand-word { color: var(--ink); }
.scrolled .brand-sub { color: var(--muted); }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,.92); letter-spacing: .01em;
  position: relative; padding: 6px 0; transition: color .3s ease;
}
.nav-link::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px; background: var(--terracotta); transition: width .3s ease; }
.nav-link:hover::after { width: 100%; }
.scrolled .nav-link { color: var(--ink-soft); }
.scrolled .nav-link:hover { color: var(--ink); }

.nav-actions { display: flex; align-items: center; gap: 14px; }

/* language switcher */
.lang { position: relative; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  height: 40px; padding: 0 14px; border-radius: 100px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.5);
  color: #fff; font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: .04em;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.flag { display: inline-block; width: 21px; height: 15px; border-radius: 3px; overflow: hidden; flex: none; box-shadow: inset 0 0 0 1px rgba(44,32,24,.16); }
.flag svg { display: block; width: 100%; height: 100%; }
.header:not(.scrolled) .lang-toggle .lang-flag { box-shadow: inset 0 0 0 1px rgba(255,255,255,.4); }
.lang-toggle .chev { width: 13px; height: 13px; transition: transform .25s ease; }
.lang-toggle[aria-expanded="true"] .chev { transform: rotate(180deg); }
.scrolled .lang-toggle { background: var(--cream-2); border-color: var(--line); color: var(--ink); }
.lang-toggle:hover { border-color: var(--terracotta); }

.lang-menu {
  position: absolute; right: 0; top: calc(100% + 10px); min-width: 188px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-s);
  box-shadow: var(--shadow); padding: 8px; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.lang.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-opt {
  display: flex; align-items: center; gap: 12px; width: 100%; cursor: pointer;
  padding: 9px 12px; border: 0; background: none; border-radius: 8px; text-align: left;
  font-family: var(--sans); font-size: 14px; color: var(--ink-soft); transition: background .18s ease, color .18s ease;
}
.lang-opt:hover { background: var(--cream-2); color: var(--ink); }
.lang-opt .code {
  font-size: 11px; font-weight: 600; letter-spacing: .06em; color: var(--muted);
  width: 26px; height: 22px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 6px;
}
.lang-opt[aria-current="true"] { color: var(--ink); font-weight: 500; }
.lang-opt[aria-current="true"] .code { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }

/* burger */
.burger { display: none; width: 44px; height: 44px; border: 0; background: none; cursor: pointer; padding: 10px; }
.burger span { display: block; height: 2px; background: #fff; border-radius: 2px; margin: 5px 0; transition: background .3s ease, transform .3s ease, opacity .3s ease; }
.scrolled .burger span { background: var(--ink); }

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: var(--z-menu); background: var(--forest-deep); color: var(--cream);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 6px;
  opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a { font-family: var(--serif); font-size: clamp(2rem, 8vw, 2.8rem); color: var(--cream); padding: 8px 0; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mm-book { margin-top: 22px; background: var(--gold); color: #3a2c10; padding: 12px 40px; border-radius: 100px; font-size: clamp(1.3rem, 5.5vw, 1.7rem); }
.mobile-menu .mm-book:hover { background: #fff; color: var(--ink); }
.mm-socials { display: flex; gap: 14px; margin-top: 30px; }
.mm-socials .social { width: 48px; height: 48px; color: var(--cream); border-color: rgba(244,236,221,.4); }
.mm-socials .social:hover { background: var(--gold); border-color: var(--gold); color: #3a2c10; transform: none; }
.mobile-close { position: absolute; top: 22px; right: 22px; width: 48px; height: 48px; border: 0; background: none; color: var(--cream); cursor: pointer; }

/* ---------- hero ------------------------------------------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; background: var(--forest-deep); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(20,14,9,.78) 0%, rgba(20,14,9,.28) 45%, rgba(20,14,9,.34) 100%),
    linear-gradient(to right, rgba(20,14,9,.5), rgba(20,14,9,0) 60%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px,5vw,48px) clamp(72px, 12vh, 130px); }
.hero .kicker { color: var(--gold); }
.hero h1 { color: #fff; max-width: 16ch; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: clamp(1.05rem, 1.7vw, 1.3rem); max-width: 46ch; margin: 22px 0 34px; color: rgba(255,255,255,.9); line-height: 1.7; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.scrolldown { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.75); font-size: 11px; letter-spacing: .25em; text-transform: uppercase; }
.scrolldown .line { width: 1px; height: 38px; background: linear-gradient(rgba(255,255,255,.7), rgba(255,255,255,0)); animation: scrollpulse 2s ease-in-out infinite; }
@keyframes scrollpulse { 0%,100% { transform: scaleY(.4); opacity: .4; transform-origin: top; } 50% { transform: scaleY(1); opacity: 1; transform-origin: top; } }

/* ---------- the house -------------------------------------------------- */
.house-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.house-copy p { color: var(--ink-soft); margin: 0 0 20px; max-width: 56ch; }
.house-media { position: relative; }
.house-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.house-media .badge {
  position: absolute; left: -22px; bottom: 28px; background: var(--terracotta); color: #fff;
  font-family: var(--serif); font-size: 1.05rem; padding: 16px 22px; border-radius: var(--radius-s);
  box-shadow: var(--shadow-s); line-height: 1.3; max-width: 200px;
}
.house-media .badge b { display: block; font-size: 1.7rem; font-weight: 600; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; border-top: 1px solid var(--line); }
.stat { padding: 26px 8px 0; border-right: 1px solid var(--line); text-align: center; }
.stat:last-child { border-right: 0; }
.stat b { display: block; font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 600; color: var(--wood); line-height: 1; }
.stat span { display: block; font-size: 13px; color: var(--muted); margin-top: 8px; letter-spacing: .02em; }

/* ---------- suites ----------------------------------------------------- */
.suite-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2.4vw, 32px); }
.suite-card {
  position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer;
  background: var(--forest-deep); box-shadow: var(--shadow-s);
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease;
  min-height: 420px;
}
.suite-card.featured { grid-column: span 2; min-height: 480px; }
.suite-card:hover, .suite-card:focus-visible { transform: translateY(-6px); box-shadow: var(--shadow); }
.suite-card:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.suite-photo { position: absolute; inset: 0; }
.suite-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.2,.7,.2,1), filter .5s ease; }
.suite-card:hover .suite-photo img { transform: scale(1.07); }
.suite-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18,12,8,.9) 6%, rgba(18,12,8,.35) 46%, rgba(18,12,8,.15) 100%);
  transition: background .4s ease;
}
.suite-card:hover .suite-photo::after { background: linear-gradient(to top, rgba(18,12,8,.93) 10%, rgba(18,12,8,.5) 60%, rgba(18,12,8,.3) 100%); }

.suite-body { position: absolute; inset: auto 0 0 0; z-index: 2; padding: clamp(22px, 3vw, 34px); color: #fff; }
.suite-tagrow { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.pill { display: inline-flex; align-items: center; gap: 6px; height: 28px; padding: 0 12px; border-radius: 100px; font-size: 12px; font-weight: 600; letter-spacing: .04em; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.3); color: #fff; backdrop-filter: blur(3px); }
.pill--gold { background: var(--gold); border-color: var(--gold); color: #3a2c10; }
.suite-body h3 { color: #fff; margin-bottom: 6px; }
.suite-tag { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--gold); }
.suite-desc { color: rgba(255,255,255,.86); font-size: 15px; max-width: 60ch; margin: 12px 0 16px; line-height: 1.65;
  max-height: 0; opacity: 0; overflow: hidden; transition: max-height .5s ease, opacity .4s ease, margin .4s ease; }
.suite-card:hover .suite-desc, .suite-card:focus-within .suite-desc { max-height: 180px; opacity: 1; }
.suite-feats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.feat { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; color: rgba(255,255,255,.9); background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18); padding: 6px 11px; border-radius: 8px; }
.feat svg { width: 15px; height: 15px; opacity: .9; }
.suite-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.suite-price { font-family: var(--serif); }
.suite-price .from { font-family: var(--sans); font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.7); display: block; }
.suite-price b { font-size: 1.9rem; font-weight: 600; }
.suite-price .unit { font-size: 14px; color: rgba(255,255,255,.75); font-family: var(--sans); }
.suite-actions { display: flex; gap: 10px; }
.suite-hint { position: absolute; top: 18px; right: 18px; z-index: 3; display: inline-flex; align-items: center; gap: 7px; height: 34px; padding: 0 13px; border-radius: 100px; background: rgba(20,14,9,.5); border: 1px solid rgba(255,255,255,.3); color: #fff; font-size: 12px; font-weight: 500; backdrop-filter: blur(4px); }
.suite-hint svg { width: 15px; height: 15px; }

/* ---------- booking ---------------------------------------------------- */
.booking-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px,6vw,80px); align-items: center; }
.booking-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: clamp(26px, 3.4vw, 40px);
}
.section--wood .booking-card { color: var(--ink); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field select {
  width: 100%; height: 54px; padding: 0 16px; font-family: var(--sans); font-size: 16px; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-s); transition: border-color .2s ease, box-shadow .2s ease;
  -webkit-appearance: none; appearance: none;
}
.field input:focus, .field select:focus { border-color: var(--terracotta); box-shadow: 0 0 0 3px rgba(194,107,62,.18); outline: none; }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B5436' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bk-ctas { display: grid; gap: 10px; }
.book-note { font-size: 13px; color: var(--muted); margin: 16px 0 0; line-height: 1.6; display: flex; gap: 8px; }
.book-note svg { width: 16px; height: 16px; flex: none; margin-top: 2px; color: var(--forest); }
.book-err { display: none; color: #9a2b1f; font-size: 13.5px; margin-top: 10px; font-weight: 500; }
.book-err.show { display: block; }
.book-side .lead { margin-bottom: 26px; }
.book-trust { display: flex; flex-direction: column; gap: 14px; margin-top: 6px; }
.book-trust li { display: flex; align-items: center; gap: 12px; list-style: none; color: rgba(244,236,221,.9); font-size: 15px; }
.book-trust svg { width: 20px; height: 20px; color: var(--gold); flex: none; }
.book-trust ul { padding: 0; margin: 0; }
.book-trust a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.book-trust a:hover { color: #fff; }

/* ---------- area / dining cards --------------------------------------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: clamp(18px, 2.2vw, 28px); }
.poi {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 320px; cursor: pointer;
  background: var(--forest-deep); box-shadow: var(--shadow-s);
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease;
}
.poi:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.poi img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.poi:hover img { transform: scale(1.08); }
.poi::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,11,7,.9), rgba(16,11,7,.15) 70%); }
.poi-body { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 24px; color: #fff; }
.poi-body h3 { color: #fff; font-size: 1.5rem; margin-bottom: 8px; }
.poi-body p { font-size: 14px; color: rgba(255,255,255,.85); margin: 0; line-height: 1.6;
  max-height: 0; opacity: 0; overflow: hidden; transition: max-height .5s ease, opacity .4s ease, margin .4s ease; }
.poi:hover p, .poi:focus-within p { max-height: 160px; opacity: 1; margin-top: 4px; }
.poi-tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }

/* ---------- gallery (masonry) ----------------------------------------- */
.masonry { column-count: 3; column-gap: 16px; }
.masonry figure { margin: 0 0 16px; break-inside: avoid; border-radius: var(--radius-s); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-s); position: relative; }
.masonry img { width: 100%; transition: transform .8s ease; }
.masonry figure:hover img { transform: scale(1.06); }
.masonry figure::after { content: ""; position: absolute; inset: 0; background: rgba(20,14,9,0); transition: background .3s ease; }
.masonry figure:hover::after { background: rgba(20,14,9,.12); }

/* ---------- contact ---------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(34px, 5vw, 70px); align-items: stretch; }
.contact-list { list-style: none; padding: 0; margin: 32px 0 0; }
.contact-list li { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: 1px solid var(--line); }
.contact-ico { width: 44px; height: 44px; flex: none; border-radius: 50%; background: var(--cream-2); display: grid; place-items: center; color: var(--wood); }
.contact-ico svg { width: 21px; height: 21px; }
.contact-list .lbl { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.contact-list .val { font-size: 17px; color: var(--ink); font-weight: 500; }
.contact-list a.val:hover { color: var(--terracotta); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.socials { display: flex; gap: 12px; margin-top: 26px; }
.social { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink-soft); transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease; }
.social:hover { background: var(--forest); color: #fff; border-color: var(--forest); transform: translateY(-3px); }
.social svg { width: 20px; height: 20px; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); min-height: 380px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: saturate(.9) contrast(.96); }

/* ---------- footer ----------------------------------------------------- */
.footer { background: var(--forest-deep); color: rgba(244,236,221,.78); padding: clamp(54px, 7vw, 84px) 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(244,236,221,.14); }
.footer h4 { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin: 0 0 18px; }
.footer-brand .brand-word { color: var(--cream); }
.footer-brand p { max-width: 34ch; margin: 18px 0 0; font-size: 15px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 15px; color: rgba(244,236,221,.78); transition: color .2s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 13px; color: rgba(244,236,221,.6); }

/* ---------- lightbox --------------------------------------------------- */
.lightbox { position: fixed; inset: 0; z-index: var(--z-lightbox); background: rgba(14,10,6,.94); display: flex; align-items: center; justify-content: center; overflow: hidden; opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lb-stage { position: relative; width: min(92vw, 1180px); max-height: 86vh; display: flex; align-items: center; justify-content: center; }
.lb-img { max-width: 100%; max-height: 86vh; object-fit: contain; border-radius: 6px; box-shadow: 0 30px 80px -30px #000; }
.lb-cap { position: absolute; left: 0; right: 0; bottom: -42px; text-align: center; color: rgba(255,255,255,.85); font-size: 14px; letter-spacing: .03em; }
.lb-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: rgba(20,14,9,.5); color: #fff; cursor: pointer; display: grid; place-items: center; transition: background .25s ease; }
.lb-btn:hover { background: rgba(255,255,255,.2); }
.lb-prev { left: 14px; } .lb-next { right: 14px; }
.lb-btn svg { width: 24px; height: 24px; }
.lb-close { position: fixed; top: 24px; right: 26px; width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.08); color: #fff; cursor: pointer; display: grid; place-items: center; }
.lb-close:hover { background: rgba(255,255,255,.2); }
.lb-count { position: fixed; top: 30px; left: 30px; color: rgba(255,255,255,.7); font-size: 13px; letter-spacing: .1em; }

/* ---------- privacy / consent ------------------------------------------ */
.linklike { background: none; border: 0; padding: 0; cursor: pointer; font-family: var(--sans); font-size: inherit; color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.linklike:hover { color: var(--terracotta); }

.btn--sm { min-height: 44px; padding: 0 22px; font-size: 14px; }

.privacy-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 70;
  max-width: 640px; margin: 0 auto;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-s);
  box-shadow: var(--shadow); padding: 16px 20px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.privacy-banner[hidden] { display: none; }
.privacy-banner p { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); flex: 1 1 300px; }
.pb-actions { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.pb-actions .linklike { font-size: 13px; color: var(--muted); white-space: nowrap; }

.privacy-modal {
  position: fixed; inset: 0; z-index: 95; background: rgba(20,14,9,.55);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.privacy-modal[hidden] { display: none; }
.pm-card {
  position: relative; background: var(--paper); border-radius: var(--radius);
  box-shadow: var(--shadow); max-width: 640px; max-height: 84vh; overflow-y: auto;
  padding: clamp(26px, 4vw, 40px);
}
.pm-card h3 { font-size: 1.7rem; margin-bottom: 16px; }
.pm-card p { font-size: 14.5px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 14px; }
.pm-close { position: absolute; top: 14px; right: 14px; width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--cream-2); color: var(--ink); cursor: pointer; display: grid; place-items: center; }
.pm-close:hover { background: var(--sand); }

.map-wrap { position: relative; }
.map-consent {
  position: absolute; inset: 0; z-index: 2; background: var(--cream-2);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 28px; gap: 6px;
}
.map-consent svg { width: 40px; height: 40px; color: var(--terracotta); margin-bottom: 6px; }
.map-consent .map-addr { font-family: var(--serif); font-size: 1.25rem; color: var(--ink); margin: 0; }
.map-consent .map-note { font-size: 13px; color: var(--muted); max-width: 44ch; margin: 0 0 14px; line-height: 1.6; }

/* ---------- gecko ------------------------------------------------------ */
.gecko { position: fixed; left: 0; bottom: 14vh; z-index: var(--z-gecko); width: 96px; pointer-events: none; will-change: transform; transform: translateX(-220px); }
.gecko.run { animation: gecko-run 3.8s cubic-bezier(.45,.05,.55,.95) .6s 1 forwards; }
@keyframes gecko-run {
  0%   { transform: translateX(-220px) translateY(0); }
  25%  { transform: translateX(26vw) translateY(-4px); }
  50%  { transform: translateX(54vw) translateY(2px); }
  75%  { transform: translateX(82vw) translateY(-4px); }
  100% { transform: translateX(115vw) translateY(0); }
}
/* Expects an animated image (GIF/WebP/APNG) of a gecko walking to the right —
   the file animates its own legs; this CSS only carries it across the screen. */
.gecko img { display: block; width: 100%; height: auto; }

/* ---------- reveal on scroll ------------------------------------------ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }

/* ---------- missing-image placeholder --------------------------------- */
.ph { background:
    repeating-linear-gradient(135deg, #b78a5a 0 22px, #ac804f 22px 44px);
  position: relative; }
.ph::after {
  content: "Macaklin"; position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.4rem; letter-spacing: .15em; color: rgba(255,255,255,.55);
}
img.broken { visibility: hidden; }

/* ---------- responsive ------------------------------------------------- */
@media (max-width: 1024px) {
  .booking-wrap, .contact-grid, .house-grid { grid-template-columns: minmax(0, 1fr); }
  .booking-wrap .book-side { order: -1; }
  .masonry { column-count: 2; }
  .house-media { max-width: 520px; }
}
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-book { display: none; }
  .burger { display: block; }
  /* logo left · socials centered · controls right */
  .brand { margin-right: auto; }
  .nav { gap: 12px; }
  .nav-socials { margin-right: auto; gap: 8px; }
  .nav-socials .social { width: 36px; height: 36px; }
  .nav-socials .social svg { width: 17px; height: 17px; }
  .suite-card.featured { grid-column: span 1; }
  .suite-grid { grid-template-columns: 1fr; }
  /* stacked card: photo on top, text below on solid panel — content can never crop */
  .suite-card, .suite-card.featured { min-height: 0; display: flex; flex-direction: column; }
  .suite-photo { position: relative; inset: auto; height: 235px; flex: none; }
  .suite-body { position: relative; inset: auto; background: var(--forest-deep); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 0 0; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(3), .stat:nth-child(4) { margin-top: 8px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .house-media .badge { left: 14px; bottom: 14px; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .lb-btn { width: 46px; height: 46px; background: rgba(20,14,9,.5); }
  /* On touch, reveal suite text by default since there's no hover */
  .suite-desc { max-height: none; opacity: 1; }
  .poi p { max-height: none; opacity: 1; margin-top: 4px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .masonry { column-count: 1; }
  .field-row { grid-template-columns: 1fr; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; }
  .brand-logo { height: 46px; }
  .suite-actions { width: 100%; }
  .suite-actions .btn { flex: 1; }
  .suite-foot > a.btn { width: 100%; }
}
@media (max-width: 480px) {
  .header { padding-left: 14px; padding-right: 14px; }
  .brand-logo { height: 40px; }
  .nav { gap: 8px; }
  .nav-socials { gap: 6px; }
  .nav-socials .social { width: 33px; height: 33px; }
  .nav-socials .social svg { width: 16px; height: 16px; }
  .lang-toggle { padding: 0 11px; gap: 5px; }
  .lang-toggle .lang-cur, .lang-toggle .chev { display: none; }  /* globe only — menu still opens */
  .burger { width: 40px; padding: 8px; }
}

/* ---------- reduced motion -------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .gecko { display: none; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .12s !important; }
  .reveal { opacity: 1; transform: none; }
  .scrolldown .line { animation: none; }
}
