/* ============================================
   REMINISCENCE WITH LOVE — Custom Styles
   Aesthetic: Warm editorial, soft luxury, 
   handcrafted intimacy
   ============================================ */

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

/* ─── CSS Variables ─────────────────────────── */
:root {
  --cream:        #F9F4EE;
  --parchment:    #EFE5D5;
  --warm-sand:    #D9C4A8;
  --terracotta:   #C4775A;
  --rust:         #A85438;
  --deep-brown:   #3D2314;
  --mocha:        #6B3F27;
  --sage:         #8A9E85;
  --dusty-rose:   #C9978C;
  --gold:         #B8975A;
  --light-gold:   #D4B87A;
  --ink:          #1E1008;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --shadow-soft:  0 4px 24px rgba(61,35,20,0.10);
  --shadow-card:  0 8px 40px rgba(61,35,20,0.13);
  --shadow-hover: 0 16px 56px rgba(61,35,20,0.20);

  --radius-sm:    6px;
  --radius-md:    14px;
  --radius-lg:    28px;

  --transition:   0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --max-width:    1240px;
  --section-pad:  100px 0;
}

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

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

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

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ─── Container ─────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

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

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.section-label::before,
.section-label::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--terracotta);
  opacity: 0.6;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--deep-brown);
  margin-bottom: 18px;
  line-height: 1.18;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--mocha);
  max-width: 560px;
  line-height: 1.8;
  opacity: 0.85;
}

/* ─── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 4px 18px rgba(196,119,90,0.35);
}
.btn-primary:hover {
  background: var(--rust);
  box-shadow: 0 8px 30px rgba(168,84,56,0.40);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.5px solid var(--deep-brown);
  color: var(--deep-brown);
}
.btn-outline:hover {
  background: var(--deep-brown);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--terracotta);
  padding: 0;
  border-bottom: 1px solid transparent;
}
.btn-ghost:hover {
  border-bottom-color: var(--terracotta);
}

/* ─── Header / Navigation ───────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}

.site-header.scrolled {
  background: rgba(249,244,238,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(61,35,20,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 40px;
}

.site-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--deep-brown);
  line-height: 1;
  letter-spacing: 0.02em;
}
.logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-top: 3px;
}

.main-nav { display: flex; align-items: center; gap: 36px; }

.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep-brown);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--terracotta);
  transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--terracotta); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
  background: var(--deep-brown);
  color: var(--cream) !important;
  padding: 10px 24px;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: var(--transition);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--terracotta); color: #fff !important; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--deep-brown);
  transition: var(--transition);
}

/* ─── Footer ────────────────────────────────── */
.site-footer {
  background: var(--deep-brown);
  color: var(--parchment);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(249,244,238,0.12);
}

.footer-brand .logo-main { color: var(--cream); }
.footer-brand .logo-sub { color: var(--warm-sand); }

.footer-tagline {
  margin-top: 18px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--warm-sand);
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(249,244,238,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--terracotta);
  background: var(--terracotta);
}
.social-link svg { width: 16px; height: 16px; fill: var(--cream); }

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-gold);
  margin-bottom: 22px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--warm-sand);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cream); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--warm-sand);
  margin-bottom: 12px;
}
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--terracotta); flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.78rem;
  color: rgba(215,196,168,0.5);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 65% 40%, rgba(196,119,90,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(138,158,133,0.06) 0%, transparent 60%),
    var(--cream);
}

.hero-ornament {
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 680px; height: 680px;
  border-radius: 50%;
  border: 1px solid rgba(196,119,90,0.10);
  pointer-events: none;
}
.hero-ornament::before {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px solid rgba(196,119,90,0.07);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 28px;
}
.hero-eyebrow-line {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--terracotta), transparent);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 300;
  color: var(--deep-brown);
  line-height: 1.08;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--mocha);
  line-height: 1.9;
  max-width: 460px;
  margin-bottom: 44px;
  opacity: 0.85;
}

.hero-actions { display: flex; align-items: center; gap: 24px; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(61,35,20,0.10);
}
.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--terracotta);
  line-height: 1;
}
.stat-label {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-top: 4px;
  opacity: 0.7;
}

.hero-visual { position: relative; }

.hero-frame-stack {
  position: relative;
  width: 100%;
  padding-bottom: 110%;
}

.hero-frame {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hero-frame-main {
  width: 82%;
  height: 82%;
  top: 0; right: 0;
  background: linear-gradient(135deg, var(--warm-sand) 0%, var(--parchment) 50%, var(--terracotta) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-frame-secondary {
  width: 48%;
  height: 52%;
  bottom: 0; left: 0;
  background: linear-gradient(135deg, var(--deep-brown) 0%, var(--mocha) 100%);
  box-shadow: var(--shadow-hover);
}

.hero-frame-accent {
  position: absolute;
  top: 50%; right: -16px;
  transform: translateY(-50%);
  width: 70px; height: 70px;
  background: var(--light-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(184,151,90,0.35);
}
.hero-frame-accent svg { width: 32px; height: 32px; fill: white; }

/* Shadow box illustration */
.shadow-box-illus {
  width: 75%;
  height: 75%;
  border: 8px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(61,35,20,0.15);
}
.shadow-box-illus::before {
  content: '❧';
  font-size: 3rem;
  color: rgba(255,255,255,0.7);
}

/* ─── About Snippet (Home) ──────────────────── */
.about-snippet { padding: var(--section-pad); }

.about-snippet-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.av-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
}
.av-card:nth-child(1) { grid-column: 1; grid-row: 1 / 3; aspect-ratio: auto; }
.av-card-inner {
  width: 100%; height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 24px;
}
.av-card:nth-child(1) .av-card-inner { background: linear-gradient(160deg, var(--mocha), var(--deep-brown)); min-height: 280px; }
.av-card:nth-child(2) .av-card-inner { background: linear-gradient(135deg, var(--terracotta), var(--dusty-rose)); }
.av-card:nth-child(3) .av-card-inner { background: linear-gradient(135deg, var(--sage), #5c7a57); }

.about-text {}
.about-pull-quote {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-style: italic;
  color: var(--terracotta);
  line-height: 1.5;
  margin: 28px 0;
  padding-left: 24px;
  border-left: 2px solid var(--terracotta);
}

/* ─── Features / Values ─────────────────────── */
.features { padding: var(--section-pad); background: var(--parchment); }

.features-content {}
.features-header { text-align: center; margin-bottom: 70px; }
.features-header .section-subtitle { margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 44px 36px;
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(61,35,20,0.06);
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--light-gold));
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--terracotta), var(--dusty-rose));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}
.feature-icon svg { width: 26px; height: 26px; fill: white; }

.feature-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--deep-brown);
  margin-bottom: 14px;
}
.feature-desc { font-size: 0.92rem; color: var(--mocha); line-height: 1.85; opacity: 0.85; }

/* ─── Featured Products ─────────────────────── */
.featured-products { padding: var(--section-pad); }

.featured-products-content {}
.fp-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(61,35,20,0.07);
  transition: var(--transition);
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.product-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.product-image-inner {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: transform 0.5s ease;
}
.product-card:hover .product-image-inner { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--terracotta);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
}

.product-info { padding: 24px; }
.product-category {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 8px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--deep-brown);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-desc {
  font-size: 0.85rem;
  color: var(--mocha);
  line-height: 1.7;
  margin-bottom: 18px;
  opacity: 0.8;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--deep-brown);
}
.product-price span {
  font-size: 0.85rem;
  font-family: var(--font-body);
  color: var(--mocha);
  opacity: 0.6;
  margin-right: 2px;
}

.add-to-cart {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--deep-brown);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.add-to-cart:hover { background: var(--terracotta); transform: rotate(90deg); }
.add-to-cart svg { width: 18px; height: 18px; fill: white; }

/* ─── Testimonials ──────────────────────────── */
.testimonials { padding: var(--section-pad); background: var(--deep-brown); }

.testimonials-content {}
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header .section-label { color: var(--light-gold); }
.testimonials-header .section-label::before,
.testimonials-header .section-label::after { background: var(--light-gold); }
.testimonials-header .section-title { color: var(--cream); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: var(--transition);
}
.testi-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.testi-stars { color: var(--light-gold); font-size: 1rem; margin-bottom: 20px; letter-spacing: 2px; }
.testi-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--parchment);
  line-height: 1.8;
  margin-bottom: 24px;
}
.testi-open-quote {
  font-size: 3rem;
  color: var(--terracotta);
  line-height: 0.5;
  margin-bottom: 12px;
  display: block;
}

.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--terracotta), var(--dusty-rose));
}
.testi-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.05em;
}
.testi-loc {
  font-size: 0.75rem;
  color: var(--warm-sand);
  opacity: 0.7;
  margin-top: 2px;
}

/* ─── CTA Banner ────────────────────────────── */
.cta-banner { padding: 90px 0; background: var(--parchment); }
.cta-banner-content { text-align: center; }
.cta-banner .section-title { font-size: clamp(2rem, 4vw, 3rem); }
.cta-banner .section-subtitle { margin: 0 auto 36px; text-align: center; }
.cta-actions { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* ─── Shop Page ─────────────────────────────── */
.shop-hero {
  padding: 160px 0 80px;
  background: linear-gradient(160deg, var(--parchment) 0%, var(--cream) 100%);
  text-align: center;
}
.shop-hero-content .section-title { font-size: clamp(2.5rem, 5vw, 4rem); }
.shop-hero-content .section-subtitle { margin: 0 auto; text-align: center; }

.shop-filters { padding: 50px 0 20px; }
.shop-filters-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 1.5px solid rgba(61,35,20,0.18);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--mocha);
  transition: var(--transition);
  cursor: pointer;
  background: transparent;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--deep-brown);
  border-color: var(--deep-brown);
  color: var(--cream);
}

.shop-grid { padding: 40px 0 100px; }
.shop-grid-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ─── Gallery Page ──────────────────────────── */
.gallery-hero {
  padding: 160px 0 80px;
  background: linear-gradient(160deg, var(--parchment) 0%, var(--cream) 100%);
  text-align: center;
}
.gallery-hero-content .section-title { font-size: clamp(2.5rem, 5vw, 4rem); }
.gallery-hero-content .section-subtitle { margin: 0 auto; text-align: center; }

.gallery-masonry { padding: 60px 0 100px; }
.gallery-masonry-content {
  columns: 3;
  column-gap: 20px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-hover); }

.gallery-thumb {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-thumb { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(30,16,8,0.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: white;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(20,8,0,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox-inner {
  position: relative;
  max-width: 900px;
  width: 90%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}
.lightbox-media {
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
}
.lightbox-info {
  background: var(--deep-brown);
  padding: 24px 32px;
}
.lightbox-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 6px;
}
.lightbox-desc { font-size: 0.88rem; color: var(--warm-sand); opacity: 0.8; }

.lightbox-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  background: rgba(61,35,20,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  color: white;
  font-size: 1.2rem;
}
.lightbox-close:hover { background: var(--terracotta); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(61,35,20,0.6);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  color: white;
}
.lightbox-nav:hover { background: var(--terracotta); }
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }
.lightbox-nav svg { width: 20px; height: 20px; fill: white; }

/* ─── About Page ────────────────────────────── */
.about-hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 70% 40%, rgba(196,119,90,0.08) 0%, transparent 60%), var(--cream);
}
.about-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--deep-brown);
  line-height: 1.1;
  margin-bottom: 28px;
}
.about-hero-title em { font-style: italic; color: var(--terracotta); }

.about-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--warm-sand), var(--terracotta), var(--mocha));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  box-shadow: var(--shadow-card);
}

.mission-section { padding: var(--section-pad); background: var(--parchment); }
.mission-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.mission-values { display: flex; flex-direction: column; gap: 24px; margin-top: 36px; }
.mission-value {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--terracotta);
}
.mission-value-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--terracotta), var(--dusty-rose));
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mission-value-icon svg { width: 20px; height: 20px; fill: white; }
.mission-value-text h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--deep-brown);
  margin-bottom: 4px;
}
.mission-value-text p { font-size: 0.85rem; color: var(--mocha); line-height: 1.7; opacity: 0.85; }

.team-section { padding: var(--section-pad); }
.team-section-content {}
.team-header { text-align: center; margin-bottom: 60px; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.team-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(61,35,20,0.07);
  background: var(--cream);
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-6px); }

.team-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 8px 24px rgba(196,119,90,0.25);
}
.team-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--deep-brown);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 14px;
}
.team-bio { font-size: 0.87rem; color: var(--mocha); line-height: 1.8; opacity: 0.82; }

/* ─── Contact Page ──────────────────────────── */
.contact-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(160deg, var(--parchment) 0%, var(--cream) 100%);
}
.contact-hero-content .section-title { font-size: clamp(2.5rem, 5vw, 4rem); }
.contact-hero-content .section-subtitle { margin: 0 auto; text-align: center; }

.contact-section { padding: 60px 0 100px; }
.contact-content { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; }

.contact-info-card {
  padding: 40px;
  background: var(--deep-brown);
  border-radius: var(--radius-md);
  color: var(--cream);
  align-self: start;
}
.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 10px;
}
.contact-info-subtitle { font-size: 0.88rem; color: var(--warm-sand); margin-bottom: 36px; line-height: 1.8; opacity: 0.8; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail-icon {
  width: 38px; height: 38px;
  background: rgba(196,119,90,0.2);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; fill: var(--terracotta); }
.contact-detail-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--warm-sand); opacity: 0.6; margin-bottom: 4px; }
.contact-detail-val { font-size: 0.92rem; color: var(--cream); }

/* Contact Form */
.contact-form-wrap { align-self: start; }
.contact-form-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--deep-brown);
  margin-bottom: 8px;
}
.contact-form-sub { font-size: 0.9rem; color: var(--mocha); margin-bottom: 36px; opacity: 0.8; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--deep-brown);
}
.form-input, .form-textarea, .form-select {
  padding: 14px 18px;
  border: 1.5px solid rgba(61,35,20,0.15);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--deep-brown);
  font-size: 0.92rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196,119,90,0.12);
}
.form-textarea { resize: vertical; min-height: 130px; }

.form-submit { width: 100%; padding: 16px; font-size: 0.85rem; justify-content: center; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  background: var(--parchment);
  border-radius: var(--radius-md);
  border: 1px solid rgba(61,35,20,0.08);
}
.form-success.show { display: block; }
.form-success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--deep-brown);
  margin-bottom: 10px;
}
.form-success p { color: var(--mocha); opacity: 0.8; }

/* ─── Process Section ───────────────────────── */
.process { padding: var(--section-pad); background: var(--parchment); }
.process-content {}
.process-header { text-align: center; margin-bottom: 70px; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--terracotta), var(--light-gold), var(--terracotta), transparent);
  opacity: 0.4;
}

.process-step { text-align: center; position: relative; }
.process-step-num {
  width: 76px; height: 76px;
  border-radius: 50%;
  border: 1.5px solid var(--terracotta);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  background: var(--cream);
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--terracotta);
  position: relative;
  z-index: 1;
}
.process-step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--deep-brown);
  margin-bottom: 10px;
}
.process-step-desc { font-size: 0.84rem; color: var(--mocha); line-height: 1.8; opacity: 0.8; }

/* ─── Animations ────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ─── Page Top Padding ──────────────────────── */
.page-top-pad { padding-top: 76px; }

/* ─── Scrollbar ─────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--warm-sand); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--terracotta); }
