/*
Theme Name: Veste
Description: Tema para marca de moda portuguesa — elegante, moderno, animado
Version: 1.0
Author: SiteJá
*/

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:  #0a0a0a;
  --cream:  #f5f0e8;
  --gold:   #c9a96e;
  --muted:  #888888;
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'DM Sans', system-ui, sans-serif;
  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--black);
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Navigation ───────────────────────────────────────────── */
.nav-burger { display: none; background: none; border: none; padding: 4px; }
#nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  padding: 2.5rem 5vw;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease),
              box-shadow 0.5s var(--ease);
}

#nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  padding: 1.2rem 5vw;
  box-shadow: 0 1px 0 rgba(201,169,110,0.15);
}

#nav.nav-dark {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3rem;
}

.nav-inner .nav-cta {
  margin-left: auto;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 300;
  letter-spacing: 0.5em;
  color: var(--cream);
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-links a {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.75);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

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

.nav-cta {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.7rem 1.8rem;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.nav-cta:hover { background: var(--cream); border-color: var(--cream); }

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  height: 100vh;
  min-height: 700px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--black);
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 7rem 5vw 5rem;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.4s forwards;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 8vw, 10rem);
  font-weight: 300;
  line-height: 0.88;
  color: var(--cream);
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
  animation: wordReveal 1.1s var(--ease) forwards;
}

.hero-title .line:nth-child(1) .word { animation-delay: 0.15s; }
.hero-title .line:nth-child(2) .word { animation-delay: 0.35s; }
.hero-title .line:nth-child(3) .word { animation-delay: 0.55s; }

.hero-sub {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.9;
  max-width: 300px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.8s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 1s forwards;
}

.hero-btn,
.hero-btn-ghost {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.hero-btn {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}

.hero-btn:hover {
  background: var(--cream);
  border-color: var(--cream);
}

.hero-btn-ghost {
  background: rgba(10,10,10,0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--cream);
  border: 1px solid rgba(245,240,232,0.4);
}

.hero-btn-ghost:hover {
  border-color: var(--cream);
}

/* Hero right — image placeholder */
.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-img-bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg, linear-gradient(150deg, #1c1308 0%, #3a2b10 40%, #1a1a10 100%));
  background-size: cover;
  background-position: center top;
  animation: imgReveal 1.4s var(--ease) 0.05s both;
}

/* Subtle texture overlay */
.hero-img-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(201,169,110,0.015) 2px,
      rgba(201,169,110,0.015) 4px
    );
}

/* Gradient bleed into left side */
.hero-img-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 25%);
}

.hero-img-label {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  font-family: var(--serif);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.4);
  writing-mode: vertical-rl;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.2s forwards;
}

/* ─── Section Utilities ─────────────────────────────────────── */
.section-label {
  font-size: 0.62rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
}

/* ─── Collections ───────────────────────────────────────────── */
.collections {
  padding: 9rem 5vw;
}

.collections-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4.5rem;
}

.see-all {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 3rem;
  color: var(--black);
  transition: color 0.3s;
}

.see-all span { transition: transform 0.3s var(--ease); }
.see-all:hover { color: var(--gold); }
.see-all:hover span { transform: translateX(6px); }

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

.col-card {
  position: relative;
  cursor: pointer;
}

.col-img {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}

.col-ph {
  width: 100%; height: 100%;
  transition: transform 0.9s var(--ease);
}

.col-card:hover .col-ph { transform: scale(1.06); }

.col-ph-1 { background: linear-gradient(155deg, #1f1507 0%, #4a3418 55%, #2d200e 100%); }
.col-ph-2 { background: linear-gradient(155deg, #0f1520 0%, #1e2d45 55%, #0f1828 100%); }
.col-ph-3 { background: linear-gradient(155deg, #0e1810 0%, #1c3020 55%, #0e1810 100%); }

.col-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.72);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}

.col-card:hover .col-overlay { opacity: 1; }

.col-overlay-link {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transform: translateY(18px);
  transition: transform 0.45s var(--ease) 0.08s;
}

.col-card:hover .col-overlay-link { transform: translateY(0); }

.col-info {
  padding: 1.4rem 0 0;
}

.col-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 0.25rem;
}

.col-season {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── Editorial Banner ──────────────────────────────────────── */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 75vh;
  background: var(--black);
}

.editorial-visual {
  position: relative;
  overflow: hidden;
  background-image: var(--ed-bg, linear-gradient(135deg, #1a0e04 0%, #3d2510 45%, #1a0e04 100%));
  background-size: cover;
  background-position: center center;
}

.editorial-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 60% 40%, rgba(201,169,110,0.08) 0%, transparent 60%);
}

.editorial-visual-label {
  position: absolute;
  bottom: 3rem; left: 3rem;
  font-family: var(--serif);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.35);
}

.editorial-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5vw 6rem 4rem;
}

.editorial-content .section-label { margin-bottom: 2rem; }

.editorial-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 2rem;
}

.editorial-body {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(245,240,232,0.5);
  line-height: 2;
  max-width: 380px;
  margin-bottom: 3rem;
}

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  border-bottom: 1px solid rgba(201,169,110,0.5);
  padding-bottom: 0.5rem;
  width: fit-content;
  transition: color 0.3s, border-color 0.3s;
}

.btn-line:hover { color: var(--gold); border-color: var(--gold); }

/* ─── About ─────────────────────────────────────────────────── */
.about {
  padding: 10rem 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img {
  aspect-ratio: 4/5;
  background: linear-gradient(155deg, #c8b89a 0%, #a08060 100%);
  position: relative;
  z-index: 1;
}

/* Decorative offset block */
.about-visual::after {
  content: '';
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  width: 55%;
  height: 60%;
  background: var(--black);
  z-index: 0;
  pointer-events: none;
}

.about-bg-num {
  position: absolute;
  top: -1rem; left: -2rem;
  font-family: var(--serif);
  font-size: 14rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(10,10,10,0.05);
  pointer-events: none;
  z-index: 0;
}

.about-text-col .section-label { margin-bottom: 1.5rem; }

.about-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.about-body {
  font-size: 0.88rem;
  font-weight: 300;
  color: #666;
  line-height: 2;
  margin-bottom: 1.2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(10,10,10,0.1);
}

.stat-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-lbl {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── Lookbook ──────────────────────────────────────────────── */
.lookbook {
  padding: 8rem 5vw;
  background: var(--black);
}

.lookbook .section-label { color: var(--gold); margin-bottom: 0.8rem; }
.lookbook .section-title { color: var(--cream); margin-bottom: 4rem; }

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 280px;
  gap: 0.8rem;
}

.lb-item {
  position: relative;
  overflow: hidden;
}

.lb-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.lb-item:nth-child(2) { grid-column: span 4; }
.lb-item:nth-child(3) { grid-column: span 3; }
.lb-item:nth-child(4) { grid-column: span 3; }
.lb-item:nth-child(5) { grid-column: span 4; }

.lb-ph {
  width: 100%; height: 100%;
  transition: transform 0.9s var(--ease);
}

.lb-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease);
}

.lb-item:hover .lb-ph,
.lb-item:hover img { transform: scale(1.08); }

.lb-ph-1 { background: linear-gradient(155deg, #1a0e04 0%, #3d2510 100%); }
.lb-ph-2 { background: linear-gradient(155deg, #0c1520 0%, #1a2d45 100%); }
.lb-ph-3 { background: linear-gradient(155deg, #0e1710 0%, #1c2d1e 100%); }
.lb-ph-4 { background: linear-gradient(155deg, #1c1c1c 0%, #2e2e2e 100%); }
.lb-ph-5 { background: linear-gradient(155deg, #1a0e04 0%, #2d1a08 100%); }

.lb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.lb-item:hover .lb-overlay { opacity: 1; }

.lb-circle {
  width: 48px; height: 48px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  transform: scale(0.4) rotate(45deg);
  transition: transform 0.45s var(--ease) 0.05s;
}

.lb-item:hover .lb-circle { transform: scale(1) rotate(0deg); }

/* ─── Contact ───────────────────────────────────────────────── */
.contact {
  padding: 9rem 5vw;
  background: var(--black);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: start;
}

.contact-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin: 1rem 0 1.5rem;
}

.contact-intro {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(245,240,232,0.45);
  line-height: 2;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-details li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-detail-label {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-details a {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(245,240,232,0.6);
  transition: color 0.3s;
}

.contact-details a:hover { color: var(--cream); }

/* FluentForms override — match veste aesthetic */
.contact-form-wrap .ff-el-input--label label {
  font-size: 0.65rem !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: rgba(245,240,232,0.45) !important;
  font-family: var(--sans) !important;
  font-weight: 400 !important;
}

.contact-form-wrap .ff-el-form-control {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(245,240,232,0.15) !important;
  border-radius: 0 !important;
  color: var(--cream) !important;
  font-family: var(--sans) !important;
  font-size: 0.88rem !important;
  font-weight: 300 !important;
  padding: 0.8rem 0 !important;
  transition: border-color 0.3s !important;
}

.contact-form-wrap .ff-el-form-control:focus {
  border-bottom-color: var(--gold) !important;
  outline: none !important;
  box-shadow: none !important;
}

.contact-form-wrap .ff-el-form-control::placeholder {
  color: rgba(245,240,232,0.2) !important;
}

.contact-form-wrap .ff-btn-submit {
  background: transparent !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  font-family: var(--sans) !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  padding: 0.9rem 2.5rem !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  transition: background 0.3s, color 0.3s !important;
  margin-top: 1rem;
}

.contact-form-wrap .ff-message-success {
  color: var(--gold) !important;
  font-size: 0.82rem !important;
  padding: 1rem 0 !important;
  background: transparent !important;
  border: none !important;
}

.contact-form-wrap .ff-btn-submit:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}

/* ─── Newsletter ────────────────────────────────────────────── */
.newsletter {
  padding: 9rem 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-bg-text {
  position: absolute;
  font-family: var(--serif);
  font-size: 22vw;
  font-weight: 300;
  color: rgba(10,10,10,0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 0.1em;
}

.newsletter .section-label { display: block; margin-bottom: 1.2rem; }

.newsletter-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

.newsletter-sub {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 3rem;
}

.nl-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(10,10,10,0.3);
  position: relative;
  z-index: 1;
}

.nl-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  padding: 1rem 0;
  letter-spacing: 0.04em;
  color: var(--black);
}

.nl-form input::placeholder { color: rgba(10,10,10,0.35); }

.nl-form button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  padding: 1rem 0 1rem 2rem;
  transition: color 0.3s;
  white-space: nowrap;
}

.nl-form button:hover { color: var(--gold); }

.nl-success {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-top: 1rem;
  display: none;
  text-align: center;
}

/* ─── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 4rem;
  padding: 5rem 5vw;
}

.footer-brand-logo {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.5em;
  color: var(--cream);
  display: block;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(245,240,232,0.35);
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
  font-style: italic;
  font-family: var(--serif);
}

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

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,240,232,0.35);
  transition: color 0.3s;
}

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

.footer-col-title {
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(245,240,232,0.45);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(245,240,232,0.07);
  padding: 1.8rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.68rem;
  color: rgba(245,240,232,0.25);
  letter-spacing: 0.08em;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.25);
  transition: color 0.3s;
}

.footer-bottom-links a:hover { color: rgba(245,240,232,0.6); }

/* ─── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.22s; }
.reveal-d3 { transition-delay: 0.34s; }

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

@keyframes wordReveal {
  from { opacity: 0; transform: translateY(110%); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes imgReveal {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0% 0 0); }
}

@keyframes tickPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50%       { opacity: 0.3; transform: scaleY(0.5); transform-origin: bottom; }
}

@media (max-width: 1050px) {
  .nav-inner .nav-cta {
    flex: 0 0 auto;
    margin-right: 0;
    margin-left: auto;
    text-align: unset;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 900px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {

  /* Nav */
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  #nav { padding: 1.8rem 5vw; }

  /* Hamburger */
  .nav-burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
  }
  .nav-burger span {
    display: block;
    width: 26px;
    height: 1px;
    background: var(--cream);
    transition: transform 0.4s var(--ease), opacity 0.3s;
  }
  .nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* Mobile menu drawer */
  .nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 190;
    padding: 8rem 5vw 4rem;
    transform: translateX(100%);
    transition: transform 0.55s var(--ease);
  }
  .nav-mobile.open { transform: translateX(0); }
  .nav-mobile a {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 300;
    color: var(--cream);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(245,240,232,0.07);
    transition: color 0.3s;
  }
  .nav-mobile a:hover { color: var(--gold); }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100svh;
    position: relative;
  }
  .hero-right { display: none; }
  .hero-left  {
    padding: 9rem 5vw 5rem;
    background-image: var(--hero-bg, none);
    background-size: cover;
    background-position: center top;
    position: relative;
  }
  /* Dark gradient overlay for text readability on mobile */
  .hero-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.5) 100%);
    z-index: 0;
    pointer-events: none;
  }
  .hero-left > * { position: relative; z-index: 1; }

  /* Disable fixed parallax on mobile — janky on iOS */
  /* editorial parallax disabled on mobile via JS responsive check */

  /* Collections */
  .collections-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* Editorial */
  .editorial { grid-template-columns: 1fr; }
  .editorial-visual { min-height: 45vw; }

  /* About */
  .about { grid-template-columns: 1fr; padding: 6rem 5vw; gap: 3rem; }
  .about-visual::after { display: none; }
  .about-bg-num { display: none; }

  /* Lookbook */
  .lookbook-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .lb-item:nth-child(1),
  .lb-item:nth-child(2),
  .lb-item:nth-child(3),
  .lb-item:nth-child(4),
  .lb-item:nth-child(5) {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 3/4;
  }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 580px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 580px) {

  .hero-btn-ghost { border-color: rgba(245,240,232,0.6); }

  .nl-form button { cursor: pointer; }

  /* Collections → single column */
  .collections-grid { grid-template-columns: 1fr; }
  .collections { padding: 5rem 5vw; }

  /* Lookbook → single column */
  .lookbook-grid { grid-template-columns: 1fr; }
  .lb-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 4/3;
  }

  /* About stats → single row scroll */
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
  .stat-num { font-size: 2rem; }

  /* Footer → single column */
  .footer-top { grid-template-columns: 1fr; gap: 2rem; padding: 3.5rem 5vw; }

  /* Editorial */
  .editorial-content { padding: 4rem 5vw; }

  /* Newsletter */
  .newsletter { padding: 5rem 5vw; }
  .nl-form { flex-direction: column; border-bottom: none; gap: 0; }
  .nl-form input {
    border-bottom: 1px solid rgba(10,10,10,0.3);
    padding: 0.9rem 0;
  }
  .nl-form button {
    padding: 1rem 0;
    text-align: left;
    border-top: 1px solid rgba(10,10,10,0.15);
  }

  /* Contact */
  .contact { padding: 5rem 5vw; }
}

/* ═══════════════════════════════════════════════════════════════
   LOJA — Store page
═══════════════════════════════════════════════════════════════ */

/* Hero */
.loja-hero {
  min-height: 42vh;
  background: var(--black);
  display: flex;
  align-items: flex-end;
  padding: 8rem 5vw 4rem;
}
.loja-hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  margin: 0.8rem 0 1.2rem;
}
.loja-hero-sub {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(245,240,232,0.45);
  line-height: 1.9;
  max-width: 380px;
}

/* Demo notice */
.loja-demo-notice {
  background: rgba(201,169,110,0.1);
  border-bottom: 1px solid rgba(201,169,110,0.2);
  padding: 0.75rem 5vw;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--gold);
}

/* Filters */
.loja-filters {
  display: flex;
  gap: 0.5rem;
  padding: 2.5rem 5vw 0;
  flex-wrap: wrap;
}
.filter-btn {
  background: none;
  border: 1px solid rgba(10,10,10,0.15);
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.55rem 1.3rem;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  color: var(--black);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
}

/* Product grid */
.loja-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 3rem 5vw 7rem;
}
.product-card { cursor: pointer; }
.product-img-wrap {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.product-img-wrap img {
  transition: transform 0.9s var(--ease);
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.product-card:hover .product-card-overlay { opacity: 1; }
.btn-view {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.75rem 1.8rem;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.btn-view:hover { background: var(--gold); color: var(--black); }
.product-card-info { padding: 1.2rem 0 0; }
.product-card-collection {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.3rem;
}
.product-card-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 0.3rem;
}
.product-card-price {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Cart FAB */
.cart-fab {
  position: fixed;
  bottom: calc(2.5rem + 52px + 0.75rem);
  right: 2.5rem;
  height: 48px;
  padding: 0 1.4rem 0 1.1rem;
  background: var(--black);
  color: var(--cream);
  border: none;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  z-index: 350;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.3s var(--ease), background 0.3s;
}
.cart-fab-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.cart-fab:hover { background: #1a1a1a; transform: scale(1.08); }
.cart-fab.bump { animation: cartBump 0.35s var(--ease); }
@keyframes cartBump {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.25); }
  100% { transform: scale(1); }
}
.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 500;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}

/* Modal overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.7);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

/* Product modal */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.product-modal.open { opacity: 1; transform: translateY(0); pointer-events: all; }
.product-modal-inner {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
  width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: var(--muted);
  z-index: 10;
  transition: color 0.3s;
}
.modal-close:hover { color: var(--black); }
.product-modal-img-wrap { aspect-ratio: 3/4; overflow: hidden; }
.product-modal-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.product-modal-info {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product-modal-collection {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}
.product-modal-name {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.15;
}
.product-modal-price {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--black);
}
.product-modal-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: #666;
  line-height: 1.9;
}
.size-label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.size-grid { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.size-btn {
  background: none;
  border: 1px solid rgba(10,10,10,0.2);
  padding: 0.5rem 0.9rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}
.size-btn:hover { border-color: var(--black); }
.size-btn.active { background: var(--black); color: var(--cream); border-color: var(--black); }
.btn-add-cart {
  background: var(--black);
  color: var(--cream);
  border: none;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: auto;
}
.btn-add-cart:disabled { background: rgba(10,10,10,0.25); cursor: not-allowed; }
.btn-add-cart:not(:disabled):hover { background: #1a1a1a; }
.product-modal-note {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Cart drawer */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.5);
  z-index: 450;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  background: var(--cream);
  z-index: 500;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  border-bottom: 1px solid rgba(10,10,10,0.1);
}
.cart-drawer-header h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
}
.cart-drawer-close {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: var(--muted);
  transition: color 0.3s;
}
.cart-drawer-close:hover { color: var(--black); }
.cart-items { flex: 1; overflow-y: auto; padding: 1.5rem 2rem; }
.cart-empty { padding: 3rem 2rem; color: var(--muted); font-size: 0.85rem; }
.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto auto;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(10,10,10,0.08);
}
.cart-item-img { width: 70px; aspect-ratio: 3/4; object-fit: cover; }
.cart-item-name { font-size: 0.85rem; font-weight: 400; margin-bottom: 0.2rem; }
.cart-item-meta { font-size: 0.72rem; color: var(--muted); }
.cart-item-price { font-size: 0.85rem; margin-top: 0.3rem; }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}
.cart-item-qty button {
  background: none;
  border: 1px solid rgba(10,10,10,0.2);
  width: 24px;
  height: 24px;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.cart-item-qty button:hover { background: rgba(10,10,10,0.07); }
.cart-item-remove {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.75rem;
  transition: color 0.3s;
}
.cart-item-remove:hover { color: var(--black); }
.cart-footer { padding: 1.5rem 2rem 2rem; border-top: 1px solid rgba(10,10,10,0.1); }
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.cart-shipping-note { font-size: 0.72rem; color: var(--muted); margin-bottom: 1.5rem; }
.btn-checkout {
  width: 100%;
  background: var(--black);
  color: var(--cream);
  border: none;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-checkout:hover { background: #1a1a1a; }

/* Checkout modal */
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(10,10,10,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.checkout-modal.open { opacity: 1; pointer-events: all; }
.checkout-inner {
  background: var(--cream);
  width: min(640px, 92vw);
  max-height: 90vh;
  overflow-y: auto;
  padding: 3rem;
  position: relative;
}
.checkout-steps {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}
.checkout-step {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.3);
  transition: color 0.3s;
}
.checkout-step.active { color: var(--black); }
.checkout-divider { color: rgba(10,10,10,0.2); font-size: 0.7rem; }
.checkout-pane h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
.checkout-pane.hidden { display: none; }
.checkout-form { display: flex; flex-direction: column; gap: 1.2rem; }
.cf-row { display: grid; gap: 1rem; }
.cf-row-2 { grid-template-columns: 1fr 1fr; }
.cf-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.cf-field { display: flex; flex-direction: column; gap: 0.4rem; }
.cf-field label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.cf-field input {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(10,10,10,0.2);
  padding: 0.7rem 0;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
}
.cf-field input:focus { border-bottom-color: var(--black); }
.payment-methods {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.payment-method-btn {
  background: none;
  border: 1px solid rgba(10,10,10,0.2);
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.3rem;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  color: var(--black);
}
.payment-method-btn:hover { border-color: var(--black); }
.payment-method-btn.active {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
}
.payment-fields { margin-top: 1rem; }
.payment-fields.hidden { display: none; }
.btn-checkout-next {
  background: var(--black);
  color: var(--cream);
  border: none;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1.1rem 2rem;
  cursor: pointer;
  margin-top: 0.5rem;
  width: 100%;
  transition: background 0.3s;
}
.btn-checkout-next:hover { background: #1a1a1a; }
.checkout-confirm {
  text-align: center;
  padding: 2rem 0;
}
.confirm-icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.checkout-confirm h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.confirm-ref { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.5rem; }
.confirm-msg {
  font-size: 0.85rem;
  font-weight: 300;
  color: #666;
  line-height: 1.9;
  max-width: 360px;
  margin: 0 auto 2rem;
}

/* Loja mobile */
@media (max-width: 900px) {
  .loja-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .product-modal-inner { grid-template-columns: 1fr; }
  .product-modal-img-wrap { aspect-ratio: 16/9; }
}
@media (max-width: 580px) {
  .loja-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; padding: 2rem 4vw 5rem; }
  .checkout-inner { padding: 2rem 1.5rem; }
  .cf-row-2, .cf-row-3 { grid-template-columns: 1fr; }
  .cart-fab { bottom: calc(1.5rem + 46px + 0.75rem); right: 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════════
   DEMO BANNER
═══════════════════════════════════════════════════════════════ */
.demo-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 1px solid rgba(201,169,110,0.2);
  padding: 0.55rem 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.5);
  text-align: center;
}

/* Push nav down below demo banner */
#nav { top: 32px; }

/* ═══════════════════════════════════════════════════════════════
   PAGE LOADER
═══════════════════════════════════════════════════════════════ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.page-loader.done {
  opacity: 0;
  visibility: hidden;
}
.loader-logo {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  letter-spacing: 0.5em;
  color: var(--cream);
  animation: loaderPulse 1.2s var(--ease) infinite alternate;
}
@keyframes loaderPulse {
  from { opacity: 0.3; letter-spacing: 0.5em; }
  to   { opacity: 1;   letter-spacing: 0.65em; }
}

/* ═══════════════════════════════════════════════════════════════
   WHATSAPP BUTTON
═══════════════════════════════════════════════════════════════ */
.whatsapp-btn {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

/* ═══════════════════════════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--black);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 800;
  transition: transform 0.5s var(--ease);
  max-width: 560px;
  width: 90vw;
}
.cookie-banner.visible { transform: translateX(-50%) translateY(0); }
.cookie-banner p {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.55);
  line-height: 1.6;
  flex: 1;
}
.cookie-banner a { color: var(--gold); }
.cookie-banner button {
  background: var(--gold);
  border: none;
  color: var(--black);
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s;
  flex-shrink: 0;
}
.cookie-banner button:hover { background: var(--cream); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER — SiteJá badge + nav Loja highlight
═══════════════════════════════════════════════════════════════ */
.footer-siteja {
  font-size: 0.65rem;
  color: rgba(245,240,232,0.35);
  letter-spacing: 0.08em;
}
.footer-siteja a { color: var(--gold); transition: opacity 0.3s; }
.footer-siteja a:hover { opacity: 0.7; }

.nav-links .nav-loja {
  color: var(--gold) !important;
}
.nav-links .nav-loja::after { background: var(--gold); }
.nav-mobile .nav-loja { color: var(--gold) !important; }

/* Mobile adjustments for new elements */
@media (max-width: 580px) {
  .whatsapp-btn { bottom: 1.5rem; right: 1.5rem; width: 46px; height: 46px; }
  .cookie-banner { flex-direction: column; gap: 1rem; padding: 1.2rem 1.5rem; top: auto; bottom: 3.5rem; transform: translateX(-50%) translateY(220px); }
  .cookie-banner.visible { transform: translateX(-50%) translateY(0); }
  .demo-banner { font-size: 0.58rem; padding: 0.5rem 4vw; }
  .cart-fab { bottom: calc(1.5rem + 46px + 0.75rem); right: 1.5rem; }
  .cart-fab .cart-fab-label { display: none; }
  .cart-fab { padding: 0; width: 48px; height: 48px; border-radius: 50%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   SOBRE — About page
═══════════════════════════════════════════════════════════════ */

/* ── Hero ──────────────────────────────────────────────────── */
.sobre-hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: flex-end;
  padding: 14rem 5vw 7rem;
  position: relative;
  overflow: hidden;
}

.sobre-hero-inner { position: relative; z-index: 2; }

.sobre-hero-label {
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.3s forwards;
  margin-bottom: 2.5rem;
}

.sobre-hero-title {
  font-family: var(--serif);
  font-size: clamp(5rem, 10vw, 12rem);
  font-weight: 300;
  line-height: 0.92;
  color: var(--cream);
  margin-bottom: 4rem;
}

.sobre-hero-line {
  display: block;
  overflow: hidden;
  opacity: 0;
  transform: translateY(110%);
  animation: wordReveal 1.1s var(--ease) forwards;
}
.sobre-hero-line:nth-child(1) { animation-delay: 0.2s; }
.sobre-hero-line:nth-child(2) { animation-delay: 0.4s; font-style: italic; }
.sobre-hero-line:nth-child(3) { animation-delay: 0.6s; }

.sobre-hero-foot {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 1s forwards;
}

.sobre-hero-origin,
.sobre-hero-year {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
}

.sobre-hero-dash {
  width: 40px;
  height: 1px;
  background: rgba(201,169,110,0.4);
}

.sobre-hero-deco {
  position: absolute;
  right: -2vw;
  bottom: -3rem;
  font-family: var(--serif);
  font-size: clamp(12rem, 22vw, 28rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

/* ── História ──────────────────────────────────────────────── */
.sobre-historia {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  padding: 11rem 5vw;
  align-items: start;
}

.sobre-historia-pull {
  position: sticky;
  top: 12rem;
}

.sobre-pull-mark {
  font-family: var(--serif);
  font-size: clamp(6rem, 12vw, 14rem);
  font-weight: 300;
  color: rgba(201,169,110,0.12);
  line-height: 0.6;
  display: block;
  margin-bottom: 1.5rem;
}

.sobre-pull-text {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: var(--black);
}

.sobre-historia-content { padding-top: 1rem; }
.sobre-historia-content .section-label { margin-bottom: 2rem; }

.sobre-body {
  font-size: 0.9rem;
  font-weight: 300;
  color: #666;
  line-height: 2.1;
  margin-bottom: 1.4rem;
}

/* ── Manifesto ─────────────────────────────────────────────── */
.sobre-manifesto {
  background: var(--black);
  padding: 11rem 5vw;
  text-align: center;
}

.sobre-manifesto-label {
  display: block;
  margin-bottom: 3rem;
  justify-content: center;
}

.sobre-manifesto-quote {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.45;
  max-width: 820px;
  margin: 0 auto 3.5rem;
}

.sobre-manifesto-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
  opacity: 0.5;
}

/* ── Pilares ───────────────────────────────────────────────── */
.sobre-pilares {
  padding: 11rem 5vw;
}

.sobre-pilares-header { margin-bottom: 6rem; }
.sobre-pilares-title  { margin-top: 0.6rem; }

.sobre-pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.pilar {
  padding: 3.5rem 3.5rem 3.5rem 0;
  border-top: 1px solid rgba(10,10,10,0.12);
}

.pilar + .pilar {
  padding-left: 3.5rem;
  border-left: 1px solid rgba(10,10,10,0.12);
}

.pilar-num {
  font-family: var(--serif);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  display: block;
  margin-bottom: 1.8rem;
}

.pilar-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  font-weight: 300;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.pilar-body {
  font-size: 0.85rem;
  font-weight: 300;
  color: #777;
  line-height: 2;
}

/* ── Números ───────────────────────────────────────────────── */
.sobre-nums {
  background: var(--black);
  padding: 9rem 5vw;
}

.sobre-nums-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.sobre-num-item {
  padding: 0 3rem;
  border-left: 1px solid rgba(245,240,232,0.07);
}

.sobre-num-item:first-child { padding-left: 0; border-left: none; }

.sobre-num-val {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 7rem);
  font-weight: 300;
  color: var(--cream);
  display: block;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.sobre-num-lbl {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
}

/* ── Atelier ───────────────────────────────────────────────── */
.sobre-atelier {
  padding: 11rem 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
}

.sobre-atelier-visual { position: relative; }

.sobre-atelier-img {
  aspect-ratio: 4/5;
  background: linear-gradient(155deg, #1a1008 0%, #3a2910 50%, #1a1a12 100%);
  position: relative;
  z-index: 1;
}

.sobre-atelier-visual::after {
  content: '';
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  width: 55%;
  height: 60%;
  background: rgba(10,10,10,0.06);
  z-index: 0;
}

.sobre-atelier-caption {
  position: absolute;
  bottom: -1.8rem;
  left: 0;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.sobre-atelier-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  margin: 1.5rem 0 2.5rem;
}

.sobre-atelier-cta { margin-top: 2.5rem; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .sobre-hero { padding: 12rem 5vw 6rem; min-height: auto; }
  .sobre-historia { grid-template-columns: 1fr; gap: 4rem; padding: 7rem 5vw; }
  .sobre-historia-pull { position: static; }
  .sobre-pilares-grid { grid-template-columns: 1fr; }
  .pilar + .pilar { padding-left: 0; border-left: none; }
  .pilar { padding: 2.5rem 0; }
  .sobre-nums-grid { grid-template-columns: 1fr 1fr; gap: 3rem 2rem; }
  .sobre-num-item { padding: 0; border-left: none; }
  .sobre-atelier { grid-template-columns: 1fr; gap: 4rem; padding: 7rem 5vw; }
  .sobre-atelier-visual::after { display: none; }
  .sobre-manifesto { padding: 7rem 5vw; }
  .sobre-pilares { padding: 7rem 5vw; }
}

@media (max-width: 580px) {
  .sobre-hero-title { font-size: clamp(3.5rem, 14vw, 6rem); }
  .sobre-nums-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; }
  .sobre-manifesto-quote { font-size: clamp(1.4rem, 5.5vw, 2rem); }
  .sobre-atelier-visual::after { display: none; }
}
