/* ==========================================================================
   PACARADA Hair & Style — Bad Soden am Taunus
   Design system + site styles. Plain CSS, no build step.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Fonts (self-hosted — no Google Fonts request, so no cookie banner needed)
   -------------------------------------------------------------------------- */

/* Variable fonts: one file per family and subset covers every weight the page
   uses. The previous 12 files were only 4 unique ones — Google's per-weight
   downloads of a variable font are byte-identical copies. */

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/playfair-display-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/playfair-display-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('../fonts/rubik-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('../fonts/rubik-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --------------------------------------------------------------------------
   2. Design tokens
   -------------------------------------------------------------------------- */

:root {
  /* Brand — sampled from the PACARADA logo */
  --gold:        #bf9f5f;
  --gold-deep:   #9a7d42;
  --gold-soft:   #e6d7b4;
  --gold-tint:   #f6f0e3;

  /* Neutrals — warm, to sit next to the gold */
  --ink:         #1b1815;
  --ink-soft:    #4a443d;
  --ink-muted:   #7c736a;
  --line:        #e4ded4;
  --cream:       #faf7f1;
  --white:       #ffffff;

  /* Type */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing + layout */
  --gutter:      24px;
  --maxw:        1180px;
  --maxw-narrow: 760px;
  --section-y:   clamp(64px, 9vw, 120px);

  /* Effects */
  --radius:      2px;
  --radius-lg:   4px;
  --shadow:      0 1px 2px rgba(27, 24, 21, .04), 0 8px 24px rgba(27, 24, 21, .06);
  --shadow-lift: 0 2px 4px rgba(27, 24, 21, .06), 0 18px 44px rgba(27, 24, 21, .13);
  --ease:        cubic-bezier(.22, .61, .36, 1);

  /* Fixed header height, used for scroll offset */
  --header-h:    84px;
}

/* --------------------------------------------------------------------------
   3. Reset + base
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, svg { max-width: 100%; display: block; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: var(--gold-deep); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--ink); }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--white);
  padding: 12px 20px;
  font-size: .9rem;
}
.skip-link:focus { left: 8px; top: 8px; color: var(--white); }

/* --------------------------------------------------------------------------
   4. Layout helpers
   -------------------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--maxw-narrow); }

.section { padding-block: var(--section-y); }
.section--cream { background: var(--cream); }
.section--tint  { background: var(--gold-tint); }

.section-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.section-head p { color: var(--ink-muted); font-size: 1.05rem; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.1em;
}

/* Thin gold rule under section titles */
.rule {
  width: 52px;
  height: 1px;
  background: var(--gold);
  border: 0;
  margin: 1.6rem auto 1.4rem;
}
.rule--left { margin-inline: 0; }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 17px 34px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--white);
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease),
              color .25s var(--ease), transform .25s var(--ease);
}
.btn:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }

.btn--light { background: transparent; border-color: rgba(255,255,255,.7); color: var(--white); }
.btn--light:hover { background: var(--white); border-color: var(--white); color: var(--ink); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.btn-row--center { justify-content: center; }

/* --------------------------------------------------------------------------
   6. Header / navigation
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: height .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled {
  height: 68px;
  border-bottom-color: var(--line);
  box-shadow: 0 1px 20px rgba(27, 24, 21, .05);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img {
  height: 46px;
  width: auto;
  transition: height .3s var(--ease);
}
.site-header.is-scrolled .brand img { height: 38px; }

.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  position: relative;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink);
  padding-block: 6px;
  white-space: nowrap;
}
.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.nav-list a:hover::after,
.nav-list a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-list a.is-active { color: var(--gold-deep); }

/* Language switch */
.lang {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .1em;
  padding-left: clamp(14px, 2vw, 26px);
  border-left: 1px solid var(--line);
}
.lang a { color: var(--ink-muted); text-transform: uppercase; }
.lang a:hover { color: var(--ink); }
.lang [aria-current='true'] { color: var(--gold-deep); font-weight: 700; }
.lang span { color: var(--line); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  margin-inline: auto;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger[aria-expanded='true'] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded='true'] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero-slides { position: absolute; inset: 0; z-index: -2; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.6s var(--ease), transform 7s linear;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20,17,14,.55) 0%, rgba(20,17,14,.42) 45%, rgba(20,17,14,.68) 100%);
}

.hero-inner { padding-block: calc(var(--header-h) + 40px) 80px; }
.hero h1 { color: var(--white); margin-bottom: .3em; }
.hero .eyebrow { color: var(--gold-soft); }
.hero-lead {
  max-width: 560px;
  margin: 0 auto 2.4em;
  font-size: 1.1rem;
  color: rgba(255,255,255,.88);
}
.hero .rule { background: var(--gold-soft); }

/* Hours strip pinned to the bottom of the hero */
.hero-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: rgba(20, 17, 14, .55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: .8rem;
  letter-spacing: .06em;
}
.hero-strip .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 32px;
  padding-block: 15px;
  color: rgba(255,255,255,.9);
}
.hero-strip strong { color: var(--gold-soft); font-weight: 500; }
.hero-strip a { color: rgba(255,255,255,.9); }
.hero-strip a:hover { color: var(--gold-soft); }
.hero-strip .dot { color: rgba(255,255,255,.3); }

/* --------------------------------------------------------------------------
   8. Intro / welcome
   -------------------------------------------------------------------------- */

.intro { text-align: center; }
.intro-lead {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.5;
  color: var(--ink);
  max-width: 780px;
  margin-inline: auto;
}

/* Feature trio */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(28px, 4vw, 56px);
  margin-top: clamp(48px, 6vw, 76px);
  text-align: center;
}
.feature-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 20px;
  color: var(--gold);
}
.feature-icon svg { width: 100%; height: 100%; display: block; }
.feature h3 { margin-bottom: .45em; }
.feature p { color: var(--ink-muted); font-size: .97rem; }

/* --------------------------------------------------------------------------
   9. About (image + text split)
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}

.split-media { position: relative; }
.split-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}
/* Thin gold frame offset behind the photo */
.split-media::before {
  content: '';
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.split-body h2 { margin-bottom: .1em; }

/* Partner badge */
.partner {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 2.2rem;
  padding: 18px 26px;
  background: var(--gold-tint);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.partner span {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.partner strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: .04em;
}

/* Service list, sitting under the About split */
.services-head {
  margin: clamp(44px, 5vw, 64px) 0 1.6em;
  padding-top: clamp(36px, 4vw, 48px);
  border-top: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 9px 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.services li {
  position: relative;
  padding-left: 24px;
  font-size: .97rem;
  color: var(--ink-soft);
}
.services li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .78em;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

/* --------------------------------------------------------------------------
   10. Gallery
   -------------------------------------------------------------------------- */

/* Nine photos, so a 3×3 grid fills exactly and each shot gets more room. */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-item {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  background: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 1 / 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), opacity .4s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); opacity: .82; }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: var(--radius);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(16, 14, 12, .94);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(94vw, 1000px);
  max-height: 84vh;
  width: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.lightbox-btn {
  position: absolute;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.lightbox-btn:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.6); }
.lightbox-close { top: 22px; right: 22px; font-size: 1.2rem; }
.lightbox-prev  { left: 22px;  top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-count {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.65);
  font-size: .8rem;
  letter-spacing: .14em;
}

/* --------------------------------------------------------------------------
   11. Price list
   -------------------------------------------------------------------------- */

.price-groups {
  display: grid;
  gap: clamp(36px, 4vw, 52px);
  max-width: 860px;
  margin-inline: auto;
}

.price-group h3 {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.1em;
}
.price-group h3::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.price-table { width: 100%; border-collapse: collapse; }

.price-table th {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: right;
  padding: 0 0 12px;
  width: 92px;
}
.price-table th:first-child { text-align: left; width: auto; }

.price-table td {
  padding: 15px 0;
  border-top: 1px solid var(--line);
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  white-space: nowrap;
}
.price-table td:first-child {
  text-align: left;
  color: var(--ink-soft);
  font-weight: 400;
  white-space: normal;
  padding-right: 16px;
}
.price-table tr:hover td { background: var(--gold-tint); }
.price-table .from { color: var(--ink-muted); font-size: .8em; margin-right: .3em; }
.price-table .req  { color: var(--ink-muted); font-size: .84em; font-style: italic; }

.price-note {
  max-width: 860px;
  margin: clamp(34px, 4vw, 48px) auto 0;
  padding: 22px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  font-size: .92rem;
  color: var(--ink-muted);
  text-align: center;
}

/* --------------------------------------------------------------------------
   12. Contact
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.contact-block + .contact-block { margin-top: 2.4rem; }
.contact-block h3 {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: .9em;
}
.contact-block address { font-style: normal; line-height: 1.9; }
.contact-block a { color: var(--ink); }
.contact-block a:hover { color: var(--gold-deep); }

.hours { width: 100%; border-collapse: collapse; max-width: 340px; }
.hours td { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: .97rem; }
.hours td:last-child { text-align: right; font-variant-numeric: tabular-nums; color: var(--ink); }
.hours tr.is-closed td { color: var(--ink-muted); }
.hours tr.is-today td { color: var(--gold-deep); font-weight: 500; }

.contact-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.contact-cta { margin-top: 26px; }

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.62);
  padding-block: clamp(52px, 6vw, 76px) 30px;
  font-size: .92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: 44px;
}
.site-footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 1.2em;
}
.site-footer a { color: rgba(255,255,255,.62); }
.site-footer a:hover { color: var(--gold-soft); }
.site-footer address { font-style: normal; line-height: 1.9; }
.footer-logo {
  height: 54px;
  width: auto;
  margin-bottom: 20px;
  /* The logo is dark gold on white — invert to sit on the dark footer */
  filter: brightness(0) invert(1) opacity(.82);
}
.footer-links { list-style: none; margin: 0; padding: 0; line-height: 2.1; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 26px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .84rem;
  color: rgba(255,255,255,.44);
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 22px; list-style: none; margin: 0; padding: 0; }

/* --------------------------------------------------------------------------
   14. Legal pages (Impressum / Datenschutz)
   -------------------------------------------------------------------------- */

.page-head {
  padding-block: calc(var(--header-h) + clamp(48px, 6vw, 80px)) clamp(40px, 5vw, 64px);
  background: var(--cream);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-head h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); margin-bottom: 0; }

.prose { padding-block: clamp(48px, 6vw, 80px); }
.prose h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.65rem);
  margin-top: 2.4em;
  padding-top: 1.6em;
  border-top: 1px solid var(--line);
}
.prose h2:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h3 { font-size: 1.1rem; margin-top: 1.9em; }
.prose ul { padding-left: 1.2em; margin: 0 0 1.2em; }
.prose li { margin-bottom: .45em; }
.prose address { font-style: normal; line-height: 1.9; margin-bottom: 1.2em; }
.prose .muted { color: var(--ink-muted); font-size: .92rem; }

/* Marks a value that still has to be filled in before the site goes live.
   Deliberately loud — these must not survive to production. */
.todo {
  background: #fff4d6;
  border-bottom: 1px dashed #c79a2a;
  color: #7a5c10;
  padding: 1px 6px;
  border-radius: 2px;
  font-weight: 500;
}

.notice {
  margin: 0 0 2.4em;
  padding: 18px 22px;
  background: #fff8e6;
  border: 1px solid #edd9a3;
  border-left: 3px solid #c79a2a;
  border-radius: var(--radius-lg);
  font-size: .93rem;
  color: #6d5413;
}
.notice strong { color: #4d3b08; }

/* --------------------------------------------------------------------------
   15. Scroll-reveal
   -------------------------------------------------------------------------- */

/* Gated behind .js so the page still reads fine if the script fails to load —
   without this, a JS error would leave every section invisible. */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   16. Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  :root { --header-h: 68px; }

  .burger { display: flex; }

  /* backdrop-filter turns .site-header into the containing block for its
     position:fixed children, which would collapse the full-screen nav overlay
     below to zero height. The header is effectively opaque here anyway. */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--white);
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    flex-direction: column;
    justify-content: center;
    gap: 34px;
    background: var(--white);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .4s var(--ease), visibility .4s var(--ease);
    overflow-y: auto;
  }
  .nav.is-open { transform: none; visibility: visible; }

  .nav-list { flex-direction: column; gap: 26px; }
  .nav-list a { font-size: .95rem; letter-spacing: .18em; }

  .lang { border-left: 0; padding-left: 0; font-size: .85rem; }

  body.nav-open { overflow: hidden; }

  .split { grid-template-columns: 1fr; }
  .split-media { order: -1; }
  .split-media::before { inset: 16px -16px -16px 16px; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-media { order: -1; }

  /* The hours strip wraps to two lines here — keep the CTAs clear of it */
  .hero { min-height: 82vh; }
  .hero-inner { padding-bottom: 130px; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  :root { --gutter: 20px; }

  .gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; }

  .price-table th { width: 66px; font-size: .62rem; }
  .price-table td, .price-table th { font-size: .92rem; }
  .price-table td:first-child { padding-right: 10px; }

  .btn { padding: 15px 26px; font-size: .74rem; }
  .btn-row .btn { flex: 1 1 100%; }

  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-btn { width: 44px; height: 44px; }

  .hero-strip .wrap { gap: 6px 18px; font-size: .74rem; }
}

/* --------------------------------------------------------------------------
   17. Print
   -------------------------------------------------------------------------- */

@media print {
  .site-header, .hero-slides, .hero-strip, .burger, .lightbox, .btn-row, .site-footer { display: none !important; }
  body { font-size: 11pt; color: #000; }
  .section { padding-block: 16pt; }
  a { color: #000; text-decoration: underline; }
}
