/*
Theme Name: Rheingau Luxe
Description: Pure HTML Theme mit Rheingau-Symbolen
Version: 1.0
*/

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

:root {
    --color-bg: #FAFAF7;
    --color-surface: #FFFFFF;
    --color-text: #2C2416;
    --color-muted: #7D6E5A;
    --color-accent: #8B1A1A;
    --color-accent-2: #C4A35A;
    --color-green: #3D5A3E;
    --color-border: #E2D9C8;
    --shadow-sm: 0 2px 8px rgba(44, 36, 22, 0.08);
    --shadow-md: 0 8px 24px rgba(44, 36, 22, 0.12);
    --shadow-lg: 0 24px 64px rgba(44, 36, 22, 0.18);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: 'Jost', system-ui, sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    overflow-x: hidden;
}

.grape-divider {
    text-align: center;
    margin: 3rem 0;
    position: relative;
    font-size: 2rem;
    color: var(--color-accent-2);
}

/* legacy header CSS removed — replaced by HEADER REDESIGN block below */

h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--color-text);
}

h1 { font-size: clamp(2rem, 5vw, 4rem); margin: 1rem 0; }
h2 { font-size: clamp(1.5rem, 4vw, 2.8rem); margin: 2rem 0 1rem; text-align: center; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); margin: 1.5rem 0 0.75rem; }
p { margin-bottom: 1rem; }
a { color: var(--color-accent); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: #6B1313; text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }

.btn {
    display: inline-block;
    background: var(--color-accent);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid var(--color-accent);
    font-family: inherit;
}

.btn:hover {
    background: #6B1313;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(139, 26, 26, 0.3);
    color: #fff;
    text-decoration: none;
}

.btn-secondary { background: transparent; color: var(--color-accent); }
.btn-secondary:hover { background: var(--color-accent); color: #fff; }

.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--color-accent-2);
    position: relative;
    overflow: hidden;
}

.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.card-icon {
    font-size: 2.5rem;
    color: var(--color-accent-2);
    margin-bottom: 1rem;
    display: inline-block;
}

.card ul { list-style: none; padding: 0; margin: 1rem 0; }
.card ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
    position: relative;
}
.card ul li:last-child { border-bottom: none; }
.card ul li::before {
    content: '🍇';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

section { padding: 5rem 0; }
section.alt { background: var(--color-bg); }
section.dark {
    background: linear-gradient(135deg, #8B1A1A 0%, #6B1313 100%);
    color: #fff;
    position: relative;
}
section.dark h1, section.dark h2, section.dark h3 { color: #fff; }

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(44,36,22,0.5) 0%, rgba(139,26,26,0.4) 100%);
}

.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 2rem; }
.hero h1 { color: #fff; font-size: clamp(2.5rem, 6vw, 5rem); margin-bottom: 1rem; }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.95; }
.hero-icons { display: flex; gap: 2rem; justify-content: center; margin-bottom: 2rem; font-size: 1.8rem; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: var(--transition);
    background: var(--color-surface);
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.price-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
}

.price-box .season { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.9; margin-bottom: 1rem; }
.price-box .price { font-family: 'Cormorant Garamond', serif; font-size: 4rem; color: var(--color-accent-2); line-height: 1; margin-bottom: 0.5rem; }

form { max-width: 600px; margin: 2rem auto; }
form label { display: block; margin-bottom: 0.5rem; font-weight: 500; font-size: 0.9rem; }
form input, form textarea, form select {
    width: 100%;
    padding: 0.85rem 1rem;
    margin-bottom: 1.25rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    background: #fff;
}
form textarea { resize: vertical; min-height: 120px; }
form input:focus, form textarea:focus, form select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(139, 26, 26, 0.1);
}













table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
th, td { text-align: left; padding: 0.85rem 1rem; border-bottom: 1px solid var(--color-border); }
th { background: var(--color-bg); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; }
tr:hover td { background: var(--color-bg); }

details {
    margin: 1rem 0;
    padding: 1rem 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--color-accent-2);
}
details summary { font-weight: 500; cursor: pointer; outline: none; }
details[open] { box-shadow: var(--shadow-md); }

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

@media (max-width: 768px) {
    
    
    section { padding: 3rem 0; }
    .hero { min-height: 70vh; }
    .container { padding: 0 1rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}


/* =====================================================================
   HEADER REDESIGN — 2026-05-13
   Editorial Luxury · Fluid Island Nav · Double-Bezel · Magnetic CTA
   ===================================================================== */

:root {
  --hd-spring: cubic-bezier(0.32, 0.72, 0, 1);
  --hd-spring-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --hd-ink: #1F1812;
  --hd-paper: #FAFAF7;
  --hd-cream: #F4EFE4;
  --hd-sage: #6B7F5A;
  --hd-sage-deep: #3D5A3E;
  --hd-bronze: #8B6F3A;
  --hd-hairline: rgba(31, 24, 18, 0.08);
  --hd-hairline-strong: rgba(31, 24, 18, 0.14);
}

/* Body offset so the floating header doesn't overlap content */
.site-header + .site-main,
body > .site-main { padding-top: 0; }

/* ===== Fluid Island ===== */
.site-header {
  position: fixed;
  top: 1.25rem;
  left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}

.nav-island {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
  padding: 0.5rem 0.5rem 0.5rem 1.1rem;
  background: rgba(250, 250, 247, 0.72);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border: 1px solid var(--hd-hairline);
  border-radius: 9999px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 1px 2px rgba(31, 24, 18, 0.04),
    0 14px 40px -16px rgba(31, 24, 18, 0.18);
  max-width: calc(100vw - 2rem);
  transition:
    box-shadow 480ms var(--hd-spring-soft),
    transform 480ms var(--hd-spring-soft),
    background 480ms var(--hd-spring-soft),
    border-color 480ms var(--hd-spring-soft);
  will-change: transform;
}

.site-header[data-scrolled="true"] .nav-island {
  background: rgba(250, 250, 247, 0.86);
  border-color: var(--hd-hairline-strong);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 1px 2px rgba(31, 24, 18, 0.04),
    0 24px 56px -20px rgba(31, 24, 18, 0.28);
}

/* ===== Logo Wordmark ===== */
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--hd-ink);
  padding: 0.25rem 0.4rem 0.25rem 0;
  border-radius: 9999px;
  transition: opacity 360ms var(--hd-spring);
}
.site-logo:hover { text-decoration: none; opacity: 0.78; }

.site-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 9999px;
  background: var(--hd-cream);
  color: var(--hd-sage-deep);
  box-shadow: inset 0 0 0 1px rgba(31, 24, 18, 0.06);
  flex-shrink: 0;
  transition: transform 520ms var(--hd-spring), background 520ms var(--hd-spring);
}
.site-logo:hover .site-logo-mark {
  transform: rotate(-6deg) scale(1.04);
  background: #EEE8DB;
}

.site-logo-word {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  gap: 0.18rem;
}
.site-logo-eyebrow {
  font: 500 0.58rem/1 'Jost', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--hd-sage-deep);
}
.site-logo-name {
  font: 600 0.95rem/1 'Cormorant Garamond', Georgia, serif;
  letter-spacing: 0.005em;
  color: var(--hd-ink);
}

/* ===== Nav Links ===== */
.site-nav-menu {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: clamp(0.6rem, 1.4vw, 1.4rem);
  margin: 0;
  padding: 0 0.4rem;
}
.site-nav-menu li { display: inline-flex; }
.site-nav-menu a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: var(--hd-ink);
  font: 400 0.86rem/1 'Jost', system-ui, sans-serif;
  letter-spacing: 0.02em;
  padding: 0.55rem 0.2rem;
  transition: color 360ms var(--hd-spring);
}
.site-nav-menu a::after {
  content: '';
  position: absolute;
  left: 0.2rem; right: 0.2rem;
  bottom: 0.32rem;
  height: 1px;
  background: var(--hd-sage-deep);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 560ms var(--hd-spring);
}
.site-nav-menu a:hover { color: var(--hd-sage-deep); text-decoration: none; }
.site-nav-menu a:hover::after { transform: scaleX(1); }

/* ===== CTA: Button-in-Button ===== */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.55rem 0.55rem 1.15rem;
  background: var(--hd-ink);
  color: #FAFAF7 !important;
  text-decoration: none;
  border-radius: 9999px;
  font: 500 0.82rem/1 'Jost', system-ui, sans-serif;
  letter-spacing: 0.04em;
  transition:
    transform 360ms var(--hd-spring),
    background 360ms var(--hd-spring);
  will-change: transform;
}
.nav-cta:hover { text-decoration: none; background: #0F0B07; }
.nav-cta:active { transform: scale(0.98); }
.nav-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.12);
  color: #FAFAF7;
  transition:
    transform 420ms var(--hd-spring),
    background 360ms var(--hd-spring);
}
.nav-cta:hover .nav-cta-icon {
  transform: translate(1px, -1px) scale(1.06);
  background: rgba(255, 255, 255, 0.2);
}

/* ===== Mobile Toggle ===== */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  background: transparent;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  color: var(--hd-ink);
  margin-left: auto;
  transition: background 300ms var(--hd-spring);
}
.nav-toggle:hover { background: rgba(31, 24, 18, 0.06); }
.nav-toggle-inner {
  position: relative;
  width: 1.05rem;
  height: 0.65rem;
  display: inline-block;
}
.nav-toggle-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition:
    transform 520ms var(--hd-spring),
    top 520ms var(--hd-spring);
}
.nav-toggle-bar:nth-child(1) { top: 0; }
.nav-toggle-bar:nth-child(2) { top: calc(100% - 1px); }
.nav-toggle.is-active .nav-toggle-bar:nth-child(1) {
  top: calc(50% - 0.5px);
  transform: rotate(45deg);
}
.nav-toggle.is-active .nav-toggle-bar:nth-child(2) {
  top: calc(50% - 0.5px);
  transform: rotate(-45deg);
}

/* ===== Mobile Overlay ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(250, 250, 247, 0.82);
  backdrop-filter: blur(40px) saturate(140%);
  -webkit-backdrop-filter: blur(40px) saturate(140%);
  opacity: 0;
  transition:
    opacity 480ms var(--hd-spring),
    visibility 480ms var(--hd-spring);
}
.nav-overlay[hidden] { display: none; }
.nav-overlay.is-open { opacity: 1; }

.nav-overlay-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(31, 24, 18, 0.04) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.5;
  mix-blend-mode: multiply;
}

.nav-overlay-inner {
  position: relative;
  height: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(4.5rem, 12vh, 7rem) clamp(1.5rem, 6vw, 3rem) clamp(2rem, 6vh, 4rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vh, 2.25rem);
}

.nav-overlay-eyebrow {
  font: 500 0.7rem/1 'Jost', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--hd-sage-deep);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms var(--hd-spring), transform 700ms var(--hd-spring);
}
.nav-overlay.is-open .nav-overlay-eyebrow {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 80ms;
}

.nav-overlay-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.nav-overlay-menu li {
  border-bottom: 1px solid var(--hd-hairline);
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition:
    opacity 720ms var(--hd-spring),
    transform 720ms var(--hd-spring),
    filter 720ms var(--hd-spring);
  transition-delay: calc(120ms + var(--stagger, 0) * 65ms);
}
.nav-overlay.is-open .nav-overlay-menu li {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.nav-overlay-menu a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: clamp(0.9rem, 2.4vh, 1.4rem) 0;
  text-decoration: none;
  color: var(--hd-ink);
  font: 400 clamp(1.7rem, 6vw, 2.4rem)/1.05 'Cormorant Garamond', Georgia, serif;
  letter-spacing: 0.005em;
  transition: color 360ms var(--hd-spring), transform 480ms var(--hd-spring);
}
.nav-overlay-menu a:hover { color: var(--hd-sage-deep); text-decoration: none; transform: translateX(6px); }
.nav-overlay-num {
  font: 400 0.7rem/1 'Jost', system-ui, sans-serif;
  letter-spacing: 0.15em;
  color: var(--hd-sage-deep);
  opacity: 0.7;
  align-self: center;
  min-width: 1.6rem;
}

.nav-overlay-cta {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 0.85rem 0.85rem 1.4rem;
  background: var(--hd-ink);
  color: #FAFAF7 !important;
  text-decoration: none;
  border-radius: 9999px;
  font: 500 0.92rem/1 'Jost', system-ui, sans-serif;
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms var(--hd-spring),
    transform 720ms var(--hd-spring),
    background 360ms var(--hd-spring);
  transition-delay: calc(120ms + var(--stagger, 5) * 65ms);
}
.nav-overlay.is-open .nav-overlay-cta { opacity: 1; transform: translateY(0); }
.nav-overlay-cta:hover { background: #0F0B07; text-decoration: none; }
.nav-overlay-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.95rem;
  height: 1.95rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.14);
  transition: transform 420ms var(--hd-spring);
}
.nav-overlay-cta:hover .nav-overlay-cta-icon { transform: translate(2px, -2px) scale(1.05); }

.nav-overlay-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font: 400 0.82rem/1.4 'Jost', system-ui, sans-serif;
  letter-spacing: 0.04em;
  color: var(--hd-ink);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 720ms var(--hd-spring), transform 720ms var(--hd-spring);
  transition-delay: calc(120ms + var(--stagger, 6) * 65ms);
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hd-hairline);
}
.nav-overlay.is-open .nav-overlay-meta { opacity: 0.6; transform: translateY(0); }

body.nav-open { overflow: hidden; }

/* ===== Spacer so Hero/Content sits below the fixed nav ===== */
.site-main { padding-top: clamp(5.5rem, 9vw, 7rem); }
.site-main > section.hero:first-child,
.site-main > .hero:first-child { padding-top: 0; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .site-nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-island {
    gap: 0.5rem;
    padding: 0.4rem 0.4rem 0.4rem 0.9rem;
    width: calc(100vw - 1.5rem);
    max-width: 600px;
    justify-content: space-between;
  }
  .site-logo-mark { width: 1.7rem; height: 1.7rem; }
  .site-logo-name { font-size: 0.86rem; }
  .site-logo-eyebrow { font-size: 0.52rem; }
}

@media (max-width: 480px) {
  .site-header { top: 0.85rem; }
  .site-logo-eyebrow { display: none; }
  .site-logo-name { font-size: 0.92rem; }
}

@media (prefers-reduced-motion: reduce) {
  .nav-island, .site-logo, .site-nav-menu a, .nav-cta, .nav-cta-icon,
  .nav-overlay, .nav-overlay-menu li, .nav-overlay-cta, .nav-overlay-meta,
  .nav-overlay-eyebrow, .nav-toggle-bar {
    transition-duration: 1ms !important;
    transform: none !important;
  }
}

/* ===== Override of old Mobile-Stack (legacy `.site-header nav { flex-direction: column }`) ===== */
.site-header .nav-island { flex-direction: row; }
@media (max-width: 768px) {
  .site-header .nav-island { flex-direction: row; }
}


/* =====================================================================
   FOOTER REDESIGN — 2026-05-13
   Editorial Luxury · Dark Colophon · Macro-CTA + Grid + Bottom Strip
   Erbt: --hd-* tokens aus dem HEADER REDESIGN Block
   ===================================================================== */

.site-footer {
  position: relative;
  background: var(--hd-ink, #1F1812) !important;
  color: #EFE9DA !important;
  padding: 0 !important;
  margin-top: clamp(4rem, 9vw, 7rem) !important;
  overflow: hidden;
  isolation: isolate;
}
.site-footer::before { content: none !important; }      /* alte Gradient-Bar weg */

/* Dezenter Film-Grain auf dem dunklen Korpus */
.site-footer-grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.6;
  mix-blend-mode: screen;
}

/* Subtle radial atmospheric depth */
.site-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(61, 90, 62, 0.16), transparent 70%),
    radial-gradient(45% 45% at 90% 100%, rgba(139, 111, 58, 0.10), transparent 70%);
}

/* Generische Override für alle Footer-Inhalte: layer über grain/radial */
.site-footer > * { position: relative; z-index: 1; }

/* ===== Pre-Footer CTA Strip ===== */
.footer-cta {
  padding: clamp(4rem, 9vw, 7rem) clamp(1.5rem, 5vw, 3rem) clamp(3rem, 7vw, 5rem);
  border-bottom: 1px solid rgba(239, 233, 218, 0.08);
}
.footer-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}
.footer-cta-eyebrow {
  display: inline-block;
  font: 500 0.66rem/1 'Jost', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: #B8C2A5;          /* gedämpftes Sage */
  padding: 0.45rem 0.85rem;
  background: rgba(239, 233, 218, 0.06);
  border: 1px solid rgba(239, 233, 218, 0.12);
  border-radius: 9999px;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}
.footer-cta-headline {
  font: 400 clamp(2.4rem, 6vw, 4.2rem)/1.05 'Cormorant Garamond', Georgia, serif !important;
  letter-spacing: -0.005em;
  color: #FAFAF7 !important;
  margin: 0 0 1.5rem !important;
  text-align: left !important;
}
.footer-cta-headline em {
  font-style: italic;
  color: #C9D3B5;
  font-weight: 400;
}
.footer-cta-sub {
  font: 400 1rem/1.55 'Jost', system-ui, sans-serif;
  color: rgba(239, 233, 218, 0.72);
  max-width: 36rem;
  margin: 0 0 1.75rem !important;
}
.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.5rem;
  align-items: center;
}

/* Magnetic CTA — Button-in-Button (matched to header CTA, inverted on dark) */
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.7rem 0.7rem 1.4rem;
  background: #FAFAF7;
  color: var(--hd-ink, #1F1812) !important;
  text-decoration: none !important;
  border-radius: 9999px;
  font: 500 0.92rem/1 'Jost', system-ui, sans-serif !important;
  letter-spacing: 0.04em;
  text-transform: none !important;
  transition:
    transform 360ms var(--hd-spring, cubic-bezier(0.32,0.72,0,1)),
    background 360ms var(--hd-spring, cubic-bezier(0.32,0.72,0,1));
  will-change: transform;
  border: none !important;
}
.footer-cta-btn:hover { background: #FFFFFF; text-decoration: none !important; transform: none; box-shadow: none !important; color: var(--hd-ink, #1F1812) !important; }
.footer-cta-btn:active { transform: scale(0.98); }
.footer-cta-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.95rem;
  height: 1.95rem;
  border-radius: 9999px;
  background: rgba(31, 24, 18, 0.08);
  color: var(--hd-ink, #1F1812);
  transition:
    transform 420ms var(--hd-spring, cubic-bezier(0.32,0.72,0,1)),
    background 360ms var(--hd-spring, cubic-bezier(0.32,0.72,0,1));
}
.footer-cta-btn:hover .footer-cta-btn-icon {
  transform: translate(2px, -2px) scale(1.06);
  background: rgba(31, 24, 18, 0.14);
}

.footer-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(239, 233, 218, 0.78) !important;
  text-decoration: none !important;
  font: 500 0.9rem/1 'Jost', system-ui, sans-serif;
  letter-spacing: 0.04em;
  padding: 0.65rem 0;
  position: relative;
  transition: color 300ms var(--hd-spring, cubic-bezier(0.32,0.72,0,1)), transform 360ms var(--hd-spring, cubic-bezier(0.32,0.72,0,1));
}
.footer-cta-ghost::after {
  content: '';
  position: absolute;
  left: 0; right: 1.5rem;
  bottom: 0.45rem;
  height: 1px;
  background: rgba(239, 233, 218, 0.5);
  transform: scaleX(0.55);
  transform-origin: left center;
  transition: transform 520ms var(--hd-spring, cubic-bezier(0.32,0.72,0,1));
}
.footer-cta-ghost:hover { color: #FAFAF7 !important; text-decoration: none !important; transform: translateX(3px); }
.footer-cta-ghost:hover::after { transform: scaleX(1); }

/* Saison-Meta-Spalte */
.footer-cta-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: 1px solid rgba(239, 233, 218, 0.1);
  padding-left: clamp(1.25rem, 3vw, 2rem);
}
.footer-cta-meta li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: baseline;
  gap: 0.6rem 0.5rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(239, 233, 218, 0.08);
}
.footer-cta-meta li:last-child { border-bottom: 0; }
.footer-cta-meta-label {
  font: 500 0.66rem/1 'Jost', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(239, 233, 218, 0.55);
  grid-column: 1 / 4;
  margin-bottom: 0.2rem;
}
.footer-cta-meta-value {
  font: 500 1.8rem/1 'Cormorant Garamond', Georgia, serif;
  color: #FAFAF7;
  letter-spacing: 0;
}
.footer-cta-meta-unit {
  font: 400 0.78rem/1.2 'Jost', system-ui, sans-serif;
  color: rgba(239, 233, 218, 0.6);
  letter-spacing: 0.02em;
}

/* Reveal energy (uses existing `.reveal` IntersectionObserver from inline script) */
.footer-cta.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  transition:
    opacity 880ms var(--hd-spring, cubic-bezier(0.32,0.72,0,1)),
    transform 880ms var(--hd-spring, cubic-bezier(0.32,0.72,0,1)),
    filter 880ms var(--hd-spring, cubic-bezier(0.32,0.72,0,1));
}
.footer-cta.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ===== Main Grid ===== */
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 3rem) clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
}
.footer-col { display: flex; flex-direction: column; gap: 0.95rem; }
.footer-col-h {
  font: 500 0.66rem/1 'Jost', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(239, 233, 218, 0.5);
  margin-bottom: 0.35rem;
}

/* Brand-Spalte mit Mark wie im Header */
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none !important;
  color: #FAFAF7 !important;
  transition: opacity 300ms var(--hd-spring, cubic-bezier(0.32,0.72,0,1));
}
.footer-brand:hover { opacity: 0.85; text-decoration: none !important; }
.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem; height: 2rem;
  border-radius: 9999px;
  background: rgba(239, 233, 218, 0.06);
  color: #C9D3B5;
  box-shadow: inset 0 0 0 1px rgba(239, 233, 218, 0.12);
  flex-shrink: 0;
  transition: transform 520ms var(--hd-spring, cubic-bezier(0.32,0.72,0,1));
}
.footer-brand:hover .footer-brand-mark { transform: rotate(-6deg) scale(1.04); }
.footer-brand-word {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  line-height: 1;
}
.footer-brand-eyebrow {
  font: 500 0.58rem/1 'Jost', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: #B8C2A5;
}
.footer-brand-name {
  font: 600 1rem/1.1 'Cormorant Garamond', Georgia, serif;
  letter-spacing: 0.005em;
  color: #FAFAF7;
}
.footer-address {
  font: 400 0.86rem/1.7 'Jost', system-ui, sans-serif;
  color: rgba(239, 233, 218, 0.72);
  font-style: normal;
  letter-spacing: 0.02em;
  margin: 0.85rem 0 0;
}

/* Spalten-Listen */
.footer-col-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.footer-col-list a,
.footer-col-link {
  position: relative;
  display: inline-block;
  text-decoration: none !important;
  color: rgba(239, 233, 218, 0.82) !important;
  font: 400 0.92rem/1.4 'Jost', system-ui, sans-serif;
  letter-spacing: 0.015em;
  padding: 0.15rem 0;
  width: -moz-fit-content;
  width: fit-content;
  transition: color 320ms var(--hd-spring, cubic-bezier(0.32,0.72,0,1)), transform 360ms var(--hd-spring, cubic-bezier(0.32,0.72,0,1));
}
.footer-col-list a::after,
.footer-col-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.2rem;
  height: 1px;
  background: rgba(201, 211, 181, 0.85);   /* helles Sage */
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 540ms var(--hd-spring, cubic-bezier(0.32,0.72,0,1));
}
.footer-col-list a:hover,
.footer-col-link:hover {
  color: #FAFAF7 !important;
  text-decoration: none !important;
  transform: translateX(3px);
}
.footer-col-list a:hover::after,
.footer-col-link:hover::after { transform: scaleX(1); }

.footer-col-link {
  word-break: break-word;
}
.footer-col-note {
  font: 400 0.78rem/1.5 'Jost', system-ui, sans-serif !important;
  color: rgba(239, 233, 218, 0.5) !important;
  letter-spacing: 0.02em;
  margin: 0 !important;
}
.footer-col-link-sub {
  font-size: 0.82rem !important;
  color: rgba(239, 233, 218, 0.6) !important;
  margin-top: 0.3rem;
}

/* ===== Bottom Strip ===== */
.footer-bottom {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 1.5rem clamp(1.5rem, 5vw, 3rem) 2rem !important;
  border-top: 1px solid rgba(239, 233, 218, 0.08) !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left !important;
  opacity: 1 !important;
  font: 400 0.78rem/1 'Jost', system-ui, sans-serif !important;
  color: rgba(239, 233, 218, 0.55) !important;
  letter-spacing: 0.04em;
}
.footer-bottom-sep {
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  background: rgba(239, 233, 218, 0.25);
  flex: 0 0 auto;
}
.footer-bottom-copyright,
.footer-bottom-loc { display: inline-block; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .footer-cta-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-cta-meta {
    border-left: 0;
    border-top: 1px solid rgba(239, 233, 218, 0.1);
    padding-left: 0;
    padding-top: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .footer-cta-meta li { border-bottom: 0; padding: 0; }
  .footer-cta-meta-label { grid-column: auto; }
  .footer-cta-meta li { display: flex; flex-direction: column; gap: 0.35rem; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .footer-cta-meta { grid-template-columns: 1fr; }
  .footer-cta-meta li {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(239, 233, 218, 0.08);
  }
  .footer-cta-meta li:last-child { border-bottom: 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .footer-bottom-sep { display: none; }
  .footer-cta-actions { gap: 1rem; }
  .footer-cta-btn { width: 100%; justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
  .footer-cta.reveal,
  .footer-cta-btn, .footer-cta-btn-icon,
  .footer-cta-ghost, .footer-cta-ghost::after,
  .footer-col-list a, .footer-col-list a::after,
  .footer-col-link, .footer-col-link::after,
  .footer-brand, .footer-brand-mark {
    transition-duration: 1ms !important;
    transform: none !important;
    filter: none !important;
  }
}


/* =====================================================================
   HOMEPAGE REDESIGN — 2026-05-13
   Editorial Luxury · Bottom-left Hero · Asymmetric specs · Editorial price-list
   Erbt: --hd-* tokens aus dem HEADER REDESIGN Block.
   ===================================================================== */

/* Reset hero baseline: alter Body-`.site-main` Padding ist groß genug,
   aber Page-Hero soll randlos über die volle Höhe gehen. */
.page-id-114 .site-main { padding-top: 0 !important; }

/* Shared section primitives */
.page-home-section-head {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem) clamp(2rem, 4vw, 3rem);
}
.page-home-section-head-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}
.page-home-section-eyebrow {
  display: inline-block;
  font: 500 0.66rem/1 'Jost', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--hd-sage-deep, #3D5A3E);
  padding: 0.45rem 0.85rem;
  background: rgba(61, 90, 62, 0.06);
  border: 1px solid rgba(61, 90, 62, 0.16);
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}
.page-home-section-eyebrow-light {
  color: #C9D3B5;
  background: rgba(239, 233, 218, 0.08);
  border-color: rgba(239, 233, 218, 0.2);
}
.page-home-section-h {
  font: 400 clamp(2rem, 4.5vw, 3.2rem)/1.05 'Cormorant Garamond', Georgia, serif !important;
  letter-spacing: -0.005em;
  color: var(--hd-ink, #1F1812) !important;
  margin: 0 !important;
  text-align: left !important;
  text-wrap: balance;
}
.page-home-section-h em {
  font-style: italic;
  color: var(--hd-sage-deep, #3D5A3E);
  font-weight: 400;
}
.page-home-section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none !important;
  color: var(--hd-ink, #1F1812) !important;
  font: 500 0.86rem/1 'Jost', system-ui, sans-serif;
  letter-spacing: 0.04em;
  padding: 0.55rem 0;
  position: relative;
  transition: transform 360ms var(--hd-spring, cubic-bezier(0.32,0.72,0,1));
}
.page-home-section-link::after {
  content: '';
  position: absolute;
  left: 0; right: 1.5rem;
  bottom: 0.3rem;
  height: 1px;
  background: var(--hd-sage-deep, #3D5A3E);
  transform: scaleX(0.5);
  transform-origin: left center;
  transition: transform 540ms var(--hd-spring, cubic-bezier(0.32,0.72,0,1));
}
.page-home-section-link:hover { transform: translateX(3px); text-decoration: none !important; }
.page-home-section-link:hover::after { transform: scaleX(1); }

/* Reveal-on-scroll (uses existing `.reveal` IntersectionObserver) */
.page-home-manifest.reveal,
.page-home-spec.reveal,
.page-home-region-inner.reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(6px);
  transition:
    opacity 820ms var(--hd-spring, cubic-bezier(0.32,0.72,0,1)),
    transform 820ms var(--hd-spring, cubic-bezier(0.32,0.72,0,1)),
    filter 820ms var(--hd-spring, cubic-bezier(0.32,0.72,0,1));
}
.page-home-manifest.visible,
.page-home-spec.visible,
.page-home-region-inner.visible {
  opacity: 1; transform: translateY(0); filter: blur(0);
}

/* ===== Hero ===== */
.page-home-hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  color: #FAFAF7;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat;
  overflow: hidden;
  isolation: isolate;
}
.page-home-hero::before { content: none !important; }   /* old .hero overlay deaktivieren */

.page-home-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(31,24,18,0.3) 0%, rgba(31,24,18,0.05) 35%, rgba(31,24,18,0.85) 100%),
    radial-gradient(60% 60% at 80% 30%, rgba(31,24,18,0.05), transparent 70%);
}
.page-home-hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.4;
  mix-blend-mode: overlay;
}
.page-home-hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding:
    clamp(6rem, 14vh, 9rem) clamp(1.5rem, 5vw, 3rem)
    clamp(3.5rem, 8vh, 5.5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-home-hero-eyebrow {
  display: inline-block;
  font: 500 0.66rem/1 'Jost', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: #FAFAF7;
  padding: 0.45rem 0.85rem;
  background: rgba(250, 250, 247, 0.1);
  border: 1px solid rgba(250, 250, 247, 0.25);
  border-radius: 9999px;
  backdrop-filter: blur(8px);
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}
.page-home-hero-headline {
  font: 400 clamp(3rem, 8.5vw, 6rem)/1 'Cormorant Garamond', Georgia, serif !important;
  letter-spacing: -0.012em;
  color: #FAFAF7 !important;
  margin: 0 0 clamp(1.5rem, 3vw, 2rem) !important;
  text-align: left !important;
  max-width: 16ch;
  text-wrap: balance;
}
.page-home-hero-headline em {
  font-style: italic;
  color: #D9DFC9;
  font-weight: 400;
}
.page-home-hero-sub {
  font: 400 clamp(1rem, 1.6vw, 1.2rem)/1.55 'Jost', system-ui, sans-serif !important;
  color: rgba(250, 250, 247, 0.85) !important;
  margin: 0 0 clamp(1.75rem, 3.5vw, 2.5rem) !important;
  max-width: 38rem;
}
.page-home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

/* CTA — same magnetic Button-in-Button as Header/Footer */
.page-home-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.7rem 0.7rem 1.4rem;
  background: #FAFAF7;
  color: var(--hd-ink, #1F1812) !important;
  text-decoration: none !important;
  border-radius: 9999px;
  font: 500 0.92rem/1 'Jost', system-ui, sans-serif !important;
  letter-spacing: 0.04em;
  text-transform: none !important;
  border: none !important;
  transition:
    transform 360ms var(--hd-spring, cubic-bezier(0.32,0.72,0,1)),
    background 360ms var(--hd-spring, cubic-bezier(0.32,0.72,0,1));
  will-change: transform;
}
.page-home-hero-cta:hover {
  background: #FFFFFF;
  text-decoration: none !important;
  color: var(--hd-ink, #1F1812) !important;
  box-shadow: none !important;
  transform: none;
}
.page-home-hero-cta:active { transform: scale(0.98); }
.page-home-hero-cta-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.95rem; height: 1.95rem;
  border-radius: 9999px;
  background: rgba(31, 24, 18, 0.08);
  color: var(--hd-ink, #1F1812);
  transition: transform 420ms var(--hd-spring, cubic-bezier(0.32,0.72,0,1)), background 360ms var(--hd-spring, cubic-bezier(0.32,0.72,0,1));
}
.page-home-hero-cta:hover .page-home-hero-cta-icon {
  transform: translate(2px, -2px) scale(1.06);
  background: rgba(31, 24, 18, 0.14);
}
.page-home-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(250, 250, 247, 0.85) !important;
  text-decoration: none !important;
  font: 500 0.9rem/1 'Jost', system-ui, sans-serif;
  letter-spacing: 0.04em;
  padding: 0.65rem 0;
  position: relative;
  transition: color 300ms var(--hd-spring, cubic-bezier(0.32,0.72,0,1)), transform 360ms var(--hd-spring, cubic-bezier(0.32,0.72,0,1));
}
.page-home-hero-ghost::after {
  content: '';
  position: absolute;
  left: 0; right: 1.5rem;
  bottom: 0.45rem;
  height: 1px;
  background: rgba(250, 250, 247, 0.5);
  transform: scaleX(0.55);
  transform-origin: left center;
  transition: transform 520ms var(--hd-spring, cubic-bezier(0.32,0.72,0,1));
}
.page-home-hero-ghost:hover { color: #FAFAF7 !important; transform: translateX(3px); text-decoration: none !important; }
.page-home-hero-ghost:hover::after { transform: scaleX(1); }

.page-home-hero-meta {
  list-style: none;
  margin: 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(250, 250, 247, 0.15);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 2rem;
  width: 100%;
  max-width: 36rem;
}
.page-home-hero-meta li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font: 400 0.86rem/1.3 'Jost', system-ui, sans-serif;
  color: rgba(250, 250, 247, 0.88);
}
.page-home-hero-meta-label {
  font: 500 0.6rem/1 'Jost', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(250, 250, 247, 0.55);
}

/* ===== Manifest ===== */
.page-home-manifest {
  background: var(--hd-paper, #FAFAF7);
  padding: clamp(5rem, 12vw, 9rem) clamp(1.5rem, 5vw, 3rem);
}
.page-home-manifest-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2.2fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
}
.page-home-manifest-lead { display: flex; flex-direction: column; gap: 0.5rem; }
.page-home-manifest-num {
  font: 400 clamp(4.5rem, 11vw, 8rem)/1 'Cormorant Garamond', Georgia, serif;
  color: var(--hd-ink, #1F1812);
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}
.page-home-manifest-num sup {
  font-size: 0.32em;
  vertical-align: super;
  font-weight: 400;
  color: var(--hd-sage-deep, #3D5A3E);
  margin-left: 0.1em;
}
.page-home-manifest-caption {
  font: 500 0.72rem/1.3 'Jost', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(31, 24, 18, 0.6);
}
.page-home-manifest-statement {
  font: 400 clamp(1.5rem, 2.6vw, 2.2rem)/1.3 'Cormorant Garamond', Georgia, serif !important;
  color: var(--hd-ink, #1F1812) !important;
  margin: 0 !important;
  letter-spacing: -0.002em;
  text-wrap: pretty;
}
.page-home-manifest-statement em {
  font-style: italic;
  color: var(--hd-sage-deep, #3D5A3E);
  display: block;
  margin-top: 0.5rem;
}

/* ===== Specs ===== */
.page-home-specs {
  background: var(--hd-paper, #FAFAF7);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(5rem, 10vw, 8rem);
}
.page-home-specs-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  grid-template-rows: auto auto;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.page-home-spec {
  background: #FFFFFF;
  border-radius: clamp(1.2rem, 2vw, 1.75rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 1px 2px rgba(31, 24, 18, 0.04),
    0 12px 32px -16px rgba(31, 24, 18, 0.12);
  border: 1px solid rgba(31, 24, 18, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  position: relative;
}
.page-home-spec-large {
  grid-row: 1 / 3;
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1.05fr 1fr;
}
.page-home-spec-media {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 280px;
}
.page-home-spec-large .page-home-spec-body { padding: clamp(1.5rem, 3vw, 2.5rem); }
.page-home-spec-num {
  font: 500 0.66rem/1 'Jost', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--hd-sage-deep, #3D5A3E);
}
.page-home-spec-h {
  font: 500 clamp(1.4rem, 2.2vw, 2rem)/1.15 'Cormorant Garamond', Georgia, serif !important;
  color: var(--hd-ink, #1F1812) !important;
  margin: 0 !important;
  letter-spacing: -0.002em;
  text-align: left !important;
}
.page-home-spec-h em {
  font-style: italic;
  color: var(--hd-sage-deep, #3D5A3E);
  font-weight: 500;
}
.page-home-spec p {
  font: 400 0.95rem/1.65 'Jost', system-ui, sans-serif;
  color: rgba(31, 24, 18, 0.75);
  margin: 0;
}
.page-home-spec-body { display: flex; flex-direction: column; gap: 0.7rem; }
.page-home-spec.reveal { transition-delay: 0ms; }
.page-home-spec-small.reveal:nth-of-type(2) { transition-delay: 80ms; }
.page-home-spec-small.reveal:nth-of-type(3) { transition-delay: 160ms; }

/* ===== Region ===== */
.page-home-region {
  position: relative;
  min-height: clamp(60vh, 70dvh, 700px);
  display: flex;
  align-items: flex-end;
  color: #FAFAF7;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat;
  overflow: hidden;
  margin: 0;
  isolation: isolate;
}
.page-home-region-overlay {
  position: absolute; inset: 0;
  z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(31,24,18,0.15) 0%, rgba(31,24,18,0.7) 75%, rgba(31,24,18,0.9) 100%);
}
.page-home-region-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 5vw, 3rem);
}
.page-home-region-h {
  font: 400 clamp(2.5rem, 6vw, 4.5rem)/1.05 'Cormorant Garamond', Georgia, serif !important;
  color: #FAFAF7 !important;
  margin: 0 0 1.25rem !important;
  letter-spacing: -0.01em;
  text-align: left !important;
  max-width: 16ch;
  text-wrap: balance;
}
.page-home-region-h em {
  font-style: italic;
  color: #D9DFC9;
  font-weight: 400;
}
.page-home-region-sub {
  font: 400 1rem/1.55 'Jost', system-ui, sans-serif !important;
  color: rgba(250, 250, 247, 0.85) !important;
  margin: 0 0 1.75rem !important;
  max-width: 42rem;
}
.page-home-region-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.4rem;
  background: rgba(250, 250, 247, 0.12);
  border: 1px solid rgba(250, 250, 247, 0.25);
  backdrop-filter: blur(8px);
  border-radius: 9999px;
  color: #FAFAF7 !important;
  text-decoration: none !important;
  font: 500 0.9rem/1 'Jost', system-ui, sans-serif;
  letter-spacing: 0.04em;
  transition: background 320ms var(--hd-spring, cubic-bezier(0.32,0.72,0,1)), transform 360ms var(--hd-spring, cubic-bezier(0.32,0.72,0,1));
}
.page-home-region-link:hover { background: rgba(250, 250, 247, 0.2); transform: translateX(3px); text-decoration: none !important; color: #FAFAF7 !important; }

/* ===== Gallery ===== */
.page-home-gallery {
  background: var(--hd-paper, #FAFAF7);
  padding: clamp(5rem, 10vw, 8rem) 0;
}
.page-home-gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: clamp(0.6rem, 1.2vw, 1rem);
}
.page-home-gallery-tile {
  position: relative;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: clamp(0.9rem, 1.4vw, 1.25rem);
  overflow: hidden;
  text-decoration: none !important;
  color: #FAFAF7 !important;
  isolation: isolate;
  transition: transform 520ms var(--hd-spring, cubic-bezier(0.32,0.72,0,1));
}
.page-home-gallery-tile::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(31,24,18,0) 30%, rgba(31,24,18,0.65) 100%);
  transition: opacity 360ms var(--hd-spring, cubic-bezier(0.32,0.72,0,1));
}
.page-home-gallery-tile::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: rgba(31, 24, 18, 0);
  transition: background 360ms var(--hd-spring, cubic-bezier(0.32,0.72,0,1));
}
.page-home-gallery-tile:hover { transform: scale(1.005); }
.page-home-gallery-tile:hover::after { background: rgba(31, 24, 18, 0.08); }
.page-home-gallery-tile-large {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
  aspect-ratio: auto;
}
.page-home-gallery-tile-tag {
  position: absolute;
  left: 1rem; bottom: 1rem;
  z-index: 2;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  background: rgba(31, 24, 18, 0.5);
  backdrop-filter: blur(8px);
  font: 500 0.65rem/1 'Jost', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #FAFAF7;
}

/* ===== Prices ===== */
.page-home-prices {
  background: var(--hd-cream, #F4EFE4);
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
}
.page-home-prices::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background: radial-gradient(60% 50% at 100% 0%, rgba(139, 111, 58, 0.06), transparent 70%);
}
.page-home-prices > * { position: relative; }
.page-home-prices-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
}
.page-home-prices-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem) 0;
  border-bottom: 1px solid rgba(31, 24, 18, 0.1);
  align-items: baseline;
}
.page-home-prices-row:first-of-type { border-top: 1px solid rgba(31, 24, 18, 0.1); }
.page-home-prices-row dt { display: flex; flex-direction: column; gap: 0.3rem; margin: 0; }
.page-home-prices-row dd {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0.75rem;
  margin: 0;
  text-align: right;
}
.page-home-prices-label {
  font: 500 clamp(1.1rem, 1.8vw, 1.5rem)/1.2 'Cormorant Garamond', Georgia, serif;
  color: var(--hd-ink, #1F1812);
  letter-spacing: 0;
}
.page-home-prices-meta {
  font: 400 0.82rem/1 'Jost', system-ui, sans-serif;
  color: rgba(31, 24, 18, 0.55);
  letter-spacing: 0.02em;
}
.page-home-prices-value {
  font: 400 clamp(2rem, 4vw, 3.2rem)/1 'Cormorant Garamond', Georgia, serif;
  color: var(--hd-ink, #1F1812);
  letter-spacing: -0.005em;
}
.page-home-prices-value sup {
  font-size: 0.36em;
  vertical-align: super;
  font-weight: 400;
  color: var(--hd-sage-deep, #3D5A3E);
}
.page-home-prices-unit {
  font: 400 0.86rem/1.2 'Jost', system-ui, sans-serif;
  color: rgba(31, 24, 18, 0.55);
  letter-spacing: 0.02em;
}
.page-home-prices-row-list dd { justify-content: flex-end; text-align: right; }
.page-home-prices-inclusives {
  font: 400 0.95rem/1.55 'Jost', system-ui, sans-serif;
  color: var(--hd-ink, #1F1812);
  letter-spacing: 0.01em;
}
.page-home-prices-actions {
  max-width: 1200px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  display: flex;
  justify-content: flex-end;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .page-home-manifest-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .page-home-specs-grid { grid-template-columns: 1fr; }
  .page-home-spec-large { grid-row: auto; grid-template-rows: 220px auto; }
  .page-home-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .page-home-gallery-tile-large { grid-column: 1 / 3; aspect-ratio: 16/9; }
}
@media (max-width: 600px) {
  .page-home-hero-meta { grid-template-columns: 1fr; gap: 0.85rem; }
  .page-home-hero-actions { gap: 0.85rem; }
  .page-home-hero-cta { width: 100%; justify-content: space-between; }
  .page-home-prices-row { grid-template-columns: 1fr; gap: 0.5rem; }
  .page-home-prices-row dd { justify-content: flex-start; text-align: left; }
  .page-home-prices-row-list dd { text-align: left; }
  .page-home-prices-actions { justify-content: stretch; }
  .page-home-prices-actions .page-home-hero-cta { width: 100%; }
  .page-home-section-head-split { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .page-home-manifest.reveal,
  .page-home-spec.reveal,
  .page-home-region-inner.reveal {
    transition-duration: 1ms !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}

/* Suppress legacy `.alt`, `.hero`, `.grape-divider`, `.dark`, `.card`, etc. inside page-id-114
   only — preserve their defaults elsewhere. */
.page-id-114 .hero::before { background: transparent !important; }


/* === GALLERY BENTO GRID FIX — 2026-05-13 (6 tiles, 4-col layout) === */
.page-home-gallery-grid-bento {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  grid-template-rows: auto auto !important;
  gap: clamp(0.6rem, 1.2vw, 1rem);
}
.page-home-gallery-grid-bento .page-home-gallery-tile {
  aspect-ratio: 4/3 !important;
  grid-row: auto !important;
  grid-column: auto !important;
}
.page-home-gallery-grid-bento .page-home-gallery-tile-wide {
  grid-column: span 2 !important;
  aspect-ratio: 16/9 !important;
}

@media (max-width: 980px) {
  .page-home-gallery-grid-bento { grid-template-columns: repeat(2, 1fr) !important; }
  .page-home-gallery-grid-bento .page-home-gallery-tile-wide {
    grid-column: span 2 !important;
    aspect-ratio: 16/9 !important;
  }
}
@media (max-width: 480px) {
  .page-home-gallery-grid-bento { grid-template-columns: 1fr !important; }
  .page-home-gallery-grid-bento .page-home-gallery-tile-wide {
    grid-column: span 1 !important;
    aspect-ratio: 16/10 !important;
  }
}
