:root {
  --ink: #070507;
  --black: #0d090d;
  --champagne: #d8bd86;
  --champagne-soft: #f0dfbd;
  --pearl: #fbf7ee;
  --muted: #c8bdad;
  --plum: #3b1935;
  --plum-soft: #6f315f;
  --line: rgba(240, 223, 189, .2);
  --glass: rgba(251, 247, 238, .08);
  --shadow: 0 28px 80px rgba(0, 0, 0, .36);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--pearl);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(120deg, rgba(59, 25, 53, .28), transparent 42%),
    linear-gradient(180deg, #050405 0%, #120c12 48%, #070507 100%);
}

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

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

button {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px max(18px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(240, 223, 189, .14);
  background: rgba(7, 5, 7, .66);
  backdrop-filter: blur(18px);
  transition: background .25s ease, min-height .25s ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(7, 5, 7, .9);
}

.brand img {
  width: 154px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(251, 247, 238, .78);
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  transition: color .2s ease;
}

.main-nav a:hover {
  color: var(--champagne-soft);
}

.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid rgba(216, 189, 134, .34);
  border-radius: var(--radius);
  font-weight: 800;
  letter-spacing: 0;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.nav-button,
.button-primary {
  color: #160d10;
  background: linear-gradient(135deg, #f2ddb1, #c99f57);
  box-shadow: 0 16px 44px rgba(216, 189, 134, .22);
}

.button-soft {
  background: rgba(251, 247, 238, .08);
  color: var(--pearl);
}

.button:hover,
.nav-button:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 223, 189, .7);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 247, 238, .08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--pearl);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  padding: 150px 0 92px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../images/photobooth-mariage-1920x720px.webp") center / cover no-repeat;
  transform: translateY(var(--parallax, 0));
  scale: 1.08;
  opacity: .58;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 5, 7, .95) 0%, rgba(7, 5, 7, .72) 44%, rgba(7, 5, 7, .3) 100%),
    linear-gradient(0deg, #070507 0%, transparent 44%);
}

.hero-content {
  max-width: 760px;
}

.overline {
  margin: 0 0 14px;
  color: var(--champagne);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.03;
}

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 500;
}

h2 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 66px);
  font-weight: 500;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 3vw, 34px);
}

.hero-text {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(251, 247, 238, .82);
  font-size: clamp(18px, 2vw, 22px);
}

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

.scroll-cue {
  position: absolute;
  left: max(18px, calc((100vw - 1180px) / 2));
  bottom: 30px;
  color: rgba(251, 247, 238, .58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section {
  padding: 104px 0;
  position: relative;
}

.split,
.zones-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
  gap: 58px;
  align-items: center;
}

.section-copy p,
.editorial-lead p,
.editorial-card p,
.glass-card p,
.final-card p,
.site-footer p {
  color: var(--muted);
}

.experience-panel {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(251, 247, 238, .1), rgba(59, 25, 53, .22));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.experience-panel img {
  width: min(470px, 100%);
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, .42));
}

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

.counter-grid div {
  padding: 16px 12px;
  border: 1px solid rgba(240, 223, 189, .16);
  border-radius: var(--radius);
  background: rgba(7, 5, 7, .34);
}

.counter-grid strong {
  display: block;
  color: var(--champagne-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
}

.counter-grid span {
  display: block;
  color: rgba(251, 247, 238, .72);
  font-size: 13px;
  font-weight: 700;
}

.section-title {
  max-width: 780px;
  margin-bottom: 44px;
}

.product-section {
  background: linear-gradient(180deg, transparent, rgba(59, 25, 53, .18), transparent);
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 247, 238, .06);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease;
}

.product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(216, 189, 134, .48);
}

.product-card figure {
  margin: 0;
  background: #fbf7ee;
  aspect-ratio: 16 / 11;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .35s ease;
}

.product-card:hover img {
  /*transform: scale(1.035);*/
}

.product-card-featured {
  background: linear-gradient(145deg, rgba(251, 247, 238, .08), rgba(111, 49, 95, .24));
}

.product-body {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.model {
  margin-bottom: 10px;
  color: var(--champagne);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.price {
  margin: 4px 0 18px;
  color: var(--champagne-soft);
  font-size: 34px;
  font-weight: 900;
}

.price span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.product-body ul {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  color: rgba(251, 247, 238, .82);
}

.product-body li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--champagne);
  vertical-align: 2px;
}

.product-body .button {
  margin-top: auto;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.glass-card,
.editorial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(251, 247, 238, .1), rgba(251, 247, 238, .035));
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 56px rgba(0, 0, 0, .22);
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.glass-card {
  padding: 24px;
}

.glass-card:hover,
.editorial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 189, 134, .5);
  background: linear-gradient(155deg, rgba(251, 247, 238, .13), rgba(111, 49, 95, .16));
}

.glass-card span {
  display: block;
  margin-bottom: 24px;
  color: var(--champagne);
  font-weight: 900;
}

.glass-card h3 {
  font-size: 24px;
}

.inspiration-section {
  background:
    linear-gradient(rgba(7, 5, 7, .82), rgba(7, 5, 7, .88)),
    url("../images/photobooth-background-1920x720px.webp") center / cover fixed;
}

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

.editorial-lead {
  grid-row: span 2;
  padding-right: 22px;
}

.editorial-card {
  padding: 26px;
}

.editorial-card h3 {
  color: var(--champagne-soft);
  font-size: 25px;
}

.city-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-cloud span {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(251, 247, 238, .07);
  color: rgba(251, 247, 238, .84);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 247, 238, .06);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 21px 22px;
  border: 0;
  color: var(--pearl);
  background: transparent;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-item button span {
  color: var(--champagne);
  font-size: 24px;
  transition: transform .2s ease;
}

.faq-item div {
  max-height: 0;
  overflow: hidden;
  transition: max-height .26s ease;
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-item.is-open div {
  max-height: 220px;
}

.faq-item.is-open button span {
  transform: rotate(45deg);
}

.final-cta {
  padding: 40px 0 106px;
}

.final-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 42px;
  border: 1px solid rgba(216, 189, 134, .3);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(216, 189, 134, .14), rgba(111, 49, 95, .18));
  box-shadow: var(--shadow);
}

.final-card h2 {
  max-width: 720px;
  margin-bottom: 12px;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: #050405;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.site-footer img {
  width: 146px;
  height: auto;
  margin-bottom: 14px;
}

address {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-style: normal;
  text-align: right;
}

address a:hover {
  color: var(--champagne-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-media {
    transform: none;
  }
}

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

  .main-nav {
    position: fixed;
    top: 72px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(7, 5, 7, .96);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .menu-open .main-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a:not(.nav-button) {
    padding: 14px 12px;
  }

  .nav-button {
    margin-top: 8px;
  }

  .hero {
    min-height: 88vh;
    padding-top: 124px;
  }

  .hero-vignette {
    background:
      linear-gradient(90deg, rgba(7, 5, 7, .94), rgba(7, 5, 7, .62)),
      linear-gradient(0deg, #070507 0%, transparent 48%);
  }

  .split,
  .zones-layout,
  .product-grid,
  .reason-grid,
  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .editorial-lead {
    grid-row: auto;
    padding-right: 0;
  }

  .section {
    padding: 76px 0;
  }

  .reason-grid {
    gap: 14px;
  }

  .final-card,
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  address {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 68px;
    padding-inline: 14px;
  }

  .brand img {
    width: 132px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .hero-actions,
  .final-card .button,
  .product-body .button {
    width: 100%;
  }

  .button {
    width: 100%;
  }

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

  .product-body,
  .glass-card,
  .editorial-card,
  .experience-panel,
  .final-card {
    padding: 22px;
  }

  .city-cloud span {
    font-size: 13px;
  }
}
