/* ================================================================
   SoulParent — Finale Version
   Base: V3 "Leicht" (Outfit) + wine headings + Cormorant quotes
   + sage green accent + 2-col offer blocks + real photos
   ================================================================ */

/* ── Design Tokens ── */
:root {
  --cream:      #FFFCF2;
  --cream-dark: #F5ECE5;
  --sage:       #E8EDE5;   /* soft green — section bg + quote bg */
  --wine:       #632B30;   /* headings */
  --olive:      #5E6B54;   /* body text — 5.52:1 contrast on cream */
  --gold:       #C8A966;   /* legacy accent */
  --forest:     #748067;   /* primary CTA + quote section bg */
  --forest-dark:#627059;   /* button hover */
  --font-heading: 'Outfit', sans-serif;
  --font-body:    'Outfit', sans-serif;
  --font-quote:   'Cormorant Garamond', Georgia, serif;
  --max-w: 760px;
  --section-pad: clamp(4rem, 10vh, 6rem);
}

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  line-height: 1.75;
  color: var(--olive);
  background: var(--cream);
  padding-top: 88px;
}

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

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

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--wine);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-weight: 400; font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-weight: 400; font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-weight: 500; font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

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

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.container--wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

section {
  padding: var(--section-pad) 0;
}

section:nth-child(even) {
  background: var(--cream-dark);
}

/* ── Auth Overlay ── */
#auth-overlay {
  position: fixed;
  inset: 0;
  background: var(--wine);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-box {
  text-align: center;
  color: var(--cream);
}
.auth-logo {
  width: 180px;
  margin: 0 auto 2rem;
}
.auth-input {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  padding: 12px 20px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: transparent;
  color: var(--cream);
  text-align: center;
  outline: none;
  width: 260px;
}
.auth-input::placeholder { color: rgba(255,252,242,0.5); }
.auth-btn {
  display: block;
  margin: 1rem auto 0;
  padding: 0.75rem 2.5rem;
  background: var(--forest);
  color: var(--cream);
  border: none;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
  letter-spacing: 0.04em;
}
.auth-error {
  display: none;
  color: var(--gold);
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

/* ── Skip Link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: var(--wine);
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: 0 0 4px 4px;
  z-index: 10000;
}
.skip-link:focus { top: 0; }

/* ── Header & Nav ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 88px;
  background: rgba(255, 252, 242, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(99, 43, 48, 0.12);
  z-index: 100;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo { height: 64px; width: auto; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--olive);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav-link:hover { color: var(--wine); }
.nav-link.active {
  color: var(--wine);
  border-bottom-color: var(--gold);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  border: 1px solid rgba(99, 43, 48, 0.1);
  border-radius: 4px;
  padding: 8px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  box-shadow: 0 4px 20px rgba(99, 43, 48, 0.08);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  color: var(--olive);
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu a:hover {
  background: var(--sage);
  color: var(--wine);
}
.dropdown-arrow { font-size: 0.7em; margin-left: 3px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--wine);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Mobile Nav ── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--wine);
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav a {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--wine);
  padding: 12px 0;
  border-bottom: 1px solid rgba(99, 43, 48, 0.08);
  display: block;
}
.mobile-dropdown-toggle {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(99, 43, 48, 0.08);
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--wine);
  cursor: pointer;
  padding: 12px 0;
  width: 100%;
  text-align: left;
}
.mobile-sub {
  display: none;
  padding-left: 1rem;
}
.mobile-sub.open { display: block; }
.mobile-sub a {
  font-size: 1rem;
  color: var(--olive);
  border-bottom: none;
  padding: 8px 0;
}

/* ── Focus Visible ── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Hero ── */
.hero {
  padding: clamp(5rem, 14vh, 8rem) 0 clamp(4rem, 10vh, 6rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.18;
  filter: saturate(0.6);
  /* NOTE: hero.webp is 640px — request higher resolution from client */
}

.hero .container {
  position: relative;
  z-index: 1;
}

.kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero h1 { margin-bottom: 1.75rem; }

.subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--olive);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.gold-sep { display: none; }

/* ── Section Intro ── */
.section-intro { margin-bottom: 3.75rem; }
.section-intro .kicker { margin-bottom: 0.5rem; }
.section-intro h2 { margin-bottom: 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.25rem;
  background: var(--forest);
  color: var(--cream);
  border: 0;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(116, 128, 103, 0.28);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 44px;
}
@media (hover: hover) {
  .btn:hover {
    background: var(--forest-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(98, 112, 89, 0.38);
  }
}
.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(98, 112, 89, 0.3);
}

/* ── Quote Block ── */
.quote-section {
  background: var(--forest) !important;  /* override nth-child alternation */
  padding: clamp(3rem, 7vh, 4.5rem) 0;
}

.quote-block {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
}

.quote-text {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.quote-author {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: rgba(255, 252, 242, 0.75);
  text-transform: uppercase;
}

/* ── Round Images ── */
.portrait {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  margin: 0 auto 2rem;
  display: block;
  box-shadow: 0 4px 24px rgba(99, 43, 48, 0.12);
}

.round-img {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin: 0 auto 2rem;
  display: block;
  box-shadow: 0 4px 24px rgba(99, 43, 48, 0.12);
  /* Low-res images (640px): REQUEST full-resolution from client */
}

/* ── Homepage Offering Teasers ── */
.offering-item {
  padding: 2rem 0;
}
.offering-item + .offering-item { border-top: 1px solid rgba(99, 43, 48, 0.08); }
.offering-item h3 { margin-bottom: 0.75rem; }
.offering-item p { max-width: 560px; }

/* ── Detail Pages ── */
.detail-intro {
  text-align: center;
  margin-bottom: 3.5rem;
}
.detail-intro .round-img { margin-bottom: 2rem; }

.pillars {
  list-style: none;
  margin: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.pillars li {
  background: var(--sage);
  color: var(--wine);
  padding: 0.4rem 1rem;
  border-radius: 40px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 500;
}
.step-text { padding-top: 4px; }

.pricing-box {
  background: transparent;
  border-left: 3px solid var(--gold);
  padding: 0.25rem 0 0.25rem 1.5rem;
  margin: 2rem 0;
}
.pricing-box h3 { margin-bottom: 0.75rem; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; }
.pricing-box p { margin-bottom: 0.5rem; }
.pricing-box p:last-child { margin-bottom: 0; }

.explore-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}
.explore-list li {
  position: relative;
  padding: 0.9rem 0 0.9rem 2rem;
  border-bottom: 1px solid rgba(99, 43, 48, 0.08);
}
.explore-list li:last-child { border-bottom: 0; }
.explore-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.35rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px 999px 999px 2px;
  background: var(--gold);
  transform: rotate(-35deg);
}

.section-photo {
  margin: 2rem 0 0;
}
.section-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 4px 24px rgba(99, 43, 48, 0.12);
}

.warm-signoff {
  color: var(--wine);
  font-size: 1.05rem;
  margin-top: 1.5rem;
}

.dates-list {
  list-style: none;
  margin: 1rem 0;
}
.dates-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(99, 43, 48, 0.08);
  font-size: 0.95rem;
  color: var(--wine);
}
.dates-list li:last-child { border-bottom: none; }

/* ── Timeline ── */
.timeline {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--gold);
}
.timeline-item {
  position: relative;
  padding-bottom: 1.75rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.35rem;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}
.timeline-year {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--wine);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.timeline-desc { font-size: 0.95rem; line-height: 1.5; }

/* ── CTA Section ── */
.cta-section {
  text-align: center;
  background: var(--cream-dark);
  padding: var(--section-pad) 0;
}
.cta-section h2 { margin-bottom: 1.5rem; }

/* ── Booking & Contact ── */
.booking-card {
  background: var(--sage);
  border: 1px solid rgba(94, 107, 84, 0.25);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  text-align: center;
  margin: 2rem 0;
}
.booking-card p { margin-bottom: 1.5rem; }

.contact-info { margin: 1.5rem 0; }
.contact-info a {
  color: var(--wine);
  text-decoration: underline;
  text-decoration-color: rgba(99, 43, 48, 0.3);
}
.contact-info a:hover { text-decoration-color: var(--wine); }

.legal-section {
  border-top: 1px solid rgba(99, 43, 48, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
}
.legal-section h2 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.legal-section a {
  color: var(--wine);
  text-decoration: underline;
}

/* ── Footer ── */
.site-footer {
  background: var(--cream-dark);
  border-top: 1px solid rgba(99, 43, 48, 0.1);
  padding: 3rem 0;
  text-align: center;
}
.footer-logo { height: 36px; width: auto; margin: 0 auto 1.25rem; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--olive);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--wine); }
.footer-copy { font-size: 0.8rem; color: var(--olive); opacity: 0.7; }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

.reveal-stagger .reveal-child {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-stagger.visible .reveal-child { opacity: 1; transform: none; }
.reveal-stagger.visible .reveal-child:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible .reveal-child:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.visible .reveal-child:nth-child(4) { transition-delay: 0.3s; }

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger .reveal-child {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  body { padding-top: 76px; }
  .site-header { height: 76px; }
  .desktop-nav { display: none; }
  .nav-toggle { display: flex; }
  .portrait { width: 180px; height: 180px; }
  .round-img { width: 200px; height: 200px; }
  .quote-block { padding: 2rem 1.5rem; }
  .pricing-box { padding: 0.25rem 0 0.25rem 1.25rem; }
}

@media (max-width: 480px) {
  .btn { width: 100%; justify-content: center; }
  .booking-card { padding: 2rem 1.25rem; }
  .pillars { gap: 0.5rem; }
}

/* ── Hero Full-Width Image ── */
.hero-image-wrap {
  width: 100%;
  overflow: hidden;
  margin-top: -88px; /* extend behind fixed header */
}
.hero-full-img {
  width: 100%;
  height: clamp(420px, 70vh, 760px);
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
@media (max-width: 768px) {
  .hero-image-wrap { margin-top: -76px; }
  .hero-full-img { height: clamp(340px, 58vh, 520px); }
}

/* ── Angebot Cards (anna-joseph style) ── */
.angebote-section { padding: var(--section-pad) 0; }
.angebot-overview-section { padding-top: 0; }

.angebot-card {
  display: grid;
  grid-template-columns: 45% 55%;
  max-width: 960px;
  margin: 0 auto 2.5rem;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(99, 43, 48, 0.09);
}
.angebot-card:last-child { margin-bottom: 0; }
.angebot-card:nth-child(even) .angebot-card-img { order: 2; }
.angebot-card:nth-child(even) .angebot-card-body {
  order: 1;
  background: var(--cream-dark);
}
.angebot-card-img {
  overflow: hidden;
  min-height: 280px;
}
.angebot-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.angebot-card:hover .angebot-card-img img { transform: scale(1.04); }
.angebot-card-body {
  padding: 3rem clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}
.angebot-card-body h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  margin-bottom: 0.5rem;
}
.angebot-subtitle {
  color: var(--wine);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
@media (max-width: 680px) {
  .angebot-overview-section { padding-top: 0.5rem; }
  .angebot-card { grid-template-columns: 1fr; }
  .angebot-card:nth-child(even) .angebot-card-img { order: 0; }
  .angebot-card:nth-child(even) .angebot-card-body { order: 0; }
  .angebot-card-img { min-height: 220px; }
}

/* ── Contact Form ── */
.contact-form { margin: 2rem 0; }
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--wine);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--olive);
  padding: 0.75rem 1rem;
  border: 1px solid rgba(99, 43, 48, 0.2);
  border-radius: 2px;
  background: var(--cream);
  width: 100%;
  display: block;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-divider {
  text-align: center;
  margin: 2.5rem 0;
  color: var(--olive);
  opacity: 0.6;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-success {
  display: none;
  background: var(--sage);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  color: var(--wine);
  font-size: 0.95rem;
  margin-top: 1rem;
}
@media (max-width: 480px) {
  .contact-form .form-row { grid-template-columns: 1fr; }
}

/* ── Inline expanding CTA contact form ── */
.cta-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.cta-toggle__icon {
  width: 0.6rem;
  height: 0.6rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.cta-toggle[aria-expanded="true"] {
  background: transparent;
  color: var(--forest-dark);
  border-color: var(--forest-dark);
  box-shadow: none;
}

.cta-toggle[aria-expanded="true"] .cta-toggle__icon {
  transform: translateY(2px) rotate(-135deg);
}

.cta-form-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  margin-top: 0;
  text-align: left;
}

.cta-form-wrapper[hidden] {
  display: none;
}

.cta-form-wrapper.is-open {
  grid-template-rows: 1fr;
  margin-top: 2rem;
}

.cta-form-inner {
  overflow: hidden;
  min-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease 0.05s, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
  border-top: 1px solid rgba(99, 43, 48, 0.12);
  padding-top: 2rem;
  max-width: 560px;
  margin: 0 auto;
}

.cta-form-wrapper.is-open .cta-form-inner {
  opacity: 1;
  transform: translateY(0);
}

.cta-form-intro {
  font-family: var(--font-quote);
  font-size: 1.15rem;
  color: var(--olive);
  text-align: center;
  margin: 0 0 1.5rem;
  font-style: italic;
}

.contact-form .btn[data-loading="true"] {
  opacity: 0.6;
  pointer-events: none;
  cursor: wait;
}

.form-error {
  background: rgba(99, 43, 48, 0.06);
  border-left: 3px solid var(--wine);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  color: var(--wine);
  font-size: 0.95rem;
  margin-top: 1rem;
}

.form-error a {
  color: var(--wine);
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
  .cta-form-wrapper,
  .cta-form-inner,
  .cta-toggle,
  .cta-toggle__icon {
    transition: none !important;
  }
}

@media (max-width: 600px) {
  .cta-toggle {
    white-space: normal;
    line-height: 1.3;
    padding: 0.85rem 1.5rem;
  }
  .cta-form-inner {
    padding-top: 1.5rem;
  }
}
