/* =====================================================
   VELMONT — Identidade visual
   Luxo silencioso, editorial, inspirado em
   Patek Philippe e Dom Pérignon
   ===================================================== */

/* Fontes oficiais Velmont — Brand Guidelines 2025 */
@font-face {
  font-family: 'OT Jubilee Diamond';
  src: url('fonts/OTJubilee-DiamondExtralight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'OT Jubilee Diamond';
  src: url('fonts/OTJubilee-DiamondMedium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Aktiv Grotesk';
  src: url('fonts/AktivGrotesk-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Aktiv Grotesk';
  src: url('fonts/AktivGrotesk-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Aktiv Grotesk';
  src: url('fonts/AktivGrotesk-XBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Paleta oficial Velmont — Brand Guidelines 2025 */
  --velmont-cream: #EEE9E3;
  --velmont-cream-soft: #f5f2ee;
  --velmont-sand: #C8DBD4;
  --velmont-charcoal: #1D2824;
  --velmont-cocoa: #B59E8F;
  --velmont-gold: #B59E8F;
  --velmont-gold-soft: #C8DBD4;
  --velmont-deep: #161E1B;
  --velmont-line: rgba(29, 40, 36, 0.15);

  /* Tipografia oficial Velmont — Brand Guidelines 2025
     OT Jubilee Diamond → títulos, caixa alta exclusivamente
     Aktiv Grotesk → textos de apoio, corpo, legendas */
  --font-display: 'OT Jubilee Diamond', 'Cormorant', 'Times New Roman', serif;
  --font-body: 'Aktiv Grotesk', -apple-system, sans-serif;

  /* Tempos de animação — lentos e respeitosos */
  --ease-luxe: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-slow: cubic-bezier(0.65, 0, 0.35, 1);
  --t-quick: 400ms;
  --t-medium: 800ms;
  --t-slow: 1400ms;

  /* Espaçamento */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  --space-xxl: 12rem;
}

/* ===========================
   RESET e base
   =========================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--velmont-charcoal);
  background-color: var(--velmont-cream);
  overflow-x: hidden;
  letter-spacing: 0.01em;
}

/* Cursor customizado, sutil */
a, button {
  cursor: pointer;
}

/* Seleção */
::selection {
  background: var(--velmont-charcoal);
  color: var(--velmont-cream);
}

/* Scrollbar refinada */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--velmont-cream); }
::-webkit-scrollbar-thumb {
  background: var(--velmont-sand);
  border-radius: 0;
}
::-webkit-scrollbar-thumb:hover { background: var(--velmont-gold); }

/* ===========================
   Tipografia
   =========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 200;
  font-style: normal;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 200;
}

h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
}

p {
  font-weight: 300;
  letter-spacing: 0.015em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--velmont-cocoa);
  display: inline-block;
  position: relative;
}

.eyebrow::before {
  content: none;
}

.serif-italic {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 200;
}

/* ===========================
   Layout
   =========================== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section {
  position: relative;
}

/* ===========================
   Navegação
   =========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.75rem var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--t-medium) var(--ease-luxe), transform 0.5s var(--ease-luxe);
}

.nav.scrolled {
  background: var(--velmont-cream);
  padding: 1.25rem var(--space-md);
  border-bottom: 1px solid var(--velmont-line);
}

.nav.nav-hidden {
  transform: translateY(-100%);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 200;
  letter-spacing: 0.4em;
  color: var(--velmont-cream);
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--t-medium) var(--ease-luxe);
}

.nav.scrolled .nav-brand {
  color: var(--velmont-charcoal);
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
  align-items: center;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--velmont-cream);
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--t-medium) var(--ease-luxe);
}

.nav.scrolled .nav-link {
  color: var(--velmont-charcoal);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--t-medium) var(--ease-luxe);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* ===========================
   Hero universal
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--velmont-charcoal);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(181, 158, 143, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, #161E1B 0%, #1D2824 50%, #1D2824 100%);
  z-index: 1;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.4;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  color: var(--velmont-cream);
  padding: 0 var(--space-md);
  max-width: 1100px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--velmont-gold-soft);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp var(--t-slow) var(--ease-luxe) 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  color: var(--velmont-cream);
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: heroWord var(--t-slow) var(--ease-luxe) forwards;
}

.hero-title .word:nth-child(1) { animation-delay: 0.5s; }
.hero-title .word:nth-child(2) { animation-delay: 0.7s; }
.hero-title .word:nth-child(3) { animation-delay: 0.9s; }

@keyframes heroWord {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: normal;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: rgba(238, 233, 227, 0.7);
  letter-spacing: 0.05em;
  opacity: 0;
  animation: fadeUp var(--t-slow) var(--ease-luxe) 1.2s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  z-index: 5;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--velmont-gold-soft);
  font-weight: 300;
  opacity: 0;
  animation: fadeUp var(--t-slow) var(--ease-luxe) 1.5s forwards;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--velmont-gold-soft), transparent);
  margin: 1rem auto 0;
  animation: scrollLine 2.5s var(--ease-luxe) infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===========================
   Monograma SVG
   =========================== */
.monogram {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.monogram-large {
  width: 200px;
  height: 200px;
}

.monogram svg {
  width: 100%;
  height: 100%;
}

/* ===========================
   Reveals (scroll-triggered)
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.4s var(--ease-luxe), transform 1.4s var(--ease-luxe);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

.reveal-line {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.reveal-line .inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.2s var(--ease-luxe);
}

.reveal-line.in-view .inner {
  transform: translateY(0);
}

/* ===========================
   Seções
   =========================== */
.section {
  padding: var(--space-lg) 0;
  position: relative;
}

.section-dark {
  background: var(--velmont-charcoal);
  color: var(--velmont-cream);
}

.section-dark .eyebrow {
  color: var(--velmont-gold-soft);
}

.section-dark .eyebrow::before {
  background: var(--velmont-gold-soft);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header .eyebrow {
  margin-bottom: 1.5rem;
}

.section-header h2 {
  margin-top: 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   Pilares (estilo Patek "Our Values")
   =========================== */
.pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pillar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 70vh;
  border-top: 1px solid var(--velmont-line);
  position: relative;
  overflow: hidden;
}

.pillar:last-child {
  border-bottom: 1px solid var(--velmont-line);
}

.pillar-image {
  position: relative;
  height: 100%;
  min-height: 70vh;
  background: var(--velmont-cocoa);
  overflow: hidden;
}

.pillar-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--velmont-cocoa) 0%, var(--velmont-charcoal) 100%);
}

.pillar-image .pillar-glyph {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 300;
  font-size: clamp(8rem, 20vw, 18rem);
  color: rgba(200, 219, 212, 0.12);
  line-height: 1;
  user-select: none;
  transition: transform 1.6s var(--ease-luxe), color 1.6s var(--ease-luxe);
}

.pillar:hover .pillar-glyph {
  color: rgba(200, 219, 212, 0.25);
  transform: translate(-50%, -50%) scale(1.05);
}

.pillar-image .pillar-number {
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--velmont-gold-soft);
  font-weight: 400;
}

.pillar-content {
  padding: var(--space-lg) var(--space-lg);
}

.pillar:nth-child(even) .pillar-image {
  order: 2;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 300;
  font-style: normal;
  margin-bottom: 1.5rem;
  color: var(--velmont-charcoal);
  line-height: 1;
}

.pillar-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--velmont-cocoa);
  max-width: 480px;
}

/* ===========================
   Manifesto block
   =========================== */
.manifesto {
  padding: var(--space-lg) 0;
  background: var(--velmont-charcoal);
  color: var(--velmont-cream);
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(181, 158, 143, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(181, 158, 143, 0.08) 0%, transparent 50%);
}

.manifesto-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--space-md);
}

.manifesto-quote {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--velmont-cream);
  letter-spacing: 0.01em;
}

.manifesto-quote .highlight {
  color: var(--velmont-gold-soft);
}

.manifesto-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--velmont-gold), transparent);
  margin: 1.5rem auto;
}

/* ===========================
   Coleções
   =========================== */
.collections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: var(--space-lg);
}

.collection-card {
  position: relative;
  overflow: hidden;
  background: var(--velmont-cocoa);
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform 1s var(--ease-luxe);
}

.collection-card:hover {
  transform: translateY(-8px);
}

.collection-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--velmont-cocoa) 0%, var(--velmont-charcoal) 100%);
  transition: transform 1.4s var(--ease-luxe);
}

.collection-card:hover .collection-bg {
  transform: scale(1.05);
}

.collection-glyph {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 9rem);
  font-style: normal;
  font-weight: 300;
  color: rgba(200, 219, 212, 0.15);
  line-height: 1;
  transition: color 1.4s var(--ease-luxe);
}

.collection-card:hover .collection-glyph {
  color: rgba(200, 219, 212, 0.3);
}

.collection-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 3;
  color: var(--velmont-cream);
  border-top: 1px solid rgba(200, 219, 212, 0.3);
  background: linear-gradient(to top, rgba(22, 30, 27, 0.8), transparent);
}

.collection-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.collection-desc {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--velmont-gold-soft);
  font-weight: 400;
}

/* ===========================
   Awards / Premiações
   =========================== */
.awards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-top: var(--space-lg);
}

.award {
  text-align: center;
  padding: 2rem 1rem;
  border-left: 1px solid var(--velmont-line);
}

.award:first-child { border-left: none; }

.award-medal {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--velmont-gold);
  border-radius: 50%;
  color: var(--velmont-gold);
}

.award-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--velmont-charcoal);
}

.award-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--velmont-cocoa);
  font-style: normal;
  margin-bottom: 1.5rem;
}

.award-source {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--velmont-gold);
  font-weight: 400;
}

/* ===========================
   CTA / Newsletter
   =========================== */
.cta {
  padding: var(--space-xxl) 0;
  background: var(--velmont-cream-soft);
  position: relative;
  overflow: hidden;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  font-style: normal;
  margin-bottom: 1.5rem;
  color: var(--velmont-charcoal);
}

.cta-text {
  max-width: 540px;
  margin: 0 auto var(--space-lg);
  color: var(--velmont-cocoa);
  line-height: 1.8;
}

.form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-input {
  width: 100%;
  padding: 1.2rem 0;
  border: none;
  border-bottom: 1px solid var(--velmont-line);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--velmont-charcoal);
  letter-spacing: 0.05em;
  outline: none;
  transition: border-color var(--t-medium) var(--ease-luxe);
}

.form-input:focus {
  border-color: var(--velmont-gold);
}

.form-input::placeholder {
  color: var(--velmont-cocoa);
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
}

/* ===========================
   Botão Velmont
   =========================== */
.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--velmont-cream);
  background: var(--velmont-charcoal);
  border: 1px solid var(--velmont-charcoal);
  position: relative;
  overflow: hidden;
  transition: all var(--t-medium) var(--ease-luxe);
  cursor: pointer;
}

.btn:hover {
  background: var(--velmont-cocoa);
  border-color: var(--velmont-gold);
  letter-spacing: 0.4em;
}

.btn-outline {
  background: transparent;
  color: var(--velmont-charcoal);
}

.btn-outline:hover {
  background: var(--velmont-charcoal);
  color: var(--velmont-cream);
}

.btn-light {
  background: var(--velmont-cream);
  color: var(--velmont-charcoal);
  border-color: var(--velmont-cream);
}

.btn-light:hover {
  background: transparent;
  color: var(--velmont-cream);
}

/* ===========================
   Footer
   =========================== */
.footer {
  background: var(--velmont-charcoal);
  color: var(--velmont-cream);
  padding: var(--space-lg) 0 var(--space-sm);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: var(--space-md);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  margin-bottom: 0;
  color: var(--velmont-cream);
}

.footer-brand-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  transition: opacity var(--t-medium) var(--ease-luxe);
}

.footer-brand-link:hover {
  opacity: 0.7;
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: normal;
  color: var(--velmont-gold-soft);
  font-size: 1.1rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer-heading {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--velmont-gold-soft);
  margin-bottom: 1rem;
  font-weight: 400;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 0.6rem;
}

.footer-list a {
  color: rgba(238, 233, 227, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  transition: color var(--t-medium) var(--ease-luxe);
}

.footer-list a:hover {
  color: var(--velmont-gold-soft);
}

.footer-bottom {
  border-top: 1px solid rgba(200, 219, 212, 0.15);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: rgba(238, 233, 227, 0.5);
}

/* ===========================
   Página SOBRE — específico
   =========================== */
.about-intro {
  padding: var(--space-lg) 0 var(--space-md);
  text-align: center;
}

.about-intro p {
  max-width: 720px;
  margin: 2rem auto 0;
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--velmont-cocoa);
}

.about-process {
  padding: var(--space-lg) 0;
  background: var(--velmont-cream);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: var(--space-lg);
  border-top: 1px solid var(--velmont-line);
  border-bottom: 1px solid var(--velmont-line);
}

.process-step {
  padding: 3rem 2rem;
  border-right: 1px solid var(--velmont-line);
  position: relative;
}

.process-step:last-child {
  border-right: none;
}

.process-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  color: var(--velmont-gold);
  margin-bottom: 1.5rem;
}

.process-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 200;
  margin-bottom: 1rem;
  color: var(--velmont-charcoal);
}

.process-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--velmont-cocoa);
}

/* ===========================
   Página B2B — específico
   =========================== */
.b2b-channels {
  padding: var(--space-lg) 0;
}

.channel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xxl);
  align-items: center;
}

.channel:last-child { margin-bottom: 0; }

.channel:nth-child(even) .channel-visual {
  order: 2;
}

.channel-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--velmont-cocoa) 0%, var(--velmont-charcoal) 100%);
  overflow: hidden;
  border: 1px solid rgba(200, 219, 212, 0.2);
}

.channel-visual-glyph {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-style: normal;
  font-size: clamp(6rem, 14vw, 12rem);
  color: rgba(200, 219, 212, 0.12);
  font-weight: 300;
}

.channel-label {
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--velmont-gold-soft);
  text-transform: uppercase;
  font-weight: 400;
}

.channel-content h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  font-style: normal;
  margin: 1.5rem 0;
  color: var(--velmont-charcoal);
  line-height: 1.1;
}

.channel-content p {
  color: var(--velmont-cocoa);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.channel-features {
  list-style: none;
  margin: 2rem 0;
}

.channel-features li {
  padding: 1rem 0;
  border-top: 1px solid var(--velmont-line);
  font-size: 0.95rem;
  color: var(--velmont-cocoa);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.channel-features li:last-child {
  border-bottom: 1px solid var(--velmont-line);
}

.channel-features li::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--velmont-gold);
  flex-shrink: 0;
}

/* ===========================
   Partner logos / strip
   =========================== */
.partners {
  padding: var(--space-xl) 0;
  background: var(--velmont-cream-soft);
  border-top: 1px solid var(--velmont-line);
  border-bottom: 1px solid var(--velmont-line);
  text-align: center;
}

.partners-title {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--velmont-cocoa);
  text-transform: uppercase;
  margin-bottom: 3rem;
  font-weight: 400;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
  align-items: center;
}

.partner-name {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1.4rem;
  color: var(--velmont-cocoa);
  font-weight: 400;
  opacity: 0.6;
  transition: opacity var(--t-medium) var(--ease-luxe);
}

.partner-name:hover {
  opacity: 1;
  color: var(--velmont-gold);
}

/* ===========================
   Form B2B
   =========================== */
.b2b-form {
  padding: var(--space-lg) 0;
  background: var(--velmont-charcoal);
  color: var(--velmont-cream);
  position: relative;
}

.b2b-form .container-narrow {
  position: relative;
  z-index: 2;
}

.b2b-form h2 {
  text-align: center;
  color: var(--velmont-cream);
  margin-bottom: 1rem;
}

.b2b-form p {
  text-align: center;
  color: rgba(238, 233, 227, 0.7);
  max-width: 540px;
  margin: 0 auto var(--space-lg);
  line-height: 1.8;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.b2b-form .form-input {
  border-bottom-color: rgba(238, 233, 227, 0.3);
  color: var(--velmont-cream);
}

.b2b-form .form-input::placeholder {
  color: rgba(238, 233, 227, 0.5);
}

.b2b-form .form-input:focus {
  border-color: var(--velmont-gold-soft);
}

.b2b-form textarea.form-input {
  resize: vertical;
  min-height: 120px;
  padding-top: 1.2rem;
}

.b2b-form .btn {
  margin-top: 2rem;
  background: var(--velmont-gold);
  border-color: var(--velmont-gold);
  color: var(--velmont-charcoal);
}

.b2b-form .btn:hover {
  background: var(--velmont-gold-soft);
  border-color: var(--velmont-gold-soft);
}

/* ===========================
   Responsive
   =========================== */
/* ===========================
   Menu mobile (hambúrguer + overlay)
   =========================== */
.nav-burger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 101;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--velmont-cream);
  transition: background var(--t-medium) var(--ease-luxe);
}

.nav.scrolled .nav-burger span {
  background: var(--velmont-charcoal);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--velmont-cream);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-medium) var(--ease-luxe), visibility 0s linear var(--t-medium);
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transition: opacity var(--t-medium) var(--ease-luxe), visibility 0s linear 0s;
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.5rem 0 2rem;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  color: var(--velmont-charcoal);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.5rem;
  justify-self: start;
  font-weight: 200;
  font-family: var(--font-body);
}

.mobile-menu-logo {
  height: 26px;
  width: auto;
  filter: brightness(0.15);
  justify-self: center;
}

.mobile-menu-spacer {
  justify-self: end;
  width: 36px;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  padding: 2rem 0;
  border-top: 1px solid var(--velmont-line);
}

.mobile-menu-link {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--velmont-charcoal);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 1.25rem 0.5rem;
  border-bottom: 1px solid var(--velmont-line);
  transition: color var(--t-medium) var(--ease-luxe);
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
  color: var(--velmont-gold);
}

.mobile-menu-link-cta {
  margin-top: 0.5rem;
  color: var(--velmont-cocoa);
  font-style: italic;
  font-weight: 200;
}

/* ===========================
   Responsive — Tablet / Mobile
   =========================== */
@media (max-width: 968px) {
  :root {
    --space-xxl: 6rem;
    --space-xl: 4rem;
    --space-lg: 2.5rem;
    --space-md: 1.5rem;
  }

  .nav { padding: 1.25rem; }
  .nav-links { gap: 1.5rem; }
  .nav-link { font-size: 0.65rem; letter-spacing: 0.2em; }

  .pillar {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .pillar-image {
    min-height: 50vh;
    order: 1 !important;
  }

  .pillar-content {
    padding: 3rem 2rem;
    order: 2 !important;
  }

  .collections {
    grid-template-columns: 1fr;
  }

  .awards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .award {
    border-left: none;
    border-top: 1px solid var(--velmont-line);
    padding-top: 2rem;
  }

  .award:first-child { border-top: none; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .channel {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .channel:nth-child(even) .channel-visual {
    order: 1;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step {
    border-right: none;
    border-bottom: 1px solid var(--velmont-line);
  }

  .process-step:last-child { border-bottom: none; }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   Mobile — refinamentos completos
   =========================== */
@media (max-width: 768px) {
  /* Tipografia base — escala mobile */
  h1 { font-size: clamp(2.5rem, 11vw, 4rem); }
  h2 { font-size: clamp(1.75rem, 7vw, 2.75rem); }
  h3 { font-size: clamp(1.35rem, 5.5vw, 2rem); }

  /* Containers — padding lateral consistente */
  .container,
  .container-narrow {
    padding: 0 1.25rem;
  }

  /* ====== Nav mobile — hambúrguer estilo Patek ====== */
  .nav {
    padding: 1rem 1.25rem;
    justify-content: space-between;
  }
  .nav-brand { font-size: 1.05rem; letter-spacing: 0.3em; }
  .nav-logo { height: 17px !important; }
  .nav-links { display: none !important; }
  .nav-burger {
    display: flex !important;
  }

  /* ====== Hero mobile ====== */
  .hero {
    min-height: 90vh;
  }
  .hero-content {
    padding: 0 1.5rem;
    text-align: center;
  }
  .hero-title {
    font-size: clamp(2.5rem, 12vw, 4.5rem);
    line-height: 1;
    text-align: center;
  }
  .hero-title .word {
    display: inline;
  }
  .hero-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    margin-bottom: 1.75rem;
  }
  .hero-tagline {
    font-size: 1rem;
    text-align: center;
  }
  .hero-scroll {
    bottom: 2rem;
    font-size: 0.55rem;
    letter-spacing: 0.35em;
  }
  .hero-scroll::after {
    height: 40px;
    margin-top: 0.75rem;
  }

  /* ====== Section padding mobile ====== */
  .section {
    padding: 4rem 0;
  }

  /* ====== Section header centrado ====== */
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  /* ====== Manifesto mobile ====== */
  .manifesto {
    padding: 4rem 0 !important;
  }
  .manifesto-content {
    padding: 0 1.5rem;
    text-align: center;
  }
  .manifesto-quote {
    font-size: 1rem;
    line-height: 1.85;
    text-align: center;
  }

  /* ====== Rigor & Purpose — igualar tamanho ao manifesto ====== */
  .rigor-text {
    font-size: 1rem !important;
    line-height: 1.85 !important;
  }

  /* ====== Coleções (rolex-grid) mobile ====== */
  .rolex-grid {
    grid-template-columns: 1fr !important;
    max-width: 360px !important;
    gap: 1rem !important;
  }
  .rolex-card {
    aspect-ratio: 4/5 !important;
  }
  .rolex-card .card-overlay {
    padding: 1.5rem !important;
    text-align: center;
    align-items: center;
  }
  .rolex-card .card-title {
    font-size: 1.5rem !important;
  }

  /* ====== Awards mobile ====== */
  .awards-grid {
    grid-template-columns: 1fr !important;
  }
  .award-col {
    padding: 2rem 1rem !important;
    border-left: none !important;
    border-right: none !important;
    border-top: 1px solid rgba(200,219,212,0.2);
    text-align: center;
  }
  .award-col:first-child { border-top: none; }
  .award-seal {
    width: 70px !important;
    height: auto;
  }
  .award-quote {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  /* ====== Página Sobre — Unapologetic mobile ====== */
  .unapologetic-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
    text-align: center;
  }
  .unapologetic-grid img {
    height: 420px !important;
  }
  .unapologetic-grid h2 {
    text-align: center;
  }
  .unapologetic-grid p {
    text-align: center;
    font-size: 1rem !important;
    line-height: 1.8 !important;
  }

  /* ====== Processo mobile ====== */
  .process-steps {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  .process-step {
    text-align: center;
    border: none !important;
    padding: 1.5rem 1rem !important;
    border-bottom: 1px solid var(--velmont-line) !important;
  }
  .process-step:last-child {
    border-bottom: none !important;
  }
  .process-name {
    font-size: 1.5rem;
  }
  .process-text {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  /* ====== Página Sobre — Do Terroir à Excelência ====== */
  .section-dark h2 {
    font-size: clamp(1.5rem, 6vw, 2.2rem) !important;
    text-align: center;
    word-break: break-word;
    hyphens: auto;
  }
  .terroir-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
    text-align: center;
  }
  .terroir-grid > div {
    text-align: center;
  }
  .terroir-grid p {
    font-size: 1rem !important;
    line-height: 1.8 !important;
    text-align: center;
  }
  .terroir-grid > div > div {
    text-align: center;
    font-size: 0.7rem !important;
  }

  /* ====== Página Sobre — hero origem ====== */
  .about-intro {
    padding: 4rem 0 2.5rem;
  }
  .about-intro p {
    font-size: 1rem;
    line-height: 1.8;
    padding: 0 0.5rem;
  }
  .about-process {
    padding: 4rem 0;
  }

  /* ====== B2B — channels mobile ====== */
  .channel {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    margin-bottom: 4rem;
    text-align: center;
  }
  .channel:nth-child(even) .channel-visual {
    order: 1;
  }
  .channel:nth-child(even) .channel-content {
    order: 2;
  }
  .channel-visual {
    aspect-ratio: 1/1;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
  .channel-visual img {
    object-position: center center !important;
  }
  .channel-content {
    text-align: center;
  }
  .channel-content h3 {
    font-size: 1.75rem;
    text-align: center;
  }
  .channel-content p {
    font-size: 0.98rem;
    max-width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .channel-features {
    text-align: left;
  }
  .channel-features li {
    font-size: 0.9rem;
  }

  /* ====== B2B form mobile ====== */
  .b2b-form {
    padding: 4rem 0;
  }
  .b2b-form h2 {
    font-size: 1.85rem;
  }
  .b2b-form p {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }
  .form-grid {
    grid-template-columns: 1fr !important;
    gap: 1.75rem;
  }
  .form-input {
    font-size: 16px !important; /* evita zoom iOS no foco */
  }
  .b2b-form .btn {
    width: 100%;
    max-width: 320px;
  }

  /* ====== Partners ====== */
  .partners-grid {
    gap: 1.5rem 2rem;
  }
  .partner-name {
    font-size: 1.1rem;
  }

  /* ====== Footer mobile — centrado e empilhado ====== */
  .footer {
    padding: 3rem 0 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
    text-align: center;
  }
  .footer-brand-centered {
    justify-content: center;
  }
  .footer-brand {
    font-size: 1.4rem;
    text-align: center;
  }
  .footer-heading {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-align: center;
  }
  .footer-list {
    text-align: center;
  }
  .footer-list a {
    font-size: 0.95rem;
  }
  .footer-bottom {
    flex-direction: column !important;
    gap: 0.75rem;
    text-align: center;
    font-size: 0.65rem;
    padding-top: 1.5rem;
  }

  /* ====== Buttons mobile ====== */
  .btn {
    padding: 0.95rem 2rem;
    font-size: 0.7rem;
  }

  /* ====== Crafted / Excessively Crafted section ====== */
  .crafted-bg {
    opacity: 0.2 !important;
  }

  /* Reveals — manter centralizado em mobile */
  .reveal {
    text-align: center;
  }
}

/* ===========================
   Mobile pequeno (≤ 480px)
   =========================== */
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2.1rem, 13vw, 3.5rem);
  }
  .hero-eyebrow {
    font-size: 0.55rem;
    letter-spacing: 0.35em;
  }
  h2 { font-size: clamp(1.6rem, 8vw, 2.4rem); }

  .nav { padding: 0.85rem 1rem; }
  .nav-brand { font-size: 0.95rem; }
  .nav-logo { height: 15px !important; }

  .container,
  .container-narrow {
    padding: 0 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .rolex-grid {
    max-width: 100% !important;
  }

  .unapologetic-grid img {
    height: 320px !important;
  }

  .b2b-form h2 {
    font-size: 1.6rem;
  }

  .channel-visual {
    aspect-ratio: 1/1;
    max-width: 100%;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
