/* ============================================
   Neftalí Coffee — Stylesheet
   Design: Minimalist, Apple-inspired
   Fonts: Playfair Display + Inter
   ============================================ */

/* ===== DESIGN TOKENS ===== */
:root {
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --white: #ffffff;
  --bg: #FAFAF8;
  --bg-alt: #F2F0EB;
  --dark: #141412;
  --dark-2: #1E1E1B;
  --text: #1A1A18;
  --text-secondary: #6B6866;
  --text-muted: #9E9B98;
  --accent: #3D6B4F;
  --accent-dark: #2D5238;
  --accent-light: #EBF2EE;
  --accent-warm: #B8872C;
  --border: #E5E3DF;
  --border-dark: rgba(255,255,255,0.12);

  --container-max: 1200px;
  --container-pad: clamp(1.5rem, 5vw, 4rem);

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur: 0.3s;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.15);
  --radius: 4px;
  --radius-lg: 12px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* ===== TYPOGRAPHY ===== */
.overline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
}
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.heading-sm {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
}
.body-lg { font-size: 1.125rem; line-height: 1.75; }
.body-sm { font-size: 0.875rem; line-height: 1.6; }
.text-secondary { color: var(--text-secondary); }
.text-white { color: var(--white); }
.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.text-warm { color: var(--accent-warm); }

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.section { padding: 6rem 0; }
.section--lg { padding: 8rem 0; }
.section--sm { padding: 4rem 0; }
.section--dark { background: var(--dark); color: var(--white); }
.section--alt { background: var(--bg-alt); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .overline { margin-bottom: 1rem; }
.section-header .display-lg { margin-bottom: 1rem; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.nav.scrolled {
  background: rgba(250,250,248,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}
.nav__logo img {
  height: 38px;
  width: auto;
  filter: none;
  transform: scale(1.55);
  transform-origin: left center;
  transition: filter var(--dur);
}
.nav.scrolled .nav__logo img { filter: brightness(0); }
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--dur);
  white-space: nowrap;
}
.nav.scrolled .nav__logo-text { color: var(--text); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--dur);
}
.nav.scrolled .nav__link { color: var(--text); }
.nav__link:hover { color: var(--white); }
.nav.scrolled .nav__link:hover { color: var(--accent); }
.nav__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}
.lang-btn {
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  transition: color var(--dur), background var(--dur);
  cursor: pointer;
}
.lang-btn.active {
  color: var(--white);
  background: rgba(255,255,255,0.18);
}
.nav.scrolled .lang-btn { color: var(--text-muted); }
.nav.scrolled .lang-btn.active { color: var(--text); background: var(--bg-alt); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: var(--white);
  color: var(--dark);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: opacity var(--dur), background var(--dur), color var(--dur);
  white-space: nowrap;
}
.nav__cta:hover { opacity: 0.88; }
.nav.scrolled .nav__cta { background: var(--accent); color: var(--white); }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
  padding: 4px 0;
}
.nav__hamburger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: all var(--dur);
  border-radius: 2px;
}
.nav.scrolled .nav__hamburger span { background: var(--text); }

/* Mobile nav overlay */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(250,250,248,0.98);
  backdrop-filter: blur(24px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translateY(-100%);
  transition: transform 0.45s var(--ease);
  pointer-events: none;
}
.nav-mobile.open { transform: translateY(0); pointer-events: all; }
.nav-mobile__link {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--dur);
}
.nav-mobile__link:hover { color: var(--accent); }
.nav-mobile__close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 2rem;
  color: var(--text);
  cursor: pointer;
  line-height: 1;
}
.nav-mobile__lang {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.nav-mobile__lang .lang-btn {
  font-size: 1rem;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: 6px;
}
.nav-mobile__lang .lang-btn.active { color: var(--text); background: var(--bg-alt); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  transition: transform 8s ease-out;
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.40) 55%,
    rgba(0,0,0,0.65) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 0 var(--container-pad);
  max-width: 860px;
  width: 100%;
}
.hero__origin {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.25rem;
}
.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(4rem, 11vw, 9rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.80);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}
.hero__score-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.hero__score {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__score-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero__score-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 0.25rem;
}
.hero__divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.28);
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s infinite;
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.35);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(-6px); opacity: 0.9; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary { background: var(--white); color: var(--dark); }
.btn--primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn--accent { background: var(--accent); color: var(--white); }
.btn--accent:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.45); }
.btn--outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn--outline-dark { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn--outline-dark:hover { border-color: var(--text); transform: translateY(-1px); }
.btn--sm { padding: 0.625rem 1.25rem; font-size: 0.8125rem; }
.btn--full { width: 100%; }

/* ===== STATS BAR ===== */
.stats-bar {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stats-bar__item {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}
.stats-bar__item + .stats-bar__item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--border);
}
.stats-bar__number {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.stats-bar__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.stats-bar__sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ===== COFFEE CARDS (HOME PREVIEW) ===== */
.coffees-preview { padding: 6rem 0; }
.coffee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.coffee-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.coffee-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.coffee-card__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.coffee-card__body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.coffee-card__score {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent-light);
  color: var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
  width: fit-content;
}
.coffee-card__title {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.375rem;
}
.coffee-card__origin {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.coffee-card__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.note-tag {
  padding: 0.2rem 0.7rem;
  background: var(--bg-alt);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.coffee-card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  transition: gap var(--dur);
}
.coffee-card__link:hover { gap: 0.75rem; }
.coffee-card__link::after { content: '→'; }

/* ===== STORY SECTION (HOME) ===== */
.story-section { padding: 6rem 0; }
.story-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-section__img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.story-section__content .overline { margin-bottom: 1rem; }
.story-section__content .display-md { margin-bottom: 1.5rem; }
.story-section__content p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 7rem 0;
  background: var(--dark);
  color: var(--white);
  text-align: center;
}
.cta-section .overline { color: var(--accent); margin-bottom: 1rem; }
.cta-section .display-lg { color: var(--white); margin-bottom: 1.25rem; }
.cta-section p {
  color: rgba(255,255,255,0.6);
  font-size: 1.0625rem;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: calc(8rem + 70px) 0 5rem;
  text-align: center;
  background: url('../assets/fotos/1/page-hero-bg.jpeg') center / cover no-repeat;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 5, 0.55);
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero .overline { margin-bottom: 1rem; color: var(--accent-warm); }
.page-hero .display-lg { margin-bottom: 1.25rem; color: var(--white); }
.page-hero__desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ===== COFFEE DETAIL PAGE ===== */
.coffee-detail { padding: 5rem 0; }
.coffee-detail + .coffee-detail { border-top: 1px solid var(--border); }
.coffee-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}
.coffee-detail__sticky { position: sticky; top: 100px; }
.coffee-detail__img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.coffee-detail__score-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.coffee-detail__score-big {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent);
}
.coffee-detail__score-den {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-muted);
}
.coffee-detail__score-note {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: -0.5rem;
  margin-bottom: 1.25rem;
}
.coffee-detail__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.375rem;
  line-height: 1.1;
}
.coffee-detail__origin {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
.coffee-detail__desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.spec-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.tasting-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.tasting-note {
  padding: 0.35rem 0.9rem;
  background: var(--accent-light);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
}
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}
.spec-item__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.spec-item__value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}
.process-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.process-tag {
  padding: 0.4rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
}
.availability-box {
  padding: 1.5rem;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-lg);
  background: var(--accent-light);
  margin-bottom: 2rem;
}
.availability-box .overline { color: var(--accent); margin-bottom: 0.5rem; }
.availability-box p {
  font-size: 0.9375rem;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Coming soon badge */
.coming-soon-section {
  padding: 4rem 0;
  background: var(--dark);
  text-align: center;
}
.coming-badge {
  display: inline-block;
  padding: 0.3rem 0.875rem;
  background: rgba(184,135,44,0.2);
  color: var(--accent-warm);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ===== PROCESS PAGE ===== */
.process-intro { padding: 4rem 0; }
.process-steps { padding: 2rem 0; }
.process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }
.process-step--reverse .process-step__img { order: 2; }
.process-step--reverse .process-step__content { order: 1; }
.process-step__number {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--border);
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}
.process-step__img,
.process-step__video {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.process-step--reverse .process-step__video { order: 2; }
.process-step__content .overline { margin-bottom: 0.75rem; }
.process-step__content .display-md { margin-bottom: 1.25rem; }
.process-step__content p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.8;
}
.process-highlight {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.75rem 1.25rem;
  background: var(--accent-light);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}

/* Processing methods explainer */
.methods-section { padding: 5rem 0; }
.methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.method-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.method-card__name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.method-card__tag {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--accent-light);
  color: var(--accent);
  margin-bottom: 1rem;
}
.method-card p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.7; }

/* ===== ABOUT PAGE ===== */
.about-intro { padding: 5rem 0; }
.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-photo-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-photo-stack img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
}
.about-photo-stack img:first-child {
  grid-column: 1 / -1;
  height: 340px;
}
.about-photo-stack img:not(:first-child) { height: 220px; }
.about-intro__content .overline { margin-bottom: 1rem; }
.about-intro__content .display-md { margin-bottom: 1.5rem; }
.about-intro__content p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about-parents-portrait { padding: 5rem 0; }
.parents-portrait__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.parents-portrait__img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.parents-portrait__caption {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.about-valley { padding: 5rem 0; }
.about-valley__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-valley img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-valley .overline { margin-bottom: 1rem; }
.about-valley .display-md { margin-bottom: 1.5rem; }
.about-valley p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.altitude-callout {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: var(--accent-light);
  border-radius: var(--radius-lg);
  margin-top: 0.5rem;
}
.altitude-callout__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}
.altitude-callout__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}
.about-vision {
  padding: 6rem 0;
  background: var(--dark);
  color: var(--white);
}
.about-vision__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-vision__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  opacity: 0.85;
}
.about-vision .overline { color: var(--accent); margin-bottom: 1rem; }
.about-vision .display-md { color: var(--white); margin-bottom: 1.5rem; }
.about-vision p { color: rgba(255,255,255,0.65); font-size: 1.0625rem; line-height: 1.8; margin-bottom: 1.25rem; }
.geisha-badge {
  display: inline-block;
  padding: 0.3rem 0.875rem;
  background: rgba(184,135,44,0.25);
  color: var(--accent-warm);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.about-network { padding: 5rem 0; }
.network-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.network-inner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.network-inner .overline { margin-bottom: 1rem; }
.network-inner .display-md { margin-bottom: 1.5rem; }
.network-inner p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 5rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-info .overline { margin-bottom: 1rem; }
.contact-info .display-md { margin-bottom: 1.25rem; }
.contact-info > p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.contact-details { margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:first-child { border-top: 1px solid var(--border); }
.contact-detail__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  min-width: 80px;
  padding-top: 0.1rem;
}
.contact-detail__value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}
.contact-detail__value a { color: var(--accent); }
.contact-avail {
  padding: 1.5rem;
  background: var(--accent-light);
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}
.contact-avail .overline { color: var(--accent); margin-bottom: 0.5rem; }
.contact-avail p { font-size: 0.9375rem; color: var(--text); line-height: 1.6; }
.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.contact-form .heading-sm { margin-bottom: 2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--dur);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--accent); }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239E9B98' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-2);
  color: rgba(255,255,255,0.55);
  padding: 4rem 0 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer__tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer__social {
  display: flex;
  gap: 1rem;
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  transition: color var(--dur);
}
.footer__social-link:hover { color: var(--white); }
.footer__col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.875rem; }
.footer__link {
  font-size: 0.9rem;
  transition: color var(--dur);
}
.footer__link:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.footer__bottom-right { display: flex; gap: 1.5rem; }
.footer__bottom-link { font-size: 0.8rem; transition: color var(--dur); }
.footer__bottom-link:hover { color: var(--white); }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .methods-grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
  .stats-bar__item:nth-child(3)::before { display: none; }
  .coffee-grid { grid-template-columns: 1fr; }
  .story-section__inner { grid-template-columns: 1fr; }
  .story-section__img { height: 320px; }
  .coffee-detail__grid { grid-template-columns: 1fr; }
  .coffee-detail__sticky { position: static; }
  .coffee-detail__img { height: 300px; }
  .process-step { grid-template-columns: 1fr; gap: 2rem; }
  .process-step--reverse .process-step__img,
  .process-step--reverse .process-step__content { order: unset; }
  .process-step__img,
  .process-step__video { height: 280px; }
  .methods-grid { grid-template-columns: 1fr; }
  .about-intro__grid,
  .about-valley__inner,
  .about-vision__inner,
  .network-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo-stack img:first-child { height: 260px; }
  .about-photo-stack img:not(:first-child) { height: 180px; }
  .about-valley img,
  .about-vision__img,
  .network-inner img { height: 280px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .section, .section--lg { padding: 4rem 0; }
  .coffees-preview, .story-section, .cta-section, .coffee-detail,
  .about-intro, .about-parents, .about-valley, .about-vision, .about-network,
  .process-steps, .contact-section { padding: 4rem 0; }
  .process-step { padding: 3rem 0; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__score-row { gap: 1.5rem; }
  .hero__divider { height: 36px; }
  .specs-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
}
