@font-face {
  font-family: "Inter";
  src: url("assets/fonts/woff2/inter-latin-400-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/woff2/inter-latin-500-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/woff2/inter-latin-600-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/woff2/inter-latin-700-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/woff2/barlow-condensed-latin-600-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/woff2/barlow-condensed-latin-700-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/woff2/barlow-condensed-latin-800-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --black: #111315;
  --charcoal: #1a1d1f;
  --cream: #f2efe7;
  --cream-dark: #e7e2d8;
  --orange: #ed6a2c;
  --white: #ffffff;
  --muted: #a5a6a2;
  --dark-muted: #626461;
  --line-light: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(17, 19, 21, 0.18);
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--cream);
  background: var(--black);
  font-family: Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 100;
  padding: 12px 16px;
  color: #fff;
  background: var(--orange);
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid var(--line-light);
  background: rgba(17, 19, 21, 0.94);
  backdrop-filter: blur(12px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
}
.brand-mark {
  display: flex;
  height: 22px;
  align-items: flex-end;
  gap: 3px;
  transform: skewX(-13deg);
}
.brand-mark i { display: block; width: 6px; background: var(--orange); }
.brand-mark i:nth-child(1) { height: 12px; }
.brand-mark i:nth-child(2) { height: 17px; }
.brand-mark i:nth-child(3) { height: 22px; }
nav { display: flex; align-items: center; gap: 24px; }
nav a { display: none; color: #d7d6d1; font-size: 12px; font-weight: 600; text-decoration: none; }
nav .nav-cta {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  color: #fff;
  background: var(--orange);
}

.hero {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: #202326;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 11, 0.94) 0%, rgba(8, 10, 11, 0.74) 47%, rgba(8, 10, 11, 0.12) 100%),
    linear-gradient(0deg, rgba(8, 10, 11, 0.55) 0%, transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 590px;
  max-width: var(--max);
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 76px 20px 96px;
}
.eyebrow, .kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin-top: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  text-transform: uppercase;
}
h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(54px, 15vw, 82px);
  line-height: 0.9;
  letter-spacing: -0.025em;
}
.hero-copy {
  max-width: 580px;
  margin: 0;
  color: #d1d1cc;
  font-size: 15px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.button-primary { color: #fff; background: var(--orange); }
.button-primary:hover { background: #ff7937; }
.button-dark { color: #fff; border-color: rgba(255, 255, 255, 0.45); background: rgba(17, 19, 21, 0.62); }
.image-note {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section { padding: 54px 20px; }
.section-heading h2, .inquiry h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 10vw, 58px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.storage { color: var(--black); background: var(--cream); }
.storage-list {
  display: grid;
  margin-top: 32px;
  border-top: 1px solid var(--line-dark);
}
.storage-list article {
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
}
.storage-list h3 { margin: 0; font-size: 22px; line-height: 1; }
.storage-list p { margin: 8px 0 0; color: var(--dark-muted); font-size: 12px; line-height: 1.5; }

.why { color: var(--cream); background: var(--charcoal); }
.why-grid {
  display: grid;
  margin-top: 32px;
  border-top: 1px solid var(--line-light);
}
.why-grid article { padding: 20px 0; border-bottom: 1px solid var(--line-light); }
.why-grid h3 { margin: 0 0 7px; font-size: 21px; }
.why-grid p { max-width: 290px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.accuracy-note {
  margin: 20px 0 0;
  color: #777a77;
  font-size: 9px;
  line-height: 1.5;
  text-transform: uppercase;
}

.inquiry {
  display: grid;
  gap: 30px;
  background: var(--black);
}
.inquiry-copy > a { display: inline-block; margin-top: 24px; color: var(--cream); font-size: 19px; line-height: 1.4; text-underline-offset: 4px; }
.inquiry-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  color: var(--black);
  background: var(--cream);
}
.inquiry-form label { display: grid; gap: 7px; }
.inquiry-form label > span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.inquiry-form label small { color: #787a76; font-size: 8px; font-weight: 500; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea {
  width: 100%;
  min-height: 47px;
  padding: 0 12px;
  border: 1px solid #c8c4ba;
  border-radius: 0;
  outline: none;
  color: var(--black);
  background: #fbfaf6;
}
.inquiry-form textarea { min-height: 82px; padding-top: 12px; resize: vertical; }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(237, 106, 44, 0.14);
}
.field-row { display: grid; gap: 16px; }
.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}
.form-status:empty { display: none; }
.form-status[data-state="pending"] { color: #626461; }
.form-status[data-state="success"] { color: #2f6542; }
.form-status[data-state="error"] { color: #9a2f24; }
.inquiry-form[aria-busy="true"] .button { cursor: wait; opacity: 0.72; }
.form-action {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  padding-top: 4px;
}
footer {
  display: grid;
  gap: 12px;
  padding: 28px 20px;
  border-top: 1px solid var(--line-light);
  color: #747774;
}
footer p { margin: 0; font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-brand { color: #dddcd6; font-size: 18px; }
.footer-brand .brand-mark { height: 18px; }
.footer-brand .brand-mark i { width: 5px; }
.footer-brand .brand-mark i:nth-child(1) { height: 10px; }
.footer-brand .brand-mark i:nth-child(2) { height: 14px; }
.footer-brand .brand-mark i:nth-child(3) { height: 18px; }

@media (min-width: 640px) {
  .site-header { padding-right: 28px; padding-left: 28px; }
  nav a { display: inline-flex; }
  .hero-actions { flex-direction: row; }
  .hero-actions .button { min-width: 150px; }
  .storage-list { grid-template-columns: repeat(2, 1fr); border-left: 1px solid var(--line-dark); }
  .storage-list article { min-height: 142px; padding: 24px; border-right: 1px solid var(--line-dark); }
  .why-grid { grid-template-columns: repeat(2, 1fr); border-left: 1px solid var(--line-light); }
  .why-grid article { min-height: 132px; padding: 24px; border-right: 1px solid var(--line-light); }
  .field-row { grid-template-columns: repeat(2, 1fr); }
  .form-action { flex-direction: row; align-items: center; justify-content: flex-end; }
  footer { grid-template-columns: 1fr auto; align-items: center; }
  footer p:last-child { grid-column: 2; }
}

@media (min-width: 900px) {
  .site-header { min-height: 70px; padding: 0 max(32px, calc((100vw - var(--max)) / 2)); }
  .hero, .hero-content { min-height: 660px; }
  .hero-content { padding-right: 32px; padding-left: 32px; }
  h1 { font-size: 88px; }
  .hero-copy { font-size: 17px; }
  .section {
    padding: 70px max(32px, calc((100vw - var(--max)) / 2));
  }
  .storage {
    display: grid;
    grid-template-columns: 0.62fr 1.38fr;
    gap: 70px;
    align-items: start;
  }
  .storage-list { grid-template-columns: repeat(2, 1fr); margin-top: 0; }
  .why {
    display: grid;
    grid-template-columns: 0.62fr 1.38fr;
    gap: 70px;
    align-items: start;
  }
  .why-grid { margin-top: 0; }
  .accuracy-note { grid-column: 2; }
  .inquiry { grid-template-columns: 0.7fr 1.3fr; gap: 80px; align-items: start; }
  .inquiry-form { padding: 30px; }
  footer {
    grid-template-columns: 1fr auto auto;
    gap: 30px;
    padding: 32px max(32px, calc((100vw - var(--max)) / 2));
  }
  footer p:last-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
