:root {
  --black: #080807;
  --near-black: #100f0d;
  --charcoal: #191712;
  --marble: #242119;
  --ivory: #f4efe4;
  --bone: #d8cebb;
  --silver: #c9c5ba;
  --muted: #a49a89;
  --gold: #b9924e;
  --gold-bright: #d0aa62;
  --line: rgba(208, 170, 98, 0.34);
  --soft-line: rgba(216, 206, 187, 0.15);
  --shadow: rgba(0, 0, 0, 0.5);
  --serif: "EB Garamond", Garamond, "Adobe Garamond Pro", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ivory);
  background:
    radial-gradient(circle at 70% 5%, rgba(185, 146, 78, 0.12), transparent 32rem),
    linear-gradient(180deg, #080807 0%, #0b0a09 38%, #080807 100%);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.42;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(185, 146, 78, 0.12) 42.1%, transparent 42.5%),
    linear-gradient(22deg, transparent 0 63%, rgba(255, 255, 255, 0.035) 63.1%, transparent 63.4%);
  background-size: 70rem 48rem, 52rem 52rem;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--black);
  background: var(--ivory);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 7, 0.88);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1160px, calc(100% - 40px));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: block;
  width: clamp(178px, 17vw, 242px);
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.52));
}

.brand img {
  width: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 44px);
  color: var(--bone);
  font-size: 21px;
}

.nav-links a {
  opacity: 0.9;
  transition: color 160ms ease, opacity 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold-bright);
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  color: var(--gold-bright);
  background: rgba(8, 8, 7, 0.76);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  width: min(1160px, calc(100% - 40px));
  min-height: clamp(620px, 74svh, 760px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 0.86fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(56px, 7vw, 92px) 0 clamp(34px, 4vw, 62px);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.kicker,
.section-label {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 500;
}

h1 {
  max-width: 720px;
  color: var(--ivory);
  font-size: clamp(54px, 7vw, 94px);
  line-height: 0.98;
}

h2 {
  color: var(--ivory);
  font-size: clamp(39px, 5vw, 68px);
  line-height: 1.02;
}

h3 {
  color: var(--ivory);
  font-size: 27px;
  line-height: 1.14;
}

p {
  margin: 0;
}

.tagline {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--gold-bright);
  font-size: clamp(30px, 3.2vw, 45px);
  font-style: italic;
  line-height: 1.08;
}

.lede,
.section-copy > p,
.section-head > p,
.vendors-grid > div > p,
.contact-layout > div > p {
  max-width: 720px;
  margin-top: 24px;
  color: var(--bone);
  font-size: clamp(21px, 2vw, 25px);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--gold);
  padding: 13px 24px;
  color: var(--ivory);
  background: rgba(185, 146, 78, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  font-weight: 600;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button span {
  color: var(--gold-bright);
  line-height: 1;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  border-color: var(--gold-bright);
  background: rgba(185, 146, 78, 0.16);
}

.button-secondary {
  background: rgba(8, 8, 7, 0.48);
}

.hero-figure {
  min-height: min(62vw, 655px);
  align-self: stretch;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.18), rgba(8, 8, 7, 0)),
    url("/assets/atlas-hero.jpg") 73% center / auto 100% no-repeat;
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.55));
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(62px, 7vw, 96px) 0;
  border-bottom: 1px solid var(--soft-line);
}

.section-grid,
.vendors-grid,
.contact-layout,
.footer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.notice-card {
  margin-top: 28px;
  border: 1px solid var(--line);
  padding: 24px;
  background: rgba(16, 15, 13, 0.75);
}

.notice-card strong {
  color: var(--gold-bright);
  font-size: 23px;
  font-weight: 600;
}

.notice-card p {
  margin-top: 10px;
  color: var(--bone);
}

.facts-panel,
.contact-summary,
.focus-card,
.contact-form {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(244, 239, 228, 0.035), rgba(244, 239, 228, 0)),
    rgba(16, 15, 13, 0.82);
  box-shadow: 0 26px 70px var(--shadow);
}

.facts-panel,
.contact-summary {
  padding: clamp(24px, 3vw, 34px);
}

.facts-panel h3,
.contact-summary h3 {
  color: var(--gold-bright);
  font-size: 24px;
  text-transform: uppercase;
}

dl {
  margin: 18px 0 0;
}

dl div {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--soft-line);
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  color: var(--ivory);
  text-align: right;
}

.section-head {
  max-width: 760px;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.focus-card {
  min-height: 255px;
  padding: 28px;
}

.card-mark {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--gold-bright);
  font-size: 24px;
}

.focus-card p,
.contact-summary p,
.vendor-list p {
  margin-top: 14px;
  color: var(--muted);
}

.statement-band {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.94), rgba(8, 8, 7, 0.78)),
    url("/assets/atlas-hero.jpg") center right / cover no-repeat;
}

.statement-band div {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(76px, 9vw, 122px) 0;
}

.statement-band p {
  max-width: 830px;
  color: var(--ivory);
  font-size: clamp(38px, 5.4vw, 74px);
  font-style: italic;
  line-height: 1.03;
}

.vendor-list {
  display: grid;
  gap: 0;
  margin-top: 34px;
}

.vendor-list div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  column-gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--soft-line);
}

.vendor-list span {
  grid-row: span 2;
  color: var(--gold-bright);
  font-size: 29px;
}

.vendor-list strong {
  color: var(--gold-bright);
  font-size: 23px;
  font-weight: 600;
}

.contact-summary p {
  padding-top: 18px;
  border-top: 1px solid var(--soft-line);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 36px);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--bone);
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(216, 206, 187, 0.25);
  padding: 12px 14px;
  color: var(--ivory);
  background: rgba(8, 8, 7, 0.62);
}

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

input:focus,
textarea:focus {
  outline: 2px solid rgba(208, 170, 98, 0.42);
  border-color: var(--gold-bright);
}

.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 1.4em;
  color: var(--muted);
}

.form-status.ok {
  color: #b9d8aa;
}

.form-status.err {
  color: #f0b1a0;
}

.site-footer {
  background: #070706;
}

.footer-layout {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(48px, 6vw, 78px) 0;
  grid-template-columns: minmax(180px, 290px) minmax(0, 1fr);
}

.footer-layout img {
  width: 100%;
}

.footer-layout p {
  color: var(--muted);
  font-size: 18px;
}

.footer-layout strong {
  color: var(--ivory);
}

.copyright {
  margin-top: 18px;
  color: var(--bone) !important;
}

.not-found {
  min-height: 82svh;
  display: grid;
  align-content: center;
}

.return-link {
  margin-top: 30px;
}

@media (max-width: 920px) {
  .nav {
    width: calc(100% - 28px);
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 14px;
    left: 14px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    background: rgba(8, 8, 7, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  }

  .nav-links.is-open {
    display: grid;
    gap: 12px;
  }

  .hero {
    width: calc(100% - 28px);
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .hero-copy {
    padding-top: clamp(230px, 58vw, 410px);
  }

  .hero-figure {
    position: absolute;
    inset: 84px 0 auto auto;
    width: min(95vw, 590px);
    min-height: clamp(290px, 70vw, 520px);
    opacity: 0.92;
    z-index: 0;
    pointer-events: none;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 84px 0 0;
    background: linear-gradient(180deg, rgba(8, 8, 7, 0) 0%, rgba(8, 8, 7, 0.72) 50%, #080807 78%);
    pointer-events: none;
    z-index: 1;
  }

  .section,
  .statement-band div,
  .footer-layout {
    width: calc(100% - 28px);
  }

  .section-grid,
  .vendors-grid,
  .contact-layout,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .focus-grid {
    grid-template-columns: 1fr;
  }

  .focus-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 18px;
  }

  .nav {
    min-height: 76px;
  }

  .brand {
    width: 190px;
  }

  .hero {
    padding-bottom: 42px;
  }

  .hero-copy {
    padding-top: 218px;
  }

  .hero-figure {
    inset: 76px -54px auto auto;
    width: calc(100% + 74px);
    min-height: 330px;
    opacity: 0.9;
  }

  .kicker,
  .section-label {
    font-size: 18px;
  }

  h1 {
    font-size: clamp(46px, 14vw, 64px);
  }

  h2 {
    font-size: clamp(35px, 11vw, 52px);
  }

  .tagline {
    font-size: clamp(28px, 9vw, 39px);
  }

  .lede,
  .section-copy > p,
  .section-head > p,
  .vendors-grid > div > p,
  .contact-layout > div > p {
    font-size: 21px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

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

  .hero-actions .button {
    width: auto;
    min-height: 50px;
    padding: 11px 10px;
    font-size: 17px;
  }

  .contact-form .button {
    width: 100%;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  dd {
    text-align: left;
  }

  .vendor-list div {
    grid-template-columns: 42px minmax(0, 1fr);
  }
}
