/* ─────────────────────────────────────────────
   TROAH — Luxury Leather Goods
   Design: Editorial Luxury, Refined Minimalism
   ───────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Montserrat:wght@200;300;400&display=swap');

:root {
  --gold: #a8936a;
  --gold-light: #c9ae85;
  --gold-pale: #e8dcc8;
  --cream: #faf8f4;
  --warm-white: #f5f2ed;
  --charcoal: #1a1a18;
  --stone: #7a756c;
  --stone-light: #b0aa9f;
  --border: rgba(168, 147, 106, 0.2);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --ease-luxury: cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition: 0.7s var(--ease-luxury);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ── SELECTION ── */
::selection { background: var(--gold-pale); color: var(--charcoal); }

/* ─── NAVIGATION ─────────────────────────────── */
/* ─── NAVIGATION ─────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 32px 60px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: background 0.6s ease, padding 0.5s ease, border-color 0.6s ease, backdrop-filter 0.6s ease;
  border-bottom: 1px solid transparent;
}

/* Scrolled state */
nav.scrolled {
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(24px) saturate(1.4);
  padding: 18px 60px;
  border-bottom: 1px solid rgba(168, 147, 106, 0.15);
}

/* Logo — centralizada */
.nav-logo {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo img {
  height: 26px;
  transition: filter 0.5s ease, opacity 0.3s ease;
  /* default: logo dourada sobre fundo claro */
  filter: brightness(0) saturate(100%) invert(66%) sepia(20%) saturate(500%) hue-rotate(5deg) brightness(90%);
}

.nav-logo img:hover { opacity: 0.65; }

/* Links — lado direito */
.nav-links {
  grid-column: 3;
  display: flex;
  gap: 44px;
  list-style: none;
  justify-content: flex-end;
  align-items: center;
}

/* Espaço esquerdo vazio (pode usar para CTA futura) */
.nav-left {
  grid-column: 1;
}

.nav-links a {
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  transition: color 0.35s;
  padding-bottom: 2px;
}

/* Underline animado — dourado, começa do centro */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%; right: 50%;
  height: 1px;
  background: var(--gold);
  transition: left 0.4s var(--ease-luxury), right 0.4s var(--ease-luxury);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { left: 0; right: 0; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { left: 0; right: 0; }

/* Botão CTA no menu */
.nav-links .nav-cta {
  border: 1px solid rgba(168, 147, 106, 0.45);
  padding: 8px 20px 8px;
  letter-spacing: 0.18em;
  transition: background 0.35s, color 0.35s, border-color 0.35s;
}

.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: var(--gold); color: white; border-color: var(--gold); }

/* ── LOGO BRANCA sobre hero escuro (journal-page e home-journal) ── */
body.journal-page nav:not(.scrolled) .nav-logo img,
body.home-journal nav:not(.scrolled) .nav-logo img {
  filter: brightness(0) invert(1) !important;
  opacity: 0.92;
}

body.journal-page nav:not(.scrolled) .nav-links a,
body.home-journal nav:not(.scrolled) .nav-links a {
  color: rgba(255,255,255,0.75);
}

body.journal-page nav:not(.scrolled) .nav-links a::after,
body.home-journal nav:not(.scrolled) .nav-links a::after {
  background: rgba(255,255,255,0.6);
}

body.journal-page nav:not(.scrolled) .nav-links a:hover,
body.home-journal nav:not(.scrolled) .nav-links a:hover {
  color: white;
}

body.journal-page nav:not(.scrolled) .nav-links .nav-cta,
body.home-journal nav:not(.scrolled) .nav-links .nav-cta {
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
}

body.journal-page nav:not(.scrolled) .nav-links .nav-cta:hover,
body.home-journal nav:not(.scrolled) .nav-links .nav-cta:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.6);
  color: white;
}

body.journal-page nav:not(.scrolled) .nav-hamburger span,
body.home-journal nav:not(.scrolled) .nav-hamburger span {
  background: rgba(255,255,255,0.85);
}

/* Scrolled: logo volta ao dourado */
body.journal-page nav.scrolled .nav-logo img,
body.home-journal nav.scrolled .nav-logo img {
  filter: brightness(0) saturate(100%) invert(66%) sepia(20%) saturate(500%) hue-rotate(5deg) brightness(90%) !important;
  opacity: 1;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  grid-column: 3;
  justify-self: end;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--charcoal);
  transition: all 0.35s;
}

/* Mobile nav */
@media (max-width: 768px) {
  nav { padding: 22px 28px; grid-template-columns: auto 1fr auto; }
  nav.scrolled { padding: 16px 28px; }
  .nav-logo { grid-column: 2; }
  .nav-left { grid-column: 1; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 72vw; height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    transition: right 0.55s var(--ease-luxury);
    border-left: 1px solid var(--border);
    grid-column: unset;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 11px; color: var(--charcoal) !important; }
  .nav-links .nav-cta { padding: 10px 24px; }
  .nav-hamburger { display: flex; grid-column: 3; }
}

/* ─── SCROLL ANIMATIONS ──────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-luxury), transform 0.9s var(--ease-luxury);
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-left] {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s var(--ease-luxury), transform 1s var(--ease-luxury);
}
[data-reveal-left].visible { opacity: 1; transform: translateX(0); }

[data-reveal-right] {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s var(--ease-luxury), transform 1s var(--ease-luxury);
}
[data-reveal-right].visible { opacity: 1; transform: translateX(0); }

[data-reveal-scale] {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1s var(--ease-luxury), transform 1s var(--ease-luxury);
}
[data-reveal-scale].visible { opacity: 1; transform: scale(1); }

/* delay helpers */
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.25s; }
[data-delay="3"] { transition-delay: 0.4s; }
[data-delay="4"] { transition-delay: 0.55s; }
[data-delay="5"] { transition-delay: 0.7s; }

/* ─── HERO ────────────────────────────────────── */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-image-side {
  position: relative;
  overflow: hidden;
}

.hero-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 8s var(--ease-luxury);
}

.hero-image-side.loaded img { transform: scale(1); }

.hero-image-side::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--cream) 100%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 80px 80px 60px;
  position: relative;
  z-index: 1;
}

.hero-tag {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 5vw, 82px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--stone);
  line-height: 2;
  max-width: 340px;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 8px;
  transition: color 0.3s, gap 0.3s;
  width: fit-content;
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
}

.btn-primary::after {
  content: '→';
  font-size: 14px;
  transition: transform 0.3s;
}

.btn-primary:hover { color: var(--gold); gap: 24px; }
.btn-primary:hover::after { transform: translateX(4px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--charcoal);
  border: 1px solid var(--gold);
  padding: 16px 32px;
  transition: all 0.4s;
}

.btn-outline:hover {
  background: var(--gold);
  color: white;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}

.hero-scroll span {
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-light);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

/* ─── MARQUEE / TICKER ───────────────────────── */
.marquee-band {
  background: var(--charcoal);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-flex;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-pale);
}

.marquee-item::after {
  content: '◆';
  font-size: 6px;
  color: var(--gold);
}

/* ─── SECTIONS COMUNS ────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.section-title-serif {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
}

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

.section-text {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--stone);
  line-height: 2;
}

/* ─── ABOUT STRIP (home) ─────────────────────── */
.about-strip {
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.about-strip-images {
  position: relative;
  height: 560px;
}

.about-img-main {
  width: 72%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
}

.about-img-accent {
  width: 50%;
  height: 55%;
  object-fit: cover;
  position: absolute;
  bottom: -40px;
  right: 0;
  border: 8px solid var(--cream);
}

.about-strip-content { padding-left: 20px; }

.about-strip-content p {
  margin-bottom: 20px;
  max-width: 420px;
}

/* ─── FEATURED PRODUCT ───────────────────────── */
.featured-section {
  background: var(--warm-white);
  padding: 120px 0;
  overflow: hidden;
}

.featured-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.featured-img-wrap {
  position: relative;
}

.featured-img-wrap img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.featured-img-wrap::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  right: 40px; bottom: 40px;
  border: 1px solid var(--gold-pale);
  z-index: -1;
}

.product-details {
  margin: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--stone);
}

.product-detail-item::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── COLLECTION GRID ────────────────────────── */
.collection-section {
  padding: 120px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.collection-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

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

.collection-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.collection-item img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
  display: block;
}

.collection-item:hover img { transform: scale(1.06); }

.collection-item-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 28px 28px;
  background: linear-gradient(to top, rgba(26,26,24,0.7) 0%, transparent 100%);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s var(--ease-luxury);
}

.collection-item:hover .collection-item-overlay {
  transform: translateY(0);
  opacity: 1;
}

.collection-item-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  color: white;
  font-style: italic;
}

.collection-item-tag {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-top: 6px;
}

/* ─── MANIFESTO ──────────────────────────────── */
.manifesto-section {
  padding: 160px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.manifesto-section::before {
  content: 'TROAH';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(168,147,106,0.08);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.manifesto-content { position: relative; z-index: 1; }

.manifesto-quote {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.4;
  max-width: 860px;
  margin: 0 auto 32px;
}

.manifesto-author {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── VALUES STRIP ───────────────────────────── */
.values-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.value-item {
  padding: 60px 50px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.value-item:last-child { border-right: none; }

.value-icon {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 28px;
}

.value-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 14px;
}

.value-text {
  font-size: 11px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.9;
  letter-spacing: 0.04em;
}

/* ─── FOOTER ─────────────────────────────────── */
footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 80px 60px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}

.footer-brand img {
  height: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  margin-bottom: 24px;
}

.footer-brand p {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 2;
  max-width: 280px;
  letter-spacing: 0.04em;
}

.footer-col-title {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  text-decoration: none;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  transition: color 0.3s;
}

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

.footer-social {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  transition: all 0.3s;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

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

.footer-copy {
  font-size: 10px;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
}

/* ─── PAGE HEADERS ───────────────────────────── */
.page-hero {
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding: 0 60px 80px;
  position: relative;
  overflow: hidden;
  background: var(--warm-white);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 300;
  line-height: 1;
  color: var(--charcoal);
}

.page-hero-title em { font-style: italic; color: var(--gold); }

/* ─── SOBRE PAGE ─────────────────────────────── */
.sobre-intro {
  padding: 100px 60px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.sobre-intro-text .section-title-serif {
  margin-bottom: 32px;
}

.sobre-intro-text p {
  margin-bottom: 20px;
}

.sobre-intro-img {
  position: relative;
}

.sobre-intro-img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.sobre-intro-img::after {
  content: '';
  position: absolute;
  top: 24px;
  right: -24px;
  bottom: -24px;
  left: 24px;
  border: 1px solid var(--gold-pale);
  z-index: -1;
}

.sobre-pillars {
  padding: 80px 60px;
  background: var(--warm-white);
}

.sobre-pillars-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pillars-header { margin-bottom: 60px; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.pillar-card {
  background: var(--cream);
  padding: 52px 48px;
}

.pillar-number {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 20px;
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.pillar-text {
  font-size: 11px;
  font-weight: 300;
  color: var(--stone);
  line-height: 2;
  letter-spacing: 0.04em;
}

/* ─── JOURNAL PAGE ───────────────────────────── */
.journal-coming {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.journal-coming::before {
  content: 'JOURNAL';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: clamp(80px, 15vw, 220px);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(168,147,106,0.08);
  white-space: nowrap;
}

.journal-coming-content { position: relative; z-index: 1; }

.journal-coming-label {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.journal-coming-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 24px;
}

.journal-coming-sub {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--stone);
  line-height: 2;
  max-width: 480px;
  margin: 0 auto 52px;
}

.email-form {
  display: flex;
  gap: 0;
  max-width: 420px;
  margin: 0 auto;
  border-bottom: 1px solid var(--gold);
}

.email-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  padding: 14px 0;
}

.email-form input::placeholder { color: var(--stone-light); }

.email-form button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 14px 0 14px 20px;
  transition: color 0.3s;
}

.email-form button:hover { color: var(--charcoal); }

/* ─── KEYFRAMES ──────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

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

/* ─── DIVIDERS ───────────────────────────────── */
.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 48px auto;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Mobile First
   Breakpoints: 1024 · 768 · 480
   ═══════════════════════════════════════════ */

/* ── Tablet ── */
@media (max-width: 1024px) {
  /* Old hero (não usada na landing) */
  .hero { grid-template-columns: 1fr; }
  .hero-image-side { display: none; }
  .hero-content { padding: 120px 36px 80px; }

  /* Sobre page */
  .about-strip,
  .featured-inner,
  .sobre-intro { grid-template-columns: 1fr; gap: 60px; }
  .collection-grid { grid-template-columns: 1fr 1fr; }
  .values-strip { grid-template-columns: 1fr; }
  .value-item { border-right: none; border-bottom: 1px solid var(--border); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
}

/* ── Mobile ── */
@media (max-width: 768px) {

  /* === FOOTER === */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  footer { padding: 56px 24px 32px; }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  /* === MARQUEE === */
  .marquee-item { gap: 28px; padding-right: 28px; }

  /* === VALUES STRIP === */
  .values-strip { grid-template-columns: 1fr; }
  .value-item { border-right: none; border-bottom: 1px solid var(--border); padding: 44px 28px; }

  /* === SOBRE PAGE === */
  .page-hero { height: 45vh; min-height: 280px; padding: 0 24px 48px; }
  .page-hero-title { font-size: clamp(40px, 10vw, 72px); }
  .sobre-intro { grid-template-columns: 1fr; gap: 48px; padding: 64px 24px; }
  .sobre-intro-img img { height: 380px; }
  .sobre-pillars { padding: 64px 24px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar-card { padding: 36px 28px; }
  .pillar-number { font-size: 48px; }

  /* === COLLECTION / FEATURED === */
  .about-strip { padding: 64px 24px; }
  .about-strip-images { height: 380px; }
  .about-img-accent { display: none; }
  .collection-section { padding: 64px 24px; }
  .collection-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .collection-grid { grid-template-columns: 1fr; gap: 2px; }
  .collection-item img { height: 300px; }
  .featured-inner { padding: 64px 24px; gap: 48px; }
  .featured-img-wrap img { height: 380px; }
  .manifesto-section { padding: 80px 24px; }
  .manifesto-quote { font-size: clamp(22px, 6vw, 36px); }
}

/* ── Small mobile ── */
@media (max-width: 480px) {
  footer { padding: 48px 20px 28px; }
  .section-title-serif { font-size: clamp(30px, 8vw, 48px); }
  .page-hero-title { font-size: clamp(36px, 9vw, 56px); }
  .pillar-card { padding: 28px 20px; }
  .sobre-intro { padding: 48px 20px; }
  .sobre-pillars { padding: 48px 20px; }
  .collection-section { padding: 48px 20px; }
  .manifesto-section { padding: 64px 20px; }
}


/* ═══════════════════════════════════════════
   MOBILE GLOBAL — Touch & Safe Areas
   ═══════════════════════════════════════════ */

/* Smooth scroll on iOS */
html { -webkit-text-size-adjust: 100%; }
* { -webkit-tap-highlight-color: transparent; }

/* Tap targets mínimos de 44px */
a, button { min-height: 44px; min-width: 44px; }
.nav-links a { min-height: 36px; }
.preview-tag, .lp-badge, .option-card-name { min-height: unset; min-width: unset; }

/* Safe area para iPhone com notch/Dynamic Island */
nav {
  padding-top: max(28px, env(safe-area-inset-top, 28px));
}
nav.scrolled {
  padding-top: max(18px, env(safe-area-inset-top, 18px));
}
footer {
  padding-bottom: max(40px, calc(env(safe-area-inset-bottom, 0px) + 40px));
}

/* Evita overflow horizontal */
body { overflow-x: hidden; }
img { max-width: 100%; }

/* Melhor scroll em iOS */
.carousel-track-outer { -webkit-overflow-scrolling: touch; }
.nav-links { -webkit-overflow-scrolling: touch; }

/* Font smoothing */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar invisível em mobile nos carrosséis */
@media (max-width: 900px) {
  .carousel-track-outer::-webkit-scrollbar { display: none; }
  .carousel-track-outer { scrollbar-width: none; }
}

/* Touch feedback nos cards */
@media (hover: none) {
  .option-card:active { border-color: var(--gold); transform: scale(0.97); }
  .btn-gold:active { opacity: 0.85; transform: scale(0.98); }
  .btn-primary:active { opacity: 0.75; }
  .lp-gallery-item:hover img { transform: none; }
}
