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

:root {
  --dark:     #0a0a0a;
  --dark-2:   #141414;
  --dark-3:   #1c1c1c;
  --cream:    #f7f3ec;
  --cream-2:  #ede9e0;
  --gold:     #c9a55a;
  --gold-2:   #e8c97a;
  --forest:   #1a2e1c;
  --muted:    #888;
  --light:    #c8c4bc;
  --white:    #ffffff;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--dark);
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; image-orientation: from-image; }

/* ================================
   UTILITIES
================================ */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ================================
   BUTTONS
================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 999px;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-2); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 13px 28px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  transition: border-color 0.25s, background 0.25s;
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(201,165,90,0.1); }

.btn-light {
  display: inline-flex;
  align-items: center;
  background: var(--cream);
  color: var(--forest);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 999px;
  transition: background 0.25s, transform 0.2s;
}
.btn-light:hover { background: #fff; transform: translateY(-2px); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 999px;
  transition: background 0.25s, transform 0.2s;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  padding: 16px 32px;
  border: 1px solid rgba(247,243,236,0.28);
  border-radius: 999px;
  transition: border-color 0.25s, background 0.25s;
}
.btn-instagram:hover { border-color: var(--cream); background: rgba(247,243,236,0.08); }

/* ================================
   HEADER / NAV
================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  background: rgba(10,10,10,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.logo-link { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-img { height: 38px; width: auto; object-fit: contain; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--light);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--cream); }
.main-nav .nav-cta {
  background: var(--gold);
  color: var(--dark);
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 999px;
  transition: background 0.2s, transform 0.15s;
}
.main-nav .nav-cta:hover { background: var(--gold-2); color: var(--dark); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ================================
   HERO
================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0 40px 80px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(10,10,10,0.15) 0%,
    rgba(10,10,10,0.05) 35%,
    rgba(10,10,10,0.55) 65%,
    rgba(10,10,10,0.93) 100%
  );
}

.hero-deco-circle {
  position: absolute;
  top: 15%;
  right: 8%;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(201,165,90,0.2);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}
.hero-deco-circle::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(201,165,90,0.1);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(60px, 9.5vw, 130px);
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 16px;
  color: var(--light);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 380px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  right: 44px;
  z-index: 2;
  font-size: 22px;
  color: rgba(255,255,255,0.35);
  animation: bounce 2.4s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

/* ================================
   TICKER STRIP
================================ */
.ticker-strip {
  background: var(--gold);
  overflow: hidden;
  padding: 11px 0;
  white-space: nowrap;
  user-select: none;
}
.ticker-track {
  display: inline-flex;
  animation: ticker 24s linear infinite;
}
.ticker-track span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 0 20px;
}
.ticker-track .sep { padding: 0 4px; opacity: 0.5; }

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

/* ================================
   PRODUCT FEATURES
================================ */
.product-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.product-feature.sol { background: var(--dark); }
.product-feature.rx  { background: var(--dark-2); }

.product-feature__img-col {
  position: relative;
  overflow: hidden;
}
.product-feature__img-frame {
  position: relative;
  height: 100%;
  min-height: 520px;
}
.product-feature__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-feature__img-col:hover .product-feature__img-frame img {
  transform: scale(1.05);
}

.product-feature__num {
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  font-weight: 900;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  pointer-events: none;
}
.product-feature__num--right {
  left: auto;
  right: 24px;
}

.product-feature__text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 60px;
}

.product-feature__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(34px, 3.2vw, 50px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 20px;
}
.product-feature__title em {
  font-style: italic;
  color: var(--gold);
}

.product-feature__body {
  font-size: 16px;
  color: var(--light);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 360px;
}

/* ================================
   DIFERENCIAIS
================================ */
.diferenciais {
  background: var(--cream-2);
  padding: 96px 40px;
}

.diferenciais__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.diferenciais__headline-col .section-label { color: var(--gold); }

.diferenciais__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(52px, 6.5vw, 88px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 20px;
}
.diferenciais__headline em {
  font-style: italic;
  color: var(--gold);
}

.diferenciais__sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: #666;
}

.diferenciais__list-col { padding-top: 8px; }

.diferenciais__item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(10,10,10,0.1);
}
.diferenciais__item:first-child { border-top: 1px solid rgba(10,10,10,0.1); }

.diferenciais__n {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  flex-shrink: 0;
  padding-top: 4px;
  min-width: 28px;
}

.diferenciais__name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.diferenciais__desc {
  font-size: 15px;
  color: #555;
  line-height: 1.65;
}

/* ================================
   MANIFESTO
================================ */
.manifesto {
  background: var(--forest);
  padding: 104px 40px 120px;
  position: relative;
  overflow: hidden;
}

.manifesto__ghost {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(140px, 22vw, 300px);
  font-weight: 900;
  color: rgba(255,255,255,0.035);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.manifesto__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.manifesto__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,243,236,0.45);
  margin-bottom: 24px;
}

.manifesto__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(52px, 7.5vw, 100px);
  font-weight: 900;
  line-height: 0.97;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 32px;
}
.manifesto__title em {
  font-style: italic;
  color: var(--gold-2);
}

.manifesto__body {
  font-size: 17px;
  color: rgba(247,243,236,0.65);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 480px;
}

.manifesto__closing {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--gold-2);
  line-height: 1.45;
  margin-top: 36px;
  margin-bottom: 44px;
  max-width: 480px;
}

.manifesto__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}
.manifesto__wave svg {
  width: 100%;
  height: 64px;
  display: block;
}

/* ================================
   GALLERY
================================ */
.gallery-section {
  background: var(--dark-2);
  padding: 88px 40px;
}
.gallery-inner { max-width: 1200px; margin: 0 auto; }

.gallery-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 36px;
}

.gallery-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--white);
}

.gallery-ig-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.gallery-ig-link:hover { color: var(--gold-2); }

.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 560px;
}
.gallery-cell {
  overflow: hidden;
  border-radius: 10px;
}
.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-cell:hover img { transform: scale(1.06); }

.gc-main   { grid-column: 1; grid-row: 1 / 3; }
.gc-top    { grid-column: 2; grid-row: 1; }
.gc-bottom { grid-column: 2; grid-row: 2; }

/* ================================
   LOOKBOOK CAROUSEL
================================ */
.lookbook {
  background: var(--dark);
  padding: 88px 0;
}

.lookbook__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
}

.lookbook__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 36px;
}

.lookbook__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--white);
}

.lookbook__carousel {
  position: relative;
}

.lk-viewport {
  overflow: hidden;
}

.lk-track {
  display: flex;
  gap: 12px;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.lk-slide {
  flex: 0 0 calc((100% - 24px) / 3);
  height: 460px;
  background: var(--dark-3);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lk-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.lk-slide:hover img { transform: scale(1.04); }

.lk-slide img.is-rotated {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: none;
  object-fit: cover;
  transform: rotate(90deg);
}
.lk-slide:hover img.is-rotated { transform: rotate(90deg) scale(1.04); }

.lk-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.lk-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-50%) scale(1.1);
}
.lk-prev { left: -28px; }
.lk-next { right: -28px; }

/* ================================
   DEPOIMENTOS
================================ */
.depoimentos {
  background: var(--cream-2);
  padding: 96px 40px;
}

.dep__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.dep__header { margin-bottom: 52px; }

.dep__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--dark);
}
.dep__title em { font-style: italic; color: var(--gold); }

.dep__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

.dep__card {
  background: #fff;
  border-radius: 18px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.dep__card--featured {
  grid-row: 1 / 3;
  background: var(--dark);
  padding: 48px;
}

.dep__quote {
  font-family: 'Playfair Display', serif;
  font-size: 100px;
  line-height: 0.65;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.dep__text {
  font-size: 16px;
  line-height: 1.75;
  color: #444;
  flex: 1;
}
.dep__card--featured .dep__text {
  font-size: 18px;
  color: rgba(247,243,236,0.82);
}

.dep__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.dep__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dep__card--featured .dep__avatar { background: var(--gold-2); }

.dep__name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}
.dep__card--featured .dep__name { color: var(--cream); }

.dep__city {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.dep__card--featured .dep__city { color: rgba(247,243,236,0.4); }

/* ================================
   CONTACT / CTA
================================ */
.contact-section {
  background: var(--dark);
  padding: 112px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201,165,90,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 0 auto;
}

.contact-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.contact-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
}
.contact-title em {
  font-style: italic;
  color: var(--gold);
}

.contact-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 52px;
  line-height: 1.7;
}

.contact-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================
   FOOTER
================================ */
.site-footer {
  background: var(--dark-3);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 52px 40px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer-logo { height: 34px; width: auto; object-fit: contain; opacity: 0.85; }

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
}

.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream); }

.footer-copy {
  font-size: 12px;
  color: rgba(136,136,136,0.5);
  margin-top: 4px;
}

/* ================================
   RESPONSIVE — TABLET
================================ */
@media (max-width: 900px) {
  .product-feature__text-col { padding: 56px 40px; }
  .product-feature__num { font-size: 90px; }
}

/* ================================
   RESPONSIVE — MOBILE
================================ */
@media (max-width: 768px) {
  /* Header */
  .site-header { padding: 0 20px; height: 64px; }

  .main-nav {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 199;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: 16px 28px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .main-nav a:last-child { border-bottom: none; }
  .main-nav .nav-cta { border-radius: 0; background: var(--gold); text-align: center; }

  .menu-toggle { display: flex; }

  /* Hero */
  .hero { padding: 0 24px 72px; }
  .hero-deco-circle { display: none; }
  .hero-title { font-size: clamp(52px, 15vw, 84px); }
  .hero-sub { font-size: 15px; }
  .hero-scroll-hint { right: 24px; bottom: 28px; }

  /* Products */
  .product-feature {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .product-feature__img-frame { min-height: 300px; }
  .product-feature.rx .product-feature__img-col { order: -1; }
  .product-feature__text-col { padding: 44px 24px 52px; }
  .product-feature__body { max-width: 100%; }
  .product-feature__num { font-size: 80px; }

  /* Diferenciais */
  .diferenciais { padding: 72px 24px; }
  .diferenciais__inner { grid-template-columns: 1fr; gap: 40px; }
  .diferenciais__sub { font-size: 16px; }

  /* Manifesto */
  .manifesto { padding: 80px 24px 96px; }
  .manifesto__title { font-size: clamp(48px, 13vw, 80px); }
  .manifesto__ghost { font-size: clamp(100px, 32vw, 180px); right: -24px; }

  /* Gallery */
  .gallery-section { padding: 64px 20px; }
  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: 280px 200px 200px;
    height: auto;
  }
  .gc-main   { grid-column: 1; grid-row: 1; }
  .gc-top    { grid-column: 1; grid-row: 2; }
  .gc-bottom { grid-column: 1; grid-row: 3; }

  /* Lookbook */
  .lookbook { padding: 64px 0; }
  .lookbook__inner { padding: 0 36px; }
  .lk-slide {
    flex: 0 0 calc((100% - 10px) / 2);
    height: 360px;
  }
  .lk-prev { left: -18px; }
  .lk-next { right: -18px; }

  /* Depoimentos */
  .depoimentos { padding: 72px 24px; }
  .dep__grid { grid-template-columns: 1fr; }
  .dep__card--featured { grid-row: 1; padding: 36px; }
  .dep__quote { font-size: 72px; }
  .dep__card--featured .dep__text { font-size: 16px; }

  /* Contact */
  .contact-section { padding: 80px 24px; }
  .contact-links { flex-direction: column; align-items: stretch; }
  .contact-links a { justify-content: center; }

  /* Footer */
  .site-footer { padding: 44px 24px; }
}

@media (max-width: 500px) {
  .lookbook__inner { padding: 0 28px; }
  .lk-slide {
    flex: 0 0 100%;
    height: 380px;
  }
  .lk-arrow { width: 40px; height: 40px; }
  .lk-prev { left: -14px; }
  .lk-next { right: -14px; }
}

@media (max-width: 420px) {
  .hero-title { font-size: clamp(46px, 16.5vw, 72px); }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; gap: 10px; }
}
