/* ============================================================
   DESIGN SYSTEM
   Brew  #241B13 - dark ground, primary bg for hero/dark sections
   Cream #F4EAD8 - warm light, primary bg for light sections
   Warm  #E7D8BE - slightly warmer cream, cards/sheets
   Olive #241B13 - living green, ONE section (manifesto)
   Sky   #8FAEC1 - accent only: hairlines, labels, small details
   Orange #A6533C - single CTA accent, nowhere else
   Muted #241B13 - body text on light backgrounds
   ============================================================ */


:root {
  --deep: #241B13;
  --cream: #F4EAD8;
  --warm: #E7D8BE;
  --dark-olive: #1F2A24;
  --olive: #6F7450;
  --sky: #8FAEC1;
  --orange: #A6533C;
  --muted: #5A4A3D;
  --brown: #241B13;
  --charcoal: #1C2628;
  --text-body: #241B13;
  --serif: 'Merriweather', Georgia, serif;
  --sans: 'Space Grotesk', system-ui, sans-serif;
  --display:'BJCree', Georgia, serif;

  /* Spacing scale */
  --section-pad: clamp(80px, 10vw, 140px);
  --inner-max: 1100px;
  --gutter: clamp(24px, 5vw, 64px);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { 
	scroll-behavior: smooth; 
	font-size: 16px;
	overflow-x: hidden;
}
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--deep);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Subtle paper grain - single layer, tasteful */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.22'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  opacity: 0.6;
}

::selection { background: var(--deep); color: var(--cream); }
a { color: inherit; text-decoration: none; }

/* ── TYPOGRAPHY SYSTEM ── */
.label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
}
.label--light { color: rgba(148,178,196,0.7); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 28px var(--gutter);
  display: flex; justify-content: center; align-items: center;
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
}
.nav-inner {
  width: 100%;
  max-width: var(--inner-max);
  display: flex; align-items: center; justify-content: space-between;
}
nav.scrolled {
  background: rgba(231,216,190,0.96);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(38,56,29,0.08);
  padding: 16px var(--gutter);
}
.nav-logo {
  font-family: 'BJCree', Georgia, serif;
  font-size: 1.25rem;
  color: rgba(252,243,227,0.9);
  transition: color 0.4s;
  letter-spacing: -0.06em;
  word-spacing: -0.05em;
}
.nav-logo span { color: var(--orange); }
nav.scrolled .nav-logo { color: var(--deep); }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(252,243,227,0.65);
  transition: color 0.25s;
}
.nav-links a:hover { color: rgba(252,243,227,1); }
nav.scrolled .nav-links a { color: var(--muted); }
nav.scrolled .nav-links a:hover { color: var(--deep); }

.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 4px !important;
  opacity: 1 !important;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.88 !important; }

.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 0; z-index: 200;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: rgba(252,243,227,0.8); transition: 0.3s; }
nav.scrolled .hamburger span { background: var(--deep); }
.mob-menu {
  display: none; position: fixed; inset: 0; z-index: 150;
  background: var(--cream); flex-direction: column;
  justify-content: center; align-items: center; gap: 36px;
  opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
.mob-menu.open { opacity: 1; pointer-events: all; }
.mob-menu a { font-size: 1.8rem; color: var(--deep); text-transform:uppercase; }
.mob-menu a:hover { color: var(--olive); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--dark-olive);
  display: flex; align-items: center;
  padding: clamp(100px, 14vw, 160px) var(--gutter) clamp(80px, 10vw, 120px);
  position: relative; overflow: hidden;
}

/* ── HERO ── */

.hero-layout {
  position: relative; z-index: 2;
  max-width: var(--inner-max);
  margin: 0 auto; width: 100%;
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.hero-left { display: flex; flex-direction: column; gap: 0; }

.hero-tag {
  font-family: var(--sans);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sky);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 36px;
  opacity: 0; animation: fadeUp 0.6s 0.2s forwards;
}
.hero-tag::before {
  content: '';
  display: block; width: 32px; height: 1px;
  background: var(--sky); opacity: 0.5; flex-shrink: 0;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.8vw, 4.4rem);
  font-weight: 300;
  line-height: 1.06;
  color: var(--cream);
  letter-spacing: -0.02em;
  opacity: 0; animation: fadeUp 0.9s 0.35s forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--cream);
  opacity: 0.55;
}

.hero-desc {
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  line-height: 1.85;
  color: rgba(252,243,227,0.65);
  max-width: 420px;
  font-weight: 300;
  margin-top: 40px;
  opacity: 0; animation: fadeUp 0.8s 0.55s forwards;
}

.hero-cta-row {
  display: flex; align-items: center; gap: 28px;
  margin-top: 48px;
  opacity: 0; animation: fadeUp 0.8s 0.7s forwards;
}
.hero-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--cream);
  background: var(--orange);
  padding: 14px 28px;
  border-radius: 4px;
  transition: opacity 0.2s;
}
.hero-btn:hover { opacity: 0.88; }
.hero-btn svg { width: 13px; height: 13px; transition: transform 0.25s; }
.hero-btn:hover svg { transform: translateX(3px); }

.hero-secondary {
  font-size: 0.68rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(148,178,196,0.55);
  border-bottom: 1px solid rgba(148,178,196,0.2);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.hero-secondary:hover { color: rgba(148,178,196,0.9); border-color: rgba(148,178,196,0.5); }

/* Hero right - slideshow */
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 320px;
  margin-left: auto;
  overflow: hidden;
  opacity: 0; animation: fadeUp 1s 0.8s forwards;
}
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-tree {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  z-index: 1;
  border-radius: 4px;
}
@keyframes treeSway {
  0%, 100% { transform: rotate(-0.6deg); }
  50% { transform: rotate(0.6deg); }
}
.hero-visual::before {
  content: '';
  position: absolute; inset: -8% -10% -12% -10%;
  background: #a9cfe4;
  border-radius: 4px;
  z-index: 0;
}
.hero-tree { z-index: 1; }
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; animation: slideRotate 12.5s infinite;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 2.5s; }
.hero-slide:nth-child(3) { animation-delay: 5s; }
.hero-slide:nth-child(4) { animation-delay: 7.5s; }
.hero-slide:nth-child(5) { animation-delay: 10s; }
@keyframes slideRotate {
  0%   { opacity: 0; transform: scale(0.94) rotate(-1deg); }
  4%   { opacity: 1; transform: scale(1) rotate(0deg); }
  16%  { opacity: 1; transform: scale(1) rotate(0deg); }
  20%  { opacity: 0; transform: scale(0.94) rotate(1deg); }
  100% { opacity: 0; }
}
.slide-letter {
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 7rem);
  color: rgba(252,243,227,0.7);
  line-height: 1; letter-spacing: -0.04em;
  font-weight: 400;
}
.slide-letter .bracket {
  font-family: var(--sans);
  font-weight: 300;
  opacity: 0.3;
  font-size: 0.65em;
  vertical-align: middle;
  margin: 0 0.08em;
}
.slide-quote {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  color: rgba(148,178,196,0.65);
  text-align: center; line-height: 1.55;
  font-weight: 500; text-transform: uppercase; letter-spacing: 0.07em;
}
.slide-scatter { position: relative; width: 100%; height: 100%; }
.slide-scatter span {
  position: absolute;
  font-family: var(--sans); font-weight: 700;
  text-transform: uppercase;
  color: var(--deep); background: var(--warm);
  padding: 9px 16px; border-radius: 4px;
  letter-spacing: 0.07em;
  font-size: clamp(0.65rem, 1vw, 0.8rem);
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.slide-photo-wrap {
  background: var(--warm); padding: 10px; border-radius: 4px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
  transform: rotate(-2.5deg);
  width: 68%; max-width: 300px;
}
.slide-photo-wrap img { width: 100%; display: block; border-radius: 2px; }
.slide-overlay { position: relative; width: 68%; max-width: 300px; }
.slide-overlay-img {
  background: var(--warm); padding: 10px; border-radius: 4px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
  transform: rotate(-2.5deg);
}
.slide-overlay-img img { width: 100%; display: block; border-radius: 2px; opacity: 0.75; }
.slide-overlay .overlay-tag {
  position: absolute;
  font-family: var(--sans); font-weight: 700;
  text-transform: uppercase;
  color: var(--deep); background: var(--warm);
  padding: 12px 24px; border-radius: 4px;
  letter-spacing: 0.09em;
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.slide-overlay .overlay-tag:nth-child(2) { top: 10%; right: -12%; transform: rotate(5deg); }
.slide-overlay .overlay-tag:nth-child(3) { bottom: 14%; left: -10%; transform: rotate(-4deg); }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute; bottom: 32px; left: var(--gutter);
  display: flex; align-items: center; gap: 10px;
  font-size: 0.6rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(148,178,196,0.35);
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(148,178,196,0.3), transparent);
}

/* ── DICTIONARY / DEFINITION ── */
.dict {
  background: #88B7C1;
  padding: var(--section-pad) var(--gutter);
  text-align: center;
  border-top: 1px solid rgba(148,178,196,0.08);
}
.dict-inner {
  max-width: 680px; margin: 0 auto;
  background: var(--cream);
  padding: clamp(56px, 7vw, 88px) clamp(40px, 6vw, 72px);
  border: 1px solid rgba(36,27,19,0.06);
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(36,27,19,0.10);
  position: relative;
}
.dict-eyebrow {
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(38,56,29,0.5);
  margin-bottom: 28px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.dict-eyebrow::before, .dict-eyebrow::after {
  content: ''; display: block;
  width: 40px; height: 1px;
  background: rgba(38,56,29,0.15);
}
.dict-word {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-style: italic;
  color: var(--deep);
  letter-spacing: -0.01em;
}
.dict-phon {
  font-size: 0.8rem; color: var(--muted);
  margin: 10px 0 32px; font-weight: 300; letter-spacing: 0.04em;
}
.dict-rule {
  width: 48px; height: 1px;
  background: rgba(38,56,29,0.15);
  margin: 0 auto 32px;
}
.dict-def {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
}
.dict-def strong { color: var(--deep); font-weight: 400; }

/* ── MANIFESTO (Parchment — visually distinct from Cream blocks) ── */
.manifesto {
  background: var(--warm);
  padding: var(--section-pad) var(--gutter);
  position: relative;
}
.manifesto-inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}
.mf-left {}
.mf-label {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 10px;
}
.mf-label::before {
  content: '';
  display: block; width: 24px; height: 1px;
  background: var(--orange);
}
.manifesto h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  color: var(--deep);
  letter-spacing: -0.01em;
}
.mf-right { padding-top: 8px; }
.mf-text p {
  font-size: clamp(0.92rem, 1.1vw, 1rem);
  line-height: 1.9;
  color: var(--brown);
  margin-bottom: 20px;
  font-weight: 300;
}
.mf-text p:last-child { margin-bottom: 0; }
.mf-text p strong { color: var(--deep); font-weight: 500; }

/* ── WHY (Cream bg) ── */
.why {
  background: var(--cream);
  padding: var(--section-pad) var(--gutter);
}
.why-inner { max-width: var(--inner-max); margin: 0 auto; }
.why-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(32px, 4vw, 56px);
  border-bottom: 1px solid rgba(38,56,29,0.1);
}
.why h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--deep);
  letter-spacing: -0.01em;
}
.why-intro {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
  max-width: 380px;
  align-self: end;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(38,56,29,0.1);
  border: 1px solid rgba(38,56,29,0.1);
}
.why-item {
  background: var(--cream);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 3vw, 36px);
  transition: background 0.3s;
}
.why-item:hover { background: var(--warm); }
.why-num {
  font-family: var(--serif);
  font-size: 0.85rem; font-style: italic;
  color:  var(--orange);
  margin-bottom: 20px;
}
.why-item h3 {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 14px;
  line-height: 1.3;
}
.why-item p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
}

/* ── QUOTE (Forest Green bg) ── */
.quote {
  background: var(--deep);
  padding: clamp(64px, 8vw, 100px) var(--gutter);
  text-align: center;
}
.quote-inner { max-width: 640px; margin: 0 auto; }
.quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
  font-weight: 300;
}
.quote-rule {
  width: 1px; height: 40px;
  background:  var(--orange);
  margin: 28px auto;
}
.quote .qa {
  font-size: 0.62rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--orange);
}

/* ── PACKAGES (Cream bg) ── */
.packages {
  background: var(--cream);
  padding: var(--section-pad) var(--gutter);
}
.packages-inner { max-width: var(--inner-max); margin: 0 auto; }
.packages-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(32px, 4vw, 48px);
  border-bottom: 1px solid rgba(38,56,29,0.1);
}
.packages-head h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--deep);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.packages-head p {
  font-size: clamp(0.88rem, 1.1vw, 0.96rem);
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  max-width: 320px;
  align-self: end;
}
.pkg {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 32px;
  align-items: start;
  padding: 36px 28px;
  margin: 0 -28px;
  border-bottom: 1px solid rgba(38,56,29,0.08);
  border-radius: 4px;
  transition: background 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.pkg:first-of-type { border-top: 1px solid rgba(38,56,29,0.08); }
.pkg.active {
  background: var(--warm);
  box-shadow: 0 8px 28px rgba(38,56,29,0.08);
}
.pkg-n {
  font-family: var(--serif);
  font-size: 1rem; font-style: italic;
  color:  var(--orange);
  padding-top: 4px;
  transition: color 0.25s;
}
.pkg h3 {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 8px;
  line-height: 1.2;
  transition: color 0.25s;
}
.pkg-sub {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 0;
}
.pkg-det {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 300;
  
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.35s, margin-top 0.3s;
  
}
.pkg-det ul {
	list-style: disc outside;
	padding-left: 1.25em;
	padding-top: 1.25em;
  	margin: 0;
}
.pkg-det ul li {
	display: list-item;
	margin: 0;
}
.pkg.active .pkg-det { max-height: 360px; opacity: 1; margin-top: 18px; }
.pkg-pr {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.9vw, 1.65rem);
  color: var(--deep);
  text-align: right;
  padding-top: 4px;
  white-space: nowrap;
  line-height: 1.1;
}
.pkg-pr span {
  display: block;
  font-family: var(--sans);
  font-size: 0.58rem; font-weight: 500;
  color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-top: 4px;
}
.pkg-tog {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  color: var(--deep);
  background: transparent;
  border: 1px solid rgba(38,56,29,0.25);
  border-radius: 999px;
  width: 36px; height: 36px;
  margin-top: 2px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  user-select: none;
  line-height: 1;
  align-self: center;
}
.pkg-tog .pkg-tog-icon {
  display: inline-block;
  width: 16px; height: 16px;
  position: relative;
  transition: transform 0.3s;
}
.pkg-tog .pkg-tog-icon::before,
.pkg-tog .pkg-tog-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}
.pkg-tog .pkg-tog-icon::before { width: 10px; height: 1.5px; }
.pkg-tog .pkg-tog-icon::after { width: 1.5px; height: 10px; transition: transform 0.3s; }
.pkg.active .pkg-tog .pkg-tog-icon::after { transform: translate(-50%, -50%) scaleY(0); }

/* ── LOGO STYLES (Parchment bg — break up the dark blocks) ── */
.logo-styles {
  background: var(--warm);
  padding: var(--section-pad) var(--gutter);
}
.logo-styles-inner { max-width: var(--inner-max); margin: 0 auto; }
.logo-styles-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(32px, 4vw, 56px);
  border-bottom: 1px solid rgba(36,27,19,0.1);
}
.logo-styles h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--deep);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.logo-styles-sub {
  font-size: clamp(0.88rem, 1.1vw, 0.96rem);
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  max-width: 320px;
  align-self: end;
}
.style-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(36,27,19,0.08);
  border: 1px solid rgba(36,27,19,0.08);
}
.style-item {
  background: var(--cream);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 3vw, 36px);
  transition: background 0.3s;
}
.style-item:hover { background: var(--warm); }
.style-sym {
  font-size: 1.2rem;
  color: var(--olive);
  margin-bottom: 20px;
  line-height: 1;
}
.style-item h3 {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 12px;
  line-height: 1.3;
}
.style-item p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
}

/* ── PROCESS (Cream bg) ── */
.process {
  background: var(--dark-olive);
  padding: var(--section-pad) var(--gutter);
}
.process-inner { max-width: var(--inner-max); margin: 0 auto; }
.process-head {
  margin-bottom: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(32px, 4vw, 48px);
  border-bottom: 1px solid rgba(244,234,216,0.14);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.process h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.process-note {
  font-size: clamp(0.88rem, 1.1vw, 0.96rem);
  color: rgba(244,234,216,0.72);
  line-height: 1.8;
  font-weight: 300;
  max-width: 320px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(244,234,216,0.14);
}
.step {
  padding: clamp(28px, 4vw, 44px) clamp(20px, 2.5vw, 32px);
  border-right: 1px solid rgba(244,234,216,0.14);
  transition: background 0.3s;
}
.step:last-child { border-right: none; }
.step:hover { background: rgba(244,234,216,0.04); }
.step-n {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-style: italic;
  color:  var(--orange);
  margin-bottom: 24px;
  line-height: 1;
}
.step h4 {
  font-family: var(--serif);
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.3;
}
.step p {
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(244,234,216,0.7);
  font-weight: 300;
}

/* ── CASE STUDY (Cream bg) ── */
.case {
  background: var(--cream);
  padding: var(--section-pad) var(--gutter);
}
.case-inner { max-width: var(--inner-max); margin: 0 auto; }
.case-label {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color:  var(--orange);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.case-label::before {
  content: '';
  display: block; width: 24px; height: 1px;
  background: var(--orange);
}
.case-inner > h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--deep);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 520px;
}
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.case-imgs { display: flex; flex-direction: column; gap: 16px; }
.case-imgs img:first-child {
  width: 100px; height: 100px;
  object-fit: cover; border-radius: 4px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
.case-imgs img:last-child {
  width: 100%; border-radius: 4px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
.case-text h3 {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 20px;
  line-height: 1.25;
}
.case-text p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 300;
}
.case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(38,56,29,0.1);
}
.case-stat {
  padding-right: 24px;
  border-right: 1px solid rgba(38,56,29,0.1);
}
.case-stat:last-child { border-right: none; padding-left: 24px; padding-right: 0; }
.case-stat:nth-child(2) { padding: 0 24px; }
.cs-val {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--olive);
  line-height: 1;
  margin-bottom: 12px;
}
.cs-lbl {
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(38,56,29,0.55);
}

/* ── CTA (Brew bg) ── */
.cta-section {
  background: var(--deep);
  padding: var(--section-pad) var(--gutter);
  text-align: center;
}
.cta-inner {
  max-width: 560px;
  margin: 0 auto;
}
.cta-label {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color:  var(--orange);
  margin-bottom: 32px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.cta-label::before, .cta-label::after {
  content: ''; display: block;
  width: 32px; height: 1px;
  background:  var(--orange);
}
.cta-section h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.cta-sub {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: rgba(252,243,227,0.55);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 48px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--cream);
  background: var(--orange);
  padding: 16px 36px;
  border-radius: 4px;
  transition: opacity 0.2s;
}
.cta-btn:hover { opacity: 0.88; }
.cta-btn svg { width: 13px; height: 13px; transition: transform 0.25s; }
.cta-btn:hover svg { transform: translateX(3px); }

/* ── FOOTER (Ink Brown) ── */
footer {
  background: var(--deep);
  padding: 48px var(--gutter) 36px;
  border-top: 1px solid rgba(148,178,196,0.08);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}
.f-logo {
  font-family: 'BJCree', Georgia, serif;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 10px;
  letter-spacing: -0.06em;
  word-spacing: -0.05em;
}
.f-logo span { color: var(--orange); }
.f-left p {
  font-size: 0.7rem;
  color: rgba(244,234,216,0.6);
  font-weight: 300;
  letter-spacing: 0.03em;
}
.f-right { display: flex; gap: 32px; }
.f-right a {
  font-size: 0.65rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(148,178,196,0.5);
  transition: color 0.2s;
}
.f-right a:hover { color: var(--cream); }

/* ── REVEAL ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */

/* 1920px+ wide screens */
@media (min-width: 1600px) {
  :root {
    --inner-max: 1320px;
    --section-pad: 160px;
    --gutter: 80px;
  }
  .hero h1 { font-size: 5rem; }
  .hero-desc { font-size: 1.05rem; max-width: 500px; }
  .hero-visual { max-width: 320px; }
  .manifesto h2,
  .why h2,
  .packages-head h2,
  .logo-styles h2,
  .process h2,
  .case-inner > h2,
  .cta-section h2 { font-size: 3.2rem; }
  .dict-word { font-size: 3.8rem; }
  .dict-def { font-size: 1.3rem; }
  .why-item h3,
  .style-item h3 { font-size: 1.4rem; }
  .why-item p,
  .style-item p,
  .step p,
  .case-text p { font-size: 0.96rem; }
  .pkg h3 { font-size: 1.6rem; }
  .cs-val { font-size: 2.8rem; }
  nav { padding: 32px var(--gutter); }
  .step-n { font-size: 3.2rem; }
}

/* 15" laptop (1440px) */
@media (max-width: 1440px) {
  :root {
    --inner-max: 1100px;
    --gutter: clamp(32px, 4vw, 56px);
  }
  .hero h1 { font-size: clamp(2.4rem, 4.5vw, 4rem); }
}

/* 13"-14" laptop (1280px) */
@media (max-width: 1280px) {
  :root {
    --inner-max: 960px;
    --section-pad: clamp(72px, 9vw, 120px);
    --gutter: clamp(28px, 4vw, 48px);
  }
  .hero h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
  .hero-visual { max-width: 240px; }
  .hero-layout { gap: clamp(40px, 5vw, 72px); }
}

/* Tablet landscape (1024px) */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mob-menu { display: flex; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero h1 { font-size: clamp(2.4rem, 6vw, 3.8rem); }
  .hero-desc { max-width: 560px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-head { grid-template-columns: 1fr; gap: 20px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .packages-head { grid-template-columns: 1fr; gap: 16px; }
  .logo-styles-head { grid-template-columns: 1fr; gap: 16px; }
  .style-grid { grid-template-columns: 1fr 1fr; }
  .process-head { grid-template-columns: 1fr; gap: 16px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step { border-right: 1px solid rgba(38,56,29,0.1); border-bottom: 1px solid rgba(38,56,29,0.1); }
  .step:nth-child(2n) { border-right: none; }
  .step:nth-child(3), .step:nth-child(4) { border-bottom: none; }
  .case-grid { gap: 40px; }
  .pkg { grid-template-columns: 40px 1fr auto; gap: 16px; }
  .pkg-tog { display: none; }
  .dict-inner { max-width: 560px; }
}

/* Tablet portrait (768px) */
@media (max-width: 768px) {
  :root {
    --section-pad: clamp(60px, 10vw, 96px);
    --gutter: 24px;
  }
  nav { padding: 18px var(--gutter); }
  nav.scrolled { padding: 14px var(--gutter); }
  .hero { padding: 96px var(--gutter) 72px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-desc { max-width: 100%; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; gap: 18px; }
  .hero-scroll { display: none; }
  .dict-inner { max-width: 100%; }
  .why-head { padding-bottom: 28px; margin-bottom: 36px; }
  .why-grid { grid-template-columns: 1fr; }
  .style-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2n) { border-right: none; }
  .step:nth-child(3), .step:nth-child(4) { border-bottom: none; }
  .case-grid { grid-template-columns: 1fr; }
  .pkg { grid-template-columns: 32px 1fr; gap: 12px; }
  .pkg-pr { padding-left: 44px; padding-top: 20px }
  .pkg-n { padding-top: 0; }
  footer { flex-direction: column; align-items: flex-start; }
  .f-right { flex-wrap: wrap; gap: 20px; }
  .manifesto-inner { gap: 32px; }
  .packages-head, .process-head, .why-head, .logo-styles-head { grid-template-columns: 1fr; gap: 12px; }
  .cta-section h2 { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .cs-lbl {
  	padding-bottom: 18px;
  }
}

/* Mobile (480px) */
@media (max-width: 480px) {
  :root { --gutter: 20px; }
  .hero h1 { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid rgba(38,56,29,0.1); }
  .step:last-child { border-bottom: none; }
  .case-stats { grid-template-columns: 1fr; }
  .case-stat { 
  	border-right: none; 
  	border-top: 1px solid rgba(38,56,29,0.1); 
  	padding: 18px 0 0; 
  }
  .case-stat:first-child { border-top: none; padding-top: 0; }
  .case-stat:last-child { 
  	grid-column: auto; 
  	padding-left: 0;
  	padding-top: 0;
  }
  .case-stat:nth-child(2) { padding: 0px; }
  .cs-lbl {
  	padding-bottom: 18px;
  }
  .pkg { grid-template-columns: 28px 1fr; gap: 10px; }
  .pkg-pr { padding-left: 38px; padding-top: 20px }
  .pkg-n { padding-top: 0; }
  .pkg h3 { font-size: 1.1rem; }
  .dict-word { font-size: clamp(1.6rem, 8vw, 2.4rem); }
  .manifesto h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .why-item { padding: 24px 20px; }
  .style-item { padding: 24px 20px; }
  .step { padding: 24px 20px; }
  .cta-section h2 { font-size: clamp(1.6rem, 8vw, 2.2rem); }
  footer .f-right { gap: 16px; }
	
}