/* ==========================================================================
   BASE.CSS – Shared across all pages
   ========================================================================== */
   :root {
    /* Core palette */
    --cream: #fdf8f3;
    --cream-dark: #f5ede4;
    --parchment: #f0e6d8;
    --sage: #7a9e7e;
    --sage-light: #a8c4ab;
    --sage-dark: #5b7a5e;
    --terracotta: #c4836a;
    --terracotta-light: #d9a08a;
    --terracotta-dark: #a66b54;
    --gold: #d4a853;
    --gold-light: #e8c97d;
    --bark: #6b5344;
    --bark-light: #8b7355;
    --ink: #3d3631;
    --ink-soft: #5a524a;
    /* Typography */
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "Lora", Georgia, serif;
    --font-handwritten: "Caveat", cursive;
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    /* Transitions */
    --ease-gentle: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Reusable background washes */
    --bg-wash-sage: radial-gradient(ellipse at 30% 20%, rgba(168, 196, 171, 0.2) 0%, transparent 40%);
    --bg-wash-terracotta: radial-gradient(ellipse at 70% 80%, rgba(196, 131, 106, 0.15) 0%, transparent 40%);
  }
  
  /* Reset & Base */
  *,*::before,*::after { box-sizing: border-box; margin:0; padding:0; }
  html { scroll-behavior: smooth; font-size: 18px; }
  body {
    font-family: var(--font-body);
    color: var(--ink);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    z-index: 9999;
  }
  img { max-width: 100%; height: auto; display: block; }
  a { color: var(--sage-dark); text-decoration: none; transition: color 0.3s var(--ease-gentle); }
  a:hover { color: var(--terracotta); }
  
  /* Typography & Reusable */
  h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.2; color: var(--bark); }
  h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
  h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
  h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
  p { margin-bottom: var(--space-md); color: var(--ink-soft); }
  
  .kicker { font-family: var(--font-handwritten); font-size: 1.5rem; color: var(--terracotta); margin-bottom: var(--space-xs); }
  .handwritten { font-family: var(--font-handwritten); font-weight: 500; }
  .accent-text { color: var(--terracotta); }
  
  .card {
    background: var(--cream);
    border-radius: 20px;
    border: 1px solid rgba(122, 158, 126, 0.15);
    transition: all 0.4s var(--ease-gentle);
  }
  .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(61, 54, 49, 0.1);
  }
  
  /* Decorative */
  .leaf-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
  }
  .leaf-divider::before,
  .leaf-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sage-light), transparent);
  }
  .leaf-divider svg {
    width: 40px;
    height: 40px;
    color: var(--sage);
  }
  
  /* Layout */
  .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--space-md); }
  .section { padding: var(--space-2xl) 0; position: relative; }
  .section--cream { background-color: var(--cream); }
  .section--parchment { background-color: var(--parchment); }
  .text-center { text-align: center; }
  
  /* HEADER & NAVIGATION (full from original) */
  .header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: var(--space-sm) 0; background: rgba(253, 248, 243, 0.9); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(122, 158, 126, 0.1); transition: transform 0.3s var(--ease-gentle), box-shadow 0.3s var(--ease-gentle); }
  .header--scrolled { box-shadow: 0 2px 20px rgba(61, 54, 49, 0.08); }
  .header__inner { display: flex; align-items: center; justify-content: space-between; }
  .header__logo { display: flex; align-items: center; gap: var(--space-xs); }
  .header__logo-icon { width: 36px; height: 36px; color: var(--sage); }
  .header__logo-text { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--bark); }
  .nav { display: flex; align-items: center; gap: var(--space-lg); }
  .nav__link { font-family: var(--font-display); font-size: 1rem; color: var(--ink-soft); position: relative; padding: var(--space-xs) 0; }
  .nav__link::after { content: ""; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--terracotta-light); transition: width 0.3s var(--ease-gentle); }
  .nav__link:hover::after { width: 100%; }
  .nav__cta { font-family: var(--font-display); font-size: 0.95rem; padding: 0.6rem 1.4rem; background: var(--sage); color: var(--cream) !important; border-radius: 30px; transition: all 0.3s var(--ease-gentle); }
  .nav__cta:hover { background: var(--sage-dark); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(122, 158, 126, 0.3); }
  /* Mobile nav */
  .nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; background: none; border: none; cursor: pointer; }
  .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--bark); transition: all 0.3s var(--ease-gentle); }
  @media (max-width: 768px) {
    .nav { position: fixed; top: 60px; left: 0; right: 0; flex-direction: column; background: var(--cream); padding: var(--space-lg); gap: var(--space-md); border-bottom: 1px solid rgba(122, 158, 126, 0.1); transform: translateY(-120%); opacity: 0; transition: all 0.4s var(--ease-gentle); }
    .nav--open { transform: translateY(0); opacity: 1; }
    .nav-toggle { display: flex; }
    .nav-toggle--active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle--active span:nth-child(2) { opacity: 0; }
    .nav-toggle--active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  }
  
  /* BUTTONS */
  .btn { display: inline-flex; align-items: center; gap: var(--space-xs); font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; padding: 1rem 2rem; border-radius: 50px; border: none; cursor: pointer; transition: all 0.3s var(--ease-gentle); text-decoration: none; }
  .btn--primary { background: var(--sage); color: var(--cream); }
  .btn--primary:hover { background: var(--sage-dark); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(122, 158, 126, 0.35); }
  .btn--secondary { background: transparent; color: var(--bark); border: 2px solid var(--bark-light); }
  .btn--secondary:hover { background: var(--bark); color: var(--cream); border-color: var(--bark); transform: translateY(-3px); }
  .btn--terracotta { background: var(--terracotta); color: var(--cream); }
  .btn--terracotta:hover { background: var(--terracotta-dark); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(196, 131, 106, 0.35); }
  .btn svg { width: 18px; height: 18px; }
  
  /* CTA (used on all pages) */
  .cta { position: relative; overflow: hidden; }
  .cta::before { content: ""; position: absolute; inset: 0; background: var(--bg-wash-sage), var(--bg-wash-terracotta); }
  .cta__inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; text-align: center; }
  .cta__kicker { font-family: var(--font-handwritten); font-size: 1.5rem; color: var(--terracotta); margin-bottom: var(--space-xs); }
  .cta__title { margin-bottom: var(--space-md); }
  .cta__text { font-size: 1.1rem; margin-bottom: var(--space-lg); }
  .cta__buttons { display: flex; flex-wrap: wrap; gap: var(--space-md); justify-content: center; margin-bottom: var(--space-xl); }
  .cta__note { font-family: var(--font-handwritten); font-size: 1.2rem; color: var(--sage-dark); display: flex; align-items: center; justify-content: center; gap: var(--space-xs); }
  .cta__note svg { width: 24px; height: 24px; }
  
  /* FOOTER */
  .footer { background: var(--bark); color: var(--cream-dark); padding: var(--space-xl) 0 var(--space-lg); position: relative; }
  .footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--sage), var(--gold), var(--terracotta)); }
  .footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--space-xl); }
  .footer__brand { max-width: 300px; }
  .footer__logo { display: flex; align-items: center; gap: var(--space-xs); margin-bottom: var(--space-md); }
  .footer__logo svg { width: 32px; height: 32px; color: var(--sage-light); }
  .footer__logo-text { font-family: var(--font-display); font-size: 1.2rem; color: var(--cream); }
  .footer__tagline { font-size: 0.9rem; color: var(--cream-dark); opacity: 0.8; margin-bottom: 0; }
  .footer__nav-title { font-family: var(--font-display); font-size: 1.1rem; color: var(--cream); margin-bottom: var(--space-md); }
  .footer__nav-list { list-style: none; }
  .footer__nav-link { display: block; color: var(--cream-dark); opacity: 0.7; padding: var(--space-xs) 0; font-size: 0.9rem; transition: all 0.3s var(--ease-gentle); }
  .footer__nav-link:hover { opacity: 1; color: var(--sage-light); transform: translateX(5px); }
  .footer__bottom { margin-top: var(--space-xl); padding-top: var(--space-md); border-top: 1px solid rgba(253, 248, 243, 0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-md); }
  .footer__copyright { font-size: 0.85rem; opacity: 0.6; }
  .footer__location { display: flex; align-items: center; gap: var(--space-xs); font-size: 0.85rem; opacity: 0.6; }
  .footer__location svg { width: 16px; height: 16px; }
  @media (max-width: 768px) {
    .footer__inner { grid-template-columns: 1fr; text-align: center; }
    .footer__bottom { justify-content: center; text-align: center; }
  }
  
  /* SCROLL ANIMATIONS */
  .reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s var(--ease-gentle); }
  .reveal--visible { opacity: 1; transform: translateY(0); }
  .reveal--delay-1 { transition-delay: 0.1s; }
  .reveal--delay-2 { transition-delay: 0.2s; }
  .reveal--delay-3 { transition-delay: 0.3s; }
  .reveal--delay-4 { transition-delay: 0.4s; }
  .reveal--delay-5 { transition-delay: 0.5s; }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    html { font-size: 16px; }
    .section { padding: var(--space-xl) 0; }
    .btn { width: 100%; justify-content: center; }
    .cta__buttons { flex-direction: column; }
  }