/* ============================================================
   RIVERPACK — Luxury Editorial Design System
   v2.0 · Fraunces (display) + Inter (apoio)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500;1,9..144,600&family=Inter:wght@300..700&display=swap');

/* ── 1. TOKENS ─────────────────────────────────────────────── */
:root {
  /* Palette — warm luxury */
  --c-bg:           #F7F5F1;
  --c-bg-warm:      #EFEBE4;
  --c-surface:      #FFFFFF;
  --c-navy:         #14233D;
  --c-navy-deep:    #0B1626;
  --c-navy-mid:     #1E3052;
  --c-ink:          #11161F;
  --c-copper:       #B0825A;
  --c-copper-bright:#C79A6E;
  --c-copper-dark:  #8C6440;
  --c-copper-light: #D9BE9E;
  --c-copper-pale:  #EFE6DA;
  --c-text:         #1A1C20;
  --c-text-mid:     #54585F;
  --c-text-muted:   #82868E;
  --c-text-light:   #ADB0B6;
  --c-border:       #E4DFD6;
  --c-border-light: #EFEBE3;
  --c-white:        #FFFFFF;

  /* Typography */
  --f-serif: 'Fraunces', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --f-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
             Helvetica, Arial, sans-serif;

  /* Type scale */
  --ts-xs:   0.6875rem;   /* 11px */
  --ts-sm:   0.8125rem;   /* 13px */
  --ts-base: 1rem;        /* 16px */
  --ts-md:   1.0625rem;   /* 17px */
  --ts-lg:   1.1875rem;   /* 19px */
  --ts-xl:   1.375rem;    /* 22px */
  --ts-2xl:  1.625rem;    /* 26px */
  --ts-3xl:  2.125rem;    /* 34px */
  --ts-4xl:  2.75rem;     /* 44px */
  --ts-5xl:  3.5rem;      /* 56px */
  --ts-6xl:  4.5rem;      /* 72px */
  --ts-7xl:  5.75rem;     /* 92px */

  /* Spacing */
  --sp-1:  4px;  --sp-2: 8px;   --sp-3: 12px;  --sp-4: 16px;
  --sp-5:  20px; --sp-6: 24px;  --sp-8: 32px;  --sp-10: 40px;
  --sp-12: 48px; --sp-16: 64px; --sp-20: 80px; --sp-24: 96px;
  --sp-32: 128px;--sp-40: 160px;

  /* Container */
  --w-site:   1200px;
  --w-text:   760px;
  --w-narrow: 600px;
  --gutter:   clamp(22px, 4vw, 48px);

  /* Radii */
  --r-sm: 3px; --r-md: 6px; --r-lg: 12px; --r-xl: 20px; --r-2xl: 28px; --r-pill: 999px;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(20,35,61,.05);
  --shadow-md:  0 6px 28px rgba(20,35,61,.08);
  --shadow-lg:  0 16px 50px rgba(20,35,61,.12);
  --shadow-xl:  0 28px 70px rgba(11,22,38,.18);
  --shadow-nav: 0 1px 0 rgba(255,255,255,.04), 0 8px 32px rgba(11,22,38,.28);
  --glass-shadow: 0 20px 60px rgba(11,22,38,.35);

  /* Transitions */
  --t-fast:   160ms cubic-bezier(.4,0,.2,1);
  --t-base:   280ms cubic-bezier(.4,0,.2,1);
  --t-slow:   520ms cubic-bezier(.22,1,.36,1);
  --t-spring: 560ms cubic-bezier(.34,1.4,.5,1);

  --nav-h: 80px;
}

/* ── 2. RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--f-sans);
  font-size: var(--ts-base);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.005em;
  color: var(--c-text);
  background-color: var(--c-bg);
  overflow-x: hidden;
}

/* Scrollbar — Chrome, Edge, Safari */
body::-webkit-scrollbar { width: 10px; }
body::-webkit-scrollbar-track { background: #000000; }
body::-webkit-scrollbar-thumb {
  background-color: #ffffff;
  border-radius: 10px;
  border: 2px solid #000000;
}

/* Scrollbar — Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: #ffffff #000000;
}

img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--t-base); }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; border: none; outline: none; background: none; }

/* Global text balancing */
h1, h2, h3, h4, h5, h6, .hero__title, .section-title, .lead, blockquote {
  text-wrap: balance;
}
p { text-wrap: balance; }

::selection { background: var(--c-copper); color: #fff; }

/* ── 3. TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--c-text);
  font-optical-sizing: auto;
}

h1 { font-size: clamp(var(--ts-4xl), 6vw, var(--ts-7xl)); font-weight: 500; }
h2 { font-size: clamp(var(--ts-3xl), 4.4vw, var(--ts-5xl)); }
h3 { font-size: clamp(var(--ts-2xl), 3vw, var(--ts-4xl)); }
h4 { font-size: clamp(var(--ts-xl), 2vw, var(--ts-3xl)); }
h5 { font-size: var(--ts-xl); }
h6 { font-size: var(--ts-md); font-family: var(--f-sans); font-weight: 600; letter-spacing: .04em; }

p { max-width: 66ch; }

.lead {
  font-family: var(--f-sans);
  font-size: clamp(var(--ts-md), 1.4vw, var(--ts-lg));
  font-weight: 350;
  line-height: 1.7;
  letter-spacing: -0.01em;
  color: var(--c-text-mid);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--f-sans);
  font-size: var(--ts-xs);
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-copper);
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--c-copper);
  opacity: .7;
}

.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }

.section-title {
  font-size: clamp(var(--ts-3xl), 4.4vw, var(--ts-5xl));
  letter-spacing: -0.025em;
  font-weight: 500;
}

.serif-accent { font-style: italic; color: var(--c-copper); font-weight: 400; }

/* ── 4. LAYOUT ─────────────────────────────────────────────── */
.container {
  width: min(var(--w-site), 100%);
  padding-inline: var(--gutter);
  margin-inline: auto;
}
.container--text   { width: min(var(--w-text), 100%);   padding-inline: var(--gutter); margin-inline: auto; }
.container--narrow { width: min(var(--w-narrow), 100%); padding-inline: var(--gutter); margin-inline: auto; }

section { padding-block: clamp(var(--sp-12), 6vw, var(--sp-20)); }
section.section--sm { padding-block: var(--sp-12); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-8); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }

/* ── 5. NAVIGATION ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6,12,22,.98);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background var(--t-base), box-shadow var(--t-base);
}

.site-header.is-scrolled {
  background: rgba(6,12,22,.99);
  box-shadow: var(--shadow-nav);
}

.nav {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: var(--sp-8);
}

.nav__logo { flex-shrink: 0; display: flex; align-items: center; }
.nav__logo img {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity var(--t-fast);
}
.nav__logo:hover img { opacity: .82; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  margin-left: auto;
}
.nav__menu > li { position: relative; }

.nav__menu > li > a {
  display: block;
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--ts-sm);
  font-weight: 500;
  color: rgba(255,255,255,.78);
  letter-spacing: .02em;
  border-radius: var(--r-md);
  transition: color var(--t-fast);
  position: relative;
}

.nav__menu > li > a { padding-bottom: var(--sp-3); }
.nav__menu > li > a::after {
  content: '';
  position: absolute;
  left: var(--sp-4);
  right: var(--sp-4);
  bottom: 2px;
  height: 1.5px;
  background: var(--c-copper-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}

.nav__menu > li > a:hover,
.nav__menu > li > a.active { color: #fff; }
.nav__menu > li > a:hover::after,
.nav__menu > li > a.active::after { transform: scaleX(1); }

/* Span (sem link) no nav */
.nav__menu > li > span {
  display: block;
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--ts-sm);
  font-weight: 500;
  color: rgba(255,255,255,.78);
  letter-spacing: .02em;
  border-radius: var(--r-md);
  transition: color var(--t-fast);
  position: relative;
  cursor: default;
}

.nav__menu > li > span { padding-bottom: var(--sp-3); }
.nav__menu > li > span::after {
  content: '';
  position: absolute;
  left: var(--sp-4);
  right: var(--sp-4);
  bottom: 2px;
  height: 1.5px;
  background: var(--c-copper-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}

.nav__menu > li:hover > span { color: #fff; }
.nav__menu > li:hover > span::after { transform: scaleX(1); }

.nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: rgba(11,22,38,.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: var(--sp-2);
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--t-base), transform var(--t-base), visibility var(--t-base);
  box-shadow: var(--shadow-xl);
}
.nav__menu > li:hover .nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.nav__dropdown a {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--ts-sm);
  color: rgba(255,255,255,.7);
  border-radius: var(--r-md);
  transition: background var(--t-fast), color var(--t-fast), padding-left var(--t-fast);
}
.nav__dropdown a:hover { background: rgba(255,255,255,.06); color: #fff; padding-left: var(--sp-5); }

.nav__cta {
  margin-left: var(--sp-4);
  padding: 10px var(--sp-5);
  font-size: var(--ts-sm);
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,.01);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--r-pill);
  letter-spacing: .02em;
  transition: background var(--t-base), border-color var(--t-base);
}
.nav__cta:hover { background: var(--c-copper); border-color: var(--c-copper); }

.nav__toggle {
  display: none; flex-direction: column; gap: 6px;
  cursor: pointer; padding: var(--sp-2); margin-left: auto;
}
.nav__toggle span { display: block; width: 24px; height: 1.5px; background: #fff; transition: transform var(--t-base), opacity var(--t-base); }

/* ── 6. HERO ───────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; background: var(--c-navy-deep); }

.hero--full   { min-height: calc(100svh - var(--nav-h)); display: flex; align-items: flex-end; }
/* Conteúdo ancorado na área escura superior (mais contraste) */
.hero--upper { align-items: flex-start; }
.hero--upper .hero__content { padding-block: clamp(var(--sp-16), 15vh, var(--sp-24)) var(--sp-12); transform: translateY(-70px); }

/* Hero com texto ancorado bem no topo (páginas internas, 100vh) */
.hero--top { align-items: flex-start; }
.hero--top .hero__content { padding-block: clamp(var(--sp-8), 6vh, var(--sp-16)) var(--sp-12); }
.hero--medium { min-height: 60vh; display: flex; align-items: flex-end; }
.hero--slim   { min-height: 42vh; display: flex; align-items: center; }

.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.04);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(8,15,26,.92) 2%, rgba(8,15,26,.30) 45%, rgba(8,15,26,.10) 100%),
    linear-gradient(to right, rgba(8,15,26,.45) 0%, transparent 55%);
}
/* Máscara mais escura para hero com mais contraste no texto */
.hero__overlay--dark {
  background:
    linear-gradient(to top, rgba(6,12,22,.95) 0%, rgba(6,12,22,.55) 45%, rgba(6,12,22,.40) 100%),
    radial-gradient(120% 90% at 50% 100%, rgba(6,12,22,.5) 0%, transparent 60%);
}

.hero__content { position: relative; z-index: 1; padding-block: var(--sp-20) clamp(var(--sp-16), 8vw, var(--sp-32)); width: 100%; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  font-size: var(--ts-xs); font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: var(--c-copper-light); margin-bottom: var(--sp-6);
}
.hero__eyebrow::before { content:''; width: 36px; height: 1px; background: var(--c-copper-light); opacity:.8; }
.hero__eyebrow--overlay {
  position: absolute;
  left: calc(50% + 45px);
  top: calc(50% - 35px);
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0 var(--sp-3);
  background: rgba(8,15,26,.64);
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.hero__title-anchored {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.hero__title {
  font-family: var(--f-serif);
  font-size: clamp(3rem, 8.5vw, 7rem);
  font-weight: 400;
  line-height: 0.98;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-6);
  max-width: 16ch;
}
.hero__title em { font-style: italic; color: var(--c-copper-light); font-weight: 400; }
.hero__title--oneline { white-space: nowrap; max-width: none; }
@media (max-width: 480px) { .hero__title--oneline { white-space: normal; } }

.hero__subtitle {
  font-family: var(--f-sans);
  font-size: clamp(var(--ts-base), 1.5vw, var(--ts-lg));
  font-weight: 350;
  color: rgba(255,255,255,.80);
  line-height: 1.65;
  max-width: 52ch;
  margin-bottom: var(--sp-10);
  text-wrap: balance;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: var(--sp-4); align-items: center; transform: translateY(-15px); }

/* Hero centralizado */
.hero__content--center { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero__content--center .hero__title,
.hero__content--center .hero__subtitle { margin-inline: auto; }
.hero__content--center .hero__eyebrow::before { display: none; }
.hero__content--center .hero__cta { justify-content: center; }

.hero__scroll {
  position: absolute; bottom: var(--sp-8); left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: var(--sp-2);
  color: rgba(255,255,255,.5); font-size: var(--ts-xs); letter-spacing: .2em; text-transform: uppercase;
}
.hero__scroll::after {
  content:''; width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--c-copper-light), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{ transform: scaleY(.4); opacity:.4; } 50%{ transform: scaleY(1); opacity:1; } }

/* Seta elegante de scroll (categorias / páginas internas) */
.scroll-cue {
  position: absolute; bottom: var(--sp-8); left: 50%; transform: translateX(-50%);
  z-index: 3; display: inline-flex; flex-direction: column; align-items: center; gap: var(--sp-2);
  color: rgba(255,255,255,.78); cursor: pointer; background: none;
  transition: color var(--t-base);
}
.scroll-cue span { font-size: var(--ts-xs); font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.scroll-cue svg {
  width: 30px; height: 30px;
  padding: 4px; border: 1px solid rgba(255,255,255,.28); border-radius: var(--r-pill);
  animation: cueBounce 1.8s ease-in-out infinite;
  transition: border-color var(--t-base), background var(--t-base);
}
.scroll-cue:hover { color: var(--c-copper-light); }
.scroll-cue:hover svg { border-color: var(--c-copper-light); background: rgba(255,255,255,.06); }
@keyframes cueBounce { 0%,100%{ transform: translateY(0); opacity:.7; } 50%{ transform: translateY(7px); opacity:1; } }

/* ── 7. BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  font-family: var(--f-sans);
  font-size: var(--ts-sm); font-weight: 600; letter-spacing: .04em;
  padding: 15px var(--sp-8);
  border-radius: var(--r-pill);
  cursor: pointer; white-space: nowrap; text-decoration: none;
  transition: all var(--t-base);
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform var(--t-base); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: linear-gradient(135deg, var(--c-copper-bright), var(--c-copper-dark));
  color: #fff;
  box-shadow: 0 6px 22px rgba(176,130,90,.36);
}
.btn--primary:hover { color:#fff; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(176,130,90,.46); }

.btn--outline { border: 1.5px solid var(--c-copper); color: var(--c-copper); }
.btn--outline:hover { background: var(--c-copper); color: #fff; }

.btn--outline-white { border: 1.5px solid rgba(255,255,255,.45); color: #fff; }
.btn--outline-white:hover { border-color:#fff; background: rgba(255,255,255,.10); }

.btn--ghost { color: var(--c-copper); padding-inline: 0; position: relative; }
.btn--ghost::after { content:''; position:absolute; bottom:-1px; left:0; width:0; height:1px; background: var(--c-copper); transition: width var(--t-base); }
.btn--ghost:hover::after { width:100%; }

.btn--lg { padding: 18px var(--sp-10); font-size: var(--ts-base); }

/* ── 8. SECTION HEADER ─────────────────────────────────────── */
.section-header { margin-bottom: clamp(var(--sp-10), 5vw, var(--sp-16)); }
.section-header--center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.section-header--center p { margin-inline: auto; }
.section-header .eyebrow { margin-bottom: var(--sp-5); }
.section-header h2 { margin-bottom: var(--sp-5); }
.section-header p { color: var(--c-text-mid); }

/* ── 9. PRODUCT CARDS ──────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.product-card {
  display: flex; flex-direction: column;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-slow), box-shadow var(--t-slow), border-color var(--t-slow);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--c-copper-light); }

.product-card__img-wrap {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  border-radius: var(--r-xl);
  margin: var(--sp-3);
  background: radial-gradient(ellipse at center, #fff 0%, var(--c-bg-warm) 130%);
}
.product-card__img-wrap img {
  width: 100%; height: 100%; object-fit: contain; padding: var(--sp-8);
  transition: transform var(--t-slow);
  /* funde o fundo branco embutido das fotos ao card (some o retângulo branco) */
  mix-blend-mode: multiply;
}
.product-card:hover .product-card__img-wrap img { transform: scale(1.06); }

.product-card__body { padding: var(--sp-5) var(--sp-6) var(--sp-6); flex: 1; display: flex; flex-direction: column; }
.product-card__category {
  font-size: var(--ts-xs); font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--c-copper); margin-bottom: var(--sp-2);
}
.product-card__name {
  font-family: var(--f-serif); font-size: var(--ts-xl); font-weight: 500;
  line-height: 1.2; color: var(--c-text); flex: 1; letter-spacing: -0.01em;
}
.product-card__arrow {
  margin-top: var(--sp-5); color: var(--c-copper);
  font-size: var(--ts-sm); font-weight: 600; letter-spacing: .03em;
  display: flex; align-items: center; gap: var(--sp-2); transition: gap var(--t-base);
}
.product-card:hover .product-card__arrow { gap: var(--sp-4); }

/* ── 10. CATEGORY CARDS ────────────────────────────────────── */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }

.category-card {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl); aspect-ratio: 2/3; cursor: pointer;
  display: block;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.category-card:hover { transform: scale(1.05); box-shadow: var(--shadow-lg); }
.category-card__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 1.2s var(--t-slow);
}
.category-card:hover .category-card__bg { transform: scale(1.08); }
.category-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,15,26,.88) 0%, rgba(8,15,26,.22) 55%, transparent 100%);
  transition: background var(--t-base);
}
.category-card:hover .category-card__overlay { background: linear-gradient(to top, rgba(8,15,26,.92) 0%, rgba(8,15,26,.30) 60%, rgba(176,130,90,.10) 100%); }

.category-card__index {
  position: absolute; top: var(--sp-6); left: var(--sp-6); z-index: 2;
  font-family: var(--f-serif); font-size: var(--ts-base); font-style: italic;
  color: rgba(255,255,255,.65);
}

.category-card__body {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: var(--sp-6) var(--sp-6) var(--sp-8); text-align: center;
}
.category-card__label {
  font-size: var(--ts-xs); font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--c-copper-light); margin-bottom: var(--sp-3);
}
.category-card__name {
  font-family: var(--f-serif); font-size: clamp(var(--ts-2xl), 2.4vw, var(--ts-3xl));
  font-weight: 500; color: #fff; line-height: 1.1; margin-bottom: var(--sp-4); letter-spacing: -0.01em;
}
.category-card__cta {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  font-size: var(--ts-xs); font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; padding: 10px var(--sp-6);
  border: 1px solid rgba(255,255,255,.35); border-radius: var(--r-pill);
  transition: background var(--t-base), border-color var(--t-base), gap var(--t-base);
}
.category-card:hover .category-card__cta { background: var(--c-copper); border-color: var(--c-copper); gap: var(--sp-3); }
.category-card__cta svg { width: 13px; height: 13px; }

/* ── 11. FEATURE STRIP ─────────────────────────────────────── */
.feature-strip { display: grid; grid-template-columns: 1.05fr 1fr; min-height: 480px; }

.feature-strip__img { position: relative; overflow: hidden; }
.feature-strip__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--t-slow); }
.feature-strip:hover .feature-strip__img img { transform: scale(1.05); }

.feature-strip__content {
  display: flex; align-items: center;
  padding: clamp(var(--sp-12), 7vw, var(--sp-32)) clamp(var(--sp-10), 6vw, var(--sp-24));
  position: relative; overflow: hidden;
}

/* Impactful gradient bg for Personalização */
.feature-strip__content--gradient {
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(176,130,90,.28) 0%, transparent 50%),
    linear-gradient(135deg, var(--c-navy-deep) 0%, var(--c-navy) 55%, var(--c-navy-mid) 100%);
}
.feature-strip__content--gradient::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 90% 90%, rgba(199,154,110,.18) 0%, transparent 60%);
  pointer-events: none;
}

.feature-strip__content--light { background: linear-gradient(135deg, var(--c-copper-pale), var(--c-bg-warm)); }

.feature-strip__inner { max-width: 480px; position: relative; z-index: 1; }
.feature-strip__inner .eyebrow { margin-bottom: var(--sp-5); }
.feature-strip__inner h2 { color: #fff; margin-bottom: var(--sp-6); }
.feature-strip__content--light .feature-strip__inner h2 { color: var(--c-text); }
.feature-strip__inner p { color: rgba(255,255,255,.74); margin-bottom: var(--sp-8); line-height: 1.75; font-size: var(--ts-md); text-wrap: balance; }
.feature-strip__content--light .feature-strip__inner p { color: var(--c-text-mid); }

/* Right-aligned variant (Personalização) */
.feature-strip__content--right { justify-content: flex-end; }
.feature-strip__content--right .feature-strip__inner { text-align: right; }
.feature-strip__content--right .eyebrow { flex-direction: row-reverse; }
.feature-strip__content--right .eyebrow::before { display: none; }
.feature-strip__content--right .eyebrow::after { content:''; width: 28px; height: 1px; background: currentColor; opacity:.7; }
.feature-strip__content--right p { margin-left: auto; }

/* Feature strip floating squares */
.feature-strip__floaters {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
}
.feature-strip__sq {
  position: absolute;
  border: 1px solid rgba(199,154,110,.22);
  background: rgba(199,154,110,.04);
  border-radius: var(--r-sm);
  animation: floatY 9s ease-in-out infinite;
}
.feature-strip__sq.fs1 { width: 52px; height: 52px; left: 8%;  top: 18%; animation-delay: 0s; }
.feature-strip__sq.fs2 { width: 28px; height: 28px; left: 22%; top: 72%; animation-delay: 1.2s; animation-duration: 7s; }
.feature-strip__sq.fs3 { width: 72px; height: 72px; right: 8%; top: 12%; animation-delay: .5s;  animation-duration: 11s; }
.feature-strip__sq.fs4 { width: 20px; height: 20px; right: 16%;top: 80%; animation-delay: 2s;   animation-duration: 6.5s; }

/* Light variant (Validação): darker border/fill to contrast with light bg */
.feature-strip__floaters--light .feature-strip__sq {
  border-color: rgba(176,130,90,.18);
  background: rgba(176,130,90,.06);
}

/* ── 12. SERVICE SECTION (alt layout for inner pages) ──────── */
.service-section { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 420px; }
.service-section + .service-section { border-top: 1px solid var(--c-border); }
.service-section--reverse { direction: rtl; }
.service-section--reverse > * { direction: ltr; }
.service-section__img { position: relative; overflow: hidden; min-height: 420px; }
.service-section__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.service-section__img:hover img { transform: scale(1.04); }
.service-section__body { display: flex; flex-direction: column; justify-content: center; padding: clamp(var(--sp-12),6vw,var(--sp-24)) clamp(var(--sp-10),5vw,var(--sp-20)); }
.service-section__body .eyebrow { margin-bottom: var(--sp-5); }
.service-section__body h2 { margin-bottom: var(--sp-5); }
.service-section__body p { color: var(--c-text-mid); margin-bottom: var(--sp-8); max-width: 46ch; }

/* ── 13. ABOUT / VISÃO (gradient + glass stats + floaters) ─── */
.visao {
  position: relative;
  overflow: hidden;
  padding-block: clamp(var(--sp-16), 7vw, var(--sp-24)) clamp(var(--sp-20), 9vw, 160px);
  background:
    radial-gradient(100% 80% at 12% 0%, rgba(30,48,82,.55) 0%, transparent 55%),
    linear-gradient(120deg, var(--c-navy-deep) 0%, var(--c-ink) 48%, #06101c 100%);
}

.visao__floaters { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.visao__sq {
  position: absolute;
  border: 1px solid rgba(199,154,110,.22);
  background: rgba(199,154,110,.04);
  border-radius: var(--r-sm);
  animation: floatY 9s ease-in-out infinite;
}
.visao__sq.s1 { width: 64px;  height: 64px;  left: 6%;  top: 22%; animation-delay: 0s;   }
.visao__sq.s2 { width: 36px;  height: 36px;  left: 16%; top: 64%; animation-delay: 1.4s; animation-duration: 7s; }
.visao__sq.s3 { width: 90px;  height: 90px;  right: 10%;top: 16%; animation-delay: .6s;  animation-duration: 11s; }
.visao__sq.s4 { width: 24px;  height: 24px;  right: 4%; top: 86%; animation-delay: 2.1s; animation-duration: 6s; }
.visao__sq.s5 { width: 48px;  height: 48px;  right: 6%; top: 50%; animation-delay: 1s;   animation-duration: 8.5s; }
@keyframes floatY {
  0%,100% { transform: translateY(0) rotate(0deg); opacity:.5; }
  50%     { transform: translateY(-26px) rotate(8deg); opacity:1; }
}

.visao__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 0.95fr 1fr;
  gap: clamp(var(--sp-10), 6vw, var(--sp-24));
  align-items: center;
}

.visao__media { position: relative; }
.visao__media-img { border-radius: var(--r-2xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.visao__media-img img { width: 100%; height: 440px; object-fit: cover; }
.visao__media-badge {
  position: absolute; top: var(--sp-6); right: var(--sp-6);
  background: rgba(11,22,38,.6); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-pill); padding: 8px var(--sp-5);
  font-size: var(--ts-xs); font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--c-copper-light);
}

/* Glass stat cards overflowing below the image */
.visao__stats {
  position: absolute;
  bottom: -56px; left: 50%; transform: translateX(-50%);
  width: calc(100% + 56px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4);
}
.glass-stat {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-5);
  text-align: center;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}
.glass-stat::before {
  content:''; position:absolute; top:0; left:0; right:0; height:1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.4), transparent);
}
.glass-stat__num {
  font-family: var(--f-serif); font-size: clamp(var(--ts-3xl), 3vw, var(--ts-5xl));
  font-weight: 500; color: #fff; line-height: 1; margin-bottom: var(--sp-2);
  letter-spacing: -0.02em;
}
.glass-stat__num .suffix { color: var(--c-copper-light); }
.glass-stat__label {
  font-size: var(--ts-xs); font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.6); line-height: 1.4;
}

.visao__content { position: relative; }
.visao__content .eyebrow { margin-bottom: var(--sp-5); color: var(--c-copper-light); }
.visao__content .eyebrow::before { background: var(--c-copper-light); }
.visao__kicker {
  font-family: var(--f-serif); font-style: italic; font-size: var(--ts-xl);
  color: var(--c-copper-light); margin-bottom: var(--sp-4); display: block;
}
.visao__content h2 { color: #fff; margin-bottom: var(--sp-6); font-size: clamp(var(--ts-2xl), 3vw, var(--ts-4xl)); }
.visao__content p { color: rgba(255,255,255,.72); line-height: 1.8; margin-bottom: var(--sp-5); }
.visao__divider {
  display: flex; gap: var(--sp-8); margin: var(--sp-8) 0; padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,.12);
}
.visao__mv { flex: 1; }
.visao__mv h6 { color: var(--c-copper-light); font-size: var(--ts-xs); letter-spacing: .16em; text-transform: uppercase; margin-bottom: var(--sp-3); }
.visao__mv p { color: rgba(255,255,255,.66); font-size: var(--ts-sm); margin-bottom: 0; }

/* ── 14. FOOTER ────────────────────────────────────────────── */
.site-footer { background: var(--c-navy-deep); color: rgba(255,255,255,.72); padding-top: clamp(var(--sp-16), 8vw, var(--sp-24)); position: relative; }
.site-footer::before { content:''; position:absolute; top:0; left:0; right:0; height:1px; background: linear-gradient(to right, transparent, rgba(199,154,110,.5), transparent); }

.footer__top {
  display: grid; grid-template-columns: 1.3fr 0.9fr 1.5fr;
  gap: clamp(var(--sp-10), 6vw, var(--sp-20));
  padding-bottom: var(--sp-16);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer__brand .logo { height: 30px; width: auto; filter: brightness(0) invert(1); margin-bottom: var(--sp-6); }
.footer__brand .desc { font-size: var(--ts-base); line-height: 1.75; color: rgba(255,255,255,.6); max-width: 38ch; margin-bottom: var(--sp-6); font-family: var(--f-serif); font-style: italic; text-wrap: balance; }
.footer__brand .legal { font-size: var(--ts-xs); color: rgba(255,255,255,.36); line-height: 1.7; }

.footer__social { display: flex; gap: var(--sp-3); margin-top: var(--sp-6); }
.footer__social a {
  display: flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  border-radius: 50%; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.62); transition: all var(--t-base);
}
.footer__social a:hover { background: var(--c-copper); border-color: var(--c-copper); color: #fff; transform: translateY(-3px); }
.footer__social svg { width: 16px; height: 16px; }

.footer__col h4 {
  font-family: var(--f-sans); font-size: var(--ts-xs); font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: #fff; margin-bottom: var(--sp-6);
}
.footer__col ul { display: flex; flex-direction: column; gap: var(--sp-4); }
.footer__col a { font-size: var(--ts-base); color: rgba(255,255,255,.56); transition: color var(--t-fast), padding-left var(--t-fast); }
.footer__col a:hover { color: var(--c-copper-light); padding-left: 4px; }

.footer__contact { display: flex; flex-direction: column; gap: var(--sp-4); }
.footer__contact li { font-size: var(--ts-base); color: rgba(255,255,255,.56); line-height: 1.5; display: flex; gap: var(--sp-3); align-items: flex-start; }
.footer__contact li a, .footer__contact li span { text-wrap: balance; }
.footer__contact svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 4px; color: var(--c-copper); }
.footer__contact a:hover { color: var(--c-copper-light); }

.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-block: var(--sp-6); }
.footer__bottom p { font-size: var(--ts-xs); color: rgba(255,255,255,.32); max-width: none; }
.footer__bottom a { color: rgba(255,255,255,.5); }
.footer__bottom a:hover { color: var(--c-copper-light); }
.footer__made { letter-spacing: .02em; }
.footer__made em { font-style: italic; text-transform: uppercase; font-weight: 600; letter-spacing: .06em; }

/* ── 15. PRODUCT DETAIL / PAGE HEADER / OTHERS ─────────────── */
.page-header { background: var(--c-navy); padding-block: clamp(var(--sp-16),8vw,var(--sp-24)) clamp(var(--sp-16),8vw,var(--sp-24)); position: relative; overflow: hidden; }
.page-header__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .16; }
.page-header .container { position: relative; z-index: 1; }
.page-header .eyebrow { margin-bottom: var(--sp-5); color: var(--c-copper-light); }
.page-header .eyebrow::before { background: var(--c-copper-light); }
.page-header h1 { color: #fff; margin-bottom: var(--sp-5); }
.page-header p { color: rgba(255,255,255,.72); font-size: var(--ts-lg); max-width: 56ch; text-wrap: balance; }

.breadcrumb { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--ts-sm); color: var(--c-text-muted); padding-block: var(--sp-6); }
.breadcrumb a:hover { color: var(--c-copper); }
.breadcrumb .sep { color: var(--c-border); }
.breadcrumb .current { color: var(--c-text); font-weight: 500; }

.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--sp-10),6vw,var(--sp-20)); align-items: start; padding-block: clamp(var(--sp-12),6vw,var(--sp-20)); }
.product-detail__gallery { position: sticky; top: calc(var(--nav-h) + var(--sp-8)); }
.product-detail__main-img { aspect-ratio: 4/5; background: radial-gradient(ellipse at center,#fff,var(--c-bg-warm)); border-radius: var(--r-2xl); overflow: hidden; margin-bottom: var(--sp-4); }
.product-detail__main-img img { width:100%; height:100%; object-fit: contain; padding: var(--sp-10); }
.product-detail__thumbs { display: flex; gap: var(--sp-3); }
.product-detail__thumb { width: 80px; height: 80px; border-radius: var(--r-md); overflow: hidden; border: 2px solid transparent; cursor: pointer; background: var(--c-bg-warm); transition: border-color var(--t-fast); }
.product-detail__thumb.active, .product-detail__thumb:hover { border-color: var(--c-copper); }
.product-detail__thumb img { width:100%; height:100%; object-fit: contain; padding: var(--sp-2); }
.product-detail__info .eyebrow { margin-bottom: var(--sp-4); }
.product-detail__info h1 { font-size: clamp(var(--ts-3xl),4vw,var(--ts-5xl)); margin-bottom: var(--sp-6); }
.product-detail__info p { color: var(--c-text-mid); line-height: 1.8; margin-bottom: var(--sp-6); }
.product-detail__cta { display: flex; gap: var(--sp-4); margin-top: var(--sp-8); padding-top: var(--sp-8); border-top: 1px solid var(--c-border); }

/* Forms */
.form-wrap { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-2xl); padding: clamp(var(--sp-8),5vw,var(--sp-16)); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-group--full { grid-column: 1 / -1; }
.form-group label { font-size: var(--ts-sm); font-weight: 600; letter-spacing: .03em; color: var(--c-text-mid); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px var(--sp-4); font-size: var(--ts-base); color: var(--c-text);
  background: var(--c-bg); border: 1.5px solid var(--c-border); border-radius: var(--r-md);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--c-copper); box-shadow: 0 0 0 4px rgba(176,130,90,.12); }
.form-group textarea { min-height: 150px; resize: vertical; line-height: 1.6; }
.form-check { display: flex; align-items: flex-start; gap: var(--sp-3); cursor: pointer; }
.form-check input { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--c-copper); }
.form-check span { font-size: var(--ts-sm); color: var(--c-text-muted); line-height: 1.5; }
.form-actions { margin-top: var(--sp-8); }

/* Map */
.map-wrap { border-radius: var(--r-2xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--c-border); }
.map-wrap iframe { display: block; width: 100%; height: 520px; border: none; }

/* ── PRODUCT TEMPLATE (garrafa) ────────────────────────────── */
.product-detail__main-img {
  background: #fff;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  transition: border-color .4s ease, box-shadow .4s ease, transform .35s ease;
}
.product-detail__main-img img { mix-blend-mode: multiply; }
.product-detail__main-img:hover {
  border-color: var(--c-copper);
  box-shadow: 0 0 0 2px var(--c-copper), var(--shadow-lg);
  transform: translateY(-4px);
}

/* Product carousel (auto-slide) */
.product-carousel { position: relative; overflow: hidden; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.product-carousel .carousel__slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; object-position: center; opacity: 0; transition: opacity .6s ease;
  mix-blend-mode: multiply; padding: var(--sp-6);
}
.product-carousel .carousel__slide.is-active { position: relative; opacity: 1; }
.carousel__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.85); border: 1px solid var(--c-border);
  display: grid; place-items: center; cursor: pointer; z-index: 2;
  transition: background var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}
.carousel__arrow:hover { background: #fff; border-color: var(--c-copper); box-shadow: var(--shadow-md); }
.carousel__arrow svg { width: 18px; height: 18px; color: var(--c-navy); }
.carousel__arrow--prev { left: var(--sp-4); }
.carousel__arrow--next { right: var(--sp-4); }

.product-detail__info { display: flex; flex-direction: column; align-items: stretch; text-align: left; }
.product-detail__info .eyebrow { text-align: center; justify-content: center; }
.product-detail__info .eyebrow::before { display: none; }
.product-detail__info .spec-list { max-width: 100%; width: 100%; }
.product-detail__cta { justify-content: center; }
.product-detail__cta .btn { text-align: center; min-width: 260px; padding: var(--sp-5) var(--sp-10); font-size: var(--ts-lg); }

/* Specs com toggle PT/EN */
.spec-toggle { display: inline-flex; gap: 4px; padding: 4px; background: var(--c-bg-warm); border-radius: var(--r-pill); margin-bottom: var(--sp-6); }
.spec-toggle button {
  font-size: var(--ts-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 7px var(--sp-4); border-radius: var(--r-pill); color: var(--c-text-muted);
  cursor: pointer; transition: background var(--t-fast), color var(--t-fast);
}
.spec-toggle button.is-active { background: var(--c-navy-deep); color: #fff; }

.spec-list { display: block; width: 100%; }
.spec-list > div { display: flex; justify-content: space-between; align-items: baseline; padding: var(--sp-3) 0; border-top: 1px solid var(--c-border); }
.spec-list > div:last-child { border-bottom: 1px solid var(--c-border); }
.spec-list dt { font-size: var(--ts-sm); font-weight: 600; color: var(--c-text-mid); letter-spacing: .02em; }
.spec-list dd { font-size: var(--ts-sm); color: var(--c-text); font-weight: 600; text-align: right; }
[data-lang-panel] { display: none; }
[data-lang-panel].is-active { display: block; }

/* Rolhas / acabamentos */
.cork-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }
.cork-item { text-align: center; }
.cork-item__img {
  aspect-ratio: 1/1; border-radius: var(--r-lg); border: 1px solid var(--c-border);
  background: radial-gradient(ellipse at center, #fff, var(--c-bg-warm) 140%);
  overflow: hidden; padding: var(--sp-6);
  transition: border-color var(--t-base), transform var(--t-base);
}
.cork-item:hover .cork-item__img { border-color: var(--c-copper); box-shadow: 0 0 0 1.5px var(--c-copper), var(--shadow-md); transform: translateY(-3px); }
.cork-item__img img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.cork-item__name { margin-top: var(--sp-3); font-size: var(--ts-sm); font-weight: 600; color: var(--c-text); }

/* Exemplo aplicado (produto pronto do cliente) */
.applied { display: grid; grid-template-columns: 0.55fr 1fr; gap: clamp(var(--sp-8), 5vw, var(--sp-16)); align-items: center; }
.applied__img {
  background: #fff;
  padding: var(--sp-10);
  border-radius: var(--r-xl);
  border: 1.5px solid var(--c-border);
  overflow: hidden;
  transition: border-color .4s ease, box-shadow .4s ease, transform .35s ease;
}
.applied:hover .applied__img {
  border-color: var(--c-copper);
  box-shadow: 0 0 0 2px var(--c-copper), var(--shadow-lg);
  transform: translateY(-4px);
}
.applied__img img { width: 100%; height: 560px; object-fit: contain; }
.applied__body .eyebrow { margin-bottom: var(--sp-5); }
.applied__body h3 { margin-bottom: var(--sp-4); }
.applied__body p { color: var(--c-text-mid); text-wrap: balance; }

/* Download de documento (PDF) */
.doc-card {
  display: inline-flex; align-items: center; gap: var(--sp-5);
  background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-8) var(--sp-5) var(--sp-5);
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
}
.doc-card:hover { border-color: var(--c-copper-light); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.doc-card__icon { width: 46px; height: 46px; flex-shrink: 0; border-radius: var(--r-md); background: var(--c-copper-pale); color: var(--c-copper-dark); display: grid; place-items: center; }
.doc-card__icon svg { width: 22px; height: 22px; }
.doc-card__meta strong { display: block; font-size: var(--ts-base); color: var(--c-text); font-weight: 600; }
.doc-card__meta span { font-size: var(--ts-xs); color: var(--c-text-muted); letter-spacing: .04em; text-transform: uppercase; }

@media (max-width: 760px) {
  .cork-grid { grid-template-columns: 1fr 1fr; }
  .applied { grid-template-columns: 1fr; }
  .applied__img { padding: var(--sp-6); }
  .applied__img img { height: 320px; }
  .applied__body { text-align: center; }
  .applied__body .eyebrow { justify-content: center; }
}

/* News cards (kept for /news page) */
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-8); }
.news-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-lg); overflow: hidden; transition: transform var(--t-slow), box-shadow var(--t-slow); }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.news-card__img { aspect-ratio: 16/10; overflow: hidden; }
.news-card__img img { width:100%; height:100%; object-fit: cover; transition: transform var(--t-slow); }
.news-card:hover .news-card__img img { transform: scale(1.06); }
.news-card__body { padding: var(--sp-6); }
.news-card__date { font-size: var(--ts-xs); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--c-copper); margin-bottom: var(--sp-3); }
.news-card__title { font-family: var(--f-serif); font-size: var(--ts-xl); font-weight: 500; line-height: 1.25; margin-bottom: var(--sp-3); }
.news-card__excerpt { font-size: var(--ts-base); color: var(--c-text-muted); line-height: 1.6; }

/* Green page — timeline cards */
.green-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); align-items: center; margin-bottom: var(--sp-12); }
.green-grid--flip { direction: rtl; }
.green-grid--flip > * { direction: ltr; }
.green-grid__img {
  position: relative; overflow: visible; border-radius: var(--r-lg);
  border: 1px solid var(--c-border); background: var(--c-surface);
}
.green-grid__img img {
  width: 100%; border-radius: var(--r-lg); display: block;
  transition: transform var(--t-base), filter var(--t-base);
  filter: saturate(0.3);
}
.green-grid__img:hover img {
  transform: scale(1.08);
  filter: saturate(1) brightness(1.02);
}
.green-grid__body h3 { margin-bottom: var(--sp-3); }
.green-grid__body p { color: var(--c-text-mid); }

/* Green hero — bottle overflow */
.hero--green .hero__bg {
  object-position: center bottom;
}

/* Timeline + process (for green/validation pages) */
.timeline { position: relative; padding-left: var(--sp-10); }
.timeline::before { content:''; position:absolute; left:7px; top:4px; bottom:4px; width:2px; background: linear-gradient(to bottom,var(--c-copper),var(--c-border)); }
.timeline__item { position: relative; display:grid; grid-template-columns:auto 1fr; gap:var(--sp-8); padding-bottom: var(--sp-12); }
.timeline__item::before { content:''; position:absolute; left: calc(-1*var(--sp-10)+3px); top:6px; width:10px; height:10px; border-radius:50%; background:var(--c-copper); box-shadow:0 0 0 4px var(--c-bg); }
.timeline__year { font-family: var(--f-serif); font-size: var(--ts-2xl); font-weight: 600; color: var(--c-copper); }
.timeline__content h4 { margin-bottom: var(--sp-3); }
.timeline__content p { color: var(--c-text-mid); }

.process-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(320px,1fr)); gap: var(--sp-1); }
.process-step { background: var(--c-surface); }
.process-step__img { aspect-ratio: 16/9; overflow: hidden; }
.process-step__img img { width:100%; height:100%; object-fit: cover; transition: transform var(--t-slow); }
.process-step:hover .process-step__img img { transform: scale(1.05); }
.process-step__body { padding: var(--sp-6); }
.process-step__num { font-family: var(--f-serif); font-size: var(--ts-6xl); font-weight: 600; color: var(--c-border-light); line-height: 1; margin-bottom: var(--sp-3); }
.process-step__name { font-size: var(--ts-lg); font-weight: 600; margin-bottom: var(--sp-2); }
.process-step__desc { font-size: var(--ts-base); color: var(--c-text-muted); }

/* ── 16. UTILITIES ─────────────────────────────────────────── */
.text-center { text-align: center; }
.text-copper { color: var(--c-copper); }
.text-white { color: #fff; }
.mt-auto { margin-top: auto; }
.hidden { display: none; }
.cta-row { display: flex; justify-content: center; margin-top: clamp(var(--sp-10),5vw,var(--sp-16)); }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* ── 17. ANIMATIONS ────────────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform: translateY(0); } }
.animate-fade-up { animation: fadeUp .9s var(--t-slow) both; }
.animate-fade-up-delay-1 { animation-delay: .12s; }
.animate-fade-up-delay-2 { animation-delay: .24s; }
.animate-fade-up-delay-3 { animation-delay: .36s; }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--t-slow), transform .8s var(--t-slow); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ── 18. RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .service-section { grid-template-columns: 1fr; min-height: auto; }
  .service-section--reverse { direction: ltr; }
  .product-detail { grid-template-columns: 1fr; }
  .product-detail__gallery { position: static; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  :root { --nav-h: 68px; }
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__menu.is-open {
    display: flex; flex-direction: column; position: fixed; inset: var(--nav-h) 0 0 0;
    background: var(--c-navy-deep); padding: var(--sp-8) var(--gutter); gap: var(--sp-2); overflow-y: auto; z-index: 99;
  }
  .nav__menu.is-open > li > a { font-size: var(--ts-xl); padding: var(--sp-4) 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav__menu.is-open > li > a::after { display: none; }
  .nav__dropdown { position: static; opacity: 1; visibility: visible; transform: none; background: transparent; border: none; padding: 0 0 var(--sp-3) var(--sp-4); box-shadow: none; }

  .visao__grid { grid-template-columns: 1fr; }
  .visao__media { max-width: 560px; margin-inline: auto; width: 100%; }
  .feature-strip { grid-template-columns: 1fr; }
  .feature-strip--reverse { direction: ltr; }
  .feature-strip__content--right .feature-strip__inner { text-align: left; }
  .feature-strip__content--right { justify-content: flex-start; }
  .feature-strip__content--right .eyebrow { flex-direction: row; }
  .feature-strip__content--right .eyebrow::after { display: none; }
  .feature-strip__content--right .eyebrow::before { display: block; }
  .feature-strip__sq.fs1 { width: 36px; height: 36px; }
  .feature-strip__sq.fs2 { width: 20px; height: 20px; }
  .feature-strip__sq.fs3 { width: 48px; height: 48px; }
  .feature-strip__sq.fs4 { width: 14px; height: 14px; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
  .category-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: var(--sp-3); text-align: center; }
  .hero--full { min-height: 88svh; }
  .visao__stats { position: static; transform: none; width: 100%; margin-top: var(--sp-8); grid-template-columns: 1fr; }
  .visao { padding-bottom: var(--sp-20); }
  .visao__divider { flex-direction: column; gap: var(--sp-5); }
  .product-detail__cta { flex-direction: column; }
  .feature-strip__floaters { display: none; }
}
