/* =====================================================
   ESPRIT LIBELLULE — Premium Wellness CSS
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500&family=Sacramento&display=swap');

/* ── Variables ──────────────────────────────────────── */
:root {
  --forest:      #2C4A3E;
  --forest-mid:  #3D6B5C;
  --sage:        #8FAF9F;
  --sage-light:  #C8DDD5;
  --gold:        #C9A96E;
  --gold-light:  #E8D5B0;
  --cream:       #F8F4EE;
  --warm-white:  #FDFCF9;
  --charcoal:    #1E2B26;
  --muted:       #7A8A84;
  --border:      rgba(44,74,62,.12);

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', system-ui, sans-serif;
  --font-script: 'Sacramento', cursive;

  --ease-out:    cubic-bezier(.16,1,.3,1);
  --ease-in-out: cubic-bezier(.65,0,.35,1);

  --radius-sm:   6px;
  --radius-md:   16px;
  --radius-lg:   32px;
  --radius-full: 9999px;

  --shadow-sm:   0 2px 12px rgba(44,74,62,.08);
  --shadow-md:   0 8px 40px rgba(44,74,62,.12);
  --shadow-lg:   0 24px 64px rgba(44,74,62,.18);

  --max-w:       1280px;
  --header-h:    80px;
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Typography ─────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-serif);
  line-height: 1.15;
  font-weight: 400;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); letter-spacing: -.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
p  { font-size: 1.0625rem; color: var(--muted); max-width: 66ch; }

.script {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--gold);
  display: block;
  line-height: 1;
}

/* ── Layout helpers ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
}
.section { padding: clamp(4rem, 10vw, 9rem) 0; }
.section-sm { padding: clamp(2rem, 5vw, 4rem) 0; }
.text-center { text-align: center; }
.text-center p { margin: 0 auto; }

.section-label {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
  display: block;
}
.section-title { margin-bottom: 1.25rem; color: var(--forest); }
.section-sub { margin-bottom: 3rem; }

.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem auto;
}
.divider-left { margin: 1.5rem 0; }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 2.25rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .06em;
  transition: all .3s var(--ease-out);
}
.btn-primary {
  background: var(--forest);
  color: var(--warm-white);
  box-shadow: 0 4px 20px rgba(44,74,62,.3);
}
.btn-primary:hover {
  background: var(--forest-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(44,74,62,.35);
}
.btn-outline {
  border: 1.5px solid var(--forest);
  color: var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--warm-white);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--warm-white);
  box-shadow: 0 4px 20px rgba(201,169,110,.35);
}
.btn-gold:hover {
  background: #b5924f;
  transform: translateY(-2px);
}

/* ── Header ─────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  transition: background .4s var(--ease-out), box-shadow .4s;
}
.header.scrolled {
  background: rgba(253,252,249,.95);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}
.header .container { height: 100%; }
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 42px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter .4s var(--ease-out);
}
.header.scrolled .logo-img {
  filter: none;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--forest);
  line-height: 1.1;
}
.logo-sub {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  font-family: var(--font-sans);
}

.nav { display: flex; align-items: center; gap: .25rem; }
.nav a {
  padding: .5rem .85rem;
  font-size: .88rem;
  font-weight: 400;
  color: var(--charcoal);
  border-radius: var(--radius-full);
  transition: all .25s;
  white-space: nowrap;
}
.nav a:hover { background: var(--cream); color: var(--forest); }
.nav a.active { color: var(--forest); font-weight: 500; }

.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: all .3s var(--ease-out);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: rgba(253,252,249,.98);
  backdrop-filter: blur(20px);
  padding: 1.5rem 1.25rem 2.5rem;
  border-bottom: 1px solid var(--border);
  z-index: 999;
  flex-direction: column;
  gap: .25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: .85rem 1rem;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  color: var(--charcoal);
  transition: background .2s;
}
.mobile-menu a:hover { background: var(--cream); }
.mobile-menu .btn { margin-top: .75rem; width: 100%; justify-content: center; }

/* ── Hero ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a3028 0%, #2C4A3E 40%, #3d6b5c 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image: radial-gradient(circle at 25% 25%, var(--gold) 1px, transparent 1px),
                    radial-gradient(circle at 75% 75%, var(--gold) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  max-width: 800px;
}
.hero-eyebrow {
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .8s var(--ease-out) .2s forwards;
}
.hero h1 {
  color: var(--warm-white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) .4s forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-text {
  font-size: 1.15rem;
  color: rgba(253,252,249,.75);
  max-width: 52ch;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) .6s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) .8s forwards;
}
.btn-hero-outline {
  border: 1.5px solid rgba(253,252,249,.5);
  color: var(--warm-white);
  border-radius: var(--radius-full);
  padding: .85rem 2.25rem;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .06em;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  transition: all .3s var(--ease-out);
}
.btn-hero-outline:hover {
  background: rgba(253,252,249,.1);
  border-color: rgba(253,252,249,.8);
}

.hero-dragonfly {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 45vw, 600px);
  opacity: .12;
  pointer-events: none;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(253,252,249,.5);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: fadeIn 1s var(--ease-out) 1.5s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(253,252,249,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── Stats band ─────────────────────────────────────── */
.stats-band {
  background: var(--cream);
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  color: var(--forest);
  font-weight: 300;
  line-height: 1;
}
.stat-label {
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: .4rem;
}
.stat-divider {
  width: 1px;
  background: var(--border);
  height: 60px;
  align-self: center;
}

/* ── About strip ─────────────────────────────────────── */
.about-strip {
  background: var(--warm-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--sage-light);
}
.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  max-width: 200px;
}
.about-image-badge p {
  font-size: .82rem;
  color: var(--charcoal);
  max-width: none;
  line-height: 1.5;
}
.about-text .section-label { margin-bottom: .5rem; }
.about-text blockquote {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--forest);
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  margin: 2rem 0;
  line-height: 1.6;
}
.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 2rem;
}
.credential-tag {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: .35rem .9rem;
  font-size: .8rem;
  color: var(--forest);
  font-weight: 500;
}

/* ── Services ─────────────────────────────────────────── */
.services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--border);
  transition: all .4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--sage));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  transition: background .3s;
}
.service-card:hover .service-icon { background: var(--sage-light); }
.service-card h3 {
  font-size: 1.35rem;
  color: var(--forest);
  margin-bottom: .75rem;
}
.service-card p { font-size: .95rem; margin-bottom: 1.5rem; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: .04em;
  transition: gap .25s;
}
.service-link:hover { gap: .75rem; }
.service-price {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
}

/* ── Process ─────────────────────────────────────────── */
.process { background: var(--forest); color: var(--warm-white); }
.process .section-label { color: var(--gold-light); }
.process .section-title { color: var(--warm-white); }
.process .section-sub { color: rgba(253,252,249,.7); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  counter-reset: step;
  margin-top: 3rem;
}
.process-step {
  position: relative;
  padding: 2rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  counter-increment: step;
  transition: background .3s;
}
.process-step:hover { background: rgba(255,255,255,.1); }
.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: rgba(201,169,110,.25);
  line-height: 1;
  margin-bottom: .75rem;
  display: block;
}
.process-step h4 { color: var(--warm-white); font-size: 1.2rem; margin-bottom: .75rem; }
.process-step p { color: rgba(253,252,249,.65); font-size: .95rem; max-width: none; }

/* ── Testimonials ────────────────────────────────────── */
.testimonials { background: var(--warm-white); }
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: box-shadow .3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.stars {
  display: flex;
  gap: .2rem;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 1rem;
}
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: none;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--forest);
  flex-shrink: 0;
}
.author-name { font-size: .9rem; font-weight: 500; color: var(--charcoal); }
.author-loc  { font-size: .78rem; color: var(--muted); }

/* ── CTA Banner ──────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #b5924f 100%);
  padding: clamp(3rem, 6vw, 6rem) 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--warm-white);
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}
.cta-banner p { color: rgba(253,252,249,.85); margin: 0 auto 2rem; }
.btn-white {
  background: var(--warm-white);
  color: var(--forest);
  font-weight: 500;
  border-radius: var(--radius-full);
  padding: .9rem 2.5rem;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  transition: all .3s var(--ease-out);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.2); }

/* ── Contact info bar ───────────────────────────────── */
.contact-bar {
  background: var(--cream);
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}
.contact-bar-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .92rem;
}
.contact-item-icon {
  width: 36px;
  height: 36px;
  background: var(--warm-white);
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item a:hover { color: var(--forest); text-decoration: underline; }

/* ── Footer ─────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(253,252,249,.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-text { color: var(--warm-white); }
.footer-brand p { margin-top: 1rem; font-size: .88rem; line-height: 1.8; max-width: 30ch; }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a {
  font-size: .88rem;
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--warm-white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
}
.footer-socials { display: flex; gap: .75rem; }
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background .25s;
  color: rgba(253,252,249,.7);
}
.social-link:hover { background: var(--gold); color: var(--warm-white); }

/* ── Interior page hero ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  padding: calc(var(--header-h) + 4rem) 0 4rem;
  color: var(--warm-white);
  text-align: center;
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); color: var(--warm-white); margin-bottom: 1rem; }
.page-hero p { color: rgba(253,252,249,.75); margin: 0 auto; font-size: 1.1rem; }
.breadcrumb {
  display: flex;
  gap: .5rem;
  justify-content: center;
  align-items: center;
  font-size: .82rem;
  color: rgba(253,252,249,.55);
  margin-bottom: 1.5rem;
}
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(253,252,249,.35); }

/* ── Soin detail cards ───────────────────────────────── */
.soin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}
.soin-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .4s var(--ease-out);
  background: var(--warm-white);
}
.soin-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.soin-card-header {
  background: var(--cream);
  padding: 1.75rem;
  border-bottom: 1px solid var(--border);
}
.soin-card-header h3 { font-size: 1.3rem; color: var(--forest); margin-bottom: .35rem; }
.soin-duration {
  font-size: .82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.soin-card-body { padding: 1.75rem; }
.soin-card-body p { font-size: .95rem; margin-bottom: 1.25rem; }
.soin-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}
.soin-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold);
}
.soin-price small { font-size: .9rem; color: var(--muted); font-family: var(--font-sans); }

/* ── Price table ─────────────────────────────────────── */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}
.price-table th {
  text-align: left;
  padding: .85rem 1rem;
  background: var(--forest);
  color: var(--warm-white);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.price-table th:last-child { text-align: right; }
.price-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--charcoal);
  vertical-align: middle;
}
.price-table td:last-child {
  text-align: right;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold);
  white-space: nowrap;
}
.price-table tr:hover td { background: var(--cream); }
.price-table .category-row td {
  background: var(--cream);
  font-weight: 600;
  color: var(--forest);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .65rem 1rem;
  border-bottom: none;
}

/* ── Contact form ────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: .45rem; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: .85rem; font-weight: 500; color: var(--charcoal); }
.form-input, .form-select, .form-textarea {
  padding: .85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--charcoal);
  background: var(--warm-white);
  transition: border-color .25s, box-shadow .25s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(44,74,62,.12);
}
.form-textarea { resize: vertical; min-height: 140px; }

/* ── Animations ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: .5; transform: scaleY(1); }
  50%       { opacity: 1;  transform: scaleY(1.1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-12px) rotate(3deg); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Utilities ───────────────────────────────────────── */
.bg-cream   { background: var(--cream); }
.bg-forest  { background: var(--forest); }
.text-gold  { color: var(--gold); }
.text-forest { color: var(--forest); }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }

/* Gift card */
.gift-card {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 60%, var(--sage) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: var(--warm-white);
  position: relative;
  overflow: hidden;
}
.gift-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,169,110,.15), transparent 70%);
  pointer-events: none;
}
.gift-card h3 { color: var(--warm-white); margin-bottom: .75rem; }
.gift-card p  { color: rgba(253,252,249,.8); max-width: none; margin-bottom: 2rem; }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .nav, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { aspect-ratio: 3/2; max-height: 400px; }

  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stat-divider { display: none; }

  .hero-dragonfly { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn,
  .hero-actions .btn-hero-outline { width: 100%; justify-content: center; }
  .contact-bar-grid { flex-direction: column; align-items: flex-start; }
}

/* Print */
@media print {
  .header, .hero-scroll, .cta-banner, .footer { display: none; }
}
