/* ============================================================
   FRUTERÍA DE ÓSCAR — Premium CSS
   ============================================================ */

/* ============================================================
   1. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background-color: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }

/* ============================================================
   2. TOKENS
   ============================================================ */
:root {
  --cream:        #F7F3E8;
  --cream-2:      #EDE6D0;
  --green-deep:   #1B3A27;
  --green-mid:    #2D6040;
  --green-fresh:  #4A9460;
  --green-light:  #8FC9A0;
  --orange:       #E8601A;
  --orange-light: #FF8840;
  --text:         #111810;
  --text-2:       #444;
  --text-muted:   #888;
  --white:        #FDFCF9;
  --black:        #08100A;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease:  cubic-bezier(0.16, 1, 0.3, 1);

  --section-pad: clamp(5rem, 10vw, 8rem);
  --container:   1300px;
  --gutter:      clamp(1.25rem, 5vw, 3rem);

  --r-sm:   10px;
  --r-md:   20px;
  --r-lg:   28px;
  --r-xl:   48px;
  --r-full: 9999px;
}

/* ============================================================
   3. GRAIN TEXTURE
   ============================================================ */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.035;
  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%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ============================================================
   4. CUSTOM CURSOR (desktop only)
   ============================================================ */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }

  .cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 7px; height: 7px;
    background: var(--green-deep);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: background 0.2s, transform 0.15s;
    will-change: transform;
  }

  .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 36px; height: 36px;
    border: 1.5px solid rgba(27, 58, 39, 0.45);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease), height 0.3s var(--ease),
                border-color 0.3s, background 0.3s;
    will-change: transform;
  }

  .cursor-ring.is-hovering {
    width: 56px; height: 56px;
    border-color: var(--orange);
    background: rgba(232, 96, 26, 0.07);
  }

  .cursor-dot.is-hovering {
    background: var(--orange);
    transform: translate(-50%, -50%) scale(1.5);
  }

  a, button, .btn, .product-card, [data-magnetic] { cursor: none; }
}

/* ============================================================
   4. PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--green-deep);
  z-index: 9995;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-inner { text-align: center; }

.preloader-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 0.75rem;
  opacity: 0;
  transform: translateY(10px);
}

.preloader-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.preloader-word {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 8vw, 6rem);
  color: var(--white);
  line-height: 1.1;
  display: block;
  transform: translateY(110%);
  will-change: transform;
}

.preloader-word.accent {
  font-style: italic;
  color: var(--orange);
}

.preloader-progress {
  width: 180px;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 2.5rem auto 0;
  overflow: hidden;
  border-radius: 2px;
}

.preloader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 2px;
}

/* ============================================================
   5. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.75rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: padding 0.4s var(--ease), background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(247, 243, 232, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem var(--gutter);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-mark {
  width: 38px; height: 38px;
  background: var(--green-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--white);
  font-style: italic;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.nav-logo:hover .nav-logo-mark {
  transform: rotate(-8deg) scale(1.05);
}

.nav-logo-text {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-deep);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 0.6rem 1.5rem;
  background: var(--green-deep);
  color: var(--white);
  border-radius: var(--r-full);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(27, 58, 39, 0.25);
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 4px;
}

.nav-burger span {
  display: block;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--green-deep);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.mobile-menu.is-open { opacity: 1; pointer-events: all; }

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.mobile-link {
  font-family: var(--serif);
  font-size: clamp(2rem, 7vw, 3rem);
  color: var(--white);
  text-decoration: none;
  font-style: italic;
  line-height: 1.3;
  transition: color 0.2s;
  transform: translateY(20px);
  opacity: 0;
}

.mobile-link:hover { color: var(--orange); }
.mobile-cta { transform: translateY(20px); opacity: 0; }

/* ============================================================
   6. SHARED
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1.05;
  color: var(--green-deep);
  font-weight: 700;
}

.section-title em {
  font-style: italic;
  color: var(--orange);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  border-radius: var(--r-full);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-105%) skewX(-10deg);
  transition: transform 0.5s var(--ease);
}

.btn:hover::after { transform: translateX(105%) skewX(-10deg); }

.btn-primary { background: var(--green-deep); color: var(--white); }
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(27, 58, 39, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--green-deep);
  border: 1.5px solid currentColor;
}
.btn-ghost:hover {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}

/* ============================================================
   7. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 9rem var(--gutter) 5rem;
  padding-right: 3rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: rgba(45, 96, 64, 0.1);
  border: 1px solid rgba(45, 96, 64, 0.15);
  padding: 0.45rem 1.1rem;
  border-radius: var(--r-full);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(16px);
}

.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 2.5s ease infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6.5vw, 8rem);
  line-height: 0.95;
  color: var(--green-deep);
  margin-bottom: 1.75rem;
}

.hero-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.05em;
}

.hero-line-inner {
  display: block;
  transform: translateY(110%);
  will-change: transform;
}

.hero-line.italic .hero-line-inner {
  font-style: italic;
  color: var(--orange);
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.78;
  color: var(--text-2);
  margin-bottom: 2.5rem;
  max-width: 440px;
  opacity: 0;
  transform: translateY(16px);
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
}

/* Hero image */
.hero-visual {
  height: 100dvh;
  position: relative;
  overflow: hidden;
}

.hero-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  will-change: transform;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 25%),
              linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.15));
}

/* Floating badge on image */
.hero-img-badge {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1.1rem 1.4rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(20px);
}

.hib-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1;
}

.hib-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-2);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero scroll hint — solo desktop con imagen lateral */
.hero-scroll {
  display: none; /* oculto por defecto; se muestra solo en desktop via media query */
  position: absolute;
  bottom: 2.5rem;
  left: calc(var(--gutter) + 0.5rem);
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  z-index: 3;
}

@media (min-width: 1025px) {
  .hero-scroll { display: flex; }
}

.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--green-mid), transparent);
  animation: line-drop 2.4s ease-in-out infinite;
  transform-origin: top;
}

@keyframes line-drop {
  0% { transform: scaleY(0); opacity: 0; }
  20% { opacity: 1; }
  60% { transform: scaleY(1); opacity: 1; transform-origin: top; }
  61% { transform-origin: bottom; }
  100% { transform: scaleY(0); opacity: 0; transform-origin: bottom; }
}

/* ============================================================
   8. TICKER
   ============================================================ */
.ticker {
  background: var(--green-deep);
  overflow: hidden;
  padding: 1.1rem 0;
  white-space: nowrap;
  user-select: none;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  animation: run-ticker 40s linear infinite;
}

.ticker-track span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.ticker-sep { color: var(--orange) !important; font-size: 0.45rem !important; }

@keyframes run-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker:hover .ticker-track { animation-play-state: paused; }

/* ============================================================
   9. MANIFIESTO
   ============================================================ */
.manifesto {
  background: var(--cream);
  padding: clamp(5rem, 9vw, 8rem) 0;
  overflow: hidden;
}

.manifesto-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.manifesto-line {
  width: 60px;
  height: 1px;
  background: var(--green-light);
}

.manifesto-quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  color: var(--green-deep);
  line-height: 1.55;
  font-weight: 400;
}

.manifesto-cite {
  font-size: 0.875rem;
  font-style: normal;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* ============================================================
   10. PRODUCTS
   ============================================================ */
.products {
  background: var(--green-deep);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.products::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(74, 148, 96, 0.14), transparent 65%);
  pointer-events: none;
}

.products .section-title { color: var(--white); }

.products-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3.5rem;
}

.products-intro {
  font-size: 1.025rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.55);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Product card */
.product-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, background 0.4s, border-color 0.4s;
  opacity: 0;
  transform: translateY(28px);
}

.product-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.13);
  box-shadow: 0 28px 56px rgba(0,0,0,0.35);
}

.product-card--accent {
  background: rgba(232, 96, 26, 0.09);
  border-color: rgba(232, 96, 26, 0.2);
}

.product-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease);
  display: block;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.product-body {
  padding: 1.5rem 1.75rem 1.75rem;
}

.product-origin {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-light);
  display: block;
  margin-bottom: 0.4rem;
}

.product-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.65rem;
  line-height: 1.2;
}

.product-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.52);
}

/* ============================================================
   11. ABOUT
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 70vh;
}

.about-img-col {
  position: relative;
  overflow: hidden;
}

.about-img-wrap {
  width: 100%;
  height: 100%;
  min-height: 500px;
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Stat chip on image */
.about-img-chip {
  position: absolute;
  bottom: 2.5rem;
  right: -1.5rem;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1.25rem 1.75rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  text-align: center;
  min-width: 150px;
}

.chip-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1;
  display: inline;
}

.chip-suf {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
}

.chip-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  display: block;
  margin-top: 0.3rem;
  letter-spacing: 0.04em;
}

.about-content {
  background: var(--cream-2);
  padding: clamp(3rem, 7vw, 7rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.about-content .section-title {
  margin-bottom: 2rem;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-2);
}

/* ============================================================
   12. VALUES
   ============================================================ */
.values {
  background: var(--green-deep);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.values::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(74,148,96,0.14), transparent 60%);
  pointer-events: none;
}

.values-header {
  margin-bottom: 3.5rem;
}

.values .section-title { color: var(--white); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-item {
  position: relative;
}

.value-num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 1rem;
}

.value-img-wrap {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: rgba(255,255,255,0.04);
}

.value-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.value-item:hover .value-img-wrap img {
  transform: scale(1.05);
}

.value-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.value-desc {
  font-size: 0.9rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.54);
}

/* ============================================================
   13. TESTIMONIAL
   ============================================================ */
.testimonial {
  background: var(--cream);
  padding: clamp(5rem, 9vw, 8rem) var(--gutter);
  overflow: hidden;
}

.testimonial-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial-marks {
  font-family: var(--serif);
  font-size: clamp(7rem, 14vw, 14rem);
  line-height: 0.65;
  color: rgba(27, 58, 39, 0.07);
  position: absolute;
  top: 0; left: 0;
  font-style: italic;
  user-select: none;
  pointer-events: none;
}

.testimonial-quote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic;
  color: var(--green-deep);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
  font-weight: 400;
}

.testimonial-author {
  font-size: 0.85rem;
  font-style: normal;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ============================================================
   14. CONTACT
   ============================================================ */
.contact {
  background: var(--green-deep);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -30%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(74,148,96,0.12), transparent 65%);
  pointer-events: none;
}

.contact .section-title { color: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.contact-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-light);
  display: block;
  margin-bottom: 0.4rem;
}

.contact-value {
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.8);
}

.contact-link {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color 0.2s, border-color 0.2s;
  display: inline;
}

.contact-link:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}

/* Google Maps iframe wrap */
.contact-map-wrap {
  height: 500px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
}

.contact-map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%) contrast(1.05);
  transition: filter 0.4s;
}

.contact-map-wrap:hover iframe {
  filter: grayscale(0%) contrast(1);
}

/* ============================================================
   15. FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  padding: 4rem 0 2rem;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.footer-logo span { font-style: italic; color: var(--orange); }

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.3);
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.22);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.32);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social a:hover { color: rgba(255,255,255,0.75); }

/* ============================================================
   16. RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 8rem var(--gutter) 4rem;
    text-align: center;
  }

  .hero-badge { justify-content: center; }
  .hero-sub { margin: 0 auto 2.5rem; }
  .hero-cta-group { justify-content: center; }

  .hero-visual {
    height: 60vw;
    max-height: 520px;
  }

  /* Products */
  .products-header { grid-template-columns: 1fr; gap: 1.25rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  /* About */
  .about { grid-template-columns: 1fr; }
  .about-img-wrap { min-height: 400px; }
  .about-img-chip { right: 1.5rem; }

  /* Values — 3 cols at tablet unless very narrow */
  .values-grid { gap: 1.5rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map-wrap { height: 360px; }
}

/* ============================================================
   17. RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-pad: 4rem;
    --gutter: 1.25rem;
  }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  /* Products */
  .products-grid { grid-template-columns: 1fr; }

  /* Values — 1 column on mobile */
  .values-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  /* About chip */
  .about-img-chip { right: 1rem; bottom: 1.5rem; }

  /* Footer */
  .footer-top { flex-direction: column; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.75rem, 13vw, 3.75rem); }
  .section-title { font-size: clamp(2rem, 9vw, 2.75rem); }
  .testimonial-quote { font-size: 1.15rem; }
  .manifesto-quote { font-size: 1.2rem; }

  .hero-cta-group { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   18. ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .noise { display: none; }
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: rgba(232, 96, 26, 0.18); }
