:root {
  color-scheme: dark;
  --bg: #070707;
  --bg-soft: #0d0b08;
  --surface: #11100d;
  --surface-2: #17140f;
  --text: #f4f1ea;
  --muted: #b9b1a2;
  --gold: #c9a45c;
  --gold-light: #e8d6a4;
  --line: rgba(232, 214, 164, .18);
  --line-strong: rgba(232, 214, 164, .34);
  --shadow: 0 32px 80px rgba(0, 0, 0, .48);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 58% 18%, rgba(109, 79, 32, .16), transparent 34rem),
    linear-gradient(180deg, #060606 0%, #0b0907 38%, #070707 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.modal-open { overflow: hidden; }

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  background: rgba(7, 7, 7, .78);
  border-bottom: 1px solid rgba(232, 214, 164, .12);
  backdrop-filter: blur(18px);
}

.section-inner,
.header-inner {
  width: min(calc(100% - clamp(36px, 7vw, 192px)), 1920px);
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 2.4vw, 44px);
  min-height: 74px;
}

.brand,
.nav,
.trust-row,
.hero-actions,
.product-meta,
.filter-tabs,
.header-contacts {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: .02em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.brand-mark path {
  fill: rgba(201, 164, 92, .12);
  stroke: var(--gold-light);
  stroke-width: 1.7;
  vector-effect: non-scaling-stroke;
}

.brand-mark path:nth-child(2) {
  fill: none;
  stroke-width: 2.2;
}

.brand-mark path:nth-child(3) {
  fill: none;
  opacity: .42;
}

.brand span:last-child {
  display: grid;
  line-height: 1.02;
}

.brand strong { font-weight: 600; }
.brand em { color: var(--muted); font-size: 13px; font-style: normal; }

.header-contacts {
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
}

.contact-link svg {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  padding: 6px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(244, 241, 234, .04);
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-link-phone {
  color: var(--text);
  font-weight: 700;
}

.nav { gap: 28px; color: var(--muted); font-size: 14px; }
.nav a:hover { color: var(--gold-light); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line-strong);
  color: var(--gold-light);
  padding: 8px 16px 8px 9px;
  border-radius: 999px;
  font-size: 14px;
}

.max-link {
  gap: 9px;
}

.max-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.footer-max {
  display: inline-flex;
  align-items: center;
}

main { overflow: hidden; }

#occasions,
#catalog,
#process,
#faq,
#contact {
  scroll-margin-top: 96px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
  width: 100%;
  padding-left: clamp(18px, 6vw, 96px);
  padding-right: clamp(18px, 6vw, 96px);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(760px, calc(100svh - 74px), 980px);
  padding-top: clamp(42px, 5vw, 82px);
  padding-bottom: clamp(48px, 6vw, 96px);
  isolation: isolate;
  background: #050505;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 130% 105% at 100% 0%,
      rgba(255, 238, 184, .7) 0%,
      rgba(221, 170, 78, .46) 14%,
      rgba(138, 90, 30, .28) 32%,
      rgba(66, 43, 18, .16) 52%,
      rgba(24, 17, 8, .06) 72%,
      transparent 92%);
  filter: blur(14px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .42) 0%, rgba(0, 0, 0, .2) 44%, rgba(0, 0, 0, .08) 100%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .35) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(520px, .95fr) minmax(520px, .82fr);
  gap: clamp(52px, 5vw, 116px);
  align-items: center;
}

.overline {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: .98;
}

h1 { font-size: clamp(52px, 4.7vw, 112px); max-width: 840px; }
h2 { font-size: clamp(34px, 5vw, 66px); }
h3 { font-size: 23px; line-height: 1.12; }

.lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}

.btn-primary {
  color: #120f09;
  background: linear-gradient(135deg, #f2dda3, #c9a45c 54%, #9f7830);
}

.btn-secondary {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(244, 241, 234, .04);
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(232, 214, 164, .14);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: clamp(520px, 38vw, 760px);
  display: grid;
  place-items: center;
}

.hero-visual img {
  position: relative;
  width: clamp(440px, 27vw, 700px);
  aspect-ratio: 1;
  object-fit: contain;
}

.hero-card {
  position: absolute;
  right: max(0px, calc(50% - 460px));
  bottom: clamp(56px, 5vw, 110px);
  width: 220px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 16, 13, .78);
  backdrop-filter: blur(16px);
}

.hero-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.hero-card strong { color: var(--gold-light); font-size: 20px; }

.choice-band,
.occasions,
.catalog,
.process,
.faq,
.final-cta,
.site-footer {
  width: 100%;
}

.choice-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.choice-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice-band article,
.choice-card {
  min-width: 0;
  min-height: clamp(220px, 15vw, 310px);
  padding: clamp(26px, 4vw, 58px);
  border-right: 1px solid var(--line);
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  background: linear-gradient(180deg, rgba(232, 214, 164, .06), rgba(255, 255, 255, .01));
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.choice-band article:last-child,
.choice-card:last-child { border-right: 0; }
.choice-band article:hover,
.choice-card:hover {
  background: linear-gradient(180deg, rgba(232, 214, 164, .1), rgba(255, 255, 255, .025));
}
.choice-band article.is-active,
.choice-card.is-active {
  background: linear-gradient(180deg, rgba(201, 164, 92, .14), rgba(255, 255, 255, .035));
}
.choice-band span { color: var(--gold); font-size: 13px; }
.choice-band h2 { margin-top: clamp(42px, 6vw, 94px); font-size: clamp(36px, 4.2vw, 72px); }
.choice-band p { color: var(--muted); line-height: 1.6; }

.section-heading {
  margin: 120px 0 38px;
  max-width: min(760px, 90vw);
}

.catalog-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  max-width: none;
}

#occasions .section-heading,
#process .section-heading {
  max-width: none;
}

@media (min-width: 1600px) {
  #occasions .section-heading h2,
  #process .section-heading h2 {
    max-width: none;
    white-space: nowrap;
  }
}

.occasion-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  max-width: none;
}

.occasion-grid button,
.filter-tabs button {
  cursor: pointer;
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(244, 241, 234, .035);
  border-radius: 8px;
  font: inherit;
}

.occasion-grid button {
  min-height: 46px;
  padding: 0 18px;
  text-align: center;
  white-space: nowrap;
  border-radius: 999px;
  font-size: 15px;
  line-height: 1;
}

.occasion-grid button:hover,
.occasion-grid button.is-active,
.filter-tabs button.active,
.filter-tabs button:hover {
  border-color: rgba(232, 214, 164, .64);
  background: rgba(201, 164, 92, .12);
}

.filter-tabs {
  flex-wrap: nowrap;
  flex: 0 0 auto;
  justify-content: flex-end;
  gap: 8px;
}

.filter-tabs button {
  padding: clamp(13px, 1.3vw, 18px) clamp(18px, 2vw, 28px);
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 18px);
  white-space: nowrap;
}

.filter-tabs button.active { color: var(--gold-light); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(286px, 1fr));
  gap: clamp(16px, 1.6vw, 28px);
  align-items: start;
}

.catalog-fallback {
  max-width: 920px;
  margin-top: 24px;
  color: var(--muted);
}

.catalog-fallback h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.2vw, 42px);
}

.product-card {
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(180deg, #14120f, #0d0c0a);
}

.product-image {
  display: grid;
  place-items: center;
  width: 100%;
  height: 296px;
  border: 0;
  cursor: zoom-in;
  padding: 18px;
  background: radial-gradient(circle at 50% 35%, rgba(232, 214, 164, .13), transparent 55%);
}

.product-image img {
  width: min(100%, 260px);
  height: min(100%, 260px);
  min-width: 0;
  aspect-ratio: 1;
  object-fit: contain;
  transition: transform .35s ease;
}

.product-card:hover .product-image img { transform: translateY(-4px) scale(1.025); }

.product-info { padding: 0 18px 18px; }
.product-info p { margin: 0 0 10px; color: var(--gold); font-size: 12px; }
.product-info h3 { min-height: 76px; font-family: inherit; font-size: 16px; line-height: 1.35; }

.product-meta {
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.product-meta strong { color: var(--text); font-size: 16px; }

.premium {
  padding-top: 132px;
}

.premium-inner {
  display: grid;
  grid-template-columns: minmax(420px, .92fr) minmax(440px, .88fr);
  gap: clamp(46px, 7vw, 140px);
  align-items: center;
}

.premium-media {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: radial-gradient(circle, rgba(232, 214, 164, .14), transparent 62%), var(--surface);
  padding: 26px;
}

.premium-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.premium-copy p,
.feature-list,
.steps p,
.faq p,
.final-cta p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.feature-list {
  margin-top: 26px;
  padding-left: 20px;
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.catalog-cta {
  justify-content: center;
  margin-top: clamp(34px, 4vw, 62px);
}

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

.steps article {
  min-height: 230px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold-light);
}

.faq {
  display: block;
}

.faq .section-heading { margin-bottom: 0; }

@media (min-width: 981px) {
  .faq .section-heading {
    position: sticky;
    top: 110px;
  }
}

.faq-inner {
  display: grid;
  grid-template-columns: .7fr 1.15fr;
  gap: clamp(36px, 6vw, 110px);
  align-items: start;
}

details {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

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

summary {
  cursor: pointer;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.final-cta {
  margin-top: 120px;
  margin-bottom: 56px;
  background:
    radial-gradient(circle at 70% 0%, rgba(201, 164, 92, .16), transparent 38rem),
    linear-gradient(180deg, rgba(17, 16, 13, .92), rgba(8, 7, 6, .98));
}

.final-cta .section-inner {
  padding: clamp(34px, 5vw, 74px);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
}

.final-cta h2 { max-width: 800px; }
.final-cta p { max-width: 620px; }

.photo-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: clamp(16px, 4vw, 56px);
  background: rgba(0, 0, 0, .86);
  backdrop-filter: blur(14px);
}

.photo-modal[aria-hidden="false"] { display: grid; }

.photo-modal img {
  max-width: min(92vw, 980px);
  max-height: 82vh;
  object-fit: contain;
  filter: drop-shadow(0 32px 70px rgba(0,0,0,.65));
}

.photo-modal p {
  margin: 18px 0 0;
  color: var(--text);
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(17, 16, 13, .88);
  color: var(--text);
  cursor: pointer;
}

.site-footer {
  padding-top: 54px;
  padding-bottom: 58px;
  border-top: 1px solid var(--line);
  background: #050505;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: clamp(24px, 4vw, 60px);
}

.footer-brand p,
.footer-col p,
.footer-col a {
  color: var(--muted);
  line-height: 1.65;
}

.footer-brand p { max-width: 360px; }

.footer-col {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-col h3 {
  margin-bottom: 10px;
  color: var(--gold-light);
  font-family: inherit;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.footer-col p { margin: 0; }
.footer-col a:hover { color: var(--gold-light); }

.legal-page {
  width: min(920px, 100%);
  padding: clamp(28px, 7vw, 86px) clamp(18px, 6vw, 64px);
}

.legal-page h1 {
  margin: 28px 0;
  font-size: clamp(42px, 7vw, 82px);
}

.legal-page p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.legal-back {
  display: inline-flex;
  color: var(--gold-light);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
}

@media (max-width: 980px) {
  .nav { display: none; }
  .header-contacts {
    display: flex;
    margin-left: auto;
  }
  .header-contacts a[href^="mailto:"] { display: none; }
  .header-inner { gap: 14px; }
  .section-grid,
  .hero-inner,
  .premium-inner,
  .faq-inner {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .hero { padding-top: 46px; }
  .hero-visual { min-height: 500px; }
  .choice-inner,
  .steps,
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-heading {
    display: block;
  }
  .filter-tabs {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 22px;
  }
  .faq-list { grid-column: auto; }
}

@media (max-width: 620px) {
  .site-header { padding: 0; }
  .brand { font-size: 16px; }
  .brand-mark { width: 32px; height: 32px; flex-basis: 32px; }
  .header-cta { display: none; }
  .header-contacts { font-size: 12px; }
  .contact-link { gap: 6px; }
  .contact-link svg {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }
  .hero { min-height: auto; }
  .hero::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, .36), rgba(0, 0, 0, .1)),
      linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .28) 100%);
  }
  .hero::before {
    inset: 0;
    background:
      radial-gradient(ellipse 145% 94% at 100% 0%,
        rgba(255, 238, 184, .68) 0%,
        rgba(221, 170, 78, .44) 18%,
        rgba(113, 72, 24, .26) 46%,
        rgba(24, 17, 8, .09) 70%,
        transparent 92%);
  }
  .hero-card {
    left: 0;
    right: auto;
    bottom: 26px;
  }
  .product-grid { grid-template-columns: 1fr; }
  .product-image img {
    width: min(100%, 260px);
    height: min(100%, 260px);
  }
  .choice-band article { border-right: 0; border-bottom: 1px solid var(--line); }
  .choice-band article:last-child { border-bottom: 0; }
  .section-heading { margin-top: 84px; }
  #occasions,
  #catalog,
  #process,
  #faq,
  #contact {
    scroll-margin-top: 82px;
  }
}

@media (max-width: 380px) {
  .contact-link-phone span { font-size: 11px; }
}
