@font-face {
  font-family: Prata;
  src: url("assets/fonts/Prata-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Montserrat;
  src: url("assets/fonts/Montserrat-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Montserrat;
  src: url("assets/fonts/Montserrat-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --ink: #f4f0e8;
  --ink-muted: rgb(244 240 232 / 72%);
  --ink-faint: rgb(244 240 232 / 48%);
  --bronze: #a77c4f;
  --bronze-light: #d0aa7c;
  --surface: rgb(10 13 16 / 90%);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --gutter: clamp(28px, 4vw, 68px);
  --header-height: clamp(84px, 12.5svh, 124px);
  --copy-width: min(58vw, 780px);
  --form-width: min(100%, clamp(560px, 43vw, 700px));
  --control-height: clamp(66px, 8.8vmin, 80px);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #090c0f;
}

body {
  min-width: 320px;
  color: var(--ink);
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body *::selection {
  background: var(--bronze);
  color: #0a0d10;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.visually-hidden,
.website-field {
  position: fixed;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.catalog-landing {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #090c0f;
}

.hero-art {
  position: absolute;
  z-index: -3;
  inset: 0;
  display: block;
}

.hero-art__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: art-reveal 800ms var(--ease-out) both;
}

.catalog-landing__shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(4 6 8 / 94%) 0%, rgb(4 6 8 / 86%) 34%, rgb(4 6 8 / 42%) 53%, transparent 72%),
    linear-gradient(180deg, rgb(0 0 0 / 34%) 0%, transparent 25%, transparent 72%, rgb(0 0 0 / 36%) 100%);
}

.page-shell {
  width: min(calc(100% - (2 * var(--gutter))), 2200px);
  height: 100%;
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 3;
  display: flex;
  height: var(--header-height);
  padding-top: clamp(22px, 3.6svh, 42px);
  align-items: flex-start;
  justify-content: space-between;
}

.brand-mark {
  display: block;
  width: clamp(44px, 6.2vmin, 58px);
  height: clamp(54px, 7.5vmin, 70px);
  object-fit: contain;
}

.legal-nav {
  color: rgb(244 240 232 / 58%);
  font-size: clamp(9px, 1.35vmin, 12px);
}

.legal-nav a {
  text-decoration: none;
  text-decoration-color: transparent;
  text-underline-offset: 5px;
  transition: color 160ms var(--ease-out), text-decoration-color 160ms var(--ease-out);
}

.legal-nav a:focus-visible,
.download-button:focus-visible,
.phone-field:focus-within {
  outline: 2px solid var(--bronze-light);
  outline-offset: 5px;
}

.legal-nav--desktop {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(24px, 3.4vw, 56px);
  padding-top: 10px;
}

.legal-nav--mobile {
  display: none;
}

.catalog-main {
  height: calc(100% - var(--header-height));
  min-height: 0;
}

.catalog-copy {
  position: relative;
  z-index: 2;
  width: var(--copy-width);
  padding-top: clamp(34px, 7svh, 78px);
}

.catalog-facts {
  position: relative;
  display: flex;
  width: var(--form-width);
  margin: 0;
  padding: 0 0 0 clamp(42px, 3.6vw, 60px);
  align-items: baseline;
  justify-content: flex-start;
  list-style: none;
  color: var(--bronze-light);
  font-size: clamp(9px, 1.45vmin, 12px);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.catalog-facts::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: clamp(28px, 2.6vw, 44px);
  height: 1px;
  background: var(--bronze);
  content: "";
}

.catalog-facts strong {
  margin-right: 3px;
  font-family: Prata, Georgia, serif;
  font-size: 1.2em;
  font-weight: 400;
}

h1 {
  max-width: 820px;
  margin: clamp(28px, 4.5svh, 44px) 0 0;
  color: #f7f2e9;
  font-family: Prata, Georgia, serif;
  font-size: clamp(44px, 6.4vmin, 62px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.018em;
  text-wrap: balance;
  text-transform: uppercase;
  text-shadow: 0 4px 28px rgb(0 0 0 / 42%);
}

.title-line {
  display: block;
  white-space: nowrap;
}

.catalog-subtitle {
  width: max-content;
  max-width: none;
  margin: clamp(20px, 3.2svh, 30px) 0 0;
  color: var(--ink-muted);
  font-size: clamp(8px, 1.25vw, 18px);
  line-height: 1.5;
  white-space: nowrap;
}

.catalog-form {
  position: relative;
  display: flex;
  width: var(--form-width);
  min-height: clamp(170px, 23vmin, 204px);
  margin-top: clamp(26px, 4svh, 40px);
  flex-direction: column;
}

.catalog-form__controls {
  display: grid;
  min-height: var(--control-height);
  grid-template-columns: minmax(0, 1fr) clamp(190px, 13.5vw, 230px);
  border: 1px solid rgb(244 240 232 / 14%);
  background: var(--surface);
  box-shadow: 0 24px 58px rgb(0 0 0 / 42%);
  backdrop-filter: blur(14px);
}

.phone-field {
  display: flex;
  min-width: 0;
  padding: 0 clamp(22px, 2vw, 32px);
  align-items: center;
  transition: background-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
}

.phone-field:focus-within {
  background: rgb(20 22 23 / 96%);
  box-shadow: inset 0 0 0 1px var(--bronze-light);
}

.phone-field input {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--bronze-light);
  caret-color: var(--bronze-light);
  font-size: clamp(15px, 2vmin, 18px);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.035em;
}

.phone-field input::placeholder {
  color: var(--bronze-light);
  opacity: 0.74;
}

.download-button {
  width: 100%;
  min-height: var(--control-height);
  padding: 0 18px;
  border: 0;
  background: var(--bronze);
  color: var(--ink);
  cursor: pointer;
  font-size: clamp(14px, 1.95vmin, 17px);
  font-weight: 500;
  transition: transform 150ms var(--ease-out), background-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
}

.download-button:focus-visible {
  outline-color: var(--ink);
  outline-offset: -6px;
}

.download-button:active {
  transform: scale(0.98);
}

.download-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.catalog-form__details {
  display: grid;
  gap: clamp(12px, 1.8vmin, 16px);
  margin-top: clamp(14px, 2vmin, 18px);
}

.catalog-meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: space-between;
  color: rgb(244 240 232 / 64%);
  font-size: clamp(8.5px, 1.2vmin, 10.5px);
  font-variant-numeric: tabular-nums;
}

.catalog-agreement,
.catalog-credit {
  margin: 0;
  color: var(--ink-faint);
  font-size: clamp(9px, 1.3vmin, 11px);
  line-height: 1.45;
}

.catalog-agreement a {
  text-underline-offset: 3px;
}
.consent-choice { display: flex; align-items: flex-start; gap: 9px; }
.consent-choice input { flex: 0 0 18px; width: 18px; height: 18px; margin: 1px 0 0; accent-color: #bfa078; }
.consent-choice + .consent-choice { margin-top: 12px; }
.catalog-privacy { margin-top: 8px; }

.catalog-status,
.catalog-nojs {
  min-height: 13px;
  margin: 7px 0 0;
  color: var(--bronze-light);
  font-size: clamp(8.5px, 1.2vmin, 10.5px);
}

.catalog-credit {
  margin-top: clamp(4px, 1svh, 10px);
  color: rgb(244 240 232 / 42%);
}

@keyframes art-reveal {
  from {
    opacity: 0.35;
    filter: blur(5px);
    transform: scale(1.012);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

@media (hover: hover) and (pointer: fine) {
  .legal-nav a:hover {
    color: var(--ink);
    text-decoration: underline;
    text-decoration-color: currentColor;
  }

  .download-button:hover {
    background: var(--bronze-light);
    box-shadow: 0 14px 30px rgb(0 0 0 / 26%);
    transform: translateY(-2px);
  }
}

@media (max-width: 980px) and (min-width: 761px) {
  :root {
    --copy-width: min(64vw, 650px);
    --form-width: min(100%, 590px);
  }

  .legal-nav--desktop {
    gap: 20px;
  }

  h1 {
    font-size: clamp(40px, 5.8vmin, 52px);
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 18px;
    --header-height: 76px;
    --copy-width: 100%;
    --form-width: 100%;
    --control-height: 52px;
  }

  .hero-art__image {
    object-position: center;
  }

  .catalog-landing__shade {
    background:
      linear-gradient(180deg, rgb(5 7 9 / 96%) 0%, rgb(5 7 9 / 86%) 31%, rgb(5 7 9 / 14%) 48%, rgb(5 7 9 / 36%) 68%, rgb(5 7 9 / 97%) 88%),
      linear-gradient(90deg, rgb(5 7 9 / 42%), transparent 48%);
  }

  .site-header {
    padding-top: 17px;
  }

  .brand-mark {
    width: 37px;
    height: 45px;
  }

  .legal-nav--desktop {
    display: none;
  }

  .catalog-main {
    display: flex;
    height: calc(100% - var(--header-height));
    flex-direction: column;
  }

  .catalog-copy {
    display: flex;
    height: 100%;
    min-height: 0;
    padding-top: 10px;
    flex-direction: column;
  }

  .catalog-facts {
    width: 100%;
    padding-left: 30px;
    font-size: clamp(7.5px, 2.4vw, 9px);
  }

  .catalog-facts::before {
    width: 20px;
  }

  h1 {
    max-width: 100%;
    margin-top: 16px;
    font-size: clamp(26px, 8.5vw, 36px);
    line-height: 1.02;
  }

  .catalog-subtitle {
    width: max-content;
    margin-top: 12px;
    font-size: clamp(8px, 2.08vw, 10px);
    line-height: 1.42;
  }

  .catalog-form {
    min-height: 0;
    margin-top: auto;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
  }

  .catalog-form__controls {
    min-height: 0;
    grid-template-columns: 1fr 150px;
    backdrop-filter: blur(12px);
  }

  .phone-field {
    padding: 0 14px;
  }

  .phone-field input,
  .download-button {
    font-size: 12px;
  }

  .catalog-form__details {
    gap: 6px;
    margin-top: 8px;
  }

  .catalog-meta {
    font-size: 7.5px;
  }

  .catalog-agreement,
  .catalog-credit,
  .catalog-status {
    font-size: 7.5px;
  }

  .catalog-credit {
    margin-top: 2px;
  }

  .legal-nav--mobile {
    display: none;
  }
}

@media (max-height: 640px) and (min-width: 761px) {
  :root {
    --header-height: 72px;
    --control-height: 58px;
  }

  .site-header {
    padding-top: 16px;
  }

  .brand-mark {
    width: 38px;
    height: 46px;
  }

  .catalog-copy {
    padding-top: 12px;
  }

  h1 {
    margin-top: 18px;
    font-size: 38px;
  }

  .catalog-subtitle {
    margin-top: 12px;
    font-size: 14px;
  }

  .catalog-form {
    min-height: 142px;
    margin-top: 16px;
  }

  .catalog-form__details {
    gap: 7px;
    margin-top: 8px;
  }
}

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

/* The supplied cover is rendered directly, preserving its actual content. */
html, body { height: auto; min-height: 100%; overflow: auto; }
.catalog-landing { min-height: 760px; height: 100svh; background: radial-gradient(ellipse at 78% 48%, #35302b 0, #141619 40%, #090c0f 75%); }
.catalog-landing__shade { background: linear-gradient(90deg, #090c0f 0%, rgb(9 12 15 / 86%) 34%, transparent 75%); }
.site-header { align-items: flex-start; gap: 28px; }
.legal-nav--desktop { grid-template-columns: repeat(2, auto); margin-left: auto; gap: 28px; }
.contact-phone { padding-top: 8px; white-space: nowrap; text-decoration: none; font-size: 14px; color: var(--ink); }
.contact-phone:focus-visible, .catalog-credit a:focus-visible { outline: 2px solid var(--bronze-light); outline-offset: 5px; }
.catalog-copy { width: min(61vw, 880px); padding-top: clamp(30px, 7svh, 80px); }
h1 { font-size: clamp(36px, 4.25vw, 68px); line-height: 1.14; }
.catalog-subtitle { width: auto; max-width: 100%; white-space: normal; font-size: clamp(13px, 1.15vw, 18px); }
.catalog-preview { position: absolute; z-index: -1; width: min(25vw, 390px); top: 50%; right: 7%; transform: translateY(-45%) perspective(1500px) rotateY(-12deg) rotateZ(8deg); box-shadow: 18px 24px 0 -14px #b5b0a7, 24px 30px 0 -15px #77736c, 35px 55px 70px rgb(0 0 0 / 75%); }
.catalog-preview img { display: block; width: 100%; height: auto; }
.catalog-meta, .catalog-agreement, .catalog-credit, .catalog-status { font-size: 11px; }
.catalog-credit { color: var(--ink-muted); }
.catalog-credit a { text-underline-offset: 3px; }
@media (max-width: 1100px) { .legal-nav--desktop { display: none; } .contact-phone { margin-left: auto; } }
@media (max-width: 760px) {
  .catalog-landing { min-height: 780px; }
  .site-header { height: 72px; }
  .contact-phone { font-size: 12px; padding-top: 12px; }
  .catalog-copy { width: 100%; height: 100%; padding-top: 4px; }
  h1 { font-size: clamp(25px, 7.2vw, 45px); margin-top: 15px; line-height: 1.12; }
  .catalog-facts { font-size: 10px; }
  .catalog-subtitle { font-size: 12px; max-width: 340px; margin-top: 14px; }
  .catalog-preview { width: 164px; top: 43%; right: 50%; transform: translate(50%, -32%) perspective(1000px) rotateY(-12deg) rotateZ(8deg); }
  .catalog-form { margin-top: auto; padding-bottom: 0; }
  .catalog-form__controls { grid-template-columns: minmax(0, 1fr) 145px; }
  .phone-field { padding: 0 10px; }
  .phone-field input { font-size: 16px; letter-spacing: 0; }
  .download-button { font-size: 12px; padding: 0 8px; }
  .catalog-meta { font-size: 9px; }
  .catalog-agreement, .catalog-credit, .catalog-status { font-size: 10px; }
  .catalog-credit { margin: 6px 0 22px; }
  .catalog-main { height: calc(100% - 72px); }
}
@media (max-width: 360px) { .catalog-form__controls { grid-template-columns: 1fr; } .phone-field { min-height: 50px; } .catalog-landing { min-height: 850px; } }
@media (min-width: 761px) and (max-height: 760px) { .catalog-landing { min-height: 640px; } .catalog-copy { padding-top: 25px; } .catalog-preview { width: min(26vw, 290px); } }
.catalog-agreement { font-size: 13px; line-height: 1.5; color: #ded7cf; }
.consent-choice { gap: 10px; cursor: pointer; }
.consent-choice input { appearance: none; flex-basis: 22px; width: 22px; height: 22px; border: 1.5px solid #c7b4a4; border-radius: 6px; background: transparent; cursor: pointer; }
.consent-choice input:checked { background: #a77d4c; }
.consent-choice input:checked::after { content: ''; display: block; width: 5px; height: 10px; margin: 2px 0 0 7px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.consent-choice input:focus-visible { outline: 2px solid #f4f0e8; outline-offset: 3px; }
