*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --wheat: #E8D5B0;
  --wheat-light: #F5ECD8;
  --wheat-pale: #FAF4E8;
  --stone: #8B6F47;
  --stone-dark: #5C4A32;
  --cream: #FAF6EE;
  --gold: #C9962A;
  --gold-light: #E8B84B;
  --charcoal: #2A2520;
  --charcoal-mid: #4A3F35;
  --charcoal-light: #6B5E52;
  --olive: #7A7A5C;
  --olive-light: #A8A882;
  --warm-white: #FEFCF8;
  --off-black: #1A1510;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
  min-height: 100vh;
}

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

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 1.4rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(254, 252, 248, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 0.5px solid rgba(139, 111, 71, 0.12);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--charcoal);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: none;
  color: var(--charcoal-light);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 1.2rem; }
.cart-btn {
  position: relative;
  padding: 0.6rem 1.5rem;
  background: var(--charcoal);
  color: var(--cream);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.cart-btn:hover { background: var(--stone-dark); }
.cart-count {
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.6rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.cart-count.bump { animation: bump 0.3s ease; }
@keyframes bump { 0%,100%{transform:scale(1)} 50%{transform:scale(1.4)} }

/* ===== HERO BANNER ===== */
.shop-hero {
  padding-top: 80px;
  background: var(--off-black);
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
}
.shop-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 30% 120%, rgba(92,58,24,0.6) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 85% 0%, rgba(30,20,8,0.8) 0%, transparent 60%),
    linear-gradient(170deg, #1A1510 0%, #261B0E 60%, #1A1510 100%);
}
.shop-hero-content {
  position: relative;
  z-index: 2;
  padding: 3.5rem 5vw 4rem;
}
.shop-hero-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.shop-hero-eyebrow::before {
  content: '';
  width: 24px; height: 0.5px;
  background: var(--gold);
  opacity: 0.5;
}
.shop-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
}
.shop-hero-title em { font-style: italic; color: var(--gold-light); }
.shop-hero-sub {
  font-size: 0.85rem;
  color: rgba(250,246,238,0.4);
  margin-top: 0.8rem;
  letter-spacing: 0.04em;
}
.shop-hero-arch {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--warm-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* ===== LAYOUT ===== */
.shop-body {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  max-width: 1340px;
  margin: 0 auto;
  padding: 3rem 5vw 6rem;
  align-items: start;
}

/* ===== SIDEBAR ===== */
.sidebar {
  position: sticky;
  top: 100px;
  padding-right: 3rem;
}
.sidebar-title {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 0.5px solid rgba(139,111,71,0.15);
}
.cat-list { list-style: none; margin-bottom: 2.5rem; }
.cat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0.8rem;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--charcoal-light);
  border-left: 2px solid transparent;
  transition: all 0.25s;
  letter-spacing: 0.02em;
}
.cat-item:hover { color: var(--charcoal); border-left-color: var(--wheat); }
.cat-item.active {
  color: var(--gold);
  border-left-color: var(--gold);
  background: rgba(201,150,42,0.05);
  font-weight: 500;
}
.cat-count {
  font-size: 0.66rem;
  color: var(--olive-light);
  background: rgba(139,111,71,0.1);
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
}
.cat-item.active .cat-count {
  background: rgba(201,150,42,0.15);
  color: var(--gold);
}

.sidebar-freshness {
  background: var(--off-black);
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
}
.sidebar-freshness::before {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,150,42,0.12) 0%, transparent 70%);
}
.sf-label {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.sf-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  opacity: 0.85;
}

/* ===== MAIN CONTENT ===== */
.main-content { min-width: 0; }

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 0.5px solid rgba(139,111,71,0.12);
}
.results-info {
  font-size: 0.78rem;
  color: var(--olive);
}
.results-info strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-right: 0.3rem;
}

.sort-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.sort-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-light);
}
.sort-select {
  background: transparent;
  border: 0.5px solid rgba(139,111,71,0.25);
  color: var(--charcoal-mid);
  font-size: 0.75rem;
  font-family: 'DM Sans', sans-serif;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%238B6F47'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  padding-right: 1.8rem;
}

/* ===== PRODUCT GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.prod-card {
  background: var(--cream);
  border: 0.5px solid rgba(139,111,71,0.1);
  position: relative;
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.35s;
  cursor: default;
  display: flex;
  flex-direction: column;
}
.prod-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(42,37,32,0.1);
}

.prod-visual {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: #1a1510;
}
.prod-visual img.prod-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
  display: block;
}
.prod-card:hover .prod-bg { transform: scale(1.07); }
.prod-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.04) 0%,
    rgba(0,0,0,0.0) 40%,
    rgba(0,0,0,0.55) 100%
  );
  pointer-events: none;
}

/* Category-based card color themes */
.theme-flour  { background: linear-gradient(145deg, #EDD9A3 0%, #D4A84B 100%); }
.theme-spices-haldi { background: linear-gradient(145deg, #F5D76E 0%, #D4A017 100%); }
.theme-spices-dhaniya { background: linear-gradient(145deg, #C8D9A3 0%, #8BAB4B 100%); }
.theme-spices-kashmiri { background: linear-gradient(145deg, #E8956A 0%, #C04A1A 100%); }
.theme-spices-teekhi { background: linear-gradient(145deg, #F0A060 0%, #D06010 100%); }
.theme-oil { background: linear-gradient(145deg, #C8D8B8 0%, #7A9848 100%); }

.prod-visual-inner {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.75rem 0.9rem;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.prod-weight-badge {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.18);
  color: #fff;
  padding: 0.22rem 0.65rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 0.5px solid rgba(255,255,255,0.25);
  font-weight: 500;
}

.prod-cat-tag {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  padding: 0.22rem 0.6rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 0.5px solid rgba(255,255,255,0.2);
  z-index: 3;
}

.prod-info {
  padding: 1.3rem 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.prod-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 0.4rem;
  flex: 1;
}
.prod-freshness {
  font-size: 0.62rem;
  color: var(--olive-light);
  letter-spacing: 0.1em;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.fresh-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: freshBlink 2.5s ease-in-out infinite;
}
@keyframes freshBlink { 0%,100%{opacity:0.4} 50%{opacity:1} }

.prod-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.prod-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1;
}
.prod-price small {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  color: var(--olive-light);
  font-style: normal;
  margin-left: 2px;
}

.add-btn {
  width: 36px; height: 36px;
  border: 0.5px solid var(--charcoal);
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  font-size: 1.2rem;
  line-height: 1;
  font-family: 'DM Sans', sans-serif;
}
.add-btn:hover {
  background: var(--charcoal);
  color: var(--cream);
}
.add-btn.added {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

/* qty control when added */
.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 0.5px solid var(--charcoal);
}
.qty-btn {
  width: 28px; height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.qty-btn:hover { background: rgba(42,37,32,0.06); }
.qty-num {
  width: 30px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal);
  border-left: 0.5px solid rgba(42,37,32,0.15);
  border-right: 0.5px solid rgba(42,37,32,0.15);
}

/* ===== CART DRAWER ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,21,16,0.5);
  z-index: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(480px, 100vw);
  height: 100vh;
  background: var(--warm-white);
  z-index: 900;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
  display: flex;
  flex-direction: column;
  border-left: 0.5px solid rgba(139,111,71,0.12);
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 0.5px solid rgba(139,111,71,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.cart-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--charcoal);
}
.cart-title span {
  font-size: 0.75rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--olive-light);
  font-weight: 300;
  margin-left: 0.5rem;
}
.close-btn {
  width: 36px; height: 36px;
  background: transparent;
  border: 0.5px solid rgba(139,111,71,0.2);
  cursor: pointer;
  color: var(--charcoal-light);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.close-btn:hover { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 2rem;
}
.cart-items::-webkit-scrollbar { width: 4px; }
.cart-items::-webkit-scrollbar-track { background: transparent; }
.cart-items::-webkit-scrollbar-thumb { background: rgba(139,111,71,0.2); border-radius: 2px; }

.cart-empty {
  text-align: center;
  padding: 4rem 1rem;
}
.cart-empty-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.4; }
.cart-empty-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--charcoal-light);
  margin-bottom: 0.5rem;
}
.cart-empty-sub { font-size: 0.8rem; color: var(--olive-light); }

.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 0.5px solid rgba(139,111,71,0.1);
  animation: slideIn 0.3s ease;
}
@keyframes slideIn { from{opacity:0;transform:translateX(12px)} to{opacity:1;transform:none} }

.ci-icon {
  width: 52px; height: 52px;
  border-radius: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.ci-info { flex: 1; min-width: 0; }
.ci-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}
.ci-price-line {
  font-size: 0.75rem;
  color: var(--olive);
}
.ci-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
.ci-subtotal {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
}
.ci-qty-row {
  display: flex;
  align-items: center;
  gap: 0;
  border: 0.5px solid rgba(139,111,71,0.2);
}
.ci-q-btn {
  width: 24px; height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--charcoal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.ci-q-btn:hover { background: rgba(42,37,32,0.06); }
.ci-q-num {
  width: 26px; height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  border-left: 0.5px solid rgba(139,111,71,0.2);
  border-right: 0.5px solid rgba(139,111,71,0.2);
}

.cart-footer {
  padding: 1.5rem 2rem 2rem;
  border-top: 0.5px solid rgba(139,111,71,0.12);
  flex-shrink: 0;
  background: var(--warm-white);
}
.cart-summary {
  margin-bottom: 1.5rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.8rem;
  color: var(--charcoal-light);
}
.summary-row.total {
  border-top: 0.5px solid rgba(139,111,71,0.15);
  margin-top: 0.5rem;
  padding-top: 1rem;
}
.summary-row.total .label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
}
.summary-row.total .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--charcoal);
}
.checkout-btn {
  width: 100%;
  padding: 1.1rem;
  background: var(--charcoal);
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.3s;
  margin-bottom: 0.8rem;
}
.checkout-btn:hover { background: var(--stone-dark); }
.continue-btn {
  width: 100%;
  padding: 0.7rem;
  background: transparent;
  color: var(--charcoal-light);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 0.5px solid rgba(139,111,71,0.2);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s;
}
.continue-btn:hover { border-color: var(--charcoal); color: var(--charcoal); }

/* ===== EMPTY STATE ===== */
.no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 6rem 2rem;
}
.no-results-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--charcoal-light);
  margin-bottom: 0.5rem;
}
.no-results-sub { font-size: 0.82rem; color: var(--olive-light); }

/* ===== FOOTER ===== */
.shop-footer {
  background: var(--charcoal);
  border-top: 0.5px solid rgba(255,255,255,0.05);
  padding: 2.5rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  letter-spacing: 0.2em;
  color: rgba(250,246,238,0.4);
}
.footer-copy { font-size: 0.65rem; color: rgba(250,246,238,0.18); letter-spacing: 0.06em; }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal.in-view { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .shop-body { grid-template-columns: 1fr; padding-top: 2rem; }
  .sidebar { position: static; padding-right: 0; margin-bottom: 2rem; }
  .cat-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
  .cat-item { border-left: none; border-bottom: 2px solid transparent; padding: 0.45rem 0.9rem; font-size: 0.75rem; }
  .cat-item.active { border-bottom-color: var(--gold); border-left: none; }
  .sidebar-freshness { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .nav-links { display: none; }
}
@media(max-width:580px){
  .products-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
}

/* ===== Polish: responsive typography, cinematic media, smooth motion ===== */
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
img, video { max-width: 100%; height: auto; display: block; }
.cinematic-media, .cinematic-media img, .cinematic-media video {
  width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s cubic-bezier(.2,.7,.2,1), filter .8s ease;
}
.cinematic-media:hover img, .cinematic-media:hover video { transform: scale(1.04); filter: saturate(1.05); }
a, button { transition: color .35s ease, background-color .35s ease, border-color .35s ease, transform .5s cubic-bezier(.2,.7,.2,1), opacity .35s ease; }
a:hover, button:hover { letter-spacing: inherit; }
::selection { background: rgba(201,150,42,.25); color: var(--off-black, #1A1510); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
/* Fluid type scale */
h1 { font-size: clamp(2.4rem, 6vw, 5.5rem); line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 4vw, 3.5rem); line-height: 1.1; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.8rem); }
p  { font-size: clamp(0.95rem, 1.05vw, 1.05rem); line-height: 1.7; }
/* Mobile spacing tighten */
@media (max-width: 768px) {
  section { padding-left: 5vw !important; padding-right: 5vw !important; }
  nav { padding: 1rem 5vw !important; }
}
