:root {
  --bg: #080807;
  --bg-raised: #11110f;
  --bg-card: #161512;
  --line: rgba(214, 184, 122, 0.18);
  --gold: #d4b36a;
  --gold-bright: #f0d48a;
  --gold-deep: #8d7040;
  --cream: #f6edd8;
  --muted: #a39a88;
  --ink: #1a1814;
  --whatsapp: #25d366;
  --radius: 18px;
  --header: 76px;
  --offer: 42px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
}

::selection {
  background: rgba(212, 179, 106, 0.35);
  color: var(--cream);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 500;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3.1rem, 8vw, 6.4rem);
  margin: 0 0 22px;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin: 0 0 16px;
}

h2 em,
h1 em {
  font-style: italic;
  color: var(--gold-bright);
}

h3 {
  font-size: 1.45rem;
  margin: 0 0 8px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head--row {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.section-head__copy {
  color: var(--muted);
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: var(--ink);
}

.btn--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.btn--whatsapp {
  background: #128c7e;
  color: #fff;
}

.btn--sm {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.92rem;
}

.btn--full {
  width: 100%;
}

.offer-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: var(--offer);
  padding: 8px 18px;
  background: linear-gradient(90deg, #1c160c, #3a2c12 50%, #1c160c);
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
}

.offer-bar p {
  margin: 0;
}

.offer-bar__link {
  color: var(--gold-bright);
  border-bottom: 1px solid currentColor;
  font-weight: 500;
}

.header {
  position: sticky;
  top: var(--offer);
  z-index: 28;
  backdrop-filter: blur(18px);
  background: rgba(8, 8, 7, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(8, 8, 7, 0.92);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo__mark {
  width: 42px;
  height: 42px;
  color: var(--gold);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__text strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.logo__text em {
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
}

.nav a:not(.btn) {
  color: var(--muted);
}

.nav a:not(.btn):hover {
  color: var(--cream);
}

.header__tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
  cursor: pointer;
}

.cart-btn span,
[data-cart-count] {
  min-width: 1.4em;
  color: var(--gold-bright);
  font-weight: 600;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: var(--cream);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--offer) - var(--header));
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% 18%;
  filter: saturate(0.9) contrast(1.05);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.92) 0%, rgba(8, 8, 7, 0.55) 48%, rgba(8, 8, 7, 0.15) 100%),
    linear-gradient(180deg, rgba(8, 8, 7, 0.15), rgba(8, 8, 7, 0.82));
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 0 72px;
}

.hero__lead {
  max-width: 520px;
  color: #d9d0bc;
  font-size: 1.08rem;
  margin: 0 0 28px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero__pills li {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--gold-bright);
  background: rgba(212, 179, 106, 0.08);
}

.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-raised);
}

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

.trust__item {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
}

.trust__item:last-child {
  border-right: 0;
}

.trust__icon {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  letter-spacing: 0.16em;
  font-size: 0.75rem;
}

.trust__item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.collections,
.shop,
.results,
.about,
.lookbook,
.visit {
  padding: 100px 0;
}

.collection-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}

.collection-card {
  position: relative;
  height: 440px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.collection-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.collection-card__meta {
  position: absolute;
  inset: auto 0 0;
  padding: 28px 24px;
  background: linear-gradient(180deg, transparent, rgba(8, 8, 7, 0.92));
}

.collection-card__meta span {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.collection-card__meta p {
  margin: 0;
  color: var(--muted);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.filter.is-active,
.filter:hover {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

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

.product {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.product.is-hidden {
  display: none;
}

.product__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product__media--crop img {
  object-position: center 42%;
  transform: scale(1.35);
}

.product:hover .product__media--crop img {
  transform: scale(1.42);
}

.product:hover .product__media img {
  transform: scale(1.05);
}

.product__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(8, 8, 7, 0.72);
  border: 1px solid var(--line);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.product__body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.86rem;
}

.product__compare {
  color: var(--muted);
  text-decoration: line-through;
  margin-right: 8px;
  font-weight: 400;
}

.product .btn {
  margin-top: auto;
}

.about {
  background:
    radial-gradient(circle at 80% 20%, rgba(212, 179, 106, 0.08), transparent 32%),
    var(--bg);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.about__photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 55%;
  transform: scale(1.58);
}

.about__photo figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
}

.about__copy p {
  color: #d2c8b2;
}

.about__facts {
  padding: 0;
  margin: 24px 0 28px;
  list-style: none;
}

.about__facts li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

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

.results {
  background: var(--bg-raised);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.results__grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-card);
}

.results__grid img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center top;
}

.results__grid figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 0.88rem;
}

.lookbook__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.lookbook__grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.lookbook__grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lookbook__tall {
  grid-row: span 2;
}

.lookbook__grid figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
}

.visit {
  background: var(--bg-raised);
  border-top: 1px solid var(--line);
}

.visit__grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.visit__lead {
  color: var(--muted);
  max-width: 480px;
}

.visit__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
  margin: 32px 0 0;
}

.visit__details dt {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.visit__details dd {
  margin: 0;
  font-size: 1.05rem;
}

.visit__details a {
  color: var(--gold-bright);
}

.inquiry {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.inquiry h3 {
  font-size: 2rem;
}

.inquiry p {
  color: var(--muted);
  margin-top: 0;
}

.inquiry label {
  display: block;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.inquiry input,
.inquiry select,
.inquiry textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0d0c0a;
  color: var(--cream);
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
}

.inquiry textarea {
  resize: vertical;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 48px;
}

.footer__inner {
  display: grid;
  gap: 10px;
}

.footer p {
  margin: 0;
  color: var(--muted);
}

.footer__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.footer__contacts a {
  color: var(--gold-bright);
}

.footer__copy {
  font-size: 0.86rem;
}

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #08391c;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}

.wa-float svg {
  width: 30px;
  height: 30px;
}

@media (max-width: 980px) {
  .trust__grid,
  .collection-grid,
  .product-grid,
  .results__grid,
  .about__grid,
  .visit__grid,
  .lookbook__grid {
    grid-template-columns: 1fr 1fr;
  }

  .lookbook__tall {
    grid-row: span 1;
  }

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

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(var(--header) + 8px);
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    background: #12110e;
    border: 1px solid var(--line);
    border-radius: 16px;
  }

  .nav.is-open {
    display: flex;
  }

  .hero__content {
    padding: 56px 0 48px;
  }

  .trust__grid,
  .collection-grid,
  .product-grid,
  .results__grid,
  .about__grid,
  .visit__grid,
  .lookbook__grid,
  .visit__details {
    grid-template-columns: 1fr;
  }

  .collection-card {
    height: 340px;
  }

  .offer-bar {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  .collections,
  .shop,
  .results,
  .about,
  .lookbook,
  .visit {
    padding: 72px 0;
  }
}

.is-hidden {
  display: none !important;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 60;
  transform: translate(-50%, 16px);
  opacity: 0;
  pointer-events: none;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  transition: 0.25s ease;
}

.toast.is-on {
  opacity: 1;
  transform: translate(-50%, 0);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
}

.cart-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  width: min(400px, 100%);
  height: 100%;
  background: #12110e;
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.cart-drawer.is-open {
  transform: none;
}

.cart-drawer header,
.cart-drawer footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-drawer header button {
  border: 0;
  background: transparent;
  color: var(--cream);
  font-size: 1.6rem;
  cursor: pointer;
}

.cart-drawer h2 {
  margin: 0;
  font-size: 1.8rem;
}

#cartLines {
  flex: 1;
  overflow: auto;
  margin: 18px 0;
}

.cart-empty {
  color: var(--muted);
}

.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
}

.cart-line h3 {
  font-size: 1.05rem;
  margin: 0;
}

.cart-line p {
  margin: 4px 0 8px;
  color: var(--gold-bright);
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px 8px;
}

.qty button,
.cart-remove {
  border: 0;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
}

.cart-drawer footer {
  flex-direction: column;
  align-items: stretch;
}

.btn.is-disabled {
  pointer-events: none;
  opacity: 0.45;
}

.checkout {
  padding: 48px 0 100px;
}

.checkout h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
}

.checkout__lead,
.checkout-empty {
  color: var(--muted);
  max-width: 520px;
}

.checkout-lines {
  list-style: none;
  padding: 0;
  margin: 28px 0 12px;
}

.checkout-lines li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
}

.checkout-pay,
.checkout-status {
  color: var(--muted);
}

.checkout-done h2 {
  font-size: 2.6rem;
}
