/* ══════════════════════════════════════════
   Austrian Saunas — style.css
   Design: Nordic Minimal + Editorial
   Fonts: DM Serif Display · Instrument Sans
══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Instrument+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ── TOKENS ─────────────────────────────── */
:root {
  --serif:  'DM Serif Display', Georgia, serif;
  --sans:   'Instrument Sans', system-ui, sans-serif;

  --white:      #ffffff;
  --bg-warm:    #f9f7f5;
  --bg-alt:     #f3f0eb;
  --dark:       #111111;
  --dark2:      #1a1714;

  --text:       #1a1714;
  --text-body:  #444444;
  --text-muted: #888888;
  --text-sub:   #bbbbbb;

  --accent:       #a0856a;
  --accent-dark:  #7a6050;
  --accent-light: rgba(160,133,106,.1);
  --accent-border:rgba(160,133,106,.25);

  --border:       #e8e3dc;
  --border-mid:   #d4cdc4;

  --shadow-xs: 0 1px 3px rgba(0,0,0,.05);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.07), 0 1px 3px rgba(0,0,0,.04);
  --shadow:    0 6px 20px rgba(0,0,0,.09), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 20px 56px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl: 0 40px 100px rgba(0,0,0,.22), 0 8px 24px rgba(0,0,0,.08);

  --r-xs: 3px;
  --r-sm: 5px;
  --r:    8px;
  --r-lg: 12px;
  --r-xl: 20px;

  --nav-h: 68px;
  --content-max: 1280px;
  --text-max:    740px;

  --ease: cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(0,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

/* ── RESET ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }

/* Mobile-Navigation zentral (früher nur inline je Seite – fehlte auf den Rechtsseiten).
   Blendet die Desktop-Links aus und zeigt das Burger-Menü. */
@media (max-width: 900px) {
  .as-nav-links, .as-nav-cta { display: none; }
  .as-nav-burger { display: flex; }
}
body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--white);
  overflow-x: clip;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}
button { cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
[hidden] { display: none !important; }

/* ── TYPOGRAPHY ──────────────────────────── */
.serif { font-family: var(--serif); }
.sans  { font-family: var(--sans); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
}
h1 { font-size: clamp(42px, 6vw, 68px); }
h2 { font-size: clamp(32px, 4.5vw, 52px); }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: clamp(18px, 2.2vw, 24px); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--accent);
}

p { max-width: 64ch; }
p + p { margin-top: .85em; }

/* ── LAYOUT ──────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 120px 0; }
.section-dark { background: var(--dark2); }
.section-warm { background: var(--bg-warm); }
.section-alt  { background: var(--bg-alt); }

.section-head { margin-bottom: 56px; }
.section-head .eyebrow { margin-bottom: 12px; }
.section-head h2 { line-height: 1.1; }
@media (max-width: 600px) {
  .section-head h2 { overflow-wrap: break-word; hyphens: auto; }
}
.section-head p {
  margin-top: 16px;
  font-size: 16px;
  color: var(--text-muted);
  max-width: 52ch;
}
.section-head-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

/* ── NAVIGATION ──────────────────────────── */
.as-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.as-nav.scrolled {
  background: rgba(255,255,255,.96);
  border-color: var(--border);
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(16px);
}
.as-nav.nav-dark {
  --nav-text: rgba(240,236,230,.7);
  --nav-text-hover: #f0ece6;
  --nav-logo: #f0ece6;
}
.as-nav.scrolled {
  --nav-text: var(--text-muted);
  --nav-text-hover: var(--text);
  --nav-logo: var(--text);
}
.as-nav-inner {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 0;
}
.as-nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: auto;
  flex-shrink: 0;
  gap: 10px;
}
.as-nav-logo-img {
  width: 36px;
  height: 32px;
  flex-shrink: 0;
  display: block;
  align-self: center;
  color: var(--nav-logo, var(--text));
  /* SVG inherits currentColor for fill */
}
.as-nav-logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
}
.as-nav.nav-dark .as-nav-logo-img { filter: brightness(0) invert(1); }
.as-nav-logo-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--nav-logo, var(--text));
  line-height: 1;
  transition: color .3s;
  white-space: nowrap;
}
.as-nav-logo-sub {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: .7;
  line-height: 1;
}
.as-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 20px;
  flex-shrink: 0;
}
.as-nav-link {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--nav-text, var(--text-muted));
  padding: 8px 14px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition: color .22s, background .22s;
}
.as-nav-link:hover,
.as-nav-link.active { color: var(--nav-text-hover, var(--text)); background: var(--accent-light); }

.as-nav-cta {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--r);
  background: var(--dark);
  color: var(--white);
  flex-shrink: 0;
  white-space: nowrap;
  transition: background .22s, transform .22s;
}
.as-nav-cta:hover { background: #333; transform: translateY(-1px); }

.as-nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-left: 14px;
  flex-shrink: 0;
  transition: border-color .2s;
}
.as-nav-burger:hover { border-color: var(--accent-border); }
.as-nav-burger span {
  display: block;
  height: 1.5px;
  background: var(--nav-logo, var(--text));
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s, width .25s;
}
.as-nav-burger span:nth-child(1) { width: 20px; }
.as-nav-burger span:nth-child(2) { width: 14px; }
.as-nav-burger span:nth-child(3) { width: 17px; }
.as-nav.menu-open .as-nav-burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 20px; }
.as-nav.menu-open .as-nav-burger span:nth-child(2) { opacity: 0; }
.as-nav.menu-open .as-nav-burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 20px; }

/* Mobile menu */
.as-nav-mobile {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 899;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s var(--ease);
}
.as-nav.menu-open .as-nav-mobile { max-height: 480px; }
.as-nav-mobile-inner { padding: 20px 24px 28px; display: flex; flex-direction: column; gap: 4px; }
.as-nav-mobile-link {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 12px 16px;
  border-radius: var(--r);
  transition: color .2s, background .2s;
}
.as-nav-mobile-link:hover { color: var(--text); background: var(--bg-warm); }
.as-nav-mobile-cta {
  margin-top: 12px;
  display: block;
  text-align: center;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--dark);
  padding: 14px 24px;
  border-radius: var(--r);
  transition: background .2s;
}
.as-nav-mobile-cta:hover { background: #333; }

/* ── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--r);
  transition: background .22s, transform .22s, box-shadow .22s, color .22s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-primary {
  background: var(--dark);
  color: var(--white);
}
.btn-primary:hover { background: #333; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.18); }

.btn-accent {
  background: var(--accent);
  color: var(--white);
}
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(160,133,106,.3); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-mid);
}
.btn-outline:hover { border-color: var(--text); background: var(--bg-warm); }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 13px 0;
  gap: 8px;
  letter-spacing: .12em;
}
.btn-ghost:hover { color: var(--text); }

.btn-dark-outline {
  background: transparent;
  color: rgba(240,236,230,.7);
  border: 1.5px solid rgba(240,236,230,.25);
}
.btn-dark-outline:hover {
  color: #f0ece6;
  border-color: rgba(240,236,230,.6);
  background: rgba(255,255,255,.05);
}

.btn-sm { font-size: 10.5px; padding: 9px 20px; letter-spacing: .16em; }
.btn-lg { font-size: 13px; padding: 16px 36px; }

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--border-mid);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s, gap .2s;
}
.btn-arrow:hover { color: var(--accent); border-color: var(--accent); gap: 12px; }
.btn-arrow-light {
  color: rgba(240,236,230,.6);
  border-color: rgba(240,236,230,.2);
}
.btn-arrow-light:hover { color: #f0ece6; border-color: rgba(240,236,230,.5); }

/* ── CARDS ───────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-border);
}
.card-img {
  width: 100%;
  overflow: hidden;
  background: var(--bg-alt);
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 24px; }
.card-tag {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}
.card-name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.2;
}
.card-price {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.card-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.card-meta-item {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-sub);
}
.card-meta-item strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1px;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 960px)  { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px)  { .product-grid-2col { grid-template-columns: 1fr; } }

.study-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 768px) { .study-grid { grid-template-columns: 1fr; gap: 16px; } }
@media (max-width: 560px)  { .product-grid { grid-template-columns: 1fr; } }

/* ── FORMS ───────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--r);
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-sub); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(160,133,106,.12);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .form-grid-2 { grid-template-columns: 1fr; } }

/* Dark forms */
.form-input-dark {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.15);
  color: #f0ece6;
}
.form-input-dark::placeholder { color: rgba(255,255,255,.3); }
.form-input-dark:focus { border-color: rgba(160,133,106,.7); box-shadow: 0 0 0 3px rgba(160,133,106,.15); }

/* ── MODAL ───────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(17,17,17,.55);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 620px;
  padding: 44px 44px 36px;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: modalIn .35s var(--ease-spring) both;
}
@keyframes modalIn { from { opacity:0; transform: translateY(20px) scale(.97); } to { opacity:1; transform: none; } }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1;
  transition: background .2s, transform .2s, color .2s;
}
.modal-close:hover { background: var(--border); color: var(--text); transform: rotate(90deg); }
.modal .eyebrow { margin-bottom: 6px; }
.modal h3 { margin-bottom: 24px; }
.modal-form { display: flex; flex-direction: column; gap: 12px; }
.modal-msg { font-size: 13px; color: var(--accent); margin-top: 8px; }

/* ── FILTER BAR ──────────────────────────── */
.filter-bar {
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 14px 48px;
  display: flex;
  align-items: center;
  gap: 20px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-seg { display: flex; gap: 4px; flex-shrink: 0; }
.filter-seg-btn {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-sub);
  padding: 7px 16px;
  border-radius: var(--r-sm);
  border: none;
  background: transparent;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.filter-seg-btn:hover { color: var(--text-muted); background: var(--bg-warm); }
.filter-seg-btn.active { color: var(--text); background: var(--bg-alt); }
.filter-divider { width: 1px; height: 24px; background: var(--border); flex-shrink: 0; }
.filter-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-sub);
  flex-shrink: 0;
}
.filter-count {
  margin-left: auto;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-sub);
  flex-shrink: 0;
  white-space: nowrap;
}

/* Range slider */
.as-range {
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent) var(--pct,20%), var(--border-mid) var(--pct,20%));
  outline: none;
  cursor: pointer;
}
.as-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(160,133,106,.2), 0 2px 6px rgba(160,133,106,.35);
  transition: transform .15s;
}
.as-range::-webkit-slider-thumb:hover { transform: scale(1.2); }

/* ── HERO ────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-dark { background: var(--dark2); }
.hero-warm { background: var(--bg-warm); }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-content .eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.hero-eyebrow-line {
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: .5;
  flex-shrink: 0;
}
.hero-content h1 { margin-bottom: 20px; }
.hero-content p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 50ch;
}
.hero-btns { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* Dark hero text */
.hero-dark .hero-content h1 { color: #f0ece6; }
.hero-dark .hero-content p  { color: rgba(240,236,230,.55); }
.hero-dark .eyebrow { color: rgba(160,133,106,.8); }

/* ── STATS BAR ───────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(var(--cols,4), 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-bar-dark {
  border-color: rgba(255,255,255,.06);
}
.stat-item {
  padding: 36px 40px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stats-bar-dark .stat-item { border-color: rgba(255,255,255,.06); }
.stat-num {
  font-family: var(--serif);
  font-size: 44px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}
.stats-bar-dark .stat-num { color: #f0ece6; }
.stat-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-sub);
}
.stats-bar-dark .stat-label { color: rgba(240,236,230,.35); }
@media (max-width: 768px) { .stat-item { padding: 24px 24px; } .stat-num { font-size: 32px; } }
@media (max-width: 560px) { .stats-bar { --cols: 2; } .stat-item:nth-child(2) { border-right: none; } .stat-item:nth-child(2) { border-right: none; } }

/* ── FOOTER ──────────────────────────────── */
.as-footer {
  background: var(--dark2);
  color: rgba(255,255,255,.4);
  font-family: var(--sans);
  position: relative;
  border-top: 1px solid rgba(160,133,106,.15);
}
.as-footer-nl {
  padding: 56px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.as-footer-nl-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.as-footer-nl-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(160,133,106,.6);
  display: block;
  margin-bottom: 8px;
}
.as-footer-nl-title {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  color: #f0ece6;
  line-height: 1.2;
}
.as-footer-nl-title em { color: var(--accent); font-style: italic; }
.as-footer-nl-form {
  display: flex;
  gap: 10px;
  flex: 1;
  min-width: 280px;
  max-width: 460px;
}
.as-footer-nl-form input {
  flex: 1;
  padding: 13px 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r);
  color: #f0ece6;
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  transition: border-color .2s, background .2s;
}
.as-footer-nl-form input::placeholder { color: rgba(255,255,255,.25); }
.as-footer-nl-form input:focus { border-color: rgba(160,133,106,.5); background: rgba(160,133,106,.07); }
.as-footer-nl-form button {
  padding: 13px 24px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 14px rgba(160,133,106,.25);
}
.as-footer-nl-form button:hover { background: var(--accent-dark); transform: translateY(-1px); }

.as-footer-main { padding: 72px 0 52px; }
.as-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.as-footer-logo {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: #f0ece6;
  letter-spacing: .04em;
  display: block;
  margin-bottom: 14px;
}
.as-footer-logo span { color: var(--accent); }
.as-footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,.3);
  max-width: 240px;
  margin-bottom: 24px;
}
.as-footer-social { display: flex; gap: 8px; }
.as-footer-social-btn {
  width: 38px; height: 38px;
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.35);
  transition: all .22s;
}
.as-footer-social-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(160,133,106,.08); transform: translateY(-2px); }

.as-footer-col h4 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(160,133,106,.55);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.as-footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.32);
  padding: 5px 0;
  transition: color .2s, padding-left .2s;
}
.as-footer-col a:hover { color: rgba(160,133,106,.9); padding-left: 4px; }

.as-footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,.3); margin-bottom: 12px; line-height: 1.4;
}
.as-footer-contact-icon { color: var(--accent); opacity: .7; font-size: 13px; flex-shrink: 0; }
.as-footer-contact-item a { color: rgba(255,255,255,.32); transition: color .2s; }
.as-footer-contact-item a:hover { color: var(--accent); }

.as-footer-divider { height: 1px; background: rgba(255,255,255,.06); }
.as-footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.as-footer-copy { font-size: 12px; color: rgba(255,255,255,.2); }
.as-footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.as-footer-legal a { font-size: 12px; color: rgba(255,255,255,.2); transition: color .2s; }
.as-footer-legal a:hover { color: rgba(160,133,106,.6); }
.as-footer-flag {
  display: inline-flex; flex-direction: column;
  width: 18px; height: 13px; border-radius: 2px; overflow: hidden;
}
.as-footer-flag span:nth-child(1), .as-footer-flag span:nth-child(3) { flex: 1; background: #c8102e; }
.as-footer-flag span:nth-child(2) { flex: 1; background: #fff; }
.as-footer-origin { display: flex; align-items: center; gap: 10px; font-size: 11px; color: rgba(255,255,255,.18); letter-spacing: .1em; text-transform: uppercase; }

@media (max-width: 900px) { .as-footer-grid { grid-template-columns: 1fr 1fr; } .as-footer-brand { grid-column: 1 / -1; } }
@media (max-width: 560px) { .as-footer-grid { grid-template-columns: 1fr; } .as-footer-bottom { flex-direction: column; align-items: flex-start; } .as-footer-nl-form { flex-direction: column; } }

/* ── PAGE HERO (with nav clearance) ──────── */
.page-hero {
  padding: calc(var(--nav-h) + 72px) 0 72px;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(38px, 5.5vw, 62px); }
.page-hero p {
  margin: 16px auto 0;
  font-size: 15px;
  color: var(--text-muted);
  max-width: 52ch;
}

/* ── ACCORDION ───────────────────────────── */
.accordion-item {
  border-bottom: 1px solid var(--border);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  text-align: left;
  gap: 20px;
}
.accordion-trigger h3 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}
.accordion-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform .3s var(--ease), border-color .2s, color .2s;
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); border-color: var(--accent); color: var(--accent); }
.accordion-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s var(--ease);
}
.accordion-item.open .accordion-body { max-height: 900px; }
.accordion-content { padding: 0 0 24px; }

/* ── TAG / BADGE ─────────────────────────── */
.tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 20px;
  background: var(--bg-alt);
  color: var(--text-muted);
}
.tag-accent { background: var(--accent-light); color: var(--accent-dark); border: 1px solid var(--accent-border); }

/* ── SCROLL REVEAL ───────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

/* ── COOKIE BANNER ───────────────────────── */
.as-cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 9999;
  background: var(--dark);
  color: rgba(255,255,255,.75);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 600px;
  width: calc(100% - 48px);
  box-shadow: var(--shadow-xl);
  transition: transform .45s var(--ease-spring);
}
.as-cookie-banner.visible { transform: translateX(-50%) translateY(0); }
.as-cookie-text { font-size: 13px; flex: 1; min-width: 200px; }
.as-cookie-text a { color: var(--accent); text-decoration: underline; }
.as-cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }

/* ── UTILITIES ───────────────────────────── */
.text-center  { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }
.text-accent  { color: var(--accent); }
.text-muted   { color: var(--text-muted); }
.text-white   { color: #f0ece6; }
.italic { font-style: italic; }
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-4  { margin-bottom: 4px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.flex   { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.wrap { flex-wrap: wrap; }
.grow { flex: 1; }

/* ── RESPONSIVE HELPERS ──────────────────── */
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .as-nav-links, .as-nav-cta { display: none; }
  .as-nav-burger { display: flex; }
  .filter-bar { padding: 12px 20px; gap: 12px; }
  .section { padding: 64px 0; }
  .section-lg { padding: 80px 0; }
  .page-hero { padding: calc(var(--nav-h) + 48px) 0 48px; }
}
@media (min-width: 769px) {
  .hide-desktop { display: none !important; }
}

/* ── ANIMATIONS ──────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
@keyframes pulse {
  0%, 100% { opacity: .5; transform: scale(1); }
  50%       { opacity: 1;  transform: scale(1.06); }
}
