/* ============================================================
   Sun Creek Lodge - Styles
   Palette: Forest green + bone + amber accent. Light theme locked.
   Type: Bricolage Grotesque (display) + Figtree (body)
   ============================================================ */

:root {
  --forest:    #123123;   /* deep green, dark sections + headings */
  --forest-2:  #1b4531;   /* mid canopy */
  --moss:      #3f6b4f;   /* muted green for accents */
  --paper:     #f5f4ec;   /* page background, green-tinted bone */
  --paper-2:   #efeee3;   /* slightly deeper surface */
  --card:      #ffffff;
  --ink:       #1c2620;   /* near-black green, body text */
  --ink-soft:  #4a5a50;   /* secondary text */
  --amber:     #e0a02a;   /* single accent */
  --amber-deep:#c6861b;
  --line:      #e2e1d4;   /* hairlines on light */
  --line-dark: rgba(255,255,255,.16);

  --radius:    16px;
  --radius-sm: 11px;
  --maxw:      1200px;
  --shadow:    0 18px 44px -22px rgba(18,49,35,.38);
  --shadow-sm: 0 8px 24px -16px rgba(18,49,35,.4);

  --ff-display: -apple-system, system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --ff-body: -apple-system, system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; color-scheme: light; }

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a, button, summary, .btn, .mb-btn, label {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Skip link */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--forest); color: #fff; padding: 10px 18px;
  border-radius: 999px; font-weight: 600; font-size: 15px;
  transition: top .18s ease;
}
.skip-link:focus { top: 12px; }

/* Visible keyboard focus for all interactive elements */
:focus-visible {
  outline: 2px solid var(--amber-deep);
  outline-offset: 2px;
  border-radius: 4px;
}

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--forest);
  margin: 0;
  text-wrap: balance;
}

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

.section { padding: clamp(64px, 9vw, 120px) 0; }

.eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss);
  margin: 0 0 14px;
}
.eyebrow-light { color: var(--amber); }

.section-head { max-width: 640px; margin-bottom: clamp(34px, 5vw, 54px); }
.section-head h2 { font-size: clamp(30px, 4.4vw, 46px); }
.section-head .lead { font-size: 18px; color: var(--ink-soft); margin: 16px 0 0; }
.section-head-light h2 { color: #fff; }
.section-head-light .lead { color: rgba(255,255,255,.82); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--ff-body);
  font-weight: 600; font-size: 15.5px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s cubic-bezier(.16,1,.3,1), background-color .18s, box-shadow .18s, border-color .18s;
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-sm { padding: 10px 18px; font-size: 14.5px; }
.btn-block { width: 100%; }

.btn-amber { background: var(--amber); color: #221a06; box-shadow: 0 10px 22px -12px rgba(224,160,42,.9); }
.btn-amber:hover { background: var(--amber-deep); transform: translateY(-2px); }

.btn-primary { background: var(--forest); color: #fff; }
.btn-primary:hover { background: var(--forest-2); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--forest); border-color: var(--line); }
.btn-outline:hover { border-color: var(--forest); background: var(--forest); color: #fff; }

.btn-ghost-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(6px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }

.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--forest); font-size: 15px; }
.link-arrow::after { content: "→"; transition: transform .2s; }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,244,236,.82);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 20px; }

.brand { display: inline-flex; align-items: center; color: var(--forest); }
.brand-logo { height: 56px; width: auto; display: block; }

.nav-desktop { display: flex; gap: 30px; }
.nav-desktop a { font-size: 15px; font-weight: 500; color: var(--ink); position: relative; padding: 4px 0; }
.nav-desktop a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--amber); transition: width .22s; }
.nav-desktop a:hover { color: var(--forest); }
.nav-desktop a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 42px; height: 40px; border: 1px solid var(--line); border-radius: 10px; background: transparent; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span { width: 18px; height: 2px; background: var(--forest); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: flex; flex-direction: column; padding: 8px 24px 22px; border-bottom: 1px solid var(--line); background: var(--paper); }
.mobile-nav a { padding: 13px 0; font-size: 17px; font-weight: 500; border-bottom: 1px solid var(--line); color: var(--ink); transition: color .15s; }
.mobile-nav a:not(.mobile-nav-cta):hover { color: var(--amber-deep); }
.mobile-nav-cta:hover { background: var(--amber-deep); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav-cta { margin-top: 12px; background: var(--amber); color: #221a06 !important; text-align: center; border-radius: 999px; font-weight: 600; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(88vh, 760px); display: flex; align-items: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,26,18,.36) 0%, rgba(10,26,18,.10) 34%, rgba(10,26,18,.72) 100%),
    linear-gradient(90deg, rgba(10,26,18,.5) 0%, rgba(10,26,18,0) 60%);
}
.hero-content { position: relative; z-index: 1; padding-top: 96px; padding-bottom: clamp(48px, 8vw, 92px); max-width: 920px; }
.hero-content .eyebrow-light { color: #f4c85a; font-weight: 700; text-shadow: 0 1px 3px rgba(6,18,11,.7), 0 2px 18px rgba(6,18,11,.6); }
.hero-content h1 { color: #fff; font-size: clamp(37px, 5.4vw, 64px); font-weight: 700; letter-spacing: -0.03em; text-shadow: 0 2px 24px rgba(6,18,11,.42); }
.hero-sub { color: rgba(255,255,255,.94); font-size: clamp(17px, 2.1vw, 21px); max-width: 560px; margin: 20px 0 30px; text-shadow: 0 1px 14px rgba(6,18,11,.5); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--forest); color: #fff; }
.trustbar-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 26px 24px; }
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-item p { margin: 0; font-size: 14.5px; color: rgba(255,255,255,.75); line-height: 1.4; }
.trust-item strong { color: #fff; font-weight: 600; font-variant-numeric: tabular-nums; }
.stars { color: var(--amber); letter-spacing: 2px; font-size: 15px; }
.stars-sm { font-size: 14px; }

/* ---------- Split sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 76px); align-items: center; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.split-text h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 18px; }
.split-text p { color: var(--ink-soft); margin: 0 0 16px; max-width: 56ch; }
.split-reverse .split-media { order: 2; }

.checklist, .fact-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 30px; color: var(--ink); font-weight: 500; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  width: 21px; height: 21px; background: var(--amber); color: #221a06;
  border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 700;
}
.fact-list li { padding-left: 0; color: var(--ink-soft); }
.fact-list strong { display: block; color: var(--forest); font-family: var(--ff-display); font-size: 16px; margin-bottom: 1px; }
.fact-list { margin-bottom: 28px; }

/* ---------- Leistungen / Bento ---------- */
.leistungen { background: var(--paper); }
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bento-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
  transition: transform .2s cubic-bezier(.16,1,.3,1), box-shadow .2s;
}
.bento-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.bento-card h3 { font-size: 21px; margin-bottom: 8px; }
.bento-card p { margin: 0; color: var(--ink-soft); font-size: 15.5px; }

.bento-feature { grid-column: span 2; grid-row: span 2; padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.bento-feature-media { flex: 1; min-height: 220px; }
.bento-feature-media img { width: 100%; height: 100%; object-fit: cover; }
.bento-feature-body { padding: 28px; }
.bento-feature-body h3 { font-size: 25px; }
.bento-feature-body p { margin-bottom: 16px; }

.bento-wide { grid-column: span 2; }
.bento-split { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

.bento-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(63,107,79,.12); color: var(--forest-2); display: grid; place-items: center; margin-bottom: 16px; }
.bento-icon-dark { background: rgba(34,26,6,.14); color: #221a06; }

.bento-amber { background: var(--amber); border-color: var(--amber); }
.bento-amber h3 { color: #221a06; }
.bento-amber p { color: #4a380f; }

/* ---------- Unterkünfte ---------- */
.unterkuenfte { background: var(--paper-2); }
.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.room-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .2s cubic-bezier(.16,1,.3,1), box-shadow .2s;
  display: flex; flex-direction: column;
}
.room-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.room-media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.room-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.room-card:hover .room-media img { transform: scale(1.05); }
.room-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(18,49,35,.86); color: #fff; font-size: 12px; font-weight: 600;
  padding: 5px 11px; border-radius: 999px; letter-spacing: .02em; backdrop-filter: blur(4px);
}
.room-tag-static { position: static; display: inline-block; margin-bottom: 14px; background: var(--amber); color: #221a06; }
.room-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.room-body h3 { font-size: 20px; margin-bottom: 6px; }
.room-body p { margin: 0 0 18px; color: var(--ink-soft); font-size: 15px; flex: 1; }
.room-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price { font-size: 15px; color: var(--ink-soft); }
.price strong { font-family: var(--ff-display); font-size: 25px; color: var(--forest); font-weight: 700; font-variant-numeric: tabular-nums; }
.price-eur { display: block; margin-top: 1px; font-size: 13px; color: var(--ink-soft); font-weight: 500; font-variant-numeric: tabular-nums; }

.room-card-highlight { grid-column: span 3; background: var(--forest); border-color: var(--forest); }
.room-body-full { padding: 34px clamp(28px, 5vw, 48px); align-items: flex-start; }
.room-card-highlight h3 { color: #fff; font-size: clamp(24px, 3vw, 32px); }
.room-card-highlight p { color: rgba(255,255,255,.82); max-width: 62ch; font-size: 16.5px; }

.note-line { text-align: center; margin: 34px auto 0; color: var(--ink-soft); font-size: 15.5px; max-width: 60ch; }

/* ---------- Erlebnisse ---------- */
.erlebnisse { background: var(--forest); position: relative; }
.exp-scroller {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(260px, 1fr);
  gap: 18px; overflow-x: auto; padding: 4px 4px 20px; margin: 0 -4px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--amber) rgba(255,255,255,.1);
}
.exp-scroller::-webkit-scrollbar { height: 8px; }
.exp-scroller::-webkit-scrollbar-track { background: rgba(255,255,255,.08); border-radius: 999px; }
.exp-scroller::-webkit-scrollbar-thumb { background: rgba(224,160,42,.7); border-radius: 999px; }
.exp-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; scroll-snap-align: start; }
.exp-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.exp-card:hover img { transform: scale(1.06); }
.exp-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(9,22,15,.86) 100%); }
.exp-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; z-index: 1; }
.exp-label h3 { color: #fff; font-size: 19px; margin-bottom: 3px; }
.exp-label p { color: rgba(255,255,255,.82); font-size: 14px; margin: 0; }
.scroll-hint { color: rgba(255,255,255,.55); font-size: 13.5px; margin: 6px 0 0; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--paper); }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote { margin: 0; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.quote blockquote { margin: 14px 0 18px; font-family: var(--ff-display); font-weight: 500; font-size: 18.5px; line-height: 1.4; color: var(--forest); letter-spacing: -0.01em; }
.quote figcaption { font-size: 13.5px; color: var(--ink-soft); font-weight: 500; }

/* ---------- Anreise ---------- */
.anreise { background: var(--paper-2); }

/* ---------- FAQ ---------- */
.faq { background: var(--paper); }
.faq-wrap { max-width: 820px; }
.faq-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  list-style: none; cursor: pointer; padding: 20px 44px 20px 4px; position: relative;
  font-family: var(--ff-display); font-weight: 600; font-size: 18px; color: var(--forest);
  transition: color .15s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-size: 24px; font-weight: 400; color: var(--moss); transition: transform .25s; line-height: 1;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list summary:hover { color: var(--amber-deep); }
.faq-answer { padding: 0 44px 22px 4px; }
.faq-answer p { margin: 0; color: var(--ink-soft); }

/* ---------- Kontakt ---------- */
.kontakt { background: var(--forest); color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact-intro h2 { color: #fff; font-size: clamp(30px, 4.2vw, 46px); margin-bottom: 16px; }
.contact-intro > p { color: rgba(255,255,255,.82); max-width: 46ch; margin: 0 0 28px; }

.contact-methods { display: grid; gap: 12px; margin-bottom: 26px; }
.contact-method {
  display: flex; align-items: center; gap: 15px;
  background: rgba(255,255,255,.06); border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm); padding: 15px 18px; transition: background .18s, transform .18s, border-color .18s;
}
.contact-method:hover { background: rgba(255,255,255,.11); transform: translateX(3px); border-color: rgba(224,160,42,.5); }
.cm-icon { width: 44px; height: 44px; border-radius: 11px; background: var(--amber); color: #221a06; display: grid; place-items: center; flex-shrink: 0; }
.contact-method span:not(.cm-icon) { display: flex; flex-direction: column; line-height: 1.3; }
.contact-method strong { font-weight: 600; font-size: 16px; }
.cm-sub { font-size: 13px; color: rgba(255,255,255,.6); }

.socials { display: flex; gap: 12px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-dark); display: grid; place-items: center; color: #fff; transition: background .18s, border-color .18s, transform .18s; }
.socials a:hover { background: var(--amber); border-color: var(--amber); color: #221a06; transform: translateY(-2px); }

/* Contact form */
.contact-form-card { background: var(--card); border-radius: var(--radius); padding: clamp(24px, 3vw, 34px); box-shadow: var(--shadow); }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--forest); }
.field input, .field textarea {
  font-family: var(--ff-body); font-size: 15.5px; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 10px; padding: 12px 14px; background: #fbfbf7;
  transition: border-color .16s, box-shadow .16s; width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: #9aa89f; }
.field input:focus-visible, .field textarea:focus-visible { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(224,160,42,.35); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #b3401f; }
.field textarea { resize: vertical; }
.form-actions { display: grid; gap: 10px; }
.form-error { color: #b3401f; font-size: 14px; margin: 2px 0 0; font-weight: 500; }
.form-hint { font-size: 13.5px; color: var(--ink-soft); margin: 14px 0 0; text-align: center; }
.form-hint a { color: var(--amber-deep); font-weight: 600; text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer { background: #0d251a; color: rgba(255,255,255,.72); padding: 62px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo { height: 62px; width: auto; margin-bottom: 18px; }
.footer-tag { max-width: 34ch; font-size: 14.5px; line-height: 1.6; margin: 0; }
.footer-col h4 { color: #fff; font-family: var(--ff-display); font-size: 15px; margin-bottom: 16px; letter-spacing: 0; }
.footer-col a { display: block; padding: 6px 0; font-size: 14.5px; color: rgba(255,255,255,.72); transition: color .15s; }
.footer-col a:hover { color: var(--amber); }
.footer-addr { font-size: 14px; margin: 10px 0 0; line-height: 1.6; }
.footer-bottom { margin-top: 46px; padding-top: 24px; border-top: 1px solid var(--line-dark); }
.footer-bottom p { font-size: 13.5px; margin: 0; color: rgba(255,255,255,.55); }

/* ---------- Mobile sticky bar ---------- */
.mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; gap: 1px; background: var(--line-dark); box-shadow: 0 -8px 24px -14px rgba(0,0,0,.4); padding-bottom: env(safe-area-inset-bottom); }
.mb-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px; font-weight: 600; font-size: 15.5px; transition: filter .15s; }
.mb-whatsapp { background: #1fab54; color: #fff; }
.mb-call { background: var(--forest); color: #fff; }
.mb-btn:hover { filter: brightness(1.08); }
.mb-btn:active { filter: brightness(.94); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-feature { grid-column: span 2; grid-row: auto; }
  .bento-wide { grid-column: span 2; }
  .room-grid { grid-template-columns: repeat(2, 1fr); }
  .room-card-highlight { grid-column: span 2; }
  .quote-grid { grid-template-columns: 1fr; max-width: 620px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split-reverse .split-media { order: 0; }
  .split-media img { aspect-ratio: 16/11; }
  .trustbar-inner { grid-template-columns: 1fr 1fr; gap: 20px; row-gap: 22px; }
  .bento { grid-template-columns: 1fr; }
  .bento-feature, .bento-wide { grid-column: auto; }
  .bento-split { grid-template-columns: 1fr; gap: 24px; }
  .room-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .room-card-highlight { grid-column: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 56px; }
  .site-footer { padding-bottom: 80px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .hero { min-height: 82vh; }
  .hero-content { padding-top: 60px; }
  .header-inner { height: 66px; }
  .brand-logo { height: 46px; }
}

@media (max-width: 400px) {
  .field-row { grid-template-columns: 1fr; }
  .trustbar-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   Subpages (Unterkünfte, Erlebnisse, Kontakt, Rechtstexte)
   ============================================================ */

.section-cta { text-align: center; margin-top: 36px; }

/* Active nav state */
.nav-desktop a[aria-current="page"] { color: var(--forest); }
.nav-desktop a[aria-current="page"]::after { width: 100%; }
.mobile-nav a[aria-current="page"] { color: var(--amber-deep); }

/* Compact page banner under the header */
.page-hero { position: relative; overflow: hidden; background: var(--forest); }
.page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(9,22,15,.62) 0%, rgba(9,22,15,.5) 55%, rgba(9,22,15,.78) 100%); }
.page-hero-inner { position: relative; z-index: 2; padding: clamp(48px, 8vw, 88px) 0 clamp(40px, 6vw, 64px); }
.breadcrumb { font-size: 13.5px; color: rgba(255,255,255,.72); margin: 0 0 14px; letter-spacing: .01em; }
.breadcrumb a { color: rgba(255,255,255,.72); text-decoration: none; }
.breadcrumb a:hover { color: var(--amber); }
.page-hero h1 { color: #fff; font-size: clamp(32px, 5vw, 54px); max-width: 16ch; }
.page-hero p { color: rgba(255,255,255,.9); font-size: 18px; max-width: 56ch; margin: 16px 0 0; }

/* Detailed accommodation rows */
.unit-list { display: grid; gap: clamp(40px, 6vw, 72px); }
.unit { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.unit:nth-child(even) .unit-media { order: 2; }
.unit-media { position: relative; }
.unit-media img { width: 100%; aspect-ratio: 4/3.2; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.unit-tag { position: absolute; top: 14px; left: 14px; background: rgba(18,49,35,.86); color: #fff; font-size: 12.5px; font-weight: 600; padding: 6px 13px; border-radius: 999px; backdrop-filter: blur(4px); }
.unit-body h2 { font-size: clamp(24px, 3.4vw, 34px); margin-bottom: 6px; }
.unit-price { font-family: var(--ff-display); font-weight: 700; color: var(--amber-deep); font-size: 18px; margin: 0 0 14px; font-variant-numeric: tabular-nums; }
.unit-price span { color: var(--ink-soft); font-weight: 500; font-size: 15px; }
.unit-body > p { color: var(--ink-soft); margin: 0 0 18px; max-width: 54ch; }
.amenities { list-style: none; padding: 0; margin: 0 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.amenities li { position: relative; padding-left: 26px; font-size: 15px; color: var(--ink); }
.amenities li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--amber-deep); font-weight: 700; }

/* Tours grid */
.tour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tour-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .2s cubic-bezier(.16,1,.3,1), box-shadow .2s; }
.tour-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tour-media { aspect-ratio: 16/10; overflow: hidden; }
.tour-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.tour-card:hover .tour-media img { transform: scale(1.05); }
.tour-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.tour-body h3 { font-size: 20px; margin-bottom: 8px; }
.tour-body p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* Simple CTA band */
.cta-band { background: var(--forest); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 3.6vw, 38px); max-width: 20ch; margin: 0 auto 14px; }
.cta-band p { color: rgba(255,255,255,.82); max-width: 52ch; margin: 0 auto 26px; }
.cta-band .btn { margin: 0 6px 10px; }

/* Legal / prose pages */
.legal-page { max-width: 760px; }
.legal-page h2 { font-size: clamp(22px, 3vw, 30px); margin: 40px 0 14px; }
.legal-page h2:first-of-type { margin-top: 0; }
.legal-page h3 { font-size: 18px; margin: 26px 0 8px; }
.legal-page p, .legal-page li { color: var(--ink-soft); margin: 0 0 14px; }
.legal-page ul { padding-left: 20px; margin: 0 0 16px; }
.legal-page a { color: var(--amber-deep); text-decoration: underline; }
.legal-note { background: var(--paper-2); border: 1px solid var(--line); border-left: 3px solid var(--amber); border-radius: 10px; padding: 16px 18px; font-size: 14.5px; color: var(--ink-soft); }
.placeholder { background: rgba(224,160,42,.16); padding: 1px 6px; border-radius: 4px; font-style: normal; color: var(--forest); font-weight: 600; }

@media (max-width: 880px) {
  .tour-grid { grid-template-columns: repeat(2, 1fr); }
  .unit { grid-template-columns: 1fr; gap: 22px; }
  .unit:nth-child(even) .unit-media { order: 0; }
  .unit-media img { aspect-ratio: 16/11; }
}
@media (max-width: 560px) {
  .tour-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .amenities { grid-template-columns: 1fr; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .bento-card, .room-card, .tour-card, .contact-method,
  .exp-card img, .room-media img, .tour-media img { transition: none; }
  .btn:hover, .bento-card:hover, .room-card:hover, .tour-card:hover,
  .exp-card:hover img, .room-card:hover .room-media img, .tour-card:hover .tour-media img { transform: none; }
}
