/* ============================================
   TAHIR AGRI-TECHS LIMITED — STYLESHEET
   Clean version — no photos
   ============================================ */

:root {
  --sage:        #A3B16A;
  --sage-dark:   #7E8C4E;
  --sage-light:  #c8d898;
  --sage-pale:   #e8f0d0;
  --brown:       #5C3A1E;
  --brown-dark:  #3D2410;
  --brown-mid:   #7a4e2d;
  --cream:       #F7F2E7;
  --cream-dark:  #EDE8D8;
  --white:       #ffffff;
  --ink:         #1F2A14;
  --muted:       #5A5A4A;
  --gold:        #C8922A;
  --gold-light:  #E8B84B;
  --shadow:      0 4px 24px rgba(92,58,30,0.1);
  --shadow-lg:   0 12px 48px rgba(92,58,30,0.16);
  --radius:      10px;
  --transition:  0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', 'Inter', sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.65;
}
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-gold        { background: var(--gold); color: var(--white); }
.btn-gold:hover  { background: var(--gold-light); transform: translateY(-2px); }
.btn-brown       { background: var(--brown); color: var(--white); }
.btn-brown:hover { background: var(--brown-dark); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }
.btn-outline-brown { background: transparent; color: var(--brown); border: 2px solid var(--brown); padding: 11px 26px; }
.btn-outline-brown:hover { background: var(--brown); color: var(--white); }
.btn.full { width: 100%; text-align: center; }

/* ---- SECTION COMMONS ---- */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 100px 24px; }
.section-header { text-align: center; margin-bottom: 64px; }

.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--sage-dark); margin-bottom: 14px;
}
.eyebrow.light { color: var(--sage-light); }
.eyebrow.dark  { color: var(--brown); }

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -1px; color: var(--brown); margin-bottom: 20px;
}
.section-title.dark  { color: var(--brown-dark); }
.section-title.light { color: var(--white); }

.section-sub { font-size: 1rem; color: var(--muted); max-width: 640px; margin: 0 auto; line-height: 1.8; }
.section-sub.light { color: rgba(247,242,231,0.75); }

/* ============================================
   TOP BAR
   ============================================ */
.topbar { background: var(--brown-dark); color: #E8DCC8; font-size: 12.5px; padding: 9px 24px; }
.topbar-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar span  { display: inline-flex; align-items: center; gap: 7px; }
.topbar-right { display: flex; gap: 24px; }
.topbar a  { color: #E8DCC8; transition: var(--transition); }
.topbar a:hover { color: var(--sage-light); }
.topbar i  { color: var(--sage); font-size: 11px; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(92,58,30,0.08);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(92,58,30,0.12); }

.nav-container {
  max-width: 1200px; margin: 0 auto;
  padding: 12px 24px;
  display: flex; align-items: center; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-logo { width: 48px; height: auto; }
.brand-text { font-weight: 800; font-size: 15px; line-height: 1.15; letter-spacing: 0.5px; color: var(--brown); }
.brand-text small { display: block; font-weight: 400; font-size: 10px; color: var(--sage-dark); letter-spacing: 1.5px; text-transform: uppercase; }

.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a {
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.8px; text-transform: uppercase;
  color: var(--brown); transition: var(--transition); position: relative;
}
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--sage); transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--sage-dark); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { background: var(--brown); color: var(--white); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; padding: 10px 22px; border-radius: 4px; font-weight: 700; transition: var(--transition); white-space: nowrap; flex-shrink: 0; }
.nav-cta:hover { background: var(--gold); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--brown); transition: var(--transition); border-radius: 2px; }

/* ============================================
   HERO — pure CSS, no photo
   ============================================ */
.hero {
  position: relative;
  background: var(--brown);
  padding: 130px 24px 150px;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 88vh;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(163,177,106,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,146,42,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner { position: relative; z-index: 2; max-width: 700px; flex: 1; }
.hero .eyebrow { color: var(--sage-light); }
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(56px, 10vw, 130px);
  font-weight: 800; line-height: 0.92;
  letter-spacing: -3px; color: var(--sage);
  margin: 12px 0 28px;
}
.hero h1 .accent { color: var(--white); }
.lead { max-width: 560px; font-size: 1.05rem; color: rgba(247,242,231,0.85); line-height: 1.8; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-deco { position: absolute; right: 80px; top: 50%; transform: translateY(-50%); z-index: 1; opacity: 0.1; }
.hero-logo-deco { width: 380px; height: auto; filter: brightness(10); }

.hero-scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero-scroll-hint a { color: rgba(247,242,231,0.45); font-size: 1.1rem; animation: bounce 2s infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip { background: var(--sage); padding: 36px 24px; }
.stats-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); text-align: center; gap: 24px; }
.stat { color: var(--brown-dark); }
.stat span.stat-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 800; color: var(--brown-dark); line-height: 1; }
.stat p { font-size: 0.82rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-top: 6px; color: rgba(61,36,16,0.7); }

/* ============================================
   STORY — animated logo rings, no photo
   ============================================ */
.story { background: var(--cream); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.story-graphic { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.story-graphic-inner { position: relative; width: 340px; height: 340px; display: flex; align-items: center; justify-content: center; }
.story-logo-big { width: 200px; height: auto; position: relative; z-index: 2; filter: drop-shadow(0 8px 24px rgba(92,58,30,0.2)); }
.story-ring { position: absolute; border-radius: 50%; border: 2px solid; animation: ringPulse 3s ease-in-out infinite; }
.ring-1 { width: 260px; height: 260px; border-color: rgba(163,177,106,0.3); animation-delay: 0s; }
.ring-2 { width: 320px; height: 320px; border-color: rgba(163,177,106,0.15); animation-delay: 0.8s; }
@keyframes ringPulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.04);opacity:0.6} }

.story-badge { margin-top: 24px; background: var(--white); color: var(--brown); padding: 10px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; box-shadow: var(--shadow); }
.story-badge i { color: var(--sage); }
.story-text p { color: var(--muted); font-size: 0.97rem; }

/* ============================================
   MISSION
   ============================================ */
.mission { background: var(--sage); }
.mission-header { text-align: center; margin-bottom: 52px; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.mission-card { background: rgba(255,255,255,0.45); backdrop-filter: blur(6px); border-radius: var(--radius); padding: 36px 32px; transition: var(--transition); }
.mission-card:hover { background: rgba(255,255,255,0.6); transform: translateY(-3px); }
.mission-icon { width: 52px; height: 52px; background: var(--brown); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.2rem; margin-bottom: 18px; }
.mission-card h3 { font-family: 'Playfair Display', serif; color: var(--brown-dark); font-size: 1.4rem; margin-bottom: 12px; }
.mission-card p { color: var(--brown-dark); font-size: 0.95rem; opacity: 0.85; }

/* ============================================
   PRODUCTS — gradient visuals, no photo
   ============================================ */
.products { background: var(--white); }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.product-card { border: 1px solid rgba(92,58,30,0.1); border-radius: var(--radius); overflow: hidden; transition: var(--transition); background: var(--white); }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.product-visual { height: 240px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.product-visual.avocado { background: linear-gradient(135deg, #3d5c18 0%, #5C7A2C 40%, #7a9e3a 100%); }
.product-visual.mango   { background: linear-gradient(135deg, #8B4800 0%, #c46b00 40%, #E8A33D 100%); }
.product-visual::before { content: ''; position: absolute; top: -40px; right: -40px; width: 200px; height: 200px; background: rgba(255,255,255,0.06); border-radius: 50%; }
.product-visual::after  { content: ''; position: absolute; bottom: -60px; left: -40px; width: 250px; height: 250px; background: rgba(255,255,255,0.04); border-radius: 50%; }

.product-fruit-icon { font-size: 5.5rem; filter: drop-shadow(0 6px 16px rgba(0,0,0,0.25)); position: relative; z-index: 1; animation: floatFruit 4s ease-in-out infinite; }
@keyframes floatFruit { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* Real photo inside product card */
.product-visual img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  transition: transform 0.6s ease;
}
.product-card:hover .product-visual img { transform: scale(1.06); }

.product-label-tag { position: absolute; bottom: 16px; left: 16px; background: rgba(0,0,0,0.45); color: rgba(255,255,255,0.95); font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; backdrop-filter: blur(6px); z-index: 2; }

.product-body { padding: 32px; }
.product-meta { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--sage-dark); margin-bottom: 8px; display: block; }
.product-body h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--brown); margin-bottom: 12px; }
.product-body > p { color: var(--muted); font-size: 0.93rem; margin-bottom: 24px; }
.product-details { margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.detail-row { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--muted); }
.detail-row i { color: var(--sage-dark); margin-top: 3px; width: 14px; }

/* ============================================
   PROCESS
   ============================================ */
.process { background: var(--cream-dark); }
.process-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; position: relative; }
.process-step { text-align: center; padding: 0 16px; position: relative; }
.process-icon { width: 72px; height: 72px; background: var(--brown); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.5rem; margin: 0 auto 16px; position: relative; z-index: 2; box-shadow: 0 4px 16px rgba(92,58,30,0.25); transition: var(--transition); }
.process-step:hover .process-icon { background: var(--gold); transform: scale(1.1); }
.process-line { position: absolute; top: 35px; left: calc(50% + 36px); right: calc(-50% + 36px); height: 2px; background: linear-gradient(to right, var(--sage), var(--sage-light)); z-index: 1; }
.process-line.last { display: none; }
.process-step h4 { font-family: 'Playfair Display', serif; color: var(--brown); font-size: 1rem; margin-bottom: 8px; }
.process-step p { color: var(--muted); font-size: 0.82rem; line-height: 1.6; }

/* ============================================
   SUSTAINABILITY — dark bg, no photo
   ============================================ */
.sustain { background: var(--brown); position: relative; overflow: hidden; }
.sustain::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(163,177,106,0.08) 0%, transparent 70%); border-radius: 50%; }
.sustain-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; position: relative; z-index: 1; }
.sustain-card { border: 1px solid rgba(247,242,231,0.12); border-radius: var(--radius); padding: 32px 26px; transition: var(--transition); }
.sustain-card:hover { background: rgba(255,255,255,0.06); transform: translateY(-4px); }
.sustain-icon { width: 56px; height: 56px; background: var(--sage-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.3rem; margin-bottom: 20px; }
.sustain-card h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--sage); margin-bottom: 10px; }
.sustain-card p { color: rgba(247,242,231,0.65); font-size: 0.9rem; }

/* ============================================
   MARKETS
   ============================================ */
.markets { background: var(--cream); }
.market-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.market-pill { padding: 14px 28px; background: var(--white); border: 1px solid rgba(92,58,30,0.15); border-radius: 999px; color: var(--brown); font-weight: 700; font-size: 0.95rem; display: flex; align-items: center; gap: 10px; transition: var(--transition); }
.market-pill:hover { background: var(--brown); color: var(--white); transform: translateY(-3px); }
.flag { font-size: 1.3rem; }
.market-banner { margin-top: 52px; background: var(--brown); color: rgba(247,242,231,0.85); border-radius: var(--radius); padding: 22px 32px; display: flex; align-items: center; gap: 16px; font-size: 0.95rem; }
.market-banner i { color: var(--gold); font-size: 1.4rem; flex-shrink: 0; }
.market-banner strong { color: var(--white); }

/* ============================================
   WHY US
   ============================================ */
.whyus { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.why-card { padding: 36px 22px; border: 1px solid rgba(92,58,30,0.1); border-radius: var(--radius); text-align: center; transition: var(--transition); }
.why-card:hover { box-shadow: var(--shadow); border-color: transparent; transform: translateY(-4px); }
.why-card > i { font-size: 1.8rem; color: var(--sage-dark); margin-bottom: 18px; display: block; }
.why-card h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--brown); margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; color: var(--muted); }

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--sage); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
.contact-block { margin-bottom: 22px; }
.contact-block strong { display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--brown); font-weight: 700; margin-bottom: 4px; }
.contact-block p, .contact-block a { color: var(--brown-dark); font-size: 0.95rem; }
.contact-note { font-size: 0.9rem; color: rgba(61,36,16,0.7); margin-top: 8px; margin-bottom: 24px; }
.social-row { display: flex; gap: 12px; }
.social-row a { width: 40px; height: 40px; background: var(--brown); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: var(--transition); }
.social-row a:hover { background: var(--brown-dark); transform: translateY(-3px); }

.contact-form { background: var(--white); padding: 40px; border-radius: var(--radius); box-shadow: 0 8px 40px rgba(92,58,30,0.15); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--brown); margin-bottom: 7px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 13px 16px; border: 1px solid rgba(92,58,30,0.2); border-radius: 6px; font-family: 'DM Sans', sans-serif; font-size: 0.93rem; color: var(--ink); background: var(--cream); transition: var(--transition); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--sage-dark); box-shadow: 0 0 0 3px rgba(163,177,106,0.2); }
.contact-form textarea { resize: vertical; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--brown-dark); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 64px 24px 48px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-brand { display: flex; align-items: flex-start; gap: 14px; }
.footer-logo { width: 52px; height: auto; }
.footer-brand-name { font-weight: 800; font-size: 14px; letter-spacing: 1px; color: var(--white); margin-bottom: 4px; }
.footer-brand-sub { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--sage); margin-bottom: 10px; }
.footer-tagline-text { font-size: 0.82rem; color: rgba(247,242,231,0.45); line-height: 1.6; }
.footer-col h5 { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { color: rgba(247,242,231,0.55); font-size: 0.88rem; transition: var(--transition); }
.footer-col li a:hover { color: var(--sage-light); padding-left: 4px; }
.footer-col p { display: flex; align-items: flex-start; gap: 10px; color: rgba(247,242,231,0.55); font-size: 0.88rem; margin-bottom: 10px; }
.footer-col p i { color: var(--sage); margin-top: 2px; width: 14px; }
.footer-col a { color: rgba(247,242,231,0.55); transition: var(--transition); }
.footer-col a:hover { color: var(--sage-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 24px; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(247,242,231,0.35); }
.footer-sub { color: rgba(163,177,106,0.45) !important; }

/* ============================================
   GALLERY
   ============================================ */
.gallery-section { background: var(--cream-dark); }

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 270px 270px;
  gap: 12px;
}
.gallery-grid.gallery-three {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 360px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--brown-dark);
}

.gallery-item.gallery-tall { grid-row: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.55s ease;
}

.gallery-item:hover img { transform: scale(1.07); }

.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 16px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: #fff;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.4px;
  display: flex; align-items: center; gap: 7px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* broken image fallback */
.gallery-item img[src="gallery-1.jpg"]:not([complete]),
.gallery-item img[src="gallery-2.jpg"]:not([complete]) {
  background: var(--brown-mid);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 250px 250px 250px; }
  .gallery-grid.gallery-three { grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 280px; }
  .gallery-item.gallery-tall { grid-row: span 2; }
  .process-steps { grid-template-columns: repeat(3,1fr); gap: 32px; }
  .process-step:nth-child(3) .process-line { display: none; }
  .why-grid     { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-inner  { grid-template-columns: repeat(2,1fr); }
  .hero-deco    { right: 20px; }
  .hero-logo-deco { width: 280px; }
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .gallery-item.gallery-tall { grid-row: span 1; }
  .gallery-caption { opacity: 1; padding: 24px 12px 10px; font-size: 0.76rem; }
  .story-grid, .mission-grid, .product-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .sustain-grid { grid-template-columns: 1fr; }
  .why-grid     { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .process-line { display: none !important; }
  .section-inner { padding: 72px 20px; }
  .hero { padding: 90px 24px 110px; min-height: auto; }
  .hero-deco { display: none; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .topbar-right { gap: 12px; }
  .story-graphic-inner { width: 260px; height: 260px; }
  .story-logo-big { width: 160px; }
  .ring-1 { width: 200px; height: 200px; }
  .ring-2 { width: 250px; height: 250px; }
  .market-banner { flex-direction: column; text-align: center; }
  .nav-links, .nav-cta { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--cream); padding: 100px 40px 40px; gap: 28px; z-index: 90; }
  .nav-links.open a { font-size: 1.3rem; letter-spacing: 1px; }
  .hamburger { display: flex; z-index: 200; position: relative; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
}
