/* =========================================================
   SEEHALT — Boutique-Hotel am See (Demo) · loew.me
   Shared stylesheet · warm, editorial, gastfreundlich
   ========================================================= */

:root {
  /* base — warmes Creme / Stein */
  --cream:   #f4eee2;
  --paper:   #faf6ee;
  --sand:    #ece2d0;
  --ink:     #26251f;   /* warm near-black */
  --ink-soft:#4c4a40;
  --muted:   #837c6d;
  --line:    #ddd2bd;

  /* accents — Oliv/Waldgrün, Terrakotta, Messing */
  --forest:  #2f3a2c;
  --olive:   #55603f;
  --terra:   #b26144;
  --brass:   #b28a4c;

  --maxw: 1220px;
  --radius: 6px;
  --radius-lg: 14px;
  --ease: cubic-bezier(.22,.68,.16,1);
  --shadow: 0 30px 70px -34px rgba(38,37,31,.5);
  --shadow-soft: 0 18px 44px -28px rgba(38,37,31,.4);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.005em;
  margin: 0 0 .5em;
}

p { margin: 0 0 1.15em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--terra); color: var(--paper); }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Jost", sans-serif;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--terra);
}
.eyebrow--light { color: var(--brass); }
.eyebrow--light::before { background: var(--brass); }

.section { padding: clamp(70px, 10vw, 148px) 0; }
.section--tight { padding: clamp(52px, 7vw, 96px) 0; }
.section--paper { background: var(--paper); }
.section--forest { background: var(--forest); color: var(--paper); }
.section--forest h1,
.section--forest h2,
.section--forest h3 { color: var(--paper); }

.lead {
  font-size: clamp(1.12rem, 1.9vw, 1.4rem);
  line-height: 1.68;
  color: var(--ink-soft);
  max-width: 44ch;
  font-weight: 300;
}

.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  --b: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  border-radius: 100px;
  border: 1px solid var(--b);
  background: var(--b);
  color: var(--paper);
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
}
.btn .arrow { transition: transform .35s var(--ease); font-size: 1rem; }
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.btn:hover .arrow { transform: translateX(5px); }

.btn--accent { --b: var(--terra); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--ondark { --b: var(--brass); color: var(--forest); border-color: var(--brass); }
.btn--ondark.btn--ghost { background: transparent; color: var(--paper); border-color: rgba(255,255,255,.35); }
.btn--ondark.btn--ghost:hover { background: var(--paper); color: var(--forest); border-color: var(--paper); }

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 4px;
}

/* underline-draw text link */
.ulink {
  position: relative;
  font-weight: 500;
  letter-spacing: .04em;
  padding-bottom: 3px;
}
.ulink::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.ulink:hover::after { transform: scaleX(1); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 26px 0;
  transition: background .45s var(--ease), box-shadow .45s var(--ease), padding .45s var(--ease);
}
.site-header.scrolled {
  background: rgba(244,238,226,.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
  padding: 14px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.brand .mark {
  font-size: .62rem;
  letter-spacing: .3em;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  color: var(--terra);
  text-transform: uppercase;
}
/* dark header variant (over image page-heroes not used; header stays translucent) */

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  padding: 9px 16px;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  transition: color .3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute; left: 16px; right: 16px; bottom: 4px;
  height: 1px; background: var(--terra);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after,
.nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--ink); }
.nav .btn { margin-left: 12px; padding: 12px 24px; }
.nav .btn::after { display: none; }

.hamburger {
  display: none;
  width: 48px; height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.hamburger span,
.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 18px; height: 1.5px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform .35s var(--ease), opacity .2s var(--ease);
}
.hamburger span::before { transform: translate(-50%, -6px); }
.hamburger span::after  { transform: translate(-50%, 6px); }
.hamburger.open span { background: transparent; }
.hamburger.open span::before { transform: translate(-50%, -50%) rotate(45deg); }
.hamburger.open span::after  { transform: translate(-50%, -50%) rotate(-45deg); }

/* =========================================================
   HERO (home)
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 clamp(48px, 7vw, 92px);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(28,30,24,.78) 0%, rgba(28,30,24,.28) 42%, rgba(28,30,24,.12) 100%);
}
.hero-inner { position: relative; z-index: 2; color: var(--paper); width: 100%; }
.hero .eyebrow { color: var(--brass); }
.hero .eyebrow::before { background: var(--brass); }
.hero h1 {
  color: var(--paper);
  font-size: clamp(3rem, 9.5vw, 8.4rem);
  font-weight: 300;
  line-height: .98;
  max-width: 15ch;
}
.hero h1 em { font-style: italic; color: var(--brass); font-weight: 400; }
.hero-tagline {
  font-family: "Jost", sans-serif;
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  font-weight: 300;
  color: rgba(250,246,238,.9);
  max-width: 46ch;
  margin: 24px 0 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-actions .btn--ghost { color: var(--paper); border-color: rgba(255,255,255,.4); }
.hero-actions .btn--ghost:hover { background: var(--paper); color: var(--forest); border-color: var(--paper); }

.scroll-cue {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(250,246,238,.7);
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-cue span {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, rgba(250,246,238,.7), transparent);
  animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue { 0%{transform:scaleY(.3);transform-origin:top;opacity:.4} 50%{transform:scaleY(1);opacity:1} 100%{transform:scaleY(.3);transform-origin:bottom;opacity:.4} }

/* =========================================================
   INTRO / WELCOME
   ========================================================= */
.intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
}
.intro__aside .eyebrow { margin-bottom: 26px; }
.intro__aside .signature {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--terra);
  margin-top: 30px;
}
.intro__aside .signature small {
  display: block;
  font-family: "Jost", sans-serif;
  font-style: normal;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
.intro h2 { font-size: clamp(2rem, 4.4vw, 3.6rem); font-weight: 300; }
.intro h2 em { font-style: italic; color: var(--olive); }
.intro p { color: var(--ink-soft); font-weight: 300; }
.intro p:first-of-type::first-letter {
  font-family: "Fraunces", serif;
  font-size: 3.4em;
  line-height: .8;
  float: left;
  margin: 8px 14px 0 0;
  color: var(--terra);
  font-weight: 400;
}

/* =========================================================
   SECTION HEADINGS
   ========================================================= */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(2rem, 5vw, 3.9rem); font-weight: 300; max-width: 17ch; }
.section-head h2 em { font-style: italic; color: var(--olive); }
.section-head p { max-width: 36ch; margin: 0; color: var(--ink-soft); font-weight: 300; }
.section-head--center { flex-direction: column; align-items: center; text-align: center; }
.section-head--center h2 { max-width: 20ch; }
.section-head--center .eyebrow { justify-content: center; }

.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* =========================================================
   ROOM / FEATURE CARDS
   ========================================================= */
.rooms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.room {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.room:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.room__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.room__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.room:hover .room__media img { transform: scale(1.06); }
.room__price {
  position: absolute; top: 16px; right: 16px;
  background: rgba(244,238,226,.94);
  color: var(--forest);
  padding: 7px 15px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .04em;
}
.room__body { padding: 30px 30px 34px; display: flex; flex-direction: column; flex: 1; }
.room__body h3 { font-size: 1.7rem; font-weight: 400; margin-bottom: 6px; }
.room__meta {
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 16px;
}
.room__body p { color: var(--ink-soft); font-weight: 300; font-size: .98rem; margin-bottom: 20px; }
.room__foot {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; border-top: 1px solid var(--line);
  font-size: .92rem;
}
.room__foot .from { color: var(--muted); }
.room__foot .from b { color: var(--ink); font-weight: 500; }

/* amenity list */
.amenities { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.amenities li {
  font-size: .78rem; letter-spacing: .04em;
  padding: 5px 13px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink-soft);
  background: var(--cream);
}

/* =========================================================
   FEATURE SPLIT
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}
.split__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split--rev .split__media { order: 2; }
.split h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); font-weight: 300; }
.split h2 em { font-style: italic; color: var(--olive); }
.split p { color: var(--ink-soft); font-weight: 300; }
.section--forest .split p { color: rgba(250,246,238,.78); }
.section--forest .intro p { color: rgba(250,246,238,.78); }

/* floating caption badge on media */
.media-badge {
  position: absolute;
  left: 24px; bottom: 24px;
  background: rgba(244,238,226,.94);
  color: var(--forest);
  padding: 14px 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  max-width: 60%;
}
.media-badge b { display: block; font-family: "Fraunces", serif; font-size: 1.15rem; }
.media-badge span { font-size: .82rem; color: var(--muted); }

/* elegant feature list with thin dividers */
.feature-list { list-style: none; padding: 0; margin: 26px 0 0; }
.feature-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.section--forest .feature-list li { border-color: rgba(255,255,255,.14); }
.feature-list li:last-child { border-bottom: 1px solid var(--line); }
.section--forest .feature-list li:last-child { border-bottom-color: rgba(255,255,255,.14); }
.feature-list .n {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--terra);
  min-width: 34px;
}
.feature-list h4 { font-family: "Jost", sans-serif; font-size: 1.02rem; font-weight: 500; margin: 0 0 3px; letter-spacing: .02em; }
.feature-list p { margin: 0; font-size: .95rem; color: var(--ink-soft); font-weight: 300; }
.section--forest .feature-list p { color: rgba(250,246,238,.72); }
.section--forest .feature-list h4 { color: var(--paper); }

/* =========================================================
   STATS
   ========================================================= */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(48px, 6vw, 84px) 0;
}
.stats .grid-4 { gap: 24px; }
.stat { text-align: center; }
.stat__num {
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 300;
  line-height: 1;
  color: var(--forest);
  letter-spacing: -0.01em;
}
.stat__num .suffix { color: var(--terra); }
.stat__label {
  color: var(--muted);
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: 14px;
}
.section--forest .stat__num { color: var(--paper); }
.section--forest .stat__num .suffix { color: var(--brass); }
.section--forest .stat__label { color: rgba(250,246,238,.6); }
.section--forest .stats { border-color: rgba(255,255,255,.14); }

/* =========================================================
   IMAGE BAND / QUOTE
   ========================================================= */
.band {
  position: relative;
  min-height: 62vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}
.band__bg { position: absolute; inset: 0; z-index: 0; }
.band__bg img { width: 100%; height: 100%; object-fit: cover; }
.band__bg::after { content: ""; position: absolute; inset: 0; background: rgba(28,30,24,.6); }
.band__inner { position: relative; z-index: 2; color: var(--paper); padding: 60px 30px; max-width: 900px; }
.band__inner blockquote {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 1.24;
  margin: 0;
}
.band__inner cite {
  display: block;
  font-family: "Jost", sans-serif;
  font-style: normal;
  font-size: .8rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 28px;
}

/* =========================================================
   CTA
   ========================================================= */
.cta {
  background: var(--forest);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 8vw, 100px) clamp(30px, 6vw, 90px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 50% -10%, rgba(178,138,76,.22), transparent 60%);
}
.cta > * { position: relative; z-index: 1; }
.cta h2 { color: var(--paper); font-size: clamp(2.2rem, 6vw, 4.2rem); font-weight: 300; }
.cta h2 em { font-style: italic; color: var(--brass); }
.cta p { color: rgba(250,246,238,.82); max-width: 50ch; margin: 0 auto 34px; font-weight: 300; }
.cta .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   PAGE HERO (subpages)
   ========================================================= */
.page-hero {
  padding: clamp(150px, 20vw, 240px) 0 clamp(40px, 6vw, 72px);
  position: relative;
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { justify-content: flex-start; }
.page-hero h1 { font-size: clamp(2.6rem, 8vw, 5.8rem); font-weight: 300; }
.page-hero h1 em { font-style: italic; color: var(--terra); }
.page-hero .lead { max-width: 54ch; }
.breadcrumb {
  font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 24px;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--terra); }

/* =========================================================
   ROOM DETAIL ROWS (zimmer page)
   ========================================================= */
.detail-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  padding: clamp(46px, 6vw, 80px) 0;
  border-top: 1px solid var(--line);
}
.detail-row:first-of-type { border-top: none; }
.detail-row--rev .detail-row__text { order: 2; }
.detail-row__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.detail-row__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.detail-row__media:hover img { transform: scale(1.05); }
.detail-row h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 300; }
.detail-row h2 em { font-style: italic; color: var(--olive); }
.detail-row .price-line {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  color: var(--terra);
  margin: 6px 0 20px;
}
.detail-row .price-line small { font-family: "Jost", sans-serif; font-size: .8rem; color: var(--muted); letter-spacing: .1em; }
.detail-row p { color: var(--ink-soft); font-weight: 300; }

/* =========================================================
   MENU (restaurant)
   ========================================================= */
.menu-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 80px); }
.menu-block h3 {
  font-size: 1.05rem; font-family: "Jost", sans-serif; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: var(--terra);
  padding-bottom: 14px; margin-bottom: 8px; border-bottom: 1px solid var(--line);
}
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 18px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.menu-item__name { font-family: "Fraunces", serif; font-size: 1.25rem; font-weight: 400; }
.menu-item__price { font-family: "Fraunces", serif; color: var(--olive); white-space: nowrap; }
.menu-item__desc { grid-column: 1 / -1; color: var(--muted); font-size: .92rem; font-weight: 300; }

/* =========================================================
   EXPERIENCE CARDS
   ========================================================= */
.exp-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px 38px;
  height: 100%;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.exp-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: transparent; }
.exp-card .idx {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--terra);
  display: block;
  margin-bottom: 20px;
}
.exp-card h3 { font-size: 1.5rem; font-weight: 400; margin-bottom: 10px; }
.exp-card p { color: var(--ink-soft); font-weight: 300; font-size: .97rem; margin: 0; }

/* horizontal season strip */
.season {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.season:last-child { border-bottom: 1px solid var(--line); }
.season__name { font-family: "Fraunces", serif; font-size: 1.6rem; font-weight: 400; }
.season__tag { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--terra); }
.season p { margin: 0; color: var(--ink-soft); font-weight: 300; max-width: 60ch; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(34px, 5vw, 60px); }
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 46px);
  box-shadow: var(--shadow-soft);
}
.form { display: grid; gap: 20px; }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label {
  font-size: .74rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--terra); background: var(--paper); outline: none; }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .82rem; color: var(--muted); margin: 0; }
.form-status { font-family: "Fraunces", serif; font-style: italic; font-size: 1.15rem; margin: 0; min-height: 1.2em; }

.info-block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 22px;
}
.info-block h3 { font-size: 1.35rem; font-weight: 400; }
.info-row { display: flex; gap: 14px; padding: 9px 0; color: var(--ink-soft); font-weight: 300; }
.info-row strong { color: var(--ink); min-width: 82px; display: inline-block; font-weight: 500; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; padding-top: 3px; }

.map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 260px;
  position: relative;
  background:
    linear-gradient(135deg, rgba(85,96,63,.12), rgba(178,97,68,.12)),
    repeating-linear-gradient(0deg, var(--line) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 46px),
    var(--cream);
  border: 1px solid var(--line);
  display: grid; place-items: center;
}
.map__pin {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--forest); color: var(--paper);
  padding: 12px 22px; border-radius: 100px;
  font-family: "Jost", sans-serif; font-weight: 500;
  font-size: .82rem; letter-spacing: .08em;
  box-shadow: var(--shadow-soft);
}
.map__pin::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--terra); }

/* arrival steps */
.arrival { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.arrival__item { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); }
.arrival__item .idx { font-family: "Fraunces", serif; font-style: italic; color: var(--terra); font-size: 1.3rem; }
.arrival__item h4 { font-family: "Jost", sans-serif; font-weight: 500; font-size: 1.05rem; margin: 12px 0 6px; letter-spacing: .02em; }
.arrival__item p { color: var(--ink-soft); font-weight: 300; font-size: .94rem; margin: 0; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--forest);
  color: var(--paper);
  padding: clamp(64px, 8vw, 104px) 0 34px;
  margin-top: clamp(0px, 2vw, 20px);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 34px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand .brand { color: var(--paper); font-size: 1.7rem; }
.footer-brand .brand .mark { color: var(--brass); }
.footer-brand p { color: rgba(250,246,238,.6); max-width: 34ch; margin-top: 18px; font-weight: 300; }
.footer-col h4 {
  font-family: "Jost", sans-serif; font-weight: 500;
  font-size: .74rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--brass); margin-bottom: 18px;
}
.footer-col a, .footer-col p { display: block; color: rgba(250,246,238,.8); padding: 5px 0; margin: 0; font-weight: 300; }
.footer-col a { transition: color .3s var(--ease); }
.footer-col a:hover { color: var(--brass); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 26px;
  font-size: .8rem;
  letter-spacing: .04em;
  color: rgba(250,246,238,.5);
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .rooms { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .menu-cols { grid-template-columns: 1fr; }
  .arrival { grid-template-columns: 1fr; }
}

@media (max-width: 840px) {
  .hamburger { display: block; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(84vw, 360px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 2px;
    background: var(--paper);
    padding: 108px 30px 44px;
    transform: translateX(105%);
    transition: transform .5s var(--ease);
    box-shadow: -24px 0 70px -24px rgba(38,37,31,.45);
    z-index: 90;
  }
  .nav.open { transform: translateX(0); }
  .nav a { padding: 16px 8px; font-size: .95rem; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .nav a.active { color: var(--terra); }
  .nav .btn { margin: 22px 0 0; justify-content: center; }
  .intro, .split, .detail-row { grid-template-columns: 1fr; }
  .split--rev .split__media,
  .detail-row--rev .detail-row__text { order: 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .season { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding: 0 22px; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form .row2 { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
