/* ═══════════════════════════════════════════════════════════════
   WeitsICHt - "Sanfte Weite" Design System
   Organisch · Poetisch · Einladend
   ═══════════════════════════════════════════════════════════════ */

/* ─── Fonts ─── */
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/Fraunces-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/Fraunces-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Crimson Pro';
  src: url('../fonts/CrimsonPro-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Crimson Pro';
  src: url('../fonts/CrimsonPro-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ─── CSS Variables ─── */
:root {
  /* Primärfarben - Österreichische Landschaft */
  --meadow: #4a7c59;
  --meadow-light: #6b9b7a;
  --meadow-pale: #e8f0ea;

  /* Warme Erdtöne */
  --earth: #8b6f4e;
  --earth-light: #a68b6a;
  --clay: #c4a77d;
  --sand: #e5dcc9;

  /* Himmel & Horizont */
  --sky: #7ea8be;
  --horizon: #b8ccd6;

  /* Regenbogen-Akzente (subtil) */
  --rainbow-warm: #d4856a;
  --rainbow-gold: #c9a227;
  --rainbow-rose: #c27b8e;

  /* Basis */
  --cream: #faf8f3;
  --paper: #fffef9;
  --ink: #2c2416;
  --ink-soft: #5c5347;
  --ink-faded: #8a8278;

  /* Typografie */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Crimson Pro', Georgia, serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  margin: 0;
  overflow-x: hidden;
}

/* Paper texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 1;
}

/* ─── Typography ─── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: -0.02em;
}

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

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
}

p {
  max-width: 65ch;
  margin-bottom: 1.5em;
}

.text-accent {
  color: var(--meadow);
}

.text-display {
  font-family: var(--font-display);
}

.text-large {
  font-size: 1.25rem;
}

.italic {
  font-style: italic;
}

/* ─── Links & Buttons ─── */
a {
  color: var(--meadow);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: all 0.3s var(--ease-out-expo);
}

a:hover {
  color: var(--earth);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 1rem 2rem;
  background: var(--meadow);
  color: var(--paper);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.2) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out-expo);
}

.btn:hover {
  background: var(--meadow-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(74, 124, 89, 0.3);
  color: var(--paper);
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn-outline {
  background: transparent;
  color: var(--meadow);
  border: 2px solid var(--meadow);
}

.btn-outline:hover {
  background: var(--meadow);
  color: var(--paper);
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s var(--ease-out-expo);
}

.nav.scrolled {
  background: rgba(250, 248, 243, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  height: 60px;
  width: auto;
  transition: transform 0.3s var(--ease-out-expo);
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--meadow), var(--rainbow-gold));
  transition: width 0.3s var(--ease-out-expo);
}

.nav-link:hover,
.nav-link.active {
  color: var(--meadow);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Mobile menu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--ink);
  margin: 6px 0;
  transition: all 0.3s var(--ease-out-expo);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    /* Dynamic viewport height for mobile browsers */
    background: var(--paper);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out-expo);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

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

  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Mobile menu overlay */
  .nav::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(44, 36, 22, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out-expo);
    z-index: 999;
  }

  .nav:has(.nav-links.open)::before {
    opacity: 1;
    pointer-events: auto;
  }
}

/* ─── Hero Section ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(250, 248, 243, 0.3) 0%,
      rgba(250, 248, 243, 0.7) 50%,
      rgba(250, 248, 243, 0.98) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  text-align: center;
}

.hero-logo {
  width: min(320px, 70vw);
  height: auto;
  margin-bottom: var(--space-md);
  animation: fadeInUp 1s var(--ease-out-expo) 0.2s both;
}

.hero-title {
  margin-bottom: var(--space-sm);
  animation: fadeInUp 1s var(--ease-out-expo) 0.4s both;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto var(--space-md);
  animation: fadeInUp 1s var(--ease-out-expo) 0.6s both;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 auto var(--space-md);
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  animation: fadeInUp 1s var(--ease-out-expo) 0.7s both;
}

.hero-list li {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: var(--ink-soft);
  margin: 0;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  transition: all 0.3s var(--ease-out-expo);
  display: inline-block;
  align-self: center;
}

.hero-list li:hover {
  background: rgba(74, 124, 89, 0.08);
  color: var(--ink);
  transform: scale(1.02);
}

.hero-cta {
  animation: fadeInUp 1s var(--ease-out-expo) 0.8s both;
}

/* ─── Hero Terms Slider ─── */
.hero-terms-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 1.5rem;
  max-width: 600px;
  animation: fadeInUp 1s var(--ease-out-expo) 0.7s both;
}

.term-viewport {
  position: relative;
  width: 100%;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.term-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.term-slide {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%) scale(0.95);
  opacity: 0;
  text-align: center;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  color: var(--ink);
  font-weight: 700;
  padding: 0 0.5rem;
  box-sizing: border-box;
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.term-slide.active {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  pointer-events: auto;
}

.term-nav {
  background: rgba(250, 248, 243, 0.5);
  border: 1px solid rgba(74, 124, 89, 0.1);
  color: var(--meadow);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s var(--ease-out-expo);
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.term-nav:hover {
  background: rgba(250, 248, 243, 1);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border-color: rgba(74, 124, 89, 0.2);
}

.term-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
  animation: fadeInUp 1s var(--ease-out-expo) 0.75s both;
}

.term-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(74, 124, 89, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.term-dot:hover {
  background: rgba(74, 124, 89, 0.5);
}

.term-dot.active {
  background: var(--meadow);
  transform: scale(1.3);
}

/* Floating decorative elements */
.hero-decor {
  position: absolute;
  pointer-events: none;
}

.hero-decor-1 {
  top: 20%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(ellipse, var(--rainbow-gold) 0%, transparent 70%);
  opacity: 0.15;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero-decor-2 {
  bottom: 30%;
  right: 10%;
  width: 150px;
  height: 150px;
  background: radial-gradient(ellipse, var(--meadow) 0%, transparent 70%);
  opacity: 0.1;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite reverse;
}

/* ─── Sections ─── */
section {
  padding: var(--space-xl) var(--space-md);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--meadow);
  margin-bottom: 1rem;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--rainbow-warm), var(--rainbow-gold), var(--meadow));
  border-radius: 3px;
  margin: 0 auto var(--space-md);
}

/* ─── About Section ─── */
.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, var(--meadow-pale) 0%, var(--sand) 100%);
  border-radius: 30px;
  z-index: -1;
  opacity: 0.5;
}

.about-content {
  padding: var(--space-md) 0;
}

.about-quote {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--meadow);
  border-left: 3px solid var(--meadow);
  padding-left: 1.5rem;
  margin: var(--space-md) 0;
}

/* ─── Offerings Section ─── */
.offerings {
  background: linear-gradient(180deg, var(--cream) 0%, var(--meadow-pale) 100%);
  position: relative;
}

.offerings::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200'%3E%3Cpath fill='%23fffef9' d='M0,160L60,144C120,128,240,96,360,90.7C480,85,600,107,720,122.7C840,139,960,149,1080,144C1200,139,1320,117,1380,106.7L1440,96L1440,0L1380,0C1320,0,1200,0,1080,0C960,0,840,0,720,0C600,0,480,0,360,0C240,0,120,0,60,0L0,0Z'/%3E%3C/svg%3E") no-repeat;
  background-size: cover;
  pointer-events: none;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.offering-card {
  background: var(--paper);
  padding: var(--space-md);
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.offering-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rainbow-warm), var(--rainbow-gold), var(--meadow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
}

.offering-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.offering-card:hover::before {
  transform: scaleX(1);
}

.offering-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.offering-icon-1 {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.offering-icon-2 {
  background: linear-gradient(135deg, #d4fc79 0%, #96e6a1 100%);
}

.offering-icon-3 {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.offering-card h3 {
  margin-bottom: 1rem;
}

.offering-card p {
  color: var(--ink-soft);
  margin-bottom: 0;
}

/* ─── Person Section ─── */
.person {
  background: var(--paper);
  overflow: hidden;
}

.person-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.person-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--meadow) 0%, var(--meadow-light) 100%);
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--paper);
  box-shadow: 0 10px 40px rgba(74, 124, 89, 0.3);
  position: relative;
}

.person-avatar::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px dashed var(--meadow-light);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}

.person-name {
  margin-bottom: 0.5rem;
}

.person-title {
  font-family: var(--font-display);
  color: var(--meadow);
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
}

.person-bio {
  font-size: 1.15rem;
  color: var(--ink-soft);
}

/* ─── CTA Section ─── */
.cta {
  background: linear-gradient(135deg, var(--meadow) 0%, var(--meadow-light) 100%);
  color: var(--paper);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta h2 {
  color: var(--paper);
  margin-bottom: 1rem;
}

.cta p {
  opacity: 0.9;
  font-size: 1.2rem;
  margin: 0 auto var(--space-md);
}

.btn-light {
  background: var(--paper);
  color: var(--meadow);
}

.btn-light:hover {
  background: var(--cream);
  color: var(--meadow);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ─── Gallery ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  color: white;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out-expo);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.gallery-caption p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 14, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-out-expo);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  transform: scale(0.9);
  transition: transform 0.4s var(--ease-out-expo);
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.lightbox-close:hover {
  opacity: 1;
}

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-lg);
  max-width: 1100px;
  margin: 0 auto;
}

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

.contact-info h2 {
  margin-bottom: var(--space-md);
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-icon-1 {
  background: linear-gradient(135deg, var(--meadow-pale), var(--sand));
  color: var(--meadow);
}

.contact-icon-2 {
  background: linear-gradient(135deg, #d4fc79, #96e6a1);
  color: var(--meadow);
}

.contact-icon-3 {
  background: linear-gradient(135deg, #ffecd2, #fcb69f);
  color: var(--earth);
}

.contact-icon-4 {
  background: linear-gradient(135deg, #a8edea, #fed6e3);
  color: var(--rainbow-rose);
}

.contact-item-content h4 {
  font-family: var(--font-display);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.contact-item-content p,
.contact-item-content a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0;
}

.contact-card {
  background: linear-gradient(135deg, var(--meadow) 0%, var(--meadow-light) 100%);
  border-radius: 24px;
  padding: var(--space-lg);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
}

.contact-card h3 {
  color: var(--paper);
  margin-bottom: 1rem;
}

.contact-card p {
  opacity: 0.9;
  margin-bottom: var(--space-md);
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ─── FAQ ─── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--paper);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s var(--ease-out-expo);
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.faq-item p {
  color: var(--ink-soft);
  margin: 0;
}

/* ─── Footer ─── */
.footer {
  background: var(--ink);
  color: var(--sand);
  padding: var(--space-lg) var(--space-md) var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto var(--space-md);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    text-align: center;
  }
}

.footer-logo {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 1rem;
}

.footer-about {
  color: var(--ink-faded);
  font-size: 0.95rem;
}

.footer h4 {
  font-family: var(--font-display);
  color: var(--clay);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--ink-faded);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--clay);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
  text-align: center;
  color: var(--ink-faded);
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 0.5rem 0;
  max-width: none;
}

/* ─── Legal Pages ─── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md);
}

.legal-content h2 {
  margin-top: var(--space-md);
  margin-bottom: 1rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-box {
  background: var(--meadow-pale);
  border-radius: 16px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.legal-highlight {
  background: linear-gradient(90deg, var(--meadow-pale), transparent);
  border-left: 3px solid var(--meadow);
  padding: 1.5rem;
  border-radius: 0 16px 16px 0;
  margin: 1.5rem 0;
}

/* ─── Animations ─── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out-expo);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Utilities ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

.mt-lg {
  margin-top: var(--space-lg);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

/* Focus states for accessibility */
*:focus-visible {
  outline: 2px solid var(--meadow);
  outline-offset: 3px;
}

/* Selection color */
::selection {
  background: var(--meadow-pale);
  color: var(--ink);
}