:root {
  --bg: #09090b;
  --bg-2: #101014;
  --bg-3: #16161c;
  --bg-card: #14141a;
  --line: rgba(244, 237, 222, 0.1);
  --line-strong: rgba(244, 237, 222, 0.18);
  --text: #f6f1e7;
  --muted: #b6aea0;
  --faint: #7d766b;
  --gold: #d4a24a;
  --gold-2: #e8c27a;
  --gold-dim: rgba(212, 162, 74, 0.14);
  --danger: #d9786a;
  --ok: #8fbf8a;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --header: 76px;
  --max: 1180px;
  --font: "Outfit", sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 500px at 12% -10%, rgba(212, 162, 74, 0.16), transparent 55%),
    radial-gradient(700px 420px at 100% 8%, rgba(120, 70, 30, 0.18), transparent 50%),
    radial-gradient(800px 500px at 80% 100%, rgba(212, 162, 74, 0.07), transparent 55%);
}

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

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

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

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.wide {
  width: min(calc(100% - 40px), 1320px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  backdrop-filter: blur(18px);
  background: rgba(9, 9, 11, 0.72);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

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

.logo-text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  font-size: 13.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

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

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  margin: 0 auto;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--text);
  color: #16120b;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #1a1408;
}

.btn-sm {
  min-height: 40px;
  padding: 0 16px;
  font-size: 13px;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header));
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.38);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 9, 11, 0.35) 0%, rgba(9, 9, 11, 0.55) 45%, #09090b 100%),
    radial-gradient(circle at 50% 40%, transparent 0%, rgba(9, 9, 11, 0.4) 70%);
}

.hero-copy {
  text-align: center;
  max-width: 860px;
  padding: 80px 0 100px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.hero h1 {
  font-size: clamp(42px, 7vw, 86px);
  margin-bottom: 22px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 32px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--faint);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Sections */
.section {
  padding: 96px 0;
  position: relative;
  z-index: 1;
}

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

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section h2 {
  font-size: clamp(34px, 4.4vw, 56px);
}

.muted { color: var(--muted); }
.faint { color: var(--faint); }

/* Cards / grids */
.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 20px;
}

.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

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

.card h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.icon-num {
  font-family: var(--display);
  font-size: 40px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

/* Audience */
.audience {
  background: linear-gradient(180deg, transparent, rgba(212, 162, 74, 0.04), transparent);
}

/* Products */
.product-card {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-card.custom,
.card.custom {
  border-color: rgba(212, 162, 74, 0.38);
  box-shadow: 0 0 0 1px rgba(212, 162, 74, 0.1), var(--shadow);
}

.custom-band {
  background: linear-gradient(180deg, rgba(212, 162, 74, 0.07), transparent 70%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-card .body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 10px;
}

.price {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price strong {
  font-size: 20px;
  font-weight: 500;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.split img,
.media-frame {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--line);
}

.media-frame {
  overflow: hidden;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat {
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.stat b {
  display: block;
  font-family: var(--display);
  font-size: 42px;
  font-weight: 500;
  color: var(--gold-2);
  margin-bottom: 6px;
}

/* Page hero */
.page-hero {
  padding: 84px 0 36px;
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 74px);
  max-width: 900px;
}

/* Forms */
.form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

input,
textarea,
select {
  width: 100%;
  background: #0d0d11;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold);
}

textarea { min-height: 140px; resize: vertical; }

.placeholder-field {
  border: 1px dashed var(--line-strong);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--faint);
  background: rgba(255, 255, 255, 0.015);
}

/* Legal */
.legal {
  max-width: 820px;
}

.legal h2 {
  font-size: 32px;
  margin-top: 36px;
}

.legal h3 {
  font-size: 24px;
  margin-top: 26px;
}

.legal ul,
.faq-list {
  padding-left: 18px;
  color: var(--muted);
}

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.faq summary {
  cursor: pointer;
  font-size: 18px;
  list-style: none;
}

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

.faq details p {
  color: var(--muted);
  margin: 12px 0 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 28px;
  position: relative;
  z-index: 1;
  background: #08080a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 48px;
}

.site-footer h4 {
  font-family: var(--font);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 16px;
}

.site-footer a,
.site-footer p {
  color: var(--muted);
  font-size: 14px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  color: var(--faint);
  font-size: 13px;
}

/* Cookie */
.cookie {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: min(380px, calc(100vw - 24px));
  background: #f4efe4;
  color: #1b1710;
  border-radius: 16px;
  padding: 22px;
  z-index: 60;
  box-shadow: var(--shadow);
  display: none;
}

.cookie.show { display: block; }

.cookie h3 {
  font-size: 26px;
  color: #1b1710;
}

.cookie p,
.cookie a {
  color: #4c463b;
  font-size: 13.5px;
}

.cookie .actions {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.cookie .btn {
  background: #1b1710;
  color: #f4efe4;
}

.cookie .btn-ghost {
  background: transparent;
  color: #1b1710;
  border-color: #c9c0b0;
}

/* Notice / banner */
.notice {
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--gold-dim);
  border: 1px solid rgba(212, 162, 74, 0.28);
  color: var(--gold-2);
  font-size: 14px;
}

.success {
  display: none;
  padding: 16px;
  border-radius: 12px;
  background: rgba(143, 191, 138, 0.12);
  border: 1px solid rgba(143, 191, 138, 0.35);
  color: var(--ok);
}

/* Product page */
.product-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.product-hero img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--line);
}

.product-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.big-price {
  font-family: var(--display);
  font-size: 48px;
  margin: 10px 0 18px;
}

.includes {
  display: grid;
  gap: 10px;
  margin: 20px 0 28px;
  color: var(--muted);
}

.includes li { list-style: none; padding-left: 0; }
.includes li::before {
  content: "–  ";
  color: var(--gold);
}

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

.gallery img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* Work mosaic */
.mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 12px;
}

.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.mosaic img:first-child {
  grid-row: 1 / span 2;
}

/* CTA band */
.cta-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 72px 0;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(212, 162, 74, 0.05), transparent);
}

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter-btn {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  color: var(--muted);
  font-size: 13px;
}

.filter-btn.active,
.filter-btn:hover {
  color: var(--text);
  border-color: var(--gold);
}

.hidden { display: none !important; }

@media (max-width: 1020px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split,
  .product-hero,
  .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .mosaic img:first-child { grid-row: auto; }
}

@media (max-width: 760px) {
  .nav,
  .header-cta .btn { display: none; }
  .nav.open {
    display: flex;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    background: #0d0d11;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 18px 20px 24px;
    align-items: flex-start;
  }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .grid-4,
  .grid-3,
  .grid-2,
  .form-row,
  .stats,
  .gallery,
  .mosaic { grid-template-columns: 1fr; }
  .mosaic { grid-template-rows: repeat(5, 200px); }
  .hero { min-height: 86vh; }
  .section { padding: 72px 0; }
  .split img, .media-frame, .product-hero img { height: 280px; }
}
