/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -8%;
  z-index: 0;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    125deg,
    rgba(22,25,15,0.75) 0%,
    rgba(22,25,15,0.48) 55%,
    rgba(22,25,15,0.2) 100%
  );
}
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(22,25,15,0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8vw;
}
.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.8rem, 10vw, 10rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp 1s 0.7s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(244,239,227,0.82);
  max-width: 460px;
  line-height: 1.55;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
}
/* Hero CTA inherits .btn-ghost from shared, adds entrance animation */
.hero-content .btn-ghost {
  opacity: 0;
  animation: fadeUp 1s 1.1s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  animation: fadeIn 1s 1.6s ease forwards;
}
.hero-scroll-indicator span {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(208,174,88,0.7), transparent);
  animation: scrollPulse 2.4s ease infinite;
}

/* ═══════════════════════════════════════
   PHILOSOPHY PILLARS
═══════════════════════════════════════ */
.pillars {
  background: var(--cream);
  padding: 5.5rem 5vw;
}
.pillars-top {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 920px;
  margin: 0 auto;
}
.pillar {
  text-align: center;
  padding: 2rem 3.5rem;
  position: relative;
}
.pillar + .pillar::before {
  content: '';
  position: absolute;
  left: 0; top: 22%;
  height: 56%; width: 1px;
  background: var(--border);
}
.pillar-icon {
  width: 38px; height: 38px;
  margin: 0 auto 1.4rem;
  color: var(--gold);
}
.pillar h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--olive-deep);
  margin-bottom: 0.7rem;
}
.pillar p {
  font-size: 1.02rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   STORY (home teaser)
═══════════════════════════════════════ */
#story {
  padding: 9rem 5vw;
  background: var(--white);
}
.story-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}
.story-image-wrap { position: relative; }
.story-image-wrap::before {
  content: '';
  position: absolute;
  top: -18px; left: -18px; right: 18px; bottom: 18px;
  border: 1px solid var(--border);
  z-index: 0;
  pointer-events: none;
}
.story-image {
  position: relative;
  z-index: 1;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.story-image img { transition: transform 0.7s ease; }
.story-image:hover img { transform: scale(1.04); }

.story-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--olive);
  border-left: 2px solid var(--gold);
  padding-left: 1.4rem;
  margin: 2rem 0 0;
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   ORIGIN (home teaser)
═══════════════════════════════════════ */
#origin {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.origin-bg { position: absolute; inset: 0; z-index: 0; }
.origin-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to right,
    rgba(22,25,15,0.9) 0%,
    rgba(22,25,15,0.65) 55%,
    rgba(22,25,15,0.2) 100%
  );
}
.origin-content {
  position: relative;
  z-index: 2;
  padding: 6rem 8vw;
  max-width: 580px;
}
.origin-stats { display: flex; gap: 3.5rem; flex-wrap: wrap; }
.stat-number {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,239,227,0.5);
}

/* ═══════════════════════════════════════
   GALLERY (home teaser)
═══════════════════════════════════════ */
#gallery {
  padding: 9rem 5vw;
  background: var(--cream);
}
.gallery-header { text-align: center; margin-bottom: 4rem; }
.gallery-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 0.75rem;
}
.gallery-item { overflow: hidden; position: relative; }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(22,25,15,0);
  transition: background 0.4s ease;
}
.gallery-item:hover::after { background: rgba(22,25,15,0.18); }
.gallery-item img { transition: transform 0.65s cubic-bezier(0.22,1,0.36,1); }
.gallery-item:hover img { transform: scale(1.05); }
.gi-1 { grid-column: 1 / 3; }
.gi-5 { grid-column: 2 / 4; }

/* ═══════════════════════════════════════
   CONTACT (home)
═══════════════════════════════════════ */
#contact {
  padding: 9rem 5vw;
  background: var(--white);
}
.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 7rem;
  align-items: start;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 960px) {
  .story-inner,
  .contact-inner      { grid-template-columns: 1fr; gap: 3.5rem; }
  .story-image-wrap::before { display: none; }
  .pillars-grid       { grid-template-columns: 1fr; }
  .pillar + .pillar::before { display: none; }
  .gallery-grid       { grid-template-columns: 1fr 1fr; grid-auto-rows: 260px; }
  .gi-1, .gi-5        { grid-column: span 1; }
}
@media (max-width: 600px) {
  .gallery-grid  { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .hero-title    { font-size: clamp(2.4rem, 14vw, 5rem); }
  .origin-stats  { gap: 2rem; }
}
