﻿@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Outfit:wght@300;400;500;700&display=swap");

:root {
  --black: #050505;
  --panel: #101010;
  --panel-soft: #151515;
  --white: #f7f2e8;
  --muted: rgba(247, 242, 232, 0.62);
  --faint: rgba(247, 242, 232, 0.38);
  --gold: #c9a84c;
  --gold-soft: rgba(201, 168, 76, 0.46);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site {
  min-height: 100vh;
  background: var(--black);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 1.6rem 3.8rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0));
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.topbar.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-14px);
}

.brand {
  display: none;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2vw, 2.3rem);
  letter-spacing: 0.34em;
  color: var(--gold);
  white-space: nowrap;
}


.brand-logo {
  display: block;
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 1px solid rgba(201, 168, 76, 0.48);
  background: rgba(5, 5, 5, 0.72);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.menu-lines {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.menu-lines i {
  display: block;
  width: 16px;
  height: 1px;
  background: var(--gold);
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.4rem, 3vw, 3.6rem);
  width: 100%;
}

.nav a {
  position: relative;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--gold);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.8rem;
  height: 1px;
  background: var(--gold);
}

.dots {
  position: fixed;
  right: 2rem;
  top: 50%;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transform: translateY(-50%);
}

.dots a {
  width: 5px;
  height: 5px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.26);
}

.dots a.active {
  background: var(--gold);
  transform: scale(1.6);
}

.section {
  position: relative;
  min-height: 100vh;
  padding: clamp(5rem, 9vw, 8rem) clamp(1.2rem, 4vw, 4.5rem);
}

.section-frame::before,
.section-frame::after,
.corner {
  content: "";
  position: absolute;
  width: 76px;
  height: 76px;
  pointer-events: none;
  z-index: 5;
}

.section-frame::before,
.corner-tl {
  top: 1.8rem;
  left: 1.8rem;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.section-frame::after,
.corner-br {
  right: 1.8rem;
  bottom: 1.8rem;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.corner-tr {
  top: 1.8rem;
  right: 1.8rem;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

.corner-bl {
  left: 1.8rem;
  bottom: 1.8rem;
  border-left: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding-top: 5.8rem;
  overflow: hidden;
}

.hero-rebuilt {
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(5.8rem, 8.5vh, 7rem) clamp(1.4rem, 6vw, 6rem) clamp(2.7rem, 5.5vh, 4rem);
  background: #050505;
}

.hero-rebuilt .hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: saturate(0.9) contrast(1.04) brightness(0.88);
}

.hero-clean-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.91) 36%, rgba(5, 5, 5, 0.4) 66%, rgba(5, 5, 5, 0.12) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.62), rgba(5, 5, 5, 0.18));
}

.hero-rebuilt::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 8;
  width: min(24vw, 18rem);
  height: 7rem;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.98) 0%,
    rgba(5, 5, 5, 0.92) 58%,
    rgba(5, 5, 5, 0) 100%
  );
}

.hero-rebuilt-content {
  position: relative;
  z-index: 10;
  max-width: 590px;
  margin-top: clamp(0.2rem, 2vh, 1.4rem);
}

.hero-rebuilt h1 {
  margin: 0.75rem 0 0;
  font-family: var(--serif);
  font-size: clamp(4.8rem, 10.4vw, 8.8rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  line-height: 0.82;
}

.hero-lead {
  max-width: 545px;
  margin: 1.2rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2.05rem, 4.2vw, 3.45rem);
  font-weight: 300;
  line-height: 1.02;
}

.hero-copy {
  max-width: 430px;
  margin: 0.8rem 0 0;
  color: rgba(247, 242, 232, 0.64);
  font-size: 0.9rem;
  line-height: 1.65;
}

.hero-proof {
  display: block;
  width: fit-content;
  margin-top: 1.25rem;
  border: 0;
  background: transparent;
  padding: 0;
}

.hero-proof span {
  color: var(--gold);
}

.hero-proof p {
  margin: 0;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.2;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.18rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 148px;
  padding: 0.78rem 1.12rem;
  border: 1px solid rgba(201, 168, 76, 0.78);
  background: rgba(0, 0, 0, 0.42);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  background: rgba(201, 168, 76, 0.18);
  color: var(--white);
  border-color: var(--gold);
}

.hero-cta-primary,
.hero-cta-whatsapp:hover {
  background: var(--gold);
  color: #070707;
}

.hero-cta-primary:hover {
  background: #d7b85d;
  color: #070707;
}

.hero-cta-whatsapp {
  box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.42);
  animation: whatsapp-soft-pulse 2.2s ease-out infinite;
}

.hero-cta-instagram {
  color: var(--gold);
}

@keyframes whatsapp-soft-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.42);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(201, 168, 76, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
  }
}

.video-showcase {
  min-height: 82vh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.58fr);
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 50% 40%, rgba(201, 168, 76, 0.08), transparent 34%),
    #070707;
  text-align: left;
}

.video-copy {
  width: min(430px, 92vw);
}

.video-copy h2 {
  margin: 0.75rem 0 0;
  max-width: 420px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
}

.video-copy p:last-child {
  margin: 0.9rem 0 0;
  max-width: 380px;
  color: var(--muted);
  line-height: 1.75;
}

.video-frame {
  position: relative;
  width: min(760px, 56vw);
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(201, 168, 76, 0.58);
  background: #000;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
}

.video-frame::before,
.video-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 52px;
  height: 52px;
  pointer-events: none;
}

.video-frame::before {
  top: 12px;
  left: 12px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.video-frame::after {
  right: 12px;
  bottom: 12px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.06) saturate(1.08) brightness(0.96);
}

.video-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.4rem;
  min-height: 48px;
  padding: 0.9rem 1.7rem;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #070707;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 0.22s ease, background 0.22s ease;
}

.video-whatsapp:hover {
  transform: translateY(-2px);
  background: #d7b85d;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.9) 38%, rgba(0, 0, 0, 0.3) 72%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.12));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 650px;
  margin-left: clamp(0rem, 5vw, 5rem);
}

.eyebrow {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  margin: 1.15rem 0 0;
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 9.8rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  line-height: 0.82;
}

.rule {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: min(480px, 72vw);
  margin: 1.5rem 0 1.05rem;
}

.rule span {
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.rule i {
  width: 12px;
  height: 12px;
  background: var(--gold);
  transform: rotate(45deg);
}

.hero h2 {
  max-width: 600px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.2vw, 3.65rem);
  font-weight: 300;
  line-height: 1.02;
}

.hero h2 strong {
  color: var(--gold);
  font-weight: 300;
}

.location {
  margin: 1rem 0 1.25rem;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--white);
}

.award {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  max-width: 500px;
  margin-bottom: 1.45rem;
  padding: 0.65rem 0;
  border-top: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
}

.award span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.award p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  color: var(--white);
}

.award b {
  color: var(--gold);
  font-weight: 500;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 210px;
  padding: 1rem 1.7rem;
  border: 1px solid var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn.primary {
  background: var(--gold);
  color: #080808;
}

.btn.ghost {
  background: rgba(0, 0, 0, 0.32);
  color: var(--white);
}

.section-title {
  margin: 0 auto clamp(2.3rem, 5vw, 4.5rem);
  text-align: center;
}

.section-title p,
.lined {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.section-title p::before,
.section-title p::after,
.lined::before,
.lined::after {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.section-title p {
  margin: 0 0 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.collection {
  background: var(--panel);
}

.infinite-carousel {
  position: relative;
  width: min(1440px, 100%);
  margin: 0 auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

figure {
  margin: 0;
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: carousel-left 36s linear infinite;
  will-change: transform;
}

.carousel-track.reverse {
  animation-name: carousel-right;
  animation-duration: 42s;
}

.carousel-set {
  display: flex;
  flex: 0 0 auto;
  gap: clamp(0.8rem, 1.5vw, 1.25rem);
  padding-right: clamp(0.8rem, 1.5vw, 1.25rem);
}

.infinite-carousel:hover .carousel-track {
  animation-play-state: paused;
}

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

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

.look-carousel figure,
.store-carousel figure,
.store-feature figure {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.35);
  background: #0b0b0b;
  flex: 0 0 auto;
}

.look-carousel figure {
  width: clamp(240px, 28vw, 390px);
  aspect-ratio: 3 / 4;
}

.look-carousel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) saturate(0.92);
}

.about,
.contact,
.testimonials {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-inner,
.contact-inner {
  max-width: 760px;
}

.about h2,
.contact h2 {
  margin: 0.8rem 0 0.3rem;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 0.95;
}

.gold-note {
  margin: 0 0 2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.about p,
.contact p,
.testimonial-card p {
  color: var(--muted);
  line-height: 1.9;
}

.small-rule {
  display: block;
  width: 44px;
  height: 1px;
  margin: 2rem auto;
  background: var(--gold);
}

.about h3 {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: 2rem;
}

.about-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.65rem;
  min-height: 46px;
  padding: 0.85rem 1.65rem;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #080808;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.34);
  animation: about-whatsapp-pulse 2.3s ease-out infinite;
}

.about-whatsapp:hover {
  transform: translateY(-2px);
  background: #d7b85d;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

@keyframes about-whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.34);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(201, 168, 76, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
  }
}

.store {
  background: #0d0d0d;
}

.store-intro {
  width: min(760px, calc(100% - 2.4rem));
  margin: -2.2rem auto 3rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.9;
  text-align: center;
}

.store-feature {
  width: min(1280px, 100%);
  margin: 0 auto 0.85rem;
}

.store-feature img {
  width: 100%;
  height: clamp(420px, 62vh, 680px);
  object-fit: cover;
  object-position: center;
}

.store-carousel figure {
  width: clamp(220px, 25vw, 330px);
}

.store-carousel img {
  width: 100%;
  height: clamp(150px, 15vw, 220px);
  object-fit: cover;
}

.faq-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 168, 76, 0.08), transparent 34%),
    #080808;
}

.faq-inner {
  width: min(980px, 100%);
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  border: 1px solid rgba(201, 168, 76, 0.28);
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 0.22s ease, background 0.22s ease;
}

.faq-list details[open] {
  border-color: rgba(201, 168, 76, 0.58);
  background: rgba(201, 168, 76, 0.045);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.25rem;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.15;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.5;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 1.25rem 1.15rem;
  color: var(--muted);
  line-height: 1.8;
}

.faq-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 1.6rem auto 0;
  min-height: 48px;
  padding: 0.9rem 1.7rem;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #070707;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 0.22s ease, background 0.22s ease;
}

.faq-whatsapp:hover {
  transform: translateY(-2px);
  background: #d7b85d;
}

figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.94));
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-align: center;
  text-transform: uppercase;
}

.testimonials {
  flex-direction: column;
  min-height: 68vh;
  background: var(--black);
  padding-top: clamp(4.5rem, 7vw, 6rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.testimonials .section-title {
  margin-bottom: 1.6rem;
}

.testimonials .section-title h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
}

.testimonials .section-title p {
  font-size: 0.65rem;
}

.testimonial-card > p {
  font-size: 0.88rem;
  line-height: 1.7;
}

.testimonial-card {
  width: min(640px, 88vw);
  padding: clamp(1.35rem, 2.8vw, 2.1rem);
  border: 1px solid rgba(201, 168, 76, 0.38);
  background: #111;
  text-align: center;
}

.quote {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.25rem;
  line-height: 1;
}

.stars {
  margin: 0.25rem 0 1rem;
  color: var(--gold);
  letter-spacing: 0.35em;
  font-size: 0.75rem;
}

.avatar {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: var(--gold);
  color: #080808;
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-card h3 {
  margin: 0;
  font-family: var(--serif);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1.15rem;
}

.testimonial-controls button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
}

.testimonial-dots {
  display: flex;
  gap: 0.55rem;
}

.testimonial-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-soft);
}

.testimonial-dots span.active {
  width: 22px;
  border-radius: 999px;
  background: var(--gold);
}

.contact {
  min-height: 100vh;
}

.contact h2 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.wide-btn {
  margin-top: 2rem;
  min-width: min(420px, 100%);
}

address {
  margin-top: 2.4rem;
  color: var(--faint);
  font-size: 0.8rem;
  font-style: normal;
  line-height: 1.8;
}

address a {
  color: var(--gold);
}

footer {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  color: rgba(201, 168, 76, 0.28);
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-align: center;
  text-transform: uppercase;
}

@media (min-width: 1100px) {
  .topbar {
    display: grid;
    grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  }

  .brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 0.75rem;
    font-size: 1.55rem;
    letter-spacing: 0.28em;
  }

  .brand span {
    transform: translateY(0.22rem);
  }

  .brand-logo {
    width: 2.6rem;
    height: 2.6rem;
  }

  .nav {
    width: auto;
  }
}

@media (max-width: 860px) {
  .topbar {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.2));
  }

  .brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1.25rem;
    letter-spacing: 0.26em;
  }

  .brand-logo {
    width: 2.15rem;
    height: 2.15rem;
  }

.menu-toggle {
    display: inline-flex;
    min-height: 42px;
    padding: 0 0.9rem;
    border-radius: 0;
  }

  .topbar.menu-open .menu-lines i:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .topbar.menu-open .menu-lines i:nth-child(2) {
    opacity: 0;
  }

  .topbar.menu-open .menu-lines i:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .nav {
    position: absolute;
    top: calc(100% - 0.2rem);
    left: 1.1rem;
    right: 1.1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    width: auto;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border: 0 solid rgba(201, 168, 76, 0.22);
    background: rgba(5, 5, 5, 0.94);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: max-height 0.25s ease, opacity 0.2s ease, transform 0.2s ease, padding 0.2s ease, border-width 0.2s ease;
  }

  .topbar.menu-open .nav {
    max-height: 320px;
    padding: 0.85rem;
    border-width: 1px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.035);
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-align: center;
    white-space: nowrap;
  }

  .nav a.active::after {
    left: 50%;
    right: auto;
    bottom: 0.45rem;
    width: 22px;
    transform: translateX(-50%);
  }

  .dots {
    display: none;
  }

  .hero {
    align-items: flex-end;
    padding: 10rem 1.2rem 4rem;
  }

  .hero-rebuilt {
    padding: 7.6rem 1.2rem 2.5rem;
  }

  .hero-rebuilt .hero-photo {
    object-position: 62% center;
    filter: saturate(0.94) contrast(1.02) brightness(1.08);
  }

  .hero-clean-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.48) 48%, rgba(0, 0, 0, 0.78) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.22) 58%, rgba(0, 0, 0, 0.02) 100%);
  }

  .hero-rebuilt::after {
    display: none;
  }

  .hero-rebuilt-content {
    margin-top: 0;
  }

  .hero-rebuilt h1 {
    font-size: clamp(3.7rem, 20vw, 5.8rem);
  }

  .hero-lead {
    font-size: clamp(1.85rem, 10vw, 2.75rem);
  }

  .hero-proof,
  .hero-cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-proof {
    display: inline-flex;
    width: 100%;
    max-width: 420px;
  }

  .hero-proof p {
    white-space: normal;
  }

  .hero-cta {
    width: 100%;
    max-width: 420px;
  }

  .video-showcase {
    min-height: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 6rem 1.2rem 4rem;
  }

  .video-frame {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    order: 2;
  }

  .video-copy {
    order: 1;
    width: 100%;
  }

  .video-copy h2,
  .video-copy p:last-child {
    margin-left: auto;
    margin-right: auto;
  }

  .video-frame::before,
  .video-frame::after {
    width: 34px;
    height: 34px;
  }

  .video-whatsapp {
    width: 100%;
    max-width: 420px;
    order: 3;
  }

  .look-carousel figure {
    width: 76vw;
  }

  .store-carousel figure {
    width: 78vw;
  }

  .store-feature img {
    height: 320px;
  }

  .store-intro {
    margin-top: -1.2rem;
    margin-bottom: 2.2rem;
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .faq-section {
    padding-top: 5.5rem;
    padding-bottom: 4rem;
  }

  .faq-list summary {
    padding: 1rem;
    font-size: 1.25rem;
  }

  .faq-list p {
    padding: 0 1rem 1rem;
    font-size: 0.92rem;
  }

  .faq-whatsapp {
    width: 100%;
    max-width: 420px;
    text-align: center;
  }

  .section-frame::before,
  .section-frame::after,
  .corner {
    width: 42px;
    height: 42px;
  }
}




