:root {
  --ink: #19130f;
  --muted: #766a61;
  --paper: #f5efe7;
  --white: #fffaf4;
  --line: rgba(25, 19, 15, 0.13);
  --wine: #6e2037;
  --rose: #d88c88;
  --gold: #c99a4b;
  --charcoal: #241c18;
  --shadow: 0 28px 80px rgba(36, 28, 24, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(25, 19, 15, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #fffaf4, var(--paper) 48%, #fffaf4);
  background-size: 84px 84px, auto;
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.86);
  box-shadow: 0 18px 46px rgba(25, 19, 15, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 0;
}

.brand strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1;
}

.brand span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: #5c514a;
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-cta,
.primary,
.secondary,
.product-grid a,
.float-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 900;
}

.nav-cta,
.primary {
  padding: 0 18px;
  color: var(--white);
  background: var(--wine);
  box-shadow: 0 16px 36px rgba(110, 32, 55, 0.18);
}

.secondary {
  padding: 0 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 3rem;
  width: min(1180px, calc(100% - 32px));
  margin: 68px auto 30px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.4vw, 5.6rem);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-showcase {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.main-look {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.drop-card {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: var(--white);
  background: rgba(25, 19, 15, 0.72);
  backdrop-filter: blur(18px);
}

.drop-card span {
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
}

.drop-card strong {
  display: block;
  margin-top: 4px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.05;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.78);
}

.ticker span {
  padding: 16px 12px;
  border-right: 1px solid var(--line);
  text-align: center;
  font-weight: 900;
}

.ticker span:last-child {
  border-right: 0;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 96px auto;
}

.section-head {
  max-width: 820px;
  margin-bottom: 28px;
}

.section h2,
.lookbook h2,
.campaign h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4.5vw, 4.2rem);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.82);
}

.product-grid img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.product-grid div {
  padding: 20px;
}

.product-grid span,
.product-grid strong {
  display: block;
}

.product-grid span {
  color: var(--muted);
  font-weight: 850;
}

.product-grid strong {
  margin: 6px 0 16px;
  font-size: 1.45rem;
}

.product-grid a {
  min-height: 40px;
  padding: 0 14px;
  color: var(--white);
  background: var(--wine);
}

.lookbook {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(25, 19, 15, 0.92), rgba(110, 32, 55, 0.86)),
    url("https://images.unsplash.com/photo-1503342217505-b0a15ec3261c?auto=format&fit=crop&w=1400&q=82") center/cover;
  background-blend-mode: multiply;
}

.lookbook .eyebrow {
  color: var(--gold);
}

.lookbook p {
  color: rgba(255, 255, 255, 0.72);
}

.lookbook-board {
  display: grid;
  gap: 12px;
}

.look-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.look-card.active {
  background: rgba(201, 154, 75, 0.18);
}

.look-card span {
  color: var(--gold);
  font-weight: 950;
}

.look-card strong {
  display: block;
  margin: 6px 0;
  font-size: 1.1rem;
}

.campaign {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #fffaf4, #f0dfd4);
}

.campaign p,
.selling-points p,
.final-cta p {
  color: var(--muted);
}

.selling-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.selling-points article {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.82);
}

.selling-points span {
  color: var(--gold);
  font-weight: 950;
}

.selling-points h3 {
  margin-top: 54px;
  font-size: 1.35rem;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(25, 19, 15, 0.94), rgba(25, 19, 15, 0.72)),
    url("https://images.unsplash.com/photo-1490481651871-ab68de25d43d?auto=format&fit=crop&w=1400&q=82") center/cover;
  background-blend-mode: multiply;
}

.final-cta .eyebrow {
  color: var(--gold);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.final-cta .primary {
  color: var(--ink);
  background: var(--gold);
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer strong {
  color: var(--wine);
}

.float-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  min-height: 48px;
  padding: 0 20px;
  color: var(--white);
  background: var(--wine);
  box-shadow: 0 16px 44px rgba(36, 28, 24, 0.22);
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: auto auto;
  }

  nav {
    display: none;
  }

  .hero,
  .lookbook,
  .campaign,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .selling-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ticker {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .topbar,
  .hero,
  .section,
  .ticker,
  footer {
    width: min(100% - 22px, 1180px);
  }

  .header-cta {
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero {
    margin-top: 36px;
    gap: 1.4rem;
  }

  h1 {
    font-size: clamp(2.45rem, 11vw, 3.75rem);
  }

  .hero-showcase,
  .main-look {
    min-height: 410px;
  }

  .product-grid,
  .selling-points,
  .ticker {
    grid-template-columns: 1fr;
  }

  .ticker span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .lookbook,
  .campaign,
  .final-cta {
    padding: 20px;
  }

  .product-grid img {
    height: 340px;
  }
}
