:root {
  --bg: #111211;
  --bg-soft: #171817;
  --surface: #1d1e1d;
  --surface-2: #242522;
  --text: #f5f2e9;
  --muted: #b7b4ac;
  --gold: #c89b3c;
  --gold-light: #e0bc67;
  --gold-dark: #7b5b1f;
  --line: rgba(211, 170, 83, .25);
  --shell: min(92vw, 1760px);
  --shadow: 0 28px 70px rgba(0,0,0,.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 5%, rgba(200,155,60,.07), transparent 24rem),
    linear-gradient(180deg, #101110 0%, #151614 48%, #0d0e0d 100%);
  font-family: "Raleway", system-ui, sans-serif;
  font-size: clamp(16px, .9vw, 19px);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  transform: translateY(-160%);
  padding: .75rem 1rem;
  color: #111;
  background: var(--gold-light);
}
.skip-link:focus { transform: translateY(0); }

.shell { width: var(--shell); margin-inline: auto; }
.section-pad { padding: clamp(5.5rem, 9vw, 11rem) 0; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  width: 100%;
  padding: 1.6rem 0;
}
.header-inner, .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.header-actions, .footer-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(1.25rem, 1.6vw, 2rem);
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.brand-mark {
  position: relative;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid var(--gold);
  border-right-color: transparent;
}
.brand-mark::after {
  content: "";
  position: absolute;
  right: -.05rem;
  top: -.05rem;
  width: .8rem;
  height: 1px;
  background: var(--gold);
}
.desktop-nav { display: flex; gap: 2.25rem; color: var(--muted); }
.desktop-nav a:hover, .site-footer a:hover { color: var(--gold-light); }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3.45rem;
  padding: .85rem 1.55rem;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 2.9rem; font-size: .78rem; }
.button-outline { border-color: var(--gold); color: var(--gold-light); }
.button-gold {
  color: #17120a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 56%, #a87722);
  box-shadow: 0 10px 30px rgba(200,155,60,.2);
}
.button-full { width: 100%; }
.text-link { color: var(--gold-light); font-weight: 600; }

.hero { min-height: 100svh; display: grid; align-items: center; padding-top: 8rem; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: clamp(3rem, 7vw, 9rem); }
.eyebrow {
  margin: 0 0 1.5rem;
  color: var(--gold-light);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}
h1, h2, blockquote { margin: 0; font-weight: 400; line-height: 1.08; letter-spacing: .02em; }
h1 { max-width: 12ch; font-size: clamp(3.25rem, 6vw, 8.6rem); text-transform: uppercase; }
h1 span { color: var(--gold-light); }
h2 { font-size: clamp(2.5rem, 4.4vw, 6.3rem); }
.lede { max-width: 36rem; margin: 2rem 0 0; color: var(--muted); font-size: clamp(1.08rem, 1.35vw, 1.55rem); }
.hero-actions { display: flex; align-items: center; gap: 2rem; margin-top: 2.8rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 1rem 2.2rem; margin-top: 2.8rem; color: #d7d2c5; font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; }
.hero-meta span { position: relative; }
.hero-meta span:not(:last-child)::after { content: ""; position: absolute; right: -1.2rem; top: 50%; width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }

.hero-gallery { position: relative; min-height: min(76vh, 980px); display: grid; place-items: center; }
.hero-frame {
  position: relative;
  z-index: 2;
  width: min(74%, 740px);
  margin: 0;
  padding: clamp(.55rem, .8vw, 1rem);
  border: 2px solid #7f5d20;
  background: linear-gradient(135deg, #d2a84c, #3e2a0b 22%, #c39a45 48%, #2f210b 72%, #b88831);
  box-shadow: var(--shadow), inset 0 0 0 5px #17110a;
}
.hero-frame::before {
  content: "";
  position: absolute;
  inset: .9rem;
  z-index: 2;
  pointer-events: none;
  border: 2px solid rgba(235,200,123,.38);
}
.hero-frame img { width: 100%; aspect-ratio: .85; object-fit: cover; filter: saturate(.9) contrast(1.07); }
.gallery-light {
  position: absolute;
  top: -5%;
  width: 72%;
  height: 58%;
  background: radial-gradient(ellipse at top, rgba(255,220,145,.25), transparent 68%);
  filter: blur(10px);
}
.gallery-bench {
  position: absolute;
  z-index: 3;
  bottom: 5%;
  width: 52%;
  height: 5.2rem;
  border-top: 1px solid #6d5529;
  background: linear-gradient(180deg, #45371f, #17130d);
  box-shadow: 0 28px 26px rgba(0,0,0,.55);
}
.gallery-bench::before, .gallery-bench::after {
  content: "";
  position: absolute;
  bottom: -2.5rem;
  width: .9rem;
  height: 2.5rem;
  background: #13110d;
}
.gallery-bench::before { left: 14%; }
.gallery-bench::after { right: 14%; }

.feature-strip { border-block: 1px solid var(--line); background: rgba(20,21,20,.75); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature { min-height: 16rem; padding: 3.5rem 2.4rem; border-left: 1px solid var(--line); }
.feature:last-child { border-right: 1px solid var(--line); }
.feature-number { color: var(--gold); font-size: .75rem; letter-spacing: .2em; }
.feature h2 { margin-top: 2rem; color: var(--gold-light); font-size: 1rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.feature p { color: var(--muted); font-size: .95rem; }

.collection { background: radial-gradient(circle at 20% 50%, rgba(201,156,60,.06), transparent 34rem); }
.collection-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: clamp(4rem, 8vw, 10rem); }
.art-wall { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(.65rem, 1vw, 1.15rem); }
.art { margin: 0; grid-column: span 2; padding: .35rem; border: 1px solid rgba(222,185,105,.45); background: #080908; box-shadow: 0 20px 50px rgba(0,0,0,.34); }
.art-large { grid-column: span 4; }
.art-tall { grid-column: span 2; grid-row: span 2; }
.art img { width: 100%; height: 100%; min-height: 14rem; object-fit: cover; }
.art-large img { aspect-ratio: 1.3; }
.art-tall img { aspect-ratio: .78; }
.collection-copy > p:not(.eyebrow) { max-width: 34rem; color: var(--muted); font-size: 1.1rem; }
.check-list { list-style: none; margin: 2rem 0 0; padding: 0; }
.check-list li { position: relative; padding: .5rem 0 .5rem 1.8rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-light); }

.statement { border-block: 1px solid var(--line); background: #0d0e0d; text-align: center; }
.statement-inner { max-width: 1200px; }
.statement blockquote { font-size: clamp(2.6rem, 5vw, 6.5rem); }
.statement-inner > p:last-child { max-width: 48rem; margin: 2.2rem auto 0; color: var(--muted); }

.pricing-grid { display: grid; grid-template-columns: 1fr minmax(320px, 560px); align-items: center; gap: clamp(4rem, 9vw, 11rem); }
.pricing-copy p:last-child { max-width: 42rem; color: var(--muted); }
.price-card { padding: clamp(2rem, 4vw, 4rem); border: 1px solid var(--gold-dark); background: linear-gradient(145deg, #20211f, #141513); box-shadow: var(--shadow); }
.price-label { color: var(--gold-light); font-size: .8rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.price { margin: 1.4rem 0 .2rem; font-size: clamp(4rem, 7vw, 7.8rem); line-height: 1; font-weight: 300; }
.price sup { font-size: .35em; vertical-align: top; }
.price span { font-size: .3em; }
.price-card > p, .price-card small { color: var(--muted); }
.price-card ul { margin: 2rem 0; padding-left: 1.2rem; }
.price-card li { margin: .55rem 0; }
.price-card small { display: block; margin-top: 1.2rem; text-align: center; }

.site-footer { padding: 3rem 0; border-top: 1px solid var(--line); color: var(--muted); }
.brand-small { font-size: .9rem; color: var(--text); }
.brand-small .brand-mark { width: 1.8rem; height: 1.8rem; }
.footer-inner p { margin: 0; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (min-width: 2200px) {
  body { font-size: 21px; }
  .hero-frame { width: min(72%, 900px); }
}

@media (max-width: 960px) {
  :root { --shell: min(90vw, 760px); }
  .desktop-nav, .site-header .button { display: none; }
  .hero { min-height: auto; padding-top: 9rem; }
  .hero-grid, .collection-grid, .pricing-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  h1 { margin-inline: auto; }
  .lede { margin-inline: auto; }
  .hero-actions, .hero-meta { justify-content: center; }
  .hero-gallery { min-height: 34rem; margin-top: 2rem; }
  .hero-frame { width: min(68vw, 500px); }
  .gallery-bench { bottom: 0; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature:nth-child(2) { border-right: 1px solid var(--line); }
  .collection-copy { order: -1; }
  .pricing-copy { text-align: center; }
}

@media (max-width: 620px) {
  .section-pad { padding: 5.5rem 0; }
  .brand { font-size: 1rem; letter-spacing: .2em; }
  .brand-mark { width: 2.15rem; height: 2.15rem; }
  h1 { font-size: clamp(2.7rem, 13.5vw, 4.3rem); }
  h2 { font-size: clamp(2.35rem, 11vw, 4rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-meta { display: grid; gap: .65rem; }
  .hero-meta span::after { display: none; }
  .hero-gallery { min-height: 27rem; }
  .hero-frame { width: min(78vw, 390px); }
  .gallery-bench { width: 62%; height: 3.2rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature { min-height: auto; padding: 2.4rem 1rem; border-right: 1px solid var(--line); }
  .art-wall { grid-template-columns: repeat(2, 1fr); }
  .art, .art-large, .art-tall { grid-column: span 1; grid-row: auto; }
  .art-large { grid-column: span 2; }
  .art img { min-height: 11rem; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
