@import url("fonts.css");

/* =========================================================================
   Pension Otto — Design System
   Stil: Natur & Landhaus, warm. Wald-Grün · Terrakotta · Creme.
   ========================================================================= */

:root {
  /* Colour — warm natural palette */
  --bg:        #F6F1E7;   /* warm cream — main background          */
  --bg-2:      #EFE7D6;   /* deeper sand — alternating sections    */
  --surface:   #FCFAF4;   /* card / panel surface                  */
  --surface-2: #FFFFFF;
  --ink:       #2B2922;   /* warm near-black text                  */
  --ink-soft:  #5C5547;   /* muted body text                       */
  --ink-faint: #877E6C;   /* captions / meta                       */
  --line:      #E4DAC8;   /* hairline borders                      */
  --line-soft: #EFE7D8;

  --forest:    #2F4A38;   /* primary brand green                   */
  --forest-700:#26402F;
  --forest-900:#1C3023;
  --forest-300:#5E7A63;
  --sage:      #93A48C;   /* soft sage accent                      */
  --clay:      #B5673B;   /* terracotta accent                     */
  --clay-600:  #9E552E;
  --gold:      #BD9145;   /* warm gold highlight                   */
  --cream-on:  #F4EEE0;   /* text on dark surfaces                 */

  /* Type */
  --serif: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Radius */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 30px;

  /* Shadows — warm tinted */
  --sh-sm: 0 1px 2px rgba(53,42,24,.06), 0 2px 6px rgba(53,42,24,.05);
  --sh-md: 0 6px 18px rgba(53,42,24,.09), 0 2px 6px rgba(53,42,24,.05);
  --sh-lg: 0 18px 44px rgba(40,34,20,.16), 0 6px 14px rgba(40,34,20,.08);

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --header-h: 86px;

  --ease: cubic-bezier(.4, 0, .2, 1);
}

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

body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--forest); text-decoration: none; }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

/* ------------------------------------------------------------- typography */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.12; color: var(--ink); letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 1.6rem + 3.4vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 1.4rem + 2.1vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 1.05rem + .8vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 600; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-size: .78rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--clay);
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--clay); border-radius: 2px;
  display: inline-block;
}
.eyebrow.is-centered::after {
  content: ""; width: 28px; height: 2px; background: var(--clay); border-radius: 2px;
}
.lead { font-size: clamp(1.1rem, 1rem + .4vw, 1.3rem); color: var(--ink-soft); line-height: 1.6; }

/* --------------------------------------------------------------- layout */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 820px; }
.section { padding-block: clamp(3.6rem, 2rem + 6vw, 7rem); }
.section--tight { padding-block: clamp(2.6rem, 1.6rem + 4vw, 4.5rem); }
.bg-alt { background: var(--bg-2); }
.bg-forest { background: var(--forest); color: var(--cream-on); }
.bg-forest h2, .bg-forest h3 { color: #fff; }
.bg-forest p { color: rgba(244,238,224,.82); }

.section-head { max-width: 660px; margin-bottom: clamp(2rem, 1.2rem + 2vw, 3.2rem); }
.section-head.is-centered { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: .7rem; }
.section-head p { margin-top: .9rem; }

.grid { display: grid; gap: clamp(1.1rem, .6rem + 1.6vw, 2rem); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 1rem + 3vw, 4rem); align-items: center; }
.split__media { position: relative; }
.split--media-first .split__media { order: -1; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split__media { order: -1; } }

/* --------------------------------------------------------------- buttons */
.btn {
  --bgc: var(--forest); --fg: #fff; --bd: var(--forest);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .82rem 1.5rem; border-radius: 100px;
  font-family: var(--sans); font-size: .96rem; font-weight: 600; letter-spacing: .005em;
  background: var(--bgc); color: var(--fg); border: 1.5px solid var(--bd);
  box-shadow: var(--sh-sm);
  transition: background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  cursor: pointer; text-align: center;
}
.btn:hover { --bgc: var(--forest-700); --bd: var(--forest-700); box-shadow: var(--sh-md); }
.btn:active { transform: translateY(1px); }
.btn--accent { --bgc: var(--clay); --bd: var(--clay); }
.btn--accent:hover { --bgc: var(--clay-600); --bd: var(--clay-600); }
.btn--ghost { --bgc: transparent; --fg: var(--forest); --bd: var(--forest); box-shadow: none; }
.btn--ghost:hover { --bgc: var(--forest); --fg: #fff; }
.btn--light { --bgc: #fff; --fg: var(--forest); --bd: #fff; }
.btn--light:hover { --bgc: var(--cream-on); --bd: var(--cream-on); }
.btn--on-dark.btn--ghost { --fg: #fff; --bd: rgba(255,255,255,.6); }
.btn--on-dark.btn--ghost:hover { --bgc: #fff; --fg: var(--forest); --bd: #fff; }
.btn .ico { width: 18px; height: 18px; }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

.link-arrow { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; color: var(--forest); }
.link-arrow .ico { width: 17px; height: 17px; transition: transform .2s var(--ease); }
.link-arrow:hover .ico { transform: translateX(4px); }
.link-arrow:hover { color: var(--clay); }

/* ---------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,241,231,.92);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.is-transparent {
  background: transparent; border-bottom-color: transparent;
}
.site-header.is-transparent .nav-link,
.site-header.is-transparent .lang-switch a,
.site-header.is-transparent .nav-toggle span { color: #fff; }
.site-header.is-transparent .nav-link { color: rgba(255,255,255,.92); }
.site-header.is-transparent .brand__name { color: #fff; }
.site-header.is-transparent .brand__place { color: rgba(255,255,255,.78); }
.site-header.is-transparent .nav-toggle-bar { background: #fff; }
.site-header.scrolled { box-shadow: var(--sh-sm); }

.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand__logo { height: 64px; width: auto; display: block; }
.brand__logo--light { display: none; }
.site-header.is-transparent .brand__logo--dark { display: none; }
.site-header.is-transparent .brand__logo--light { display: block; }
@media (max-width: 600px) { :root { --header-h: 68px; } .brand__logo { height: 46px; } }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--ink); }
.brand__place { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); }

.nav-menu { display: flex; align-items: center; gap: .3rem; }
.nav-link {
  position: relative; padding: .5rem .8rem; border-radius: 8px;
  font-size: .94rem; font-weight: 500; color: var(--ink-soft);
  transition: color .18s var(--ease), background .18s var(--ease);
}
.nav-link::after {
  content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .28rem; height: 2px;
  background: var(--clay); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .22s var(--ease);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after,
.nav-link[aria-current="page"]::after { transform: scaleX(1); }
.nav-link[aria-current="page"] { color: var(--forest); font-weight: 600; }

.nav-right { display: flex; align-items: center; gap: .7rem; }
.lang-switch { display: flex; align-items: center; gap: .15rem; font-size: .82rem; font-weight: 600; }
.lang-switch a { padding: .25rem .42rem; border-radius: 6px; color: var(--ink-faint); letter-spacing: .04em; }
.lang-switch a[aria-current="true"] { color: var(--forest); background: rgba(47,74,56,.08); }
.site-header.is-transparent .lang-switch a[aria-current="true"] { color: #fff; background: rgba(255,255,255,.18); }
.lang-switch .sep { color: var(--line); }

.nav-toggle { display: none; }

@media (max-width: 940px) {
  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 0 10px; border: 0; background: transparent; border-radius: 10px;
  }
  .nav-toggle-bar { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px;
    transition: transform .25s var(--ease), opacity .2s var(--ease); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-menu {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: .1rem;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: .8rem var(--gutter) 1.4rem; box-shadow: var(--sh-lg);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .26s var(--ease), opacity .2s var(--ease);
  }
  .nav-menu.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-link { padding: .85rem .4rem; font-size: 1.05rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; color: var(--ink); }
  .nav-link::after { display: none; }
  .site-header.is-transparent .nav-link { color: var(--ink); }
  .nav-menu .btn { margin-top: .9rem; }
}

/* ------------------------------------------------------------------ hero */
.hero { position: relative; isolation: isolate; overflow: hidden;
  min-height: clamp(560px, 86vh, 800px); display: grid; align-items: center;
  margin-top: calc(-1 * var(--header-h)); color: #fff; }
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,30,22,.46) 0%, rgba(20,30,22,.18) 38%, rgba(22,36,26,.62) 100%),
    radial-gradient(120% 90% at 75% 20%, rgba(20,32,22,0) 40%, rgba(18,28,20,.5) 100%);
}
.hero__inner { position: relative; z-index: 1; padding-block: clamp(5rem, 13vh, 7.5rem) 6.5rem; max-width: 720px; }
.hero .eyebrow { color: #fff; }
.hero .eyebrow::before, .hero .eyebrow.is-centered::after { background: var(--gold); }
.hero h1 { color: #fff; margin-top: 1rem; text-shadow: 0 2px 24px rgba(0,0,0,.28); }
.hero__sub { margin-top: 1.3rem; font-size: clamp(1.08rem, 1rem + .5vw, 1.4rem); color: rgba(255,255,255,.92); max-width: 36ch; line-height: 1.55; }
.hero .btn-row { margin-top: 2rem; }
.hero__scroll { position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); z-index: 1;
  display: inline-flex; flex-direction: column; align-items: center; gap: .4rem;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.75); }
.hero__scroll .ico { width: 20px; height: 20px; animation: bob 2.4s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

.hero__badges { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 2.4rem;
  padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.22); }
.hero__badge { display: flex; flex-direction: column; }
.hero__badge b { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: #fff; }
.hero__badge span { font-size: .82rem; color: rgba(255,255,255,.78); }
/* flat / short windows: tighten hero and hide the scroll hint so nothing overlaps */
@media (max-height: 760px) {
  .hero { min-height: 100svh; }
  .hero__inner { padding-block: calc(var(--header-h) + 1.5rem) 2rem; }
  .hero__scroll { display: none; }
  .hero__badges { margin-top: 1.6rem; padding-top: 1.1rem; }
}
/* Phones: hide the scroll hint (no room next to the stats, touch users scroll anyway) */
@media (max-width: 700px) {
  .hero__scroll { display: none; }
  .hero__inner { padding-bottom: 2.5rem; }
}

/* ------------------------------------------------------------- page band */
.page-band { position: relative; padding-block: clamp(2.4rem, 1.8rem + 4vw, 4rem); background: var(--forest); color: #fff; overflow: hidden; }
.page-band::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background:
    radial-gradient(60% 120% at 90% -10%, rgba(189,145,69,.35), transparent 60%),
    radial-gradient(50% 120% at 0% 120%, rgba(94,122,99,.5), transparent 60%);
}
.page-band__inner { position: relative; }
.page-band .crumbs { font-size: .82rem; color: rgba(244,238,224,.7); margin-bottom: .7rem; }
.page-band .crumbs a { color: rgba(244,238,224,.9); }
.page-band .crumbs a:hover { color: #fff; text-decoration: underline; }
.page-band h1 { color: #fff; }
.page-band p { color: rgba(244,238,224,.85); margin-top: .7rem; max-width: 60ch; }

/* ---------------------------------------------------------------- cards */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm); overflow: hidden; transition: box-shadow .25s var(--ease), transform .25s var(--ease); }
.card--pad { padding: clamp(1.4rem, 1rem + 1vw, 2rem); }
.card:hover { box-shadow: var(--sh-md); }

.feature { display: flex; flex-direction: column; gap: .8rem; padding: clamp(1.4rem, 1rem + 1vw, 1.9rem);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.feature:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: #DBCFB6; }
.feature__icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(47,74,56,.08); color: var(--forest); }
.feature__icon .ico { width: 26px; height: 26px; }
.feature h3 { font-size: 1.22rem; }
.feature p { font-size: .96rem; }

/* amenity chips */
.amenities { display: flex; flex-wrap: wrap; gap: .6rem .7rem; }
.amenity { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem .9rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: 100px; font-size: .9rem; color: var(--ink-soft); }
.amenity .ico { width: 17px; height: 17px; color: var(--forest-300); }

/* media figure */
.figure { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); position: relative; }
.figure img { width: 100%; height: 100%; object-fit: cover; }
.figure--tall { aspect-ratio: 4 / 5; }
.figure--wide { aspect-ratio: 16 / 11; }
.figure__tag { position: absolute; left: 1rem; bottom: 1rem; background: rgba(252,250,244,.94);
  color: var(--forest); font-size: .8rem; font-weight: 600; padding: .4rem .8rem; border-radius: 100px; box-shadow: var(--sh-sm); }

.media-frame { position: relative; }
.media-frame::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.4); border-radius: var(--r-lg);
  pointer-events: none; mix-blend-mode: overlay; }
.media-stamp { position: absolute; z-index: 2; display: grid; place-items: center; width: 116px; height: 116px;
  border-radius: 50%; background: var(--clay); color: #fff; text-align: center; box-shadow: var(--sh-lg);
  font-family: var(--serif); line-height: 1.1; right: -18px; bottom: -22px; padding: 1rem; }
.media-stamp b { font-size: 1.7rem; font-weight: 600; display: block; }
.media-stamp span { font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; font-family: var(--sans); color: rgba(255,255,255,.85); }
@media (max-width: 520px) { .media-stamp { width: 92px; height: 92px; right: 6px; bottom: -14px; } .media-stamp b { font-size: 1.3rem; } }

/* --------------------------------------------------------------- gallery */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(.6rem, .3rem + 1vw, 1rem); }
.gallery__item { position: relative; grid-column: span 4; aspect-ratio: 4/3; border-radius: var(--r); overflow: hidden;
  box-shadow: var(--sh-sm); cursor: pointer; background: var(--bg-2); border: 0; padding: 0; }
.gallery__item:nth-child(1) { grid-column: span 8; aspect-ratio: 16/10; }
.gallery__item:nth-child(6) { grid-column: span 8; aspect-ratio: 16/10; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20,30,22,.5)); opacity: 0; transition: opacity .25s var(--ease); }
.gallery__item:hover::after { opacity: 1; }
.gallery__cap { position: absolute; left: .9rem; bottom: .8rem; right: .9rem; z-index: 1; color: #fff;
  font-size: .9rem; font-weight: 600; opacity: 0; transform: translateY(6px); transition: opacity .25s var(--ease), transform .25s var(--ease); text-align: left; }
.gallery__item:hover .gallery__cap { opacity: 1; transform: none; }
.gallery__zoom { position: absolute; top: .7rem; right: .7rem; z-index: 1; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(252,250,244,.92); color: var(--forest); display: grid; place-items: center; opacity: 0; transition: opacity .25s var(--ease); }
.gallery__item:hover .gallery__zoom { opacity: 1; }
@media (max-width: 760px) {
  .gallery__item, .gallery__item:nth-child(1), .gallery__item:nth-child(6) { grid-column: span 6; aspect-ratio: 4/3; }
  .gallery__cap { opacity: 1; transform: none; }
}

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 90; display: none; place-items: center;
  background: rgba(18,24,18,.86); backdrop-filter: blur(4px); padding: clamp(1rem, 4vw, 3rem); }
.lightbox.open { display: grid; }
.lightbox__img { max-width: min(1100px, 94vw); max-height: 82vh; border-radius: var(--r); box-shadow: var(--sh-lg);
  object-fit: contain; background: #000; }
.lightbox__cap { position: absolute; bottom: clamp(.8rem,3vw,2rem); left: 0; right: 0; text-align: center;
  color: rgba(255,255,255,.9); font-size: .95rem; }
.lb-btn { position: absolute; width: 52px; height: 52px; border-radius: 50%; border: 0;
  background: rgba(252,250,244,.14); color: #fff; display: grid; place-items: center; transition: background .2s var(--ease); }
.lb-btn:hover { background: rgba(252,250,244,.28); }
.lb-btn .ico { width: 26px; height: 26px; }
.lb-close { top: clamp(.8rem,3vw,1.6rem); right: clamp(.8rem,3vw,1.6rem); }
.lb-prev { left: clamp(.5rem,2vw,1.6rem); top: 50%; transform: translateY(-50%); }
.lb-next { right: clamp(.5rem,2vw,1.6rem); top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) { .lb-prev { left: .4rem; } .lb-next { right: .4rem; } .lb-btn { width: 44px; height: 44px; } }

/* ----------------------------------------------------------- price table */
.price-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-md); overflow: hidden; }
.price-card__head { background: var(--forest); color: #fff; padding: 1.3rem 1.6rem; display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.price-card__head h3 { color: #fff; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td { text-align: left; padding: 1rem 1.6rem; border-bottom: 1px solid var(--line-soft); }
.price-table th { font-family: var(--sans); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }
.price-table td:last-child { text-align: right; font-weight: 600; color: var(--forest); white-space: nowrap; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table .room { color: var(--ink); font-weight: 600; }
.price-note { font-size: .86rem; color: var(--ink-faint); margin-top: 1rem; }

/* ----------------------------------------------------------------- forms */
.form { display: grid; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: .9rem; font-weight: 600; color: var(--ink); }
.field .req { color: var(--clay); }
.field input, .field textarea, .field select {
  font: inherit; font-size: 1rem; color: var(--ink); background: var(--surface-2);
  border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: .8rem .95rem;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--forest-300); box-shadow: 0 0 0 3px rgba(47,74,56,.14);
}
.field input:user-invalid, .field textarea:user-invalid { border-color: #C0492F; }
.field .hint { font-size: .82rem; color: var(--ink-faint); }
.field--error input, .field--error textarea { border-color: #C0492F; }
.field__err { font-size: .82rem; color: #B23A22; display: none; }
.field--error .field__err { display: block; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.captcha { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; }
.captcha__q { font-weight: 600; color: var(--ink); background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-sm); padding: .55rem .9rem; font-variant-numeric: tabular-nums; }
.captcha input { max-width: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; color: var(--ink-soft); }
.consent input { margin-top: .25rem; width: 18px; height: 18px; accent-color: var(--forest); flex: none; }
.form-status { padding: 1rem 1.2rem; border-radius: var(--r-sm); font-size: .95rem; display: none; }
.form-status.show { display: block; }
.form-status--ok { background: rgba(47,74,56,.1); color: var(--forest-700); border: 1px solid rgba(47,74,56,.25); }
.form-status--err { background: rgba(192,73,47,.1); color: #9E552E; border: 1px solid rgba(192,73,47,.3); }

/* contact info list */
.info-list { display: grid; gap: 1.1rem; }
.info-item { display: flex; gap: .9rem; align-items: flex-start; }
.info-item__icon { flex: none; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(47,74,56,.08); color: var(--forest); }
.info-item__icon .ico { width: 20px; height: 20px; }
.info-item h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; margin-bottom: .15rem; }
.info-item a { color: var(--ink); font-weight: 500; }
.info-item a:hover { color: var(--clay); }

/* prose (legal pages) */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); margin-top: 2.4rem; }
.prose h3 { margin-top: 1.8rem; margin-bottom: .3rem; }
.prose p { margin-top: .9rem; }
.prose ul { margin-top: .8rem; display: grid; gap: .4rem; }
.prose ul li { position: relative; padding-left: 1.4rem; color: var(--ink-soft); }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .65em; width: 7px; height: 7px; border-radius: 50%; background: var(--sage); }
.prose a { color: var(--forest); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--clay); }
.prose strong { color: var(--ink); }
.prose .muted { color: var(--ink-faint); font-size: .9rem; }

/* point-of-interest list */
.poi-list { display: grid; gap: .5rem; margin-top: .9rem; }
.poi-list li { position: relative; padding-left: 1.3rem; color: var(--ink-soft); }
.poi-list li::before { content: ""; position: absolute; left: 0; top: .62em; width: 6px; height: 6px; border-radius: 50%; background: var(--sage); }

/* checklist */
.checklist { display: grid; gap: .7rem; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; color: var(--ink-soft); }
.checklist .ico { flex: none; width: 22px; height: 22px; color: var(--forest); margin-top: .15rem; }

/* CTA band */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: clamp(2.4rem, 1.6rem + 4vw, 4.4rem);
  background: var(--forest); color: #fff; text-align: center; box-shadow: var(--sh-lg); }
.cta-band::before { content: ""; position: absolute; inset: 0; opacity: .55;
  background: radial-gradient(70% 130% at 85% -20%, rgba(189,145,69,.4), transparent 55%),
              radial-gradient(60% 120% at 5% 120%, rgba(94,122,99,.55), transparent 55%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(244,238,224,.85); max-width: 52ch; margin: 1rem auto 0; }
.cta-band .btn-row { justify-content: center; margin-top: 2rem; }

/* ---------------------------------------------------------------- footer */
.site-footer { background: var(--forest-900); color: rgba(244,238,224,.72); padding-block: clamp(3rem, 2rem + 3vw, 4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(1.6rem, 1rem + 3vw, 3.5rem); }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand__name { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: #fff; }
.footer-brand__logo { height: 78px; width: auto; display: block; }
.footer-brand p { color: rgba(244,238,224,.6); margin-top: .8rem; max-width: 34ch; font-size: .95rem; }
.footer-col h4 { font-family: var(--sans); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: .55rem; }
.footer-col a, .footer-col address { color: rgba(244,238,224,.72); font-style: normal; font-size: .95rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: clamp(2rem, 1.4rem + 2vw, 3rem); padding-top: 1.4rem; border-top: 1px solid rgba(244,238,224,.14);
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; align-items: center; justify-content: space-between; font-size: .85rem; color: rgba(244,238,224,.55); }
.footer-bottom a { color: rgba(244,238,224,.7); }
.footer-bottom a:hover { color: #fff; }
.footer-bottom nav { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* ------------------------------------------------------------ cookie bar */
.cookie { position: fixed; left: clamp(.8rem,3vw,1.5rem); right: clamp(.8rem,3vw,1.5rem); bottom: clamp(.8rem,3vw,1.5rem);
  z-index: 80; max-width: 460px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-lg); padding: 1.3rem 1.4rem; display: none; }
.cookie.show { display: block; animation: cookie-in .35s var(--ease); }
@keyframes cookie-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.cookie h4 { font-family: var(--serif); font-size: 1.2rem; margin-bottom: .4rem; }
.cookie p { font-size: .9rem; color: var(--ink-soft); }
.cookie p a { color: var(--forest); text-decoration: underline; }
.cookie__actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.cookie__actions .btn { padding: .6rem 1.1rem; font-size: .88rem; }

/* ---------------------------------------------------------------- misc */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.skip-link { position: absolute; left: .8rem; top: -60px; z-index: 100; background: var(--forest); color: #fff;
  padding: .7rem 1.1rem; border-radius: 8px; transition: top .2s var(--ease); }
.skip-link:focus { top: .8rem; }
.divider { height: 1px; background: var(--line); border: 0; }
.stack > * + * { margin-top: 1.1rem; }
.mt-1 { margin-top: .6rem; } .mt-2 { margin-top: 1.2rem; } .mt-3 { margin-top: 2rem; }
.text-center { text-align: center; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
