:root {
  color-scheme: dark;
  --ink: #080706;
  --graphite: #12100f;
  --panel: #1b1513;
  --panel-soft: #251b18;
  --line: #44302b;
  --line-strong: #684337;
  --ivory: #f4eee5;
  --muted: #b9aaa0;
  --soft: #89786f;
  --copper: #c8793e;
  --copper-bright: #e7a56a;
  --oxblood: #742d34;
  --cyan: #42d6cf;
  --moss: #8b9d6c;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.4);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(160deg, rgba(116, 45, 52, 0.2), transparent 32rem),
    radial-gradient(circle at 12% 72%, rgba(200, 121, 62, 0.12), transparent 24rem),
    var(--ink);
  color: var(--ivory);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(244, 238, 229, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 238, 229, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.compact-header {
  position: relative;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: max-content;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  letter-spacing: 0;
}

.brand-mark,
.site-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, var(--panel), #0d0b0a);
  color: var(--copper-bright);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.site-mark {
  margin: 0 auto 20px;
}

nav {
  display: flex;
  gap: 22px;
  justify-content: center;
  color: var(--muted);
  font-size: 0.92rem;
}

nav a {
  transition: color 160ms ease;
}

nav a:hover {
  color: var(--ivory);
}

.header-cta,
.button,
.request-form button,
.age-actions button,
.age-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: transparent;
  color: var(--ivory);
  font-size: 0.92rem;
  font-weight: 750;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.header-cta {
  background: rgba(200, 121, 62, 0.1);
  color: var(--copper-bright);
}

.button.primary,
.request-form button,
.age-actions button {
  border-color: transparent;
  background: var(--copper);
  color: #120c08;
}

.button.secondary,
.age-actions a {
  background: rgba(244, 238, 229, 0.035);
}

.header-cta:hover,
.button:hover,
.request-form button:hover,
.age-actions button:hover,
.age-actions a:hover {
  transform: translateY(-1px);
  border-color: var(--copper-bright);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  width: min(100% - 36px, var(--max));
  min-height: calc(78vh - 78px);
  margin: 0 auto;
  padding: 18px 0 30px;
}

.hero-copy {
  max-width: 620px;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 15ch;
  margin-bottom: 24px;
  font-size: 5.1rem;
  line-height: 0.95;
}

.hero-copy p {
  max-width: 56ch;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.16rem;
}

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

.hero-media {
  position: relative;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(200, 121, 62, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(244, 238, 229, 0.08), rgba(18, 16, 15, 0.52));
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 400px;
  border-radius: 6px;
  object-fit: cover;
}

.hero-media figcaption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 2px;
  min-width: 210px;
  padding: 14px 16px;
  border: 1px solid rgba(244, 238, 229, 0.16);
  border-radius: 6px;
  background: rgba(8, 7, 6, 0.78);
  color: var(--ivory);
  backdrop-filter: blur(12px);
}

.hero-media figcaption strong {
  font-size: 0.92rem;
}

.hero-media figcaption span {
  color: var(--muted);
  font-size: 0.8rem;
}

.section {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) 0;
}

.intro-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}

.intro-band p {
  max-width: 860px;
  margin: 0;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  line-height: 1.22;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.55fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2,
.pricing-copy h2,
.policy-band h2,
.contact-section h2,
.request-intro h1,
.policy-page h1 {
  margin-bottom: 0;
  font-size: 3.6rem;
  line-height: 0.98;
}

.section-heading p,
.pricing-copy p,
.contact-section p,
.request-intro p,
.policy-page p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.art-item {
  display: grid;
  min-height: 430px;
  align-content: start;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(27, 21, 19, 0.72);
}

.art-image {
  width: 100%;
  height: 270px;
  border: 1px solid rgba(244, 238, 229, 0.1);
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
  background: #151110;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.art-item h3 {
  margin-bottom: -6px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.art-item p {
  color: var(--muted);
  font-size: 0.94rem;
}

.art-item strong {
  align-self: end;
  color: var(--copper-bright);
  font-size: 1.1rem;
}

.panel-preview {
  min-height: 235px;
  border: 1px solid rgba(244, 238, 229, 0.1);
  border-radius: 6px;
  background-color: #151110;
  background-image:
    linear-gradient(112deg, rgba(244, 238, 229, 0.08), transparent 28%),
    repeating-linear-gradient(90deg, rgba(244, 238, 229, 0.055) 0 2px, transparent 2px 8px),
    linear-gradient(145deg, #331316, #c8793e 36%, #42d6cf 56%, #101010 78%);
  box-shadow: inset 0 0 0 14px rgba(0, 0, 0, 0.18);
}

.panel-two {
  background-image:
    linear-gradient(112deg, rgba(244, 238, 229, 0.09), transparent 34%),
    repeating-linear-gradient(90deg, rgba(244, 238, 229, 0.052) 0 2px, transparent 2px 7px),
    linear-gradient(145deg, #120f0d, #742d34 28%, #8b9d6c 54%, #c8793e 76%, #0c0b0a);
}

.panel-three {
  background-image:
    linear-gradient(112deg, rgba(244, 238, 229, 0.1), transparent 32%),
    repeating-linear-gradient(90deg, rgba(244, 238, 229, 0.05) 0 1px, transparent 1px 6px),
    linear-gradient(145deg, #0b0a09, #684337 26%, #742d34 48%, #42d6cf 66%, #151110);
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.price-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.price-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.price-list dt {
  color: var(--ivory);
  font-weight: 700;
}

.price-list dd {
  margin: 0;
  color: var(--copper-bright);
  font-weight: 800;
  text-align: right;
}

.process-section {
  border-top: 1px solid var(--line);
}

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

.process-steps article {
  padding-top: 18px;
  border-top: 2px solid var(--line-strong);
}

.process-steps span {
  display: block;
  margin-bottom: 30px;
  color: var(--copper-bright);
  font-size: 0.86rem;
  font-weight: 800;
}

.process-steps h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.process-steps p {
  color: var(--muted);
}

.policy-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: clamp(54px, 8vw, 86px) max(18px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(200, 121, 62, 0.3);
  border-bottom: 1px solid rgba(200, 121, 62, 0.3);
  background:
    linear-gradient(90deg, rgba(116, 45, 52, 0.48), rgba(18, 16, 15, 0.88)),
    var(--panel);
}

.policy-band p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
}

.policy-links {
  display: grid;
  gap: 10px;
  min-width: 190px;
}

.policy-links a,
.site-footer a {
  color: var(--copper-bright);
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.contact-section p {
  max-width: 650px;
}

.site-footer {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(8, 7, 6, 0.84);
  backdrop-filter: blur(18px);
}

.age-panel {
  width: min(100%, 520px);
  padding: clamp(30px, 6vw, 48px);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  text-align: center;
}

.age-panel h2 {
  margin-bottom: 14px;
  font-size: 3.2rem;
  line-height: 1;
}

.age-panel p {
  color: var(--muted);
}

.age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 22px;
}

.request-shell,
.policy-page {
  width: min(100% - 36px, 900px);
  margin: 0 auto;
  padding: clamp(42px, 8vw, 86px) 0 90px;
}

.request-intro {
  margin-bottom: 34px;
}

.request-intro h1,
.policy-page h1 {
  max-width: 11ch;
  margin-bottom: 18px;
}

.request-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(27, 21, 19, 0.78);
}

.request-form label {
  display: grid;
  gap: 8px;
  color: var(--ivory);
  font-size: 0.92rem;
  font-weight: 750;
}

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

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0e0c0b;
  color: var(--ivory);
  font-size: 0.98rem;
}

.request-form input,
.request-form select {
  min-height: 46px;
  padding: 0 13px;
}

.request-form textarea {
  min-height: 160px;
  resize: vertical;
  padding: 13px;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  outline: 2px solid rgba(66, 214, 207, 0.38);
  outline-offset: 2px;
  border-color: var(--cyan);
}

.checkbox-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-weight: 600;
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status[data-state="success"] {
  color: var(--moss);
}

.policy-page {
  max-width: 820px;
}

.policy-page h2 {
  margin: 40px 0 10px;
  font-size: 1.35rem;
}

.policy-page p {
  max-width: 72ch;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    grid-column: 1 / -1;
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .pricing-section,
  .policy-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 26px;
  }

  h1 {
    max-width: 13ch;
    font-size: 4.4rem;
  }

  .section-heading,
  .collection-rail,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .art-item {
    min-height: auto;
  }

  .policy-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body {
    background:
      linear-gradient(160deg, rgba(116, 45, 52, 0.18), transparent 26rem),
      var(--ink);
  }

  .site-header {
    width: min(100% - 28px, var(--max));
    gap: 16px;
  }

  .brand {
    font-size: 0.92rem;
  }

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

  .header-cta {
    display: none;
  }

  nav {
    gap: 16px;
    font-size: 0.86rem;
  }

  .hero,
  .section,
  .site-footer,
  .request-shell,
  .policy-page {
    width: min(100% - 28px, var(--max));
  }

  h1 {
    max-width: 13ch;
    font-size: 2.72rem;
  }

  .section-heading h2,
  .pricing-copy h2,
  .policy-band h2,
  .contact-section h2,
  .request-intro h1,
  .policy-page h1 {
    font-size: 2.45rem;
  }

  .hero-copy p {
    font-size: 1.02rem;
  }

  .hero-media img {
    height: 210px;
  }

  .hero {
    gap: 18px;
    padding: 14px 0 24px;
  }

  .hero-media {
    padding: 8px;
  }

  .hero-media figcaption {
    position: static;
    min-width: 0;
    margin-top: 8px;
  }

  .intro-band p {
    font-size: 1.3rem;
  }

  .age-panel h2 {
    font-size: 2.35rem;
  }

  .policy-links,
  .field-row {
    grid-template-columns: 1fr;
  }

  .price-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .price-list dd {
    text-align: left;
  }

  .site-footer {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
