/* ============================================================
   HEUBODEN — Main Stylesheet
   ============================================================
   1. Custom Properties
   2. Reset & Base
   3. Typography
   4. Layout Containers
   5. Navigation (desktop + mobile)
   6. Hero Section
   7. Section Layouts (home sections)
   8. Event Cards (listing + homepage teaser)
   9. Service Pillars Grid
  10. Shop Teaser
  11. Forms (contact, registration)
  12. Buttons
  13. Footer
  14. Page-specific: Event Detail
  15. Page-specific: CMS pages (weddings, corporate, etc.)
  16. Flash Messages
  17. Utilities
  18. Responsive (mobile-first media queries)
   ============================================================ */

/* ============================================================
   1. CUSTOM PROPERTIES
   ============================================================ */

:root {
  /* Brand Colors — derived from existing heuboden.ch identity */
  --color-gold:        #b7985b;   /* the actual site gold, not the placeholder #C09D53 */
  --color-gold-dark:   #a08448;
  --color-gold-light:  #d4b97a;
  --color-gold-muted:  #e8d9bc;
  --color-gold-bg:     #f0e8d6;

  /* Neutrals — warm undertone throughout, no cold grays */
  --color-text:        #1a1612;   /* near-black with warm base */
  --color-text-light:  #5c5247;
  --color-text-muted:  #8a7f74;
  --color-bg:          #f9f6f2;   /* warm cream — photos look natural, not yellow */
  --color-bg-warm:     #f2ede6;
  --color-bg-dark:     #1a1612;   /* footer — same warm undertone */
  --color-border:      #e2d9d0;
  --color-surface:     #f9f6f2;
  --color-white:       #ffffff;
  --color-error:       #c0392b;
  --color-success:     #2ecc71;

  /* Spacing Scale (8px base grid) */
  --s1:  8px;
  --s2:  16px;
  --s3:  24px;
  --s4:  32px;
  --s5:  48px;
  --s6:  64px;
  --s7:  96px;
  --s8:  128px;

  /* Typography */
  --font-serif: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-sans:  'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-signature: 'Mrs Saint Delafield', cursive;
  --font-stack: var(--font-sans);
  --font-base:   16px;
  --line-height: 1.75;

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;

  /* Shadows */
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.14);

  /* Border radius */
  --radius-sm:  2px;
  --radius-md:  4px;
  --radius-lg:  8px;

  /* Z-index scale */
  --z-below:   -1;
  --z-base:     1;
  --z-above:    10;
  --z-sticky:   100;
  --z-overlay:  200;
  --z-modal:    300;
  --z-toast:    400;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */

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

html {
  font-size: var(--font-base);
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-stack);
  font-size: 1rem;
  line-height: var(--line-height);
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */

h1, h2, h3 {
  font-family: var(--font-sans);
  font-weight: 200;
  line-height: 1.12;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gold);
}

h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: -0.015em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  letter-spacing: 0;
}

/* Brand name — inherits from parent, no override */
.sc {
  font-variant: normal;
}

h4 {
  font-size: 1.125rem;
  letter-spacing: 0.02em;
}

p {
  margin-bottom: var(--s2);
  color: var(--color-text-light);
}

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

strong {
  font-weight: 600;
  color: var(--color-text);
}

.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--s2);
}

.lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-light);
}

blockquote {
  border-left: 3px solid var(--color-gold);
  padding-left: var(--s3);
  margin: var(--s4) 0;
  font-style: italic;
  color: var(--color-text-light);
}

/* ============================================================
   4. LAYOUT CONTAINERS
   ============================================================ */

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--s3);
  padding-right: var(--s3);
}

.container--narrow {
  max-width: 800px;
}

.container--wide {
  max-width: 1440px;
}

.section {
  padding-top: var(--s7);
  padding-bottom: var(--s7);
}

.section--sm {
  padding-top: var(--s5);
  padding-bottom: var(--s5);
}

.section--lg {
  padding-top: var(--s8);
  padding-bottom: var(--s8);
}

.section--warm {
  background-color: var(--color-bg-warm);
}

.section--gold-bg {
  background-color: var(--color-gold-bg);
}

.section--dark {
  background-color: var(--color-bg-dark);
  color: var(--color-white);
}

.section__header {
  text-align: center;
  margin-bottom: var(--s6);
}

.section__header h2 {
  margin-bottom: var(--s2);
}

.section__header p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   5. NAVIGATION
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(249, 246, 242, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: background 0.5s ease,
              border-color var(--transition-base),
              box-shadow var(--transition-base);
}

.site-header.is-scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* ---- Liquid glass header on homepage ---- */
.is-home .site-header {
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.is-home .site-header .nav-link {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  transition: color var(--transition-fast), text-shadow 0.5s ease;
}
.is-home .site-header .nav-link:hover {
  color: #ffffff;
}
.is-home .site-header .lang-dropdown__toggle {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.5);
}
.is-home .site-header .site-logo__img--gold {
  display: none;
}
.is-home .site-header .site-logo__img--white {
  display: block;
}

/* When scrolled on homepage, restore solid header */
.is-home .site-header.is-scrolled {
  background: rgba(249, 246, 242, 0.92);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  border-bottom-color: var(--color-border);
}
.is-home .site-header.is-scrolled .nav-link {
  color: var(--color-text);
  text-shadow: none;
}
.is-home .site-header.is-scrolled .nav-link:hover {
  color: var(--color-gold);
}
.is-home .site-header.is-scrolled .lang-dropdown__toggle {
  color: var(--color-text);
  border-color: var(--color-text-muted);
}
.is-home .site-header.is-scrolled .site-logo__img--gold {
  display: block;
}
.is-home .site-header.is-scrolled .site-logo__img--white {
  display: none;
}

/* Transparent header for dark hero pages — 1:1 with homepage */
.is-hero-dark .site-header {
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.is-hero-dark .site-header .nav-link {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  transition: color var(--transition-fast), text-shadow 0.5s ease;
}
.is-hero-dark .site-header .nav-link:hover { color: #fff; }
.is-hero-dark .site-header .lang-dropdown__toggle { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.5); }
.is-hero-dark .site-header .site-logo__img--gold { display: none; }
.is-hero-dark .site-header .site-logo__img--white { display: block; }
.is-hero-dark .site-header.is-scrolled {
  background: rgba(249, 246, 242, 0.92);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  border-bottom-color: var(--color-border);
}
.is-hero-dark .site-header.is-scrolled .nav-link { color: var(--color-text); text-shadow: none; }
.is-hero-dark .site-header.is-scrolled .nav-link:hover { color: var(--color-gold); }
.is-hero-dark .site-header.is-scrolled .lang-dropdown__toggle { color: var(--color-text); border-color: var(--color-text-muted); }
.is-hero-dark .site-header.is-scrolled .site-logo__img--gold { display: block; }
.is-hero-dark .site-header.is-scrolled .site-logo__img--white { display: none; }

/* Wedding hero — full viewport with text overlay */
.wedding-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
}
.wedding-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.wedding-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 40%),
    linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(30,25,20,0.1) 0%, rgba(183,152,91,0.08) 100%);
  pointer-events: none;
}
.wedding-hero__overlay--warm {
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, transparent 35%),
    linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 45%),
    linear-gradient(135deg, rgba(183,152,91,0.25) 0%, rgba(249,246,242,0.15) 50%, rgba(183,152,91,0.12) 100%);
}
.wedding-hero__content {
  position: absolute;
  bottom: 15%;
  left: 8%;
  z-index: 2;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: clamp(24px, 3vw, 40px) clamp(28px, 4vw, 56px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.wedding-hero__title {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: var(--s1);
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}
.wedding-hero__subtitle {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
}
.wedding-hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  animation: arrival-bounce 2.4s ease-in-out infinite;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,0.3));
  transition: color 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wedding-hero__scroll::before {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.7));
  display: block;
  margin-bottom: 6px;
}
.wedding-hero__scroll svg { width: 32px; height: 32px; stroke-width: 1; }
.wedding-hero__scroll:hover { color: #fff; }

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
  padding: 0 var(--s3);
}

/* Header 3-cell layout */
.header-cell--left {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}
.header-cell--center {
  justify-self: center;
}
.header-cell--right {
  display: flex;
  align-items: center;
  gap: var(--s2);
  justify-self: end;
}
.header-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--color-text-muted);
  color: var(--color-text-muted);
  transition: all 0.3s;
}
.header-social:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}
.is-home .header-social,
.is-hero-dark .header-social {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.35);
}
.is-home .header-social:hover,
.is-hero-dark .header-social:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.is-home .site-header.is-scrolled .header-social,
.is-hero-dark .site-header.is-scrolled .header-social {
  color: var(--color-text-muted);
  border-color: var(--color-border);
}
.is-home .site-header.is-scrolled .header-social:hover,
.is-hero-dark .site-header.is-scrolled .header-social:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: var(--z-above);
  margin: 0 var(--s3);
}

.site-logo__img {
  height: 28px;
  width: auto;
}
.site-logo__img--white {
  display: none;
}
.site-logo__img--footer {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.7);
}

.site-logo__text {
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
}

.site-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--s3);
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Shop CTA button in header */
.nav-shop-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 22px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: var(--color-gold);
  border: none;
  border-radius: 20px;
  transition: all 0.4s ease;
  flex-shrink: 0;
  margin-left: var(--s2);
  box-shadow: 0 2px 8px rgba(183, 152, 91, 0.25);
}
.nav-shop-btn:hover {
  background: var(--color-gold-dark);
  box-shadow: 0 4px 16px rgba(183, 152, 91, 0.35);
  transform: translateY(-1px);
}
.is-home .nav-shop-btn,
.is-hero-dark .nav-shop-btn {
  background: var(--color-gold);
  color: #fff;
}
.is-home .nav-shop-btn:hover,
.is-hero-dark .nav-shop-btn:hover {
  background: var(--color-gold-light);
}
.is-home .site-header.is-scrolled .nav-shop-btn,
.is-hero-dark .site-header.is-scrolled .nav-shop-btn {
  background: var(--color-gold);
  color: #fff;
}
.is-home .site-header.is-scrolled .nav-shop-btn:hover,
.is-hero-dark .site-header.is-scrolled .nav-shop-btn:hover {
  background: var(--color-gold-dark);
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition-fast),
              border-color var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-gold);
}

.nav-link.is-active,
.nav-link[aria-current="page"] {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

/* Language Dropdown */
.lang-dropdown {
  position: relative;
}
.lang-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: none;
  border: 1.5px solid var(--color-text-muted);
  border-radius: 50px;
  padding: 3px 10px 3px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-text);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  font-family: var(--font-sans);
}
.lang-dropdown__toggle:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.lang-dropdown__toggle svg {
  transition: transform 0.2s;
}
.lang-dropdown.is-open .lang-dropdown__toggle svg {
  transform: rotate(180deg);
}
.lang-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 52px;
  padding: 6px 0;
  z-index: 100;
}
.lang-dropdown.is-open .lang-dropdown__menu {
  display: block;
}
.lang-dropdown__link {
  display: block;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-text);
  text-decoration: none;
  text-align: center;
  transition: background 0.15s, color 0.15s;
}
.lang-dropdown__link:hover {
  background: var(--color-bg-warm);
  color: var(--color-gold);
}

/* Old lang-switcher (kept for reference / mobile) */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-switcher__item {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 2px 4px;
  transition: color var(--transition-fast);
}
.lang-switcher__item:hover { color: var(--color-text); }
.lang-switcher__item.is-active { color: var(--color-gold); }
.lang-switcher__divider { color: var(--color-border); font-size: 12px; }

/* Hamburger Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  z-index: var(--z-above);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--color-text);
  transition: transform var(--transition-base),
              opacity var(--transition-base);
  transform-origin: center;
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: var(--color-bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s4);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}
.nav-mobile__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  padding: 8px;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.nav-mobile__close:hover {
  opacity: 1;
}

.nav-mobile.is-open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s3);
  text-align: center;
}

.nav-mobile__link {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: color var(--transition-fast);
}

.nav-mobile__link:hover,
.nav-mobile__link.is-active {
  color: var(--color-gold);
}

.nav-mobile__shop {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--s4);
  padding: 10px 28px;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.nav-mobile__shop:hover {
  background: var(--color-gold);
  color: #fff;
}
.nav-mobile__lang {
  display: flex;
  gap: var(--s2);
  margin-top: var(--s4);
}
.nav-mobile__social {
  display: flex;
  gap: var(--s3);
  margin-top: var(--s4);
  color: var(--color-text-muted);
}
.nav-mobile__social a {
  color: var(--color-text-muted);
  transition: color 0.3s;
}
.nav-mobile__social a:hover {
  color: var(--color-gold);
}

/* ============================================================
   6. HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: var(--z-below);
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 10, 0, 0.10) 0%,
    rgba(20, 10, 0, 0.32) 55%,
    rgba(20, 10, 0, 0.60) 100%
  );
}

.hero__content {
  position: relative;
  z-index: var(--z-base);
  text-align: center;
  padding: var(--s4);
  max-width: 800px;
  margin: 0 auto;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(20, 10, 0, 0.4);
  margin-bottom: var(--s3);
  line-height: 1.1;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--color-gold-light);
  margin-bottom: var(--s5);
}

.hero__actions {
  display: flex;
  gap: var(--s2);
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: var(--s4);
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: hero-scroll-bounce 2s ease-in-out infinite;
}

.hero__scroll svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255, 255, 255, 0.7);
}

@keyframes hero-scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   7. SECTION LAYOUTS (HOME SECTIONS)
   ============================================================ */

/* Intro / About strip */
.section--intro {
  text-align: center;
}

.section--intro .section__header {
  margin-bottom: 0;
}

/* Split layout: text + image */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s6);
  align-items: center;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

.split__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.split__media:hover img {
  transform: scale(1.03);
}

.split__content {
  padding: var(--s3);
}

.split__content h2 {
  margin-bottom: var(--s3);
}

.split__content p {
  margin-bottom: var(--s3);
}

/* Section Events */
.section--events {
  background-color: var(--color-bg-warm);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
}

.section--events .section__footer {
  text-align: center;
  margin-top: var(--s5);
}

/* ============================================================
   8. EVENT CARDS
   ============================================================ */

.event-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--transition-base),
              box-shadow var(--transition-base);
}

.event-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(20, 10, 0, 0.08);
}

.event-card__image {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.event-card:hover .event-card__image img {
  transform: scale(1.04);
}

.event-card__inner {
  display: flex;
  flex-direction: row;
  padding: var(--s3);
  gap: var(--s3);
  flex: 1;
}

.event-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 52px;
  padding-top: 2px;
}

.event-card__day {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1;
}

.event-card__month {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.event-card__body {
  flex: 1;
  min-width: 0;
}

.event-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--color-text);
  margin-bottom: var(--s1);
  line-height: 1.25;
}

.event-card__desc {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: var(--s2);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s1);
  margin-bottom: var(--s2);
}

.event-card__time {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

.event-card__price {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  background: var(--color-gold-bg);
  border: 1px solid var(--color-gold-light);
  color: var(--color-gold-dark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
}

.event-card__seats {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  background: #f0f9f4;
  border: 1px solid #b8e6cc;
  color: #27ae60;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
}

.event-card__seats--few {
  background: #fff8f0;
  border-color: #ffd08a;
  color: #e67e22;
}

.event-card__sold-out {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  background: #fdf0ef;
  border: 1px solid #f0b8b3;
  color: var(--color-error);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
}

.event-card__cta {
  margin-top: auto;
  padding-top: var(--s2);
  text-align: right;
}

/* Event listing page filters */
.event-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1);
  margin-bottom: var(--s4);
}

.event-filter-btn {
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.event-filter-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.event-filter-btn.is-active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
}

.events-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s3);
}

.event-card--list {
  flex-direction: row;
}

.event-card--list .event-card__image {
  width: 220px;
  aspect-ratio: auto;
  flex-shrink: 0;
}

/* ============================================================
   9. SERVICE PILLARS GRID
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s3);
}

.service-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  display: block;
}

.service-card:hover .service-card__img {
  transform: scale(1.06);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 10, 0, 0.78) 0%,
    rgba(20, 10, 0, 0.18) 50%,
    rgba(20, 10, 0, 0.04) 100%
  );
  transition: background var(--transition-base);
}

.service-card:hover .service-card__overlay {
  background: linear-gradient(
    to top,
    rgba(20, 10, 0, 0.88) 0%,
    rgba(20, 10, 0, 0.48) 60%,
    rgba(20, 10, 0, 0.18) 100%
  );
}

.service-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--s4) var(--s3) var(--s3);
  z-index: var(--z-base);
}

.service-card__label {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--color-white);
  margin-bottom: 4px;
  line-height: 1.2;
}

.service-card__sub {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--s2);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition-base),
              transform var(--transition-base);
}

.service-card__cta svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  transition: transform var(--transition-fast);
}

.service-card:hover .service-card__cta {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover .service-card__cta svg {
  transform: translateX(4px);
}

/* ============================================================
   10. SHOP TEASER
   ============================================================ */

.shop-teaser {
  background-color: var(--color-bg-dark);
  color: var(--color-white);
}

.shop-teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.shop-teaser__media {
  position: relative;
  overflow: hidden;
}

.shop-teaser__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.shop-teaser:hover .shop-teaser__media img {
  transform: scale(1.04);
}

.shop-teaser__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s6) var(--s6);
}

.shop-teaser__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--s2);
}

.shop-teaser__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-white);
  margin-bottom: var(--s3);
  line-height: 1.2;
}

.shop-teaser__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--s5);
  line-height: 1.7;
}

/* ============================================================
   11. FORMS
   ============================================================ */

.form {
  max-width: 680px;
}

.form--centered {
  margin-left: auto;
  margin-right: auto;
}

.form__group {
  margin-bottom: var(--s3);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s2);
}

.form__label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 6px;
}

.form__required {
  color: var(--color-gold);
  margin-left: 2px;
}

.form__input,
.form__textarea,
.form__select {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition-fast),
              box-shadow var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(192, 157, 83, 0.12);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--color-text-muted);
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form__input--error,
.form__textarea--error,
.form__select--error {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08);
}

.form__error-msg {
  display: block;
  margin-top: 4px;
  font-size: 0.8125rem;
  color: var(--color-error);
}

.form__hint {
  display: block;
  margin-top: 4px;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.form__submit {
  margin-top: var(--s4);
}

.form__spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--color-white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.form.is-loading .form__spinner {
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form__success {
  padding: var(--s4);
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius-md);
  color: #166534;
  text-align: center;
}

.form__success h3 {
  font-size: 1.25rem;
  color: #166534;
  margin-bottom: var(--s1);
}

/* Checkbox / Radio */
.form__check {
  display: flex;
  align-items: flex-start;
  gap: var(--s1);
  cursor: pointer;
}

.form__check-input {
  margin-top: 3px;
  accent-color: var(--color-gold);
  flex-shrink: 0;
}

.form__check-label {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* ============================================================
   12. BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s1);
  min-height: 48px;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color var(--transition-fast),
              color var(--transition-fast),
              border-color var(--transition-fast),
              box-shadow var(--transition-fast),
              transform var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
}

.btn--primary:hover {
  background-color: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  box-shadow: 0 4px 12px rgba(192, 157, 83, 0.35);
}

.btn--outline {
  background-color: transparent;
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn--outline:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
}

.btn--outline-white {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--color-white);
}

.btn--outline-white:hover {
  background-color: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-text);
}

.btn--ghost {
  background-color: transparent;
  border-color: transparent;
  color: var(--color-gold);
  padding-left: 0;
  padding-right: 0;
  min-height: auto;
}

.btn--ghost:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.btn--sm {
  min-height: 36px;
  padding: 8px 18px;
  font-size: 12px;
}

.btn--lg {
  min-height: 56px;
  padding: 16px 36px;
  font-size: 14px;
}

.btn--full {
  width: 100%;
}

.btn:disabled,
.btn.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.btn--ics {
  background-color: transparent;
  border-color: var(--color-border);
  color: var(--color-text-light);
  font-size: 12px;
  min-height: 36px;
  padding: 6px 14px;
}

.btn--ics:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* ============================================================
   13. FOOTER
   ============================================================ */

.site-footer {
  background-color: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.75);
  padding-top: var(--s7);
  padding-bottom: 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--s6);
  padding-bottom: var(--s6);
}

.footer__brand .site-logo {
  margin: 0 0 var(--s3) 0;
  justify-content: flex-start;
}
.footer__brand p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 0;
}

.footer__col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--s2);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: var(--s1);
}

.footer__nav-link {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition-fast);
  line-height: 1.8;
}

.footer__nav-link:hover {
  color: var(--color-gold-light);
}
.footer__nav--legal {
  margin-top: var(--s2);
  padding-top: var(--s2);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer__nav--legal .footer__nav-link {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-style: normal;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s1);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.footer__contact-item svg {
  flex-shrink: 0;
  margin-top: 3px;
  stroke: var(--color-gold);
}

.footer__social {
  display: flex;
  gap: var(--s2);
  margin-top: var(--s3);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.55);
  transition: border-color var(--transition-fast),
              color var(--transition-fast);
}

.footer__social-link:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--s3) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s2);
}

.footer__copyright {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__legal {
  display: flex;
  gap: var(--s3);
}

.footer__legal-link {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition-fast);
}

.footer__legal-link:hover {
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   14. PAGE-SPECIFIC: EVENT DETAIL
   ============================================================ */

/* Event hero — elegant full-width header */
.event-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
}
.event-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.event-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, transparent 40%),
    linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
  pointer-events: none;
}
.event-hero__content {
  position: absolute;
  bottom: 12%;
  left: 8%;
  z-index: 2;
  color: #fff;
  max-width: 600px;
}
.event-hero__category {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: var(--s1);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 4px 14px;
  border-radius: 20px;
}
.event-hero__title {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: var(--s1);
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.event-hero__subtitle {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--s2);
}
.event-hero__meta {
  display: flex;
  gap: var(--s3);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
}
.event-hero__meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-hero + .ev {
  padding-top: var(--s5);
}

/* Event detail hero — smaller title */
.wedding-hero--event .wedding-hero__title {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}
.wedding-hero--event .wedding-hero__subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
}

/* Event detail — clean layout */
.ev {
  padding: var(--s6) var(--s3) var(--s7);
  max-width: 1100px;
  margin: 0 auto;
}
.ev__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--s6);
  align-items: start;
}
.ev__main { min-width: 0; }
.ev__body {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--color-text-light);
}
.ev__body h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin-top: var(--s4);
  margin-bottom: var(--s2);
}
.ev__body p { margin-bottom: var(--s2); }
.ev__body ul,
.ev__body.richtext ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--s3);
}
.ev__body ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
}
.ev__body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-gold);
}
.ev__gallery {
  columns: 3;
  column-gap: 6px;
  margin-top: var(--s5);
}

/* Sidebar card */
.ev__aside {
  position: sticky;
  top: calc(72px + var(--s3));
}
.ev__card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--s4);
  box-shadow: var(--shadow-sm);
}
.ev__card-date {
  display: flex;
  align-items: center;
  gap: var(--s2);
  padding-bottom: var(--s3);
  margin-bottom: var(--s3);
  border-bottom: 1px solid var(--color-border);
}
.ev__card-day {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
  color: var(--color-gold);
}
.ev__card-month {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text);
}
.ev__card-weekday {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}
.ev__card-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-bottom: var(--s2);
}
.ev__card-row svg {
  color: var(--color-gold);
  flex-shrink: 0;
}
.ev__card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-top: var(--s2);
  margin-top: var(--s1);
  border-top: 1px solid var(--color-border);
}
.ev__card-price-num {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-text);
}
.ev__card-price-unit {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}
.ev__card-avail {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-success);
  margin-top: var(--s1);
}
.ev__card-avail--out {
  color: var(--color-error);
}
.ev__card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--s3);
  padding-top: var(--s3);
  border-top: 1px solid var(--color-border);
}
.ev__btn-ics {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--color-gold);
  cursor: pointer;
  padding: 0;
  transition: color 0.3s;
}
.ev__btn-ics:hover { color: var(--color-gold-dark); }
.ev__share {
  display: flex;
  gap: 12px;
}
.ev__share a,
.ev__share button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: none;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.ev__share a:hover,
.ev__share button:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* Registration form */
.ev__register {
  margin-top: var(--s4);
  background: var(--color-bg-dark);
  border-radius: var(--radius-lg);
  padding: var(--s4);
}
.ev__register-title {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: var(--s3);
}
.ev__form .wedding-form__field { margin-bottom: var(--s2); }
.ev__form .wedding-form__row { margin-bottom: var(--s2); }

/* Time slot selector */
.wedding-form__field--slots {
  margin-bottom: var(--s2);
}
.wedding-form__slot-label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-gold);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.wedding-form__slots {
  display: flex;
  gap: 12px;
}
.wedding-form__slot {
  flex: 1;
  cursor: pointer;
}
.wedding-form__slot input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.wedding-form__slot-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 12px;
  border: 1px solid rgba(192,157,83,0.3);
  border-radius: 6px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}
.wedding-form__slot-box strong {
  font-size: 0.95rem;
  color: #fff;
}
.wedding-form__slot-box small {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}
.wedding-form__slot input:checked + .wedding-form__slot-box {
  border-color: var(--color-gold);
  background: rgba(192,157,83,0.12);
}
.wedding-form__slot:hover .wedding-form__slot-box {
  border-color: rgba(192,157,83,0.6);
}
.wedding-form__slot--disabled {
  pointer-events: none;
  opacity: 0.45;
}
.wedding-form__slot-sold {
  color: #e74c3c !important;
  font-weight: 600;
}

/* Event shop promo */
.ev__shop-promo {
  background: #1a1a1a;
  padding: var(--s6) var(--s3);
}
.ev__shop-promo-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
  align-items: center;
}
@media (min-width: 768px) {
  .ev__shop-promo-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--s6);
  }
}
.ev__shop-promo-media img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.ev__shop-promo-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}
.ev__shop-promo-title {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 16px;
}
.ev__shop-promo-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.ev__shop-promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border: 1.5px solid var(--color-gold);
  border-radius: 2px;
  color: var(--color-gold);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.ev__shop-promo-btn:hover {
  background: var(--color-gold);
  color: #1a1a1a;
}

/* Related events */
.ev__related {
  background: var(--color-bg-warm);
  padding: var(--s6) var(--s3);
}
.ev__related-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.ev__related-title {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  letter-spacing: 0.03em;
  margin-bottom: var(--s4);
}
.ev__related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--s3);
}
.ev__related-card {
  text-decoration: none;
  color: var(--color-text);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.3s, transform 0.3s;
}
.ev__related-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.ev__related-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.ev__related-info {
  padding: var(--s2) var(--s3) var(--s3);
}
.ev__related-date {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 4px;
}
.ev__related-info h3 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.9375rem;
  margin-bottom: 4px;
}
.ev__related-price {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Mobile */
@media (max-width: 767px) {
  .ev__layout {
    grid-template-columns: 1fr;
  }
  .ev__aside {
    position: static;
  }
  .ev__gallery {
    columns: 2;
  }
}

.event-detail {
  padding-top: var(--s6);
  padding-bottom: var(--s7);
}

.event-detail__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--s5);
  align-items: start;
}

.event-detail__main {
  min-width: 0;
}

.event-detail__header {
  margin-bottom: var(--s4);
}

.event-detail__header .eyebrow {
  margin-bottom: var(--s2);
}

.event-detail__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: var(--s3);
}

.event-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  align-items: center;
  padding-bottom: var(--s3);
  border-bottom: 1px solid var(--color-border);
}

.event-detail__hero-image {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  margin-bottom: var(--s4);
}

.event-detail__body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-text-light);
}

.event-detail__body h3 {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-text);
  margin-top: var(--s4);
  margin-bottom: var(--s2);
}

.event-detail__body p {
  margin-bottom: var(--s3);
}

.event-detail__body ul {
  list-style: none;
  margin-bottom: var(--s3);
}

.event-detail__body ul li {
  position: relative;
  padding-left: var(--s3);
  margin-bottom: var(--s1);
  color: var(--color-text-light);
}

.event-detail__body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}

/* Sidebar / Booking Box */
.event-sidebar {
  position: sticky;
  top: calc(72px + var(--s3));
}

.event-booking-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: var(--s4);
  box-shadow: var(--shadow-md);
}

.event-booking-box__date {
  display: flex;
  align-items: center;
  gap: var(--s2);
  margin-bottom: var(--s3);
  padding-bottom: var(--s3);
  border-bottom: 1px solid var(--color-border);
}

.event-booking-box__day-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1;
}

.event-booking-box__day-info {
  display: flex;
  flex-direction: column;
}

.event-booking-box__day-label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.event-booking-box__time-label {
  font-size: 1rem;
  color: var(--color-text);
}

.event-booking-box__price-row {
  display: flex;
  align-items: baseline;
  gap: var(--s1);
  margin-bottom: var(--s3);
}

.event-booking-box__price {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--color-text);
}

.event-booking-box__price-unit {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.event-booking-box__availability {
  margin-bottom: var(--s3);
}

.event-booking-box__cta {
  width: 100%;
  margin-bottom: var(--s2);
}

.event-booking-box__ics {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Gallery */
.event-gallery {
  margin-top: var(--s5);
}

.event-gallery__title {
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--s3);
}

.event-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s1);
}

.event-gallery__item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.event-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.event-gallery__item:hover img {
  transform: scale(1.06);
}

/* Mobile Sticky CTA */
.event-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: var(--s2) var(--s3);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
}

.event-sticky-cta__info {
  flex: 1;
}

.event-sticky-cta__date {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.event-sticky-cta__price {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--color-text);
}

/* ============================================================
   15. PAGE-SPECIFIC: CMS PAGES
   ============================================================ */

.page-hero {
  position: relative;
  height: 50vh;
  min-height: 360px;
  max-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero__media {
  position: absolute;
  inset: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.page-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 10, 0, 0.08) 0%,
    rgba(20, 10, 0, 0.60) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: var(--z-base);
  padding: var(--s5) var(--s3);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--color-white);
  text-shadow: 0 2px 16px rgba(20, 10, 0, 0.3);
  margin-bottom: 0;
}

.page-hero__subtitle {
  font-size: 1.125rem;
  color: var(--color-gold-light);
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-top: var(--s1);
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--s6) var(--s3);
}

.page-content h2 {
  margin-top: var(--s5);
  margin-bottom: var(--s2);
}

.page-content h3 {
  margin-top: var(--s4);
  margin-bottom: var(--s2);
}

.page-content p {
  margin-bottom: var(--s3);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.page-content ul,
.page-content ol {
  margin-bottom: var(--s3);
  padding-left: var(--s3);
}

.page-content ul {
  list-style: none;
  padding-left: 0;
}

.page-content ul li {
  position: relative;
  padding-left: var(--s3);
  margin-bottom: var(--s1);
  color: var(--color-text-light);
  font-size: 1.0625rem;
}

.page-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}

.page-content ol {
  list-style: decimal;
  color: var(--color-text-light);
  font-size: 1.0625rem;
}

.page-content ol li {
  margin-bottom: var(--s1);
}

/* Packages / Features grid on CMS pages */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
  margin: var(--s5) 0;
}

.package-card {
  border: 1px solid var(--color-border);
  padding: var(--s4);
  position: relative;
}

.package-card--featured {
  border-color: var(--color-gold);
}

.package-card--featured::before {
  content: attr(data-label);
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 12px;
  white-space: nowrap;
}

.package-card__title {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: var(--s1);
}

.package-card__price {
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-gold);
  margin-bottom: var(--s3);
}

.package-card__features {
  list-style: none;
  padding: 0;
  margin-bottom: var(--s4);
}

.package-card__features li {
  padding: 6px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

.package-card__features li:last-child {
  border-bottom: none;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s4);
  margin: var(--s5) 0;
}

.testimonial {
  padding: var(--s4);
  background: var(--color-bg-warm);
  border-top: 3px solid var(--color-gold);
}

.testimonial__text {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--s3);
}

.testimonial__author {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================================
   16. FLASH MESSAGES
   ============================================================ */

.flash {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
  padding: var(--s2) var(--s3);
  font-size: 0.9375rem;
  position: relative;
}

.flash--success {
  background: #f0fdf4;
  border-left: 4px solid var(--color-success);
  color: #166534;
}

.flash--error {
  background: #fef2f2;
  border-left: 4px solid var(--color-error);
  color: #991b1b;
}

.flash--warning {
  background: #fffbeb;
  border-left: 4px solid #f59e0b;
  color: #92400e;
}

.flash--info {
  background: var(--color-gold-bg);
  border-left: 4px solid var(--color-gold);
  color: #7c5c1e;
}

.flash__message {
  flex: 1;
}

.flash__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
  opacity: 0.6;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: opacity var(--transition-fast);
}

.flash__close:hover {
  opacity: 1;
}

.flash__close svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

/* ============================================================
   16b. TERRITORY C — HOMEPAGE: "HEUBODEN"
   The place itself, translated.
   Near/far compositional rhythm. Variable container widths.
   ============================================================ */

/* ---- Homepage & hero pages: header overlaps content ---- */
.is-home .site-header,
.is-hero-dark .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.is-home #main-content,
.is-hero-dark #main-content {
  padding-top: 0;
}

/* ---- Arrival: full-bleed slider, no overlay, no text ---- */
.arrival {
  width: 100%;
  height: 100vh;
  min-height: 480px;
  overflow: hidden;
  position: relative;
}
.arrival__slider {
  width: 100%;
  height: 100%;
  position: relative;
}
.arrival__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 3s ease;
}
.arrival__img--active {
  opacity: 1;
}
.arrival__slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, transparent 120px),
    linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 120px),
    linear-gradient(to bottom, rgba(30, 25, 20, 0.15) 0%, rgba(30, 25, 20, 0.05) 40%, rgba(183, 152, 91, 0.12) 100%);
  pointer-events: none;
  z-index: 1;
}
.arrival__nav {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: var(--z-above);
}
/* Slider arrows */
.arrival__prev,
.arrival__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: var(--z-above);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 16px;
  transition: color 0.3s ease;
}
.arrival__prev svg,
.arrival__next svg {
  width: 20px;
  height: 72px;
}
.arrival__prev:hover,
.arrival__next:hover {
  color: rgba(255, 255, 255, 1);
}
.arrival__prev { left: 24px; }
.arrival__next { right: 24px; }

/* Scroll down indicator */
.arrival__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-above);
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  animation: arrival-bounce 2.4s ease-in-out infinite;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,0.3));
  transition: color 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.arrival__scroll::before {
  content: '';
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.7));
  display: block;
  margin-bottom: 6px;
}
.arrival__scroll:hover {
  color: #fff;
}
.arrival__scroll svg {
  width: 36px;
  height: 36px;
  stroke-width: 1;
}
.arrival__scroll:hover {
  color: #ffffff;
}
@keyframes arrival-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ---- Brand Intro: centered, full width, pictogram bg ---- */
.brand-intro {
  padding: var(--s7) var(--s3) var(--s5);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.brand-intro::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -190px;
  transform: translateY(-50%);
  width: 900px;
  height: 900px;
  background: url('/heuboden/assets/img/pgram.svg') center / contain no-repeat;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.brand-intro__row,
.brand-intro__discover {
  position: relative;
  z-index: 1;
}
.brand-intro__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.brand-intro__name {
  font-family: var(--font-sans);
  font-size: clamp(3.2rem, 8vw, 6rem);
  font-weight: 200;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--color-gold);
  margin-bottom: var(--s3);
  text-transform: uppercase;
}
.brand-intro__place {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ---- Brand intro: two-column with social ---- */
.brand-intro__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 180px;
  padding: 0 6%;
}

/* Social icons — right-aligned, circled */
.brand-intro__social {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-shrink: 0;
}
.brand-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 50%;
  border: 1px solid var(--color-gold-muted);
  color: var(--color-gold);
  text-decoration: none;
  flex-shrink: 0;
  transition: border-color 0.5s ease, color 0.5s ease, box-shadow 0.5s ease, transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.brand-social__link svg {
  width: 36px;
  height: 36px;
}
.brand-social__link:hover {
  color: var(--color-gold-dark);
  border-color: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(183, 152, 91, 0.12);
  transform: translateY(-3px);
}
.brand-social__link--shop {
  width: auto;
  border-radius: 40px;
  padding: 0 20px;
  height: 80px;
}
.brand-social__badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--color-gold);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 10px;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(183, 152, 91, 0.3);
}
.brand-social__link--shop {
  position: relative;
}
.brand-social__link--shop img {
  height: 36px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.5s ease;
}
.brand-social__link--shop:hover img {
  opacity: 1;
}

/* Discover more — full width centered */
.brand-intro__discover {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: var(--s5);
  text-decoration: none;
  color: var(--color-gold);
  animation: discover-bounce 2.8s ease-in-out infinite;
}
.brand-intro__discover-text {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.brand-intro__discover svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 1px 4px rgba(183,152,91,0.3));
}
@keyframes discover-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ---- Section discover: reusable scroll arrow between sections ---- */
.section-discover {
  padding: 0;
  margin-top: calc(-1 * var(--s3));
  margin-bottom: var(--s2);
  text-align: center;
}

/* ---- About spread: image left, text right ---- */
.about-spread {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
  padding: var(--s6) 0;
  align-items: center;
}
.about-spread__text {
  padding: 0 var(--s3);
  max-width: 540px;
}
.about-spread__img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.about-spread__heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--color-gold);
  margin-bottom: var(--s3);
  letter-spacing: 0.04em;
}
.about-spread__body {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--color-text-light);
  margin-bottom: var(--s2);
}
.about-spread__signature {
  margin-top: var(--s3);
  font-family: var(--font-signature);
  font-size: 3.2rem;
  color: var(--color-gold);
  text-align: right;
}

/* ---- Essence: one image, one thought ---- */
.essence {
  padding: var(--s6) 0 var(--s5);
}
.essence__figure {
  margin: 0;
  position: relative;
}
.essence__img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  object-position: center 40%;
}
.essence__caption {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-text-light);
  max-width: 480px;
  padding: var(--s4) var(--s3) 0;
  margin-left: auto;
  margin-right: 8%;
}

/* ---- Voice: family text, right-aligned against silence ---- */
.voice {
  padding: var(--s4) var(--s3) var(--s7);
}
.voice__inner {
  max-width: 420px;
  margin-left: auto;
  margin-right: 8%;
}
.voice__text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-text-light);
}
.voice__signature {
  margin-top: var(--s3);
  font-family: var(--font-signature);
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  color: var(--color-text-muted);
}

/* ---- Feature: primary service, dominant scale ---- */
.feature {
  padding: var(--s7) 0 var(--s5);
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 6%;
  padding-right: 6%;
}
.feature__img-link {
  display: block;
  overflow: hidden;
  margin-bottom: var(--s4);
  position: relative;
}
.feature__img-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4) url('../img/heuboden-icon.svg') center center / 56px auto no-repeat;
  opacity: 0;
  transition: opacity 3s ease;
  z-index: 2;
  pointer-events: none;
}
.feature__img-link:hover::before {
  opacity: 1;
}
.feature__img-link > .feature__img {
  width: 100%;
  aspect-ratio: 21 / 10;
  object-fit: cover;
  object-position: center bottom;
  filter: grayscale(0%);
  transform: scale(1) rotate(0deg);
  will-change: filter, transform;
  transition: opacity var(--transition-slow), filter 2.5s ease, transform 4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.feature__img-link:hover .feature__img {
  filter: grayscale(100%);
  transform: scale(1.12) rotate(2.5deg);
}
.feature__body {
  max-width: 520px;
  margin-left: 8%;
}
.feature__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--s1);
}
.feature__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-gold);
  margin-left: var(--s3);
  transition: color var(--transition-fast);
}
.feature__cta:hover {
  color: var(--color-gold-dark);
}
.feature__cta svg {
  transition: transform 0.3s ease;
}
.feature__cta:hover svg {
  transform: translateX(4px);
}

.feature__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: var(--s3);
}

/* ---- Feature description ---- */
.feature__desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-light);
  max-width: 420px;
  margin-bottom: var(--s3);
}

/* ---- Secondary services: simpler, quieter ---- */
.secondary {
  padding: var(--s5) 0 var(--s6);
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 6%;
  padding-right: 6%;
}
.secondary__spread {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s3);
  margin-bottom: var(--s6);
}
.secondary__img-link {
  display: block;
  overflow: hidden;
  position: relative;
}
.secondary__img-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(160,150,120,0.25) 0%, rgba(220,225,230,0.3) 100%);
  pointer-events: none;
  z-index: 1;
}
.secondary__img-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4) url('../img/heuboden-icon.svg') center center / 56px auto no-repeat;
  opacity: 0;
  transition: opacity 3s ease;
  z-index: 3;
  pointer-events: none;
}
.secondary__img-link:hover::before {
  opacity: 1;
}
.secondary__img-link > img[loading] {
  width: 100%;
  aspect-ratio: 5 / 2;
  object-fit: cover;
  filter: grayscale(0%);
  transform: scale(1) rotate(0deg);
  will-change: filter, transform;
  transition: opacity var(--transition-slow), filter 2.5s ease, transform 4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.secondary__img-link:hover img {
  filter: grayscale(100%);
  transform: scale(1.12) rotate(2.5deg);
}
.secondary__text {
  max-width: 480px;
  margin-left: 8%;
}
.secondary__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: var(--s1);
}
.secondary__title a { color: inherit; text-decoration: none; }
.secondary__desc {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.75;
}
.secondary__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}
.secondary__card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.secondary__card-img {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin-bottom: var(--s2);
}
.secondary__card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(160,150,120,0.25) 0%, rgba(220,225,230,0.3) 100%);
  pointer-events: none;
  z-index: 1;
}
.secondary__card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4) url('../img/heuboden-icon.svg') center center / 48px auto no-repeat;
  opacity: 0;
  transition: opacity 3s ease;
  z-index: 3;
  pointer-events: none;
}
.secondary__card:hover .secondary__card-img::before {
  opacity: 1;
}
.secondary__card-img > img[loading] {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: grayscale(0%);
  transform: scale(1) rotate(0deg);
  will-change: filter, transform;
  transition: opacity var(--transition-slow), filter 2.5s ease, transform 4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.secondary__card:hover .secondary__card-img > img {
  filter: grayscale(100%);
  transform: scale(1.12) rotate(2.5deg);
}
.secondary__card h3 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.25rem;
}
.secondary__card-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-light);
  margin-top: 4px;
}
.secondary__card .feature__cta {
  margin-top: var(--s1);
}

/* ---- Editorial: left-aligned body text for subpages ---- */
.editorial {
  padding: var(--s4) var(--s3) var(--s6);
}
.editorial__text {
  max-width: 620px;
  margin-left: 8%;
}
.editorial__text .richtext {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-text-light);
}
.editorial__text .richtext p {
  margin-bottom: 1.2em;
}
.editorial__text .richtext h2,
.editorial__text .richtext h3 {
  font-family: var(--font-serif);
  font-weight: 300;
  margin-top: var(--s4);
  margin-bottom: var(--s2);
  color: var(--color-text);
}

/* ---- Helen Pfaff section ---- */
.helen-section {
  padding: var(--s6) var(--s3);
  background: var(--color-bg-warm);
}
.helen-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.helen-section__img img {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}
.helen-section__title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: var(--s1);
}
.helen-section__subtitle {
  font-family: var(--font-sans);
  font-weight: 200;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-gold);
  margin-bottom: var(--s3);
}
.helen-section__body {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--color-text-light);
  margin-bottom: var(--s3);
}
.helen-section__services {
  list-style: none;
  padding: 0;
  margin-bottom: var(--s4);
}
.helen-section__services li {
  font-size: 0.875rem;
  color: var(--color-text-light);
  padding: 6px 0;
  border-bottom: 1px solid var(--color-border);
}
.helen-section__services li:last-child {
  border-bottom: none;
}

/* Weddings content — text left, hex grid right */
.weddings-content {
  padding: var(--s5) var(--s3) var(--s6);
}
.weddings-content__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
  margin-left: 8%;
}
.weddings-content__left .page-intro__title {
  margin-bottom: var(--s2);
}
.weddings-content__left .page-intro__subtitle {
  margin-bottom: var(--s4);
}
.weddings-content__text {
  max-width: 480px;
}
.weddings-discover {
  margin-top: var(--s5);
}
.weddings-content__text .richtext {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--color-text-light);
}
/* Organic masonry gallery */
.masonry-grid {
  columns: 5;
  column-gap: 6px;
}
.masonry-grid--3col {
  columns: 3;
  column-gap: 10px;
}
.masonry-grid--3col .masonry-item {
  margin-bottom: 10px;
}
.masonry-grid--4col {
  columns: 4;
  column-gap: 8px;
}
.masonry-grid--4col .masonry-item {
  margin-bottom: 8px;
}
.masonry-item {
  display: block;
  margin-bottom: 6px;
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  line-height: 0;
  text-decoration: none;
}
.masonry-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: filter 1.2s ease, transform 1.2s ease;
}
.masonry-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  transform: translate(-50%, -50%) scale(0.7);
  background: url('../img/heuboden-icon-white.svg') center / contain no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
  z-index: 2;
}
.masonry-item:hover img {
  filter: grayscale(100%) brightness(0.7);
  transform: scale(1.03);
}
.masonry-item:hover::after {
  opacity: 0.8;
  transform: translate(-50%, -50%) scale(1);
}

/* Helen layout — text left, masonry right */
.helen-section__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
  max-width: 1100px;
  margin: 0 auto;
}
.helen-section__photos {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.helen-section__photo-main {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.helen-section__photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s2);
}
.helen-section__photo-pair img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

/* Helen accordion */
.helen-accordion {
  margin-bottom: var(--s4);
}
.helen-accordion__item {
  border-bottom: 1px solid var(--color-border);
}
.helen-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
}
.helen-accordion__trigger::-webkit-details-marker {
  display: none;
}
.helen-accordion__trigger::after {
  content: '+';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-gold);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.helen-accordion__trigger:hover::after {
  background: var(--color-gold-dark);
}
details[open] .helen-accordion__trigger::after {
  content: '−';
}
.helen-accordion__content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease, padding 0.5s ease;
  padding: 0;
}
details[open] .helen-accordion__content {
  opacity: 1;
  padding-bottom: 16px;
}
.helen-accordion__content p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

.helen-section__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3);
  max-width: 1100px;
  margin: var(--s5) auto 0;
}
.helen-section__gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

/* ---- PDF Showcase & Flipbook ---- */
.pdf-showcase {
  padding: var(--s7) var(--s3);
  background: var(--color-bg-warm);
}
.pdf-showcase__inner {
  max-width: 900px;
  margin: 0 auto;
}
.pdf-showcase__header {
  text-align: center;
  margin-bottom: var(--s6);
}
.pdf-showcase__title {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: 0.03em;
  margin-bottom: var(--s1);
}
.pdf-showcase__subtitle {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: 1rem;
  color: var(--color-text-light);
}
.pdf-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
}
.pdf-card {
  text-align: center;
}
.pdf-card__preview {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: var(--s3);
  cursor: pointer;
  transition: box-shadow 0.4s, transform 0.4s;
}
.pdf-card__preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 1;
}
.pdf-card__preview-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 2;
  white-space: nowrap;
}
.pdf-card__preview:hover::after,
.pdf-card__preview:hover .pdf-card__preview-label {
  opacity: 1;
}
.pdf-card__preview:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pdf-card__flipbook {
  width: 100%;
  height: 100%;
}
.pdf-card__canvas {
  width: 100%;
  height: auto;
  display: block;
}
.pdf-card__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.pdf-card__open-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--color-gold);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s;
}
.pdf-card__open-btn:hover {
  color: var(--color-gold-dark);
}
.pdf-card__title {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: var(--s1);
}
.pdf-card__download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-decoration: none;
  transition: color 0.3s;
}
.pdf-card__download:hover {
  color: var(--color-gold-dark);
}

/* Flipbook Modal */
.flipbook-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
}
.flipbook-modal.is-open {
  display: flex;
}
.flipbook-modal__inner {
  position: relative;
  width: 90vw;
  max-width: 1000px;
  height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flipbook-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
  transition: color 0.3s;
}
.flipbook-modal__close:hover { color: #fff; }
.flipbook-modal__book {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  overflow: hidden;
}
.flipbook-modal__book canvas {
  max-width: 100%;
  max-height: 100%;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  border-radius: 4px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.flipbook-modal__book canvas.flip-left {
  animation: flipLeft 0.6s ease;
}
.flipbook-modal__book canvas.flip-right {
  animation: flipRight 0.6s ease;
}
@keyframes flipLeft {
  0% { transform: perspective(1200px) rotateY(0); }
  50% { transform: perspective(1200px) rotateY(-15deg) scale(0.95); }
  100% { transform: perspective(1200px) rotateY(0); }
}
@keyframes flipRight {
  0% { transform: perspective(1200px) rotateY(0); }
  50% { transform: perspective(1200px) rotateY(15deg) scale(0.95); }
  100% { transform: perspective(1200px) rotateY(0); }
}
.flipbook-modal__controls {
  display: flex;
  align-items: center;
  gap: var(--s4);
  padding: var(--s3) 0;
}
.flipbook-modal__prev,
.flipbook-modal__next {
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: all 0.3s;
}
.flipbook-modal__prev:hover,
.flipbook-modal__next:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.flipbook-modal__page {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  min-width: 60px;
  text-align: center;
}

@media (max-width: 767px) {
  .pdf-showcase__grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ---- Shop CTA — premium banner ---- */
.shop-cta {
  background: var(--color-bg-dark);
  padding: var(--s7) var(--s3);
  overflow: hidden;
}
.shop-cta__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s6);
  align-items: center;
}
.shop-cta__media {
  position: relative;
}
.shop-cta__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.shop-cta__eyebrow {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--s2);
}
.shop-cta__title {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  letter-spacing: 0.03em;
  margin-bottom: var(--s2);
}
.shop-cta__desc {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--s4);
  max-width: 400px;
}
.shop-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-gold);
  color: var(--color-bg-dark);
  border: none;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s ease;
}
.shop-cta__btn:hover {
  background: var(--color-gold-light);
  transform: translateX(4px);
}
.shop-cta__btn svg {
  transition: transform 0.4s ease;
}
.shop-cta__btn:hover svg {
  transform: translateX(4px);
}
@media (max-width: 767px) {
  .shop-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .shop-cta__media img {
    max-width: 320px;
    margin: 0 auto;
  }
  .shop-cta__desc {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---- Wedding inquiry — luxury form ---- */
.wedding-inquiry {
  background: var(--color-bg-dark);
  color: #e8e0d4;
  padding: var(--s8) var(--s3);
  position: relative;
  overflow: hidden;
}
.wedding-inquiry::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--color-gold));
}
.wedding-inquiry__inner {
  max-width: 720px;
  margin: 0 auto;
}
.wedding-inquiry__header {
  text-align: center;
  margin-bottom: var(--s6);
}
.wedding-inquiry__ornament {
  display: block;
  color: var(--color-gold);
  font-size: 2rem;
  letter-spacing: 0.5em;
  margin-bottom: var(--s3);
  opacity: 0.6;
}
.wedding-inquiry__title {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: var(--s2);
}
.wedding-inquiry__subtitle {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-gold-light);
  line-height: 1.6;
}

/* Floating label fields */
.wedding-form__field {
  position: relative;
  flex: 1;
}
.wedding-form__field input,
.wedding-form__field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 20px 0 8px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: #fff;
  outline: none;
  transition: border-color 0.4s ease;
}
.wedding-form__field textarea {
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 20px 14px 8px;
  resize: vertical;
  min-height: 100px;
}
.wedding-form__field label {
  position: absolute;
  top: 20px;
  left: 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  pointer-events: none;
  transition: all 0.3s ease;
}
.wedding-form__field textarea + label {
  left: 14px;
}
.wedding-form__field input:focus,
.wedding-form__field textarea:focus {
  border-color: var(--color-gold);
}
.wedding-form__field input:focus + label,
.wedding-form__field input:not(:placeholder-shown) + label,
.wedding-form__field textarea:focus + label,
.wedding-form__field textarea:not(:placeholder-shown) + label {
  top: 2px;
  font-size: 0.7rem;
  color: var(--color-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
/* Override floating-label for time-slot labels */
.wedding-form__field--slots .wedding-form__slot {
  position: static;
  top: auto;
  left: auto;
  font-size: inherit;
  color: inherit;
  pointer-events: auto;
  text-transform: none;
  letter-spacing: normal;
}

/* Couple row with ampersand */
.wedding-form__couple {
  display: flex;
  align-items: flex-end;
  gap: var(--s2);
  margin-bottom: var(--s4);
}
.wedding-form__ampersand {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--color-gold);
  padding-bottom: 6px;
  flex-shrink: 0;
  opacity: 0.7;
}

/* Form rows */
.wedding-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
  margin-bottom: var(--s4);
}

/* Checkbox services */
.wedding-form__checks {
  margin-bottom: var(--s5);
}
.wedding-form__checks-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--s2);
}
.wedding-form__checks-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1) var(--s3);
}
.wedding-form__check {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s ease;
}
.wedding-form__check:hover {
  color: #fff;
}
.wedding-form__check input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.wedding-form__check input[type="checkbox"]:checked {
  background: var(--color-gold);
  border-color: var(--color-gold);
}
.wedding-form__check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

/* Full width field */
.wedding-form__field--full {
  margin-bottom: var(--s5);
}

/* Submit button */
.wedding-form__submit {
  text-align: center;
}
.wedding-form__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  padding: 14px 40px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.5s ease;
}
.wedding-form__btn:hover {
  background: var(--color-gold);
  color: var(--color-bg-dark);
}
.wedding-form__btn svg {
  transition: transform 0.5s ease;
}
.wedding-form__btn:hover svg {
  transform: translateX(4px);
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  margin-bottom: var(--s3);
}
.form-consent input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--color-gold);
  flex-shrink: 0;
}
.contact-form__consent .form-consent {
  color: var(--color-text-muted);
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .wedding-form__couple {
    flex-direction: column;
    gap: 0;
  }
  .wedding-form__ampersand {
    align-self: center;
    padding: var(--s1) 0;
  }
  .wedding-form__row {
    grid-template-columns: 1fr;
    gap: var(--s3);
  }
}

/* ---- Instagram header above gallery ---- */
.insta-header {
  text-align: center;
  padding: var(--s5) var(--s3) var(--s3);
}
.insta-header__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.insta-header__icon {
  height: 40px;
  width: 40px;
}
.insta-header__logo {
  height: 100px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(64%) sepia(30%) saturate(600%) hue-rotate(10deg);
}
.insta-header__text {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: var(--s2);
}

/* ---- Gallery strip variant for subpages ---- */
.gallery-strip--page {
  padding: var(--s4) 0 var(--s6);
}
.gallery-strip--page .gallery-strip__track img {
  height: 240px;
}

/* ---- Programme filters ---- */
.programme__filters {
  display: flex;
  gap: var(--s2);
  margin-bottom: var(--s4);
  flex-wrap: wrap;
}
.programme__filter-btn {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: none;
  border: 1px solid var(--color-border);
  padding: 6px 16px;
  cursor: pointer;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}
.programme__filter-btn:hover {
  color: var(--color-text);
  border-color: var(--color-text-muted);
}
.programme__filter-btn.is-active {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

/* ---- Programme full page variant ---- */
.programme--full {
  background: var(--color-bg);
  border-top: none;
  border-bottom: none;
  padding: var(--s5) 0 var(--s7);
}
.programme--full .programme__inner {
  max-width: 960px;
}

/* ---- Programme time column ---- */
.programme__time {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

/* ---- Programme past events ---- */
.programme--past {
  background: var(--color-bg);
  border: none;
  padding: 0 0 var(--s6);
}
.programme--past .programme__inner {
  max-width: 960px;
}
.programme__toggle {
  border: none;
}
.programme__toggle-trigger {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.programme__toggle-trigger::-webkit-details-marker {
  display: none;
}
.programme__toggle-trigger::after {
  content: '▸';
  font-size: 0.75rem;
  color: var(--color-text-muted);
  transition: transform var(--transition-fast);
}
details[open] .programme__toggle-trigger::after {
  transform: rotate(90deg);
}
.programme__item--past {
  opacity: 0.6;
}
.programme__item--past:hover {
  opacity: 1;
}

/* ---- Shop zone compact (for subpages) ---- */
.shop-zone--compact {
  background: var(--color-bg-warm);
  padding: var(--s5) var(--s3);
}
.shop-zone--compact .shop-zone__inner {
  display: block;
  max-width: 620px;
  margin-left: 8%;
}

/* ---- Programme: typographic event listing ---- */
.programme {
  padding: var(--s7) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-warm);
}
.programme__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--s3);
}
.programme__heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: var(--s5);
  letter-spacing: -0.01em;
}
.programme__list {
  display: flex;
  flex-direction: column;
}
.programme__item {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: baseline;
  gap: var(--s3);
  padding: var(--s3) 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  color: inherit;
  transition: background var(--transition-fast);
}
.programme__item:last-child {
  border-bottom: none;
}
.programme__item:hover {
  background: rgba(183, 152, 91, 0.06);
}
.programme__date {
  display: flex;
  align-items: baseline;
  gap: 0.3em;
  white-space: nowrap;
}
.programme__day {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--color-text);
}
.programme__month {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}
.programme__year {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--color-text-muted);
}
.programme__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0;
  line-height: 1.3;
}
.programme__subtitle {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: 0.15em;
  margin-bottom: 0;
}
.programme__price {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.programme__arrow {
  font-size: 1rem;
  color: var(--color-gold);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.programme__item:hover .programme__arrow {
  opacity: 1;
}
.programme__footer {
  margin-top: var(--s4);
  text-align: right;
}

/* ---- Gallery Strip: horizontal scroll, visual texture ---- */
.gallery-strip {
  padding: var(--s5) 0;
  overflow: hidden;
}
.gallery-strip__track {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x proximity;
  padding: 0 var(--s3);
}
.gallery-strip__track::-webkit-scrollbar {
  display: none;
}
.gallery-strip__track img {
  height: 220px;
  width: auto;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: var(--radius-sm);
  scroll-snap-align: start;
}

/* ---- Services Spread: asymmetric near/far service pairs ---- */
.services-spread {
  padding: var(--s7) 0;
}

.spread {
  display: grid;
  gap: var(--s4);
  padding: 0 var(--s3);
  margin-bottom: var(--s7);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.spread--wide-left {
  grid-template-columns: 1fr;
}
.spread--wide-right {
  grid-template-columns: 1fr;
}
.spread__img-link {
  display: block;
  overflow: hidden;
}
.spread__img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.spread__img-link:hover .spread__img {
  transform: scale(1.02);
}
.spread__img--detail {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
}
.spread__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s3) 0;
}
.spread__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: var(--s2);
  letter-spacing: -0.01em;
}
.spread__title a {
  text-decoration: none;
  color: inherit;
}
.spread__title--sm {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-top: var(--s2);
}
.spread__desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-light);
  max-width: 420px;
  margin-bottom: var(--s3);
}
.spread--pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
}
.spread__half {
  max-width: 560px;
}

/* ---- Shop Zone: the warm gradient room ---- */
.shop-zone {
  background: linear-gradient(135deg, var(--color-bg-warm) 0%, var(--color-gold-bg) 100%);
  padding: var(--s7) var(--s3);
}
.shop-zone__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
  align-items: center;
}
.shop-zone__media img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.shop-zone__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: var(--s2);
}
.shop-zone__desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-light);
  max-width: 400px;
  margin-bottom: var(--s4);
}

/* ---- Closing: one sentence, one link ---- */
.closing {
  padding: 10rem var(--s3) 8rem;
  text-align: center;
}
.closing__inner {
  max-width: 560px;
  margin: 0 auto;
}
.closing__lead {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: var(--s4);
}
.closing__link {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-decoration: none;
  border-bottom: 1px solid var(--color-gold);
  padding-bottom: 3px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}
.closing__link:hover {
  color: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
}
.closing__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: var(--s3);
}
.closing__text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-text-light);
  margin-bottom: var(--s5);
}

/* ---- Contact page: identity left, form right ---- */
.contact-page {
  background: var(--color-bg-warm);
}
.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--s4) var(--s3) var(--s3);
  gap: var(--s4);
}
.contact-page__identity {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.contact-page__name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: var(--s2);
}
.contact-page__address {
  font-style: normal;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-text-light);
}
.contact-page__detail {
  font-size: 1rem;
  color: var(--color-text-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.contact-page__detail:hover {
  color: var(--color-gold);
}

/* Contact form */
.contact-page__form-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-bottom: var(--s4);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s3);
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form__field label {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
}
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-text);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
  padding: 10px 0;
  outline: none;
  transition: border-color var(--transition-fast);
  border-radius: 0;
  -webkit-appearance: none;
}
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-bottom-color: var(--color-gold);
}
.contact-form__field textarea {
  border: 1px solid var(--color-border);
  padding: 12px;
  resize: vertical;
  min-height: 120px;
}
.contact-form__field textarea:focus {
  border-color: var(--color-gold);
}
.contact-form__field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a7f74' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 20px;
}
.contact-form__submit {
  margin-top: var(--s2);
  margin-bottom: var(--s5);
  text-align: right;
}

/* Werder closing — personal touch */
.werder-closing {
  padding: var(--s6) 0;
  background: var(--color-bg-warm);
}
.werder-closing__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 6%;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
  align-items: center;
}
.werder-closing__photo {
  max-width: 360px;
  margin: 0 auto;
}
.werder-closing__photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.werder-closing__text {
  text-align: center;
}
.werder-closing__lead {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-text-light);
  margin-bottom: var(--s2);
}
.werder-closing__signature {
  font-family: var(--font-signature);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--color-gold);
  margin-top: var(--s4);
}

/* Partners section */
.partners {
  padding: var(--s6) 0;
  background: #fff;
}
.partners__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 6%;
  text-align: center;
}
.partners__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--color-gold);
  margin-bottom: var(--s1);
  letter-spacing: 0.04em;
}
.partners__subtitle {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: var(--s5);
}
.partners__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s3);
}
.partners__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s2);
  text-decoration: none;
  transition: transform 0.4s ease;
}
.partners__item:hover {
  transform: scale(1.05);
}
.partners__item img {
  max-height: 67px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  transition: opacity 0.4s ease;
  opacity: 0.85;
}
.partners__item:hover img {
  opacity: 1;
}

@media (min-width: 768px) {
  .werder-closing__inner {
    grid-template-columns: auto 1fr;
    gap: var(--s6);
    text-align: left;
  }
  .werder-closing__photo {
    margin: 0;
  }
  .werder-closing__text {
    text-align: left;
  }
  .partners__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Contact map */
.contact-map {
  width: 100%;
  height: 480px;
  line-height: 0;
  background: var(--color-bg-warm);
  position: relative;
}
.contact-map::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(242, 237, 230, 0.35) 0%, rgba(183, 152, 91, 0.18) 100%);
  pointer-events: none;
  z-index: 1;
}
/* Iframe fallback (when no API key) */
.contact-map iframe {
  width: 100%;
  height: 480px;
  filter: grayscale(1) sepia(0.35) contrast(0.95);
  transition: filter 0.6s ease;
}
.contact-map iframe:hover {
  filter: grayscale(0.4) sepia(0.2) contrast(1);
}

/* ---- Page Arrival: subpage hero without overlay ---- */
.page-arrival {
  width: 100%;
  overflow: hidden;
}
.page-arrival__img {
  width: 100%;
  height: 52vh;
  min-height: 320px;
  object-fit: cover;
}
.page-arrival {
  margin-top: -1px; /* prevent hairline gap */
}
.page-arrival + .page-intro,
.page-intro {
  padding: var(--s6) var(--s3) var(--s5);
}
.page-intro__inner {
  max-width: 720px;
  margin-left: 8%;
}
.page-intro__title {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: var(--s2);
}
.page-intro__subtitle {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-text-light);
  line-height: 1.5;
}

/* ---- Quiet link: understated text link with underline ---- */
.link-quiet {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color var(--transition-fast);
}
.link-quiet:hover {
  border-bottom-color: var(--color-gold);
}

/* ============================================================
   16c. LIGHTBOX
   ============================================================ */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(20, 10, 0, 0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.is-open { display: flex; }

.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2rem;
  cursor: pointer;
  padding: var(--s2);
  transition: color var(--transition-fast);
  line-height: 1;
}
.lightbox__close { top: var(--s2); right: var(--s2); font-size: 1.5rem; }
.lightbox__prev  { left: var(--s2); top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: var(--s2); top: 50%; transform: translateY(-50%); }
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { color: #ffffff; }

/* ============================================================
   17. UTILITIES
   ============================================================ */

/* Breadcrumbs hidden — Territory C uses nav for wayfinding */
.breadcrumbs { display: none; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }

.text-gold    { color: var(--color-gold); }
.text-muted   { color: var(--color-text-muted); }
.text-light   { color: var(--color-text-light); }

.mt-0  { margin-top: 0; }
.mt-1  { margin-top: var(--s1); }
.mt-2  { margin-top: var(--s2); }
.mt-3  { margin-top: var(--s3); }
.mt-4  { margin-top: var(--s4); }
.mt-5  { margin-top: var(--s5); }

.mb-0  { margin-bottom: 0; }
.mb-1  { margin-bottom: var(--s1); }
.mb-2  { margin-bottom: var(--s2); }
.mb-3  { margin-bottom: var(--s3); }
.mb-4  { margin-bottom: var(--s4); }
.mb-5  { margin-bottom: var(--s5); }

.hidden   { display: none !important; }
.invisible { visibility: hidden; }

.divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: var(--s5) 0;
}

.aspect-ratio-16-9 { aspect-ratio: 16 / 9; }
.aspect-ratio-4-3  { aspect-ratio: 4 / 3; }
.aspect-ratio-1-1  { aspect-ratio: 1 / 1; }

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gold-accent {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--color-gold);
  margin: var(--s2) auto var(--s3);
}

/* Lazy load images — blur-up reveal (exclude slider images) */
img[loading="lazy"]:not(.arrival__img) {
  opacity: 0;
  filter: blur(12px);
  transform: scale(1.04);
  transition: opacity 0.6s ease, filter 0.8s ease, transform 0.8s ease;
}

img[loading="lazy"].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--color-gold), #d4bc7c);
  z-index: calc(var(--z-sticky) + 10);
  pointer-events: none;
  transition: width 0.1s linear;
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: rgba(26, 22, 18, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--s3) var(--s3);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.cookie-consent.is-visible {
  transform: translateY(0);
}
.cookie-consent.is-hidden {
  transform: translateY(100%);
}
.cookie-consent__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
}
.cookie-consent__text {
  color: rgba(255,255,255,0.75);
  font-size: 0.8125rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.cookie-consent__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-consent__accept {
  background: var(--color-gold);
  color: #fff;
  border: none;
  padding: 8px 24px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
.cookie-consent__accept:hover {
  background: var(--color-gold-dark);
}
.cookie-consent__decline {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 20px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}
.cookie-consent__decline:hover {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.4);
}

@media (max-width: 767px) {
  .cookie-consent__inner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-consent__text {
    font-size: 0.75rem;
  }
}

/* ============================================================
   SCROLL REVEAL SYSTEM
   ============================================================ */

/* 1. Fade-up reveal */
.js-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 2. Image aperture reveal — clip-path expands from center */
.js-reveal-image {
  clip-path: inset(12% 12% 12% 12%);
  opacity: 0;
  transition:
    clip-path 1.6s cubic-bezier(0.77, 0, 0.175, 1),
    opacity 0.4s ease;
}
.js-reveal-image.is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

/* 3. Golden Curtain Reveal — the design bomb */
@keyframes goldenCurtain {
  0%        { transform: translateX(-101%); }
  40%, 60%  { transform: translateX(0); }
  100%      { transform: translateX(101%); }
}

.js-curtain {
  position: relative;
  overflow: hidden;
}
.js-curtain > .js-curtain__gold {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-gold) 0%, #d4bc7c 100%);
  z-index: 6;
  transform: translateX(-101%);
  pointer-events: none;
}
.js-curtain.is-visible > .js-curtain__gold {
  animation: goldenCurtain 1.6s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

/* 4. Stagger children — sequential entrance */
.js-reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.js-reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.js-reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.js-reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
.js-reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.25s; }
.js-reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.35s; }
.js-reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.45s; }
.js-reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.55s; }


/* ============================================================
   18a. SUPPLEMENTAL — missing helpers & component aliases
   ============================================================ */


/* Section title (centered h2 that heads a section) */
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: var(--s5);
  color: var(--color-text);
}

/* Section inner — max-width container (alias for .container) */
.section__inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--s3);
  padding-right: var(--s3);
}

.section__inner--narrow {
  max-width: 800px;
}

/* Page hero overlay (alias for page-hero__gradient) */
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 10, 0, 0.08) 0%,
    rgba(20, 10, 0, 0.60) 100%
  );
}

/* Rich text content (from CMS pages) */
.richtext {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-text-light);
}

.richtext h2 { margin-top: var(--s5); margin-bottom: var(--s2); }
.richtext h3 { margin-top: var(--s4); margin-bottom: var(--s2); }
.richtext p  { margin-bottom: var(--s3); }
.richtext ul { list-style: disc; padding-left: var(--s3); margin-bottom: var(--s3); }
.richtext ol { list-style: decimal; padding-left: var(--s3); margin-bottom: var(--s3); }
.richtext a  { color: var(--color-gold); text-decoration: underline; text-underline-offset: 3px; }

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s2);
}

.gallery-grid__item {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin: 0;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.gallery-grid__link:hover img {
  transform: scale(1.05);
}

/* Shop teaser inline (catering page) */
.shop-teaser--inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
  align-items: center;
  background: var(--color-bg-dark);
  color: var(--color-white);
  padding: var(--s5);
}

.shop-teaser--inline .shop-teaser__body {
  order: -1;
}

.shop-teaser--inline .shop-teaser__title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 300;
  color: var(--color-white);
  margin-bottom: var(--s3);
}

.shop-teaser--inline .shop-teaser__text {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--s4);
}

.shop-teaser--inline .shop-teaser__media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Event cards grid (used on events listing and home) */
.event-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
}

.event-cards-grid--past {
  margin-top: var(--s3);
  opacity: 0.8;
}

/* Section footer (centered button row below content) */
.section--events .section__footer {
  text-align: center;
  margin-top: var(--s5);
}

/* Page hero short variant (events listing page) */
.page-hero--short {
  min-height: 180px;
  height: 220px;
}

/* Page hero inner constraint */
.page-hero__inner {
  position: relative;
  z-index: var(--z-base);
  padding: var(--s4) var(--s3);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Past events toggle (collapsible) */
.past-events-toggle {
  width: 100%;
}

.past-events-toggle summary {
  list-style: none;
  cursor: pointer;
}

.past-events-toggle summary::-webkit-details-marker {
  display: none;
}

.past-events-toggle__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
  padding: var(--s3) 0;
  border-bottom: 1px solid var(--color-border);
}

.past-events-toggle__trigger .section__title {
  margin-bottom: 0;
  text-align: left;
}

/* Event filter btn active state (BEM modifier, complementing .is-active) */
.event-filter-btn--active,
.event-filter-btn.is-active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
}

/* Section empty state */
.section__empty {
  text-align: center;
  color: var(--color-text-muted);
  padding: var(--s5) 0;
  font-style: italic;
}

/* Lang switcher link (BEM variant used in templates) */
.lang-switcher__link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 2px 6px;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.lang-switcher__link:hover {
  color: var(--color-text);
}

.lang-switcher__link--active {
  color: var(--color-text);
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--color-text-muted);
  border-radius: 50%;
  padding: 0;
}

/* Mobile nav lang strip */
.nav-mobile__lang {
  display: flex;
  gap: var(--s2);
  margin-top: var(--s4);
}

/* ============================================================
   Atmosphere strip
   ============================================================ */

.atmosphere-strip {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.atmosphere-strip__media {
  position: absolute;
  inset: 0;
}

.atmosphere-strip__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.atmosphere-strip__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 0, 0.52);
}

.atmosphere-strip__quote {
  position: relative;
  z-index: var(--z-base);
  text-align: center;
  max-width: 720px;
  padding: 0 var(--s4);
  border-left: none;
  margin: 0;
}

.atmosphere-strip__quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-white);
  letter-spacing: 0.03em;
  line-height: 1.45;
  margin-bottom: 0;
}

/* ============================================================
   Contact CTA section
   ============================================================ */

.section--contact-cta {
  text-align: center;
  background-color: var(--color-bg-warm);
}

/* ============================================================
   Footer grid (using existing footer__ classes in CSS)
   ============================================================ */

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr auto;
  gap: var(--s6);
  padding: var(--s7) 0 var(--s6);
}

.footer__col {
  /* generic column wrapper */
}

/* ============================================================
   18. RESPONSIVE — MOBILE-FIRST MEDIA QUERIES
   ============================================================ */

/* --- Tablet: 768px+ --- */
@media (min-width: 768px) {
  .event-sticky-cta {
    display: none !important;
  }

  .form__row {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  /* Territory C — tablet */
  .about-spread {
    grid-template-columns: 48% 1fr;
    gap: var(--s5);
  }
  .weddings-content__layout {
    grid-template-columns: 1fr 2fr;
    gap: var(--s4);
    align-items: center;
  }
  .masonry-grid {
    columns: 5;
    grid-column: 2;
    grid-row: 1 / 3;
  }
  .masonry-grid--3col {
    columns: 3;
  }
  .masonry-grid--4col {
    columns: 4;
  }
  .weddings-discover {
    grid-column: 1;
    margin-top: var(--s7);
  }
  .helen-section__layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--s5);
    align-items: start;
  }
  .about-spread__text {
    padding-right: 6%;
  }

  .programme__item {
    padding: var(--s3) var(--s2);
  }

  .gallery-strip__track img {
    height: 260px;
  }

  .spread--wide-left {
    grid-template-columns: 62% 1fr;
    gap: var(--s5);
  }
  .spread--wide-right {
    grid-template-columns: 1fr 62%;
    gap: var(--s5);
  }
  .spread--pair {
    grid-template-columns: 1fr 1fr;
    gap: var(--s5);
  }

  .shop-zone__inner {
    grid-template-columns: auto 1fr;
    gap: var(--s6);
  }
  .secondary__spread {
    grid-template-columns: 60% 1fr;
    gap: var(--s4);
    align-items: center;
  }
  .contact-page__grid {
    grid-template-columns: 1fr 1.6fr;
    gap: var(--s5);
    padding-top: var(--s5);
    align-items: start;
  }
  .contact-page__identity {
    position: sticky;
    top: 100px;
  }
  .contact-form__row {
    grid-template-columns: 1fr 1fr;
  }
}

/* --- Desktop: 1200px+ --- */
@media (min-width: 1200px) {
  .site-nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }

  /* Territory C — desktop */
  .arrival {
    height: 100vh;
  }
  .brand-intro {
    padding-top: var(--s8);
    padding-bottom: var(--s6);
  }
  .essence__caption {
    margin-right: 12%;
  }
  .voice__inner {
    margin-right: 12%;
  }
  .gallery-strip__track img {
    height: 300px;
  }
  .spread {
    padding: 0 6%;
  }
  .spread__img {
    aspect-ratio: 5 / 3;
  }
}

/* --- Below desktop: < 1200px --- */
@media (max-width: 1199px) {
  .nav-list,
  .lang-switcher,
  .lang-dropdown,
  .nav-shop-btn {
    display: none;
  }

  .header-cell--left {
    display: none;
  }

  .header-cell--right {
    display: flex;
    align-items: center;
  }

  .site-header__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    padding: 0 var(--s2);
    position: relative;
  }

  .header-cell--center {
    flex: none;
  }

  .site-logo {
    margin: 0;
  }

  .site-logo__img {
    height: 24px;
  }

  .nav-toggle {
    display: flex;
    position: absolute;
    right: var(--s2);
    top: 50%;
    transform: translateY(-50%);
  }

  /* Hamburger: white on transparent header */
  .nav-toggle__bar {
    width: 26px;
    height: 2px;
    background-color: #fff;
  }
  /* Hamburger: black on sticky/scrolled header */
  .site-header.is-scrolled .nav-toggle__bar {
    background-color: var(--color-text);
  }
  /* Pages without dark hero: black hamburger */
  body:not(.is-home):not(.is-hero-dark) .site-header:not(.is-scrolled) .nav-toggle__bar {
    background-color: var(--color-text);
  }

  .nav-mobile {
    display: flex;
  }

  /* Prevent horizontal overflow */
  .brand-intro::before {
    display: none;
  }

  /* Brand intro — stack social below */
  .brand-intro__row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--s3);
    min-height: auto;
    padding: 0 var(--s2);
  }

  /* Social row — elegant inline with divider */
  .brand-intro__social {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: var(--s2);
  }

  .brand-intro__social::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--color-gold);
    opacity: 0.3;
    margin-bottom: var(--s3);
  }

  /* FB + IG: clean gold icons in a row */
  .brand-social__link {
    width: auto;
    height: auto;
    border: none;
    border-radius: 0;
    background: none;
    color: var(--color-gold);
    opacity: 0.6;
    padding: 8px 14px;
  }

  .brand-social__link svg {
    width: 22px;
    height: 22px;
  }

  .brand-social__link:hover {
    opacity: 1;
    box-shadow: none;
    transform: none;
    border: none;
  }

  /* Shop: prominent CTA button */
  .brand-social__link--shop {
    width: auto;
    height: auto;
    border-radius: 0;
    border: 1px solid var(--color-gold);
    padding: 12px 32px;
    margin-top: var(--s3);
    background: none;
    opacity: 1;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .brand-social__link--shop img {
    height: 18px;
    opacity: 0.8;
  }

  .brand-social__link--shop::after {
    content: '→';
    font-size: 0.85rem;
    color: var(--color-gold);
  }

  .brand-social__badge {
    display: none;
  }

  /* Instagram strip — grid on mobile */
  .gallery-strip {
    overflow: hidden;
  }

  .gallery-strip__track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    overflow: hidden;
  }

  .gallery-strip__track img {
    height: auto;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
  }

  /* Arrival slider arrows on mobile */
  .arrival__prev,
  .arrival__next {
    padding: 20px 12px;
    z-index: 20;
  }

  .arrival__prev { left: 4px; }
  .arrival__next { right: 4px; }

  .arrival__prev svg,
  .arrival__next svg {
    width: 14px;
    height: 48px;
  }

  .arrival__scroll::before {
    height: 28px;
  }

  .arrival__scroll svg {
    width: 28px;
    height: 28px;
  }

  /* About spread — stack vertically */
  .about-spread {
    grid-template-columns: 1fr;
    padding: var(--s5) var(--s3);
  }

  .about-spread__img img {
    aspect-ratio: 16 / 10;
  }

  .about-spread__text {
    padding: 0;
  }

  .about-spread__heading {
    font-size: 1.3rem;
  }

  /* Feature section */
  .feature {
    padding-left: var(--s2);
    padding-right: var(--s2);
  }

  .feature__body {
    margin-left: var(--s2);
  }

  /* Secondary sections */
  .secondary {
    padding-left: var(--s2);
    padding-right: var(--s2);
  }

  .secondary__pair {
    grid-template-columns: 1fr;
    gap: var(--s4);
  }

  .secondary__text {
    margin-left: var(--s2);
  }

  /* Shop CTA */
  .shop-cta__inner {
    grid-template-columns: 1fr;
  }

  /* Programme */
  .programme__inner {
    padding: 0 var(--s2);
  }

  /* Contact */
  .contact-page__grid {
    grid-template-columns: 1fr;
  }

  /* Werder closing */
  .werder-closing__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .werder-closing__photo {
    max-width: 280px;
    margin: 0 auto;
  }

  /* Partners grid */
  .partners__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* PDF cards */
  .pdf-showcase__grid {
    grid-template-columns: 1fr;
    gap: var(--s4);
  }

  /* Wedding inquiry form */
  .wedding-form__row {
    grid-template-columns: 1fr;
  }

  /* Events grid */
  .events-grid,
  .event-cards-grid {
    grid-template-columns: 1fr;
  }

  .event-detail__layout {
    grid-template-columns: 1fr;
  }

  .event-sidebar {
    position: static;
    order: -1;
  }

  /* Closing section */
  .closing__inner {
    padding: 0 var(--s2);
  }

  /* Gallery strip */
  .gallery-strip__track img {
    height: 180px;
  }

  /* Masonry */
  .masonry-grid {
    columns: 2;
  }

  /* Global overflow prevention */
  body {
    overflow-x: hidden;
  }
}

/* --- Below tablet: < 768px --- */
@media (max-width: 767px) {
  :root {
    --s7: 64px;
    --s8: 96px;
  }

  .section {
    padding-top: var(--s5);
    padding-bottom: var(--s5);
  }

  .events-grid,
  .event-cards-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .split--reverse {
    direction: ltr;
  }

  .shop-teaser__inner {
    grid-template-columns: 1fr;
  }

  .shop-teaser__media {
    aspect-ratio: 16/9;
    height: auto;
  }

  .shop-teaser__content {
    padding: var(--s4) var(--s3);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--s4);
    padding: var(--s5) 0 var(--s4);
  }

  .atmosphere-strip {
    height: 280px;
  }

  /* Territory C — mobile: fit to visible browser window */
  .arrival,
  .wedding-hero {
    height: calc(100dvh - env(safe-area-inset-bottom, 0px));
    min-height: 480px;
  }
  .brand-intro {
    padding: var(--s5) var(--s3) var(--s4);
  }
  .brand-intro__row {
    grid-template-columns: 1fr;
    gap: var(--s4);
  }
  .brand-intro__name {
    font-size: 2.8rem;
  }
  .essence__caption {
    margin-right: 0;
    margin-left: 0;
  }
  .essence__img {
    aspect-ratio: 16 / 9;
  }
  .voice__inner {
    margin-right: 0;
    margin-left: 0;
    max-width: 100%;
    padding: 0 var(--s1);
  }
  .feature {
    padding-left: 0;
    padding-right: 0;
  }
  .feature__body {
    margin-left: var(--s3);
  }
  .feature__img {
    aspect-ratio: 3 / 2;
  }
  .programme__item {
    grid-template-columns: auto 1fr;
    gap: var(--s2);
  }
  .programme__price,
  .programme__arrow {
    display: none;
  }
  .gallery-strip__track img {
    height: 180px;
  }
  .spread__text {
    padding: 0 var(--s1);
  }
  .page-intro__inner {
    margin-left: 0;
  }
  .weddings-content__layout {
    margin-left: 0;
  }
  .page-intro {
    padding: var(--s4) var(--s3);
  }
  .shop-zone__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .shop-zone__media img {
    margin: 0 auto;
    max-width: 280px;
  }
  .shop-zone__desc {
    margin-left: auto;
    margin-right: auto;
  }
  .spread--wide-left,
  .spread--wide-right {
    grid-template-columns: 1fr;
  }
  .spread--wide-right .spread__text {
    order: 2;
  }
  .spread--wide-right .spread__img-link {
    order: 1;
  }
  .spread--pair {
    grid-template-columns: 1fr;
  }
  .closing {
    padding: var(--s6) var(--s3);
  }
  .nearfar {
    grid-template-columns: 1fr;
  }
  .nearfar__wide img {
    aspect-ratio: 16 / 9;
  }
  .is-home .site-header .nav-toggle__bar,
  .is-hero-dark .site-header .nav-toggle__bar {
    background: #fff;
  }
  .is-home .site-header.is-scrolled .nav-toggle__bar,
  .is-hero-dark .site-header.is-scrolled .nav-toggle__bar {
    background: var(--color-text);
  }
  .contact-page__grid {
    padding-top: var(--s3);
  }
  .editorial__text {
    margin-left: 0;
    max-width: 100%;
  }
  .gallery-strip--page .gallery-strip__track img {
    height: 180px;
  }
  .programme__filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .programme__filters::-webkit-scrollbar { display: none; }
  .programme--full .programme__item {
    grid-template-columns: auto 1fr;
    gap: var(--s2);
  }
  .programme--full .programme__time,
  .programme--full .programme__price,
  .programme--full .programme__arrow {
    display: none;
  }
  .shop-zone--compact .shop-zone__inner {
    margin-left: 0;
  }
  .secondary__pair {
    grid-template-columns: 1fr;
  }
  .masonry-grid {
    columns: 2;
    column-gap: 4px;
  }
  .masonry-item {
    margin-bottom: 4px;
  }
  .secondary__text {
    margin-left: 0;
  }
  .secondary {
    padding-left: var(--s3);
    padding-right: var(--s3);
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .event-card--list {
    flex-direction: column;
  }

  .event-card--list .event-card__image {
    width: 100%;
    aspect-ratio: 16/9;
  }

  .event-detail__layout {
    grid-template-columns: 1fr;
  }

  .event-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .event-sticky-cta {
    display: flex;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .form__row {
    grid-template-columns: 1fr;
  }
}

/* --- Small mobile: < 400px --- */
@media (max-width: 399px) {
  .container {
    padding-left: var(--s2);
    padding-right: var(--s2);
  }

  .event-booking-box {
    padding: var(--s3);
  }
}

/* --- Print --- */
@media print {
  .site-header,
  .site-footer,
  .nav-toggle,
  .nav-mobile,
  .event-sticky-cta,
  .flash {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
  }
}
