:root {
  --background: #f7f2ea;
  --surface: #fdfbf7;
  --surface-strong: #f2eadf;
  --surface-dark: #181512;
  --text: #211d19;
  --muted: #6f665d;
  --line: rgba(33, 29, 25, 0.12);
  --line-strong: rgba(33, 29, 25, 0.22);
  --gold: #b89a64;
  --gold-soft: rgba(184, 154, 100, 0.18);
  --button: #211d19;
  --button-text: #fdfaf5;
  --max-width: 1180px;
  --shadow-soft: 0 24px 60px rgba(30, 23, 16, 0.08);
  --shadow-card: 0 18px 50px rgba(30, 23, 16, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(184, 154, 100, 0.08), transparent 25%),
    linear-gradient(180deg, #fbf7f1 0%, #f7f2ea 100%);
  line-height: 1.72;
  letter-spacing: -0.01em;
}

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

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

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

.container {
  width: min(calc(100% - 2.5rem), var(--max-width));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 6.75rem 0;
}

.section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(calc(100% - 2.5rem), var(--max-width));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.section-narrow {
  width: min(100%, 760px);
}

.center-text {
  text-align: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: rgba(255, 250, 245, 0.78);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

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

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--text);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 600;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(3.8rem, 8vw, 7.1rem);
  max-width: 9ch;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.7rem, 5vw, 4.3rem);
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 2rem;
}

p {
  color: var(--muted);
  font-size: 1rem;
}

.button,
.slider-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.85rem 1.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--button);
  color: var(--button-text);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button::after {
  content: "↗";
  margin-left: 0.55rem;
  font-size: 0.95em;
}

.button:hover,
.button:focus-visible,
.slider-button:hover,
.slider-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(33, 29, 25, 0.16);
}

.button-secondary,
.slider-button {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.6);
  color: var(--text);
  backdrop-filter: blur(12px);
}

.button-secondary::after {
  content: "";
  margin: 0;
}

.button-small {
  min-height: 2.9rem;
  padding: 0.7rem 1.1rem;
}

.announcement-bar {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  padding: 0.8rem 1rem;
  background: linear-gradient(90deg, #14110e, #241c16);
  color: #f7f2ea;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.announcement-bar p {
  margin: 0;
  color: inherit;
}

.announcement-bar a {
  color: #e9d8b2;
  text-decoration: none;
  border-bottom: 1px solid rgba(233, 216, 178, 0.45);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(253, 251, 247, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(33, 29, 25, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5.5rem;
}

.brand img,
.footer-logo {
  width: 118px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a:not(.button) {
  position: relative;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 180ms ease;
}

.site-nav a:not(.button):hover::after,
.site-nav a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0;
  background: transparent;
  border: 0;
}

.nav-toggle span {
  width: 1.5rem;
  height: 1.5px;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: calc(100vh - 8.5rem);
  color: #ffffff;
  background: #0f0f0f;
}

.hero picture,
.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(14, 11, 8, 0.72) 0%, rgba(14, 11, 8, 0.38) 36%, rgba(14, 11, 8, 0.16) 60%, rgba(14, 11, 8, 0.6) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.48));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 8.5rem);
  padding: 7rem 0 5.5rem;
}

.hero-copy {
  max-width: 33rem;
  margin-bottom: 0;
  color: rgba(255, 250, 245, 0.84);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.hero .button {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.hero .button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.32);
  color: #ffffff;
}

.hero .button-secondary:hover,
.hero .button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.trust-strip {
  position: relative;
  z-index: 1;
  margin-top: -2.3rem;
  padding-bottom: 1.2rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(33, 29, 25, 0.08);
  border-radius: 1.8rem;
  background: rgba(184, 154, 100, 0.08);
  box-shadow: var(--shadow-soft);
}

.trust-grid article {
  padding: 1.35rem 1.25rem 1.2rem;
  background: rgba(253, 251, 247, 0.92);
}

.trust-grid h2 {
  margin-bottom: 0.42rem;
  font-size: 1.45rem;
}

.trust-grid p {
  margin-bottom: 0;
  font-size: 0.88rem;
  line-height: 1.6;
}

.intro {
  background: transparent;
}

.intro .section-narrow {
  padding: 0 0.5rem;
}

.intro h2 {
  max-width: 12ch;
  margin-left: auto;
  margin-right: auto;
}

.intro p:last-child {
  max-width: 44rem;
  margin: 0 auto;
}

.overlap-section {
  background: linear-gradient(180deg, rgba(242, 234, 223, 0.55), rgba(253, 251, 247, 0.86));
}

.overlap-grid,
.spotlight-grid,
.video-grid,
.footer-grid {
  display: grid;
  gap: 4.25rem;
  align-items: center;
}

.overlap-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.overlap-media {
  position: relative;
  min-height: 40rem;
}

.overlap-media::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 8%;
  top: 12%;
  bottom: 8%;
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(184, 154, 100, 0.12), rgba(33, 29, 25, 0.06));
}

.overlap-media-primary,
.overlap-media-secondary {
  position: absolute;
  border-radius: 1.8rem;
  box-shadow: var(--shadow-soft);
}

.overlap-media-primary {
  left: 0;
  top: 0;
  width: min(72%, 31rem);
}

.overlap-media-secondary {
  right: 0;
  bottom: 0;
  width: min(70%, 28rem);
}

.section-copy p:last-of-type {
  margin-bottom: 2rem;
}

.section-heading {
  margin-bottom: 3rem;
}

.section-heading h2 {
  max-width: 13ch;
  margin-left: auto;
  margin-right: auto;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  padding: 2.15rem 2rem;
  border: 1px solid rgba(184, 154, 100, 0.16);
  border-radius: 1.6rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 243, 236, 0.92));
  box-shadow: var(--shadow-card);
}

.card h3 {
  font-size: 1.9rem;
}

.product-spotlight {
  background: transparent;
}

.spotlight-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.98fr);
}

.spotlight-gallery {
  display: grid;
  gap: 1rem;
}

.spotlight-main,
.spotlight-thumbs img {
  border-radius: 1.8rem;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.spotlight-thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.spotlight-copy {
  padding: 2.4rem;
  border: 1px solid rgba(184, 154, 100, 0.18);
  border-radius: 2rem;
  background: rgba(253, 251, 247, 0.82);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
}

.price {
  margin-bottom: 1.15rem;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.feature-list li {
  position: relative;
  padding-left: 1.45rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #caa96b, #9f7e43);
  box-shadow: 0 0 0 4px rgba(184, 154, 100, 0.12);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.35rem;
}

.product-note {
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(184, 154, 100, 0.22);
  border-radius: 1.1rem;
  background: linear-gradient(180deg, rgba(184, 154, 100, 0.08), rgba(184, 154, 100, 0.04));
}

.product-note p {
  margin: 0;
  color: var(--text);
  font-size: 0.94rem;
}

.testimonials {
  background: linear-gradient(180deg, rgba(242, 234, 223, 0.48), rgba(247, 242, 234, 0.2));
}

.testimonial-slider {
  position: relative;
  min-height: 18rem;
}

.testimonial {
  display: none;
  padding: 3.1rem 3rem 2.7rem;
  border: 1px solid rgba(184, 154, 100, 0.16);
  border-radius: 2rem;
  background: rgba(253, 251, 247, 0.92);
  box-shadow: var(--shadow-soft);
}

.testimonial.is-active {
  display: block;
}

.testimonial blockquote {
  max-width: 42rem;
  margin: 0 auto 1.2rem;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-align: center;
}

.testimonial p {
  margin-bottom: 0;
  color: var(--gold);
  text-align: center;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.slider-button {
  min-width: 9rem;
}

.video-grid {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.video-frame {
  overflow: hidden;
  border: 1px solid rgba(184, 154, 100, 0.16);
  border-radius: 1.9rem;
  box-shadow: var(--shadow-soft);
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #000000;
  border: 0;
}

.faq-section {
  background: transparent;
}

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

.faq-list details {
  padding: 1.35rem 1.45rem;
  border: 1px solid rgba(184, 154, 100, 0.16);
  border-radius: 1.35rem;
  background: rgba(253, 251, 247, 0.9);
  box-shadow: var(--shadow-card);
}

.faq-list summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 700;
  list-style: none;
}

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

.faq-list p {
  margin: 0.95rem 0 0;
}

.site-footer {
  position: relative;
  margin-top: 2rem;
  padding: 3.8rem 0;
  background: linear-gradient(180deg, #191511, #120f0c);
  color: #ffffff;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 250, 245, 0.78);
}

.footer-grid {
  grid-template-columns: minmax(0, 1fr) auto;
}

.footer-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.site-footer .button {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.site-footer .button:hover,
.site-footer .button:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 1080px) {
  .trust-grid,
  .card-grid,
  .overlap-grid,
  .spotlight-grid,
  .video-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .overlap-media {
    min-height: 34rem;
  }

  .spotlight-copy {
    padding: 2rem;
  }
}

@media (max-width: 780px) {
  .announcement-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.15rem 1rem 1.5rem;
    background: rgba(253, 251, 247, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(30, 23, 16, 0.08);
  }

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

  .section,
  .hero-content {
    padding-top: 4.75rem;
    padding-bottom: 4.75rem;
  }

  .trust-strip {
    margin-top: -1.3rem;
  }

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

  .overlap-media {
    min-height: 25rem;
  }

  .overlap-media-primary {
    width: 72%;
  }

  .overlap-media-secondary {
    width: 62%;
  }

  .spotlight-thumbs {
    grid-template-columns: 1fr;
  }

  .video-frame video {
    min-height: 18rem;
  }

  .testimonial {
    padding: 2.2rem 1.5rem;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    min-height: 40rem;
  }

  .hero-content {
    min-height: 40rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .spotlight-copy {
    padding: 1.4rem;
  }

  .button,
  .button-secondary,
  .slider-button {
    width: 100%;
  }

  .hero-actions,
  .product-actions {
    flex-direction: column;
  }
}
