:root {

  --ink:       #0c0c0d;
  --deep:      #08080a;
  --raise:     #151517;
  --line-d:    #26262a;

  --bone:      #f3f0ea;
  --mute:      #a8a29a;
  --sand:      #cbb68f;

  --paper:     #f3f0ea;
  --tint:      #e7e2d9;
  --line-l:    #d8d2c7;

  --ink-text:  #141416;
  --body:      #4a4741;
  --quiet:     #5f5c55;
  --sand-deep: #6d562c;

  --display: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1240px;
  --gut: 24px;
  --pad: 120px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: 3px;
}
.on-light :focus-visible { outline-color: var(--sand-deep); }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gut);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--bone);
  color: var(--ink);
  padding: 12px 18px;
  z-index: 200;
  font-weight: 600;
}
.skip:focus { left: 8px; top: 8px; }

.demobar {
  background: var(--sand);
  color: var(--ink);
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: center;
  padding: 9px 18px;
}
.demobar a { color: var(--ink); font-weight: 700; }

.head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 12, 13, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-d);
}
.head__in {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gut);
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 74px;

  flex-wrap: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: auto;
  min-height: 44px;
  min-width: 0;
}
.brand__mark { flex: none; }
.brand__txt { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.brand b {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.32rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  line-height: 1.1;
  white-space: nowrap;
}
.brand span {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  white-space: nowrap;
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--mute);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.nav a:hover { color: var(--bone); }
.nav a[aria-current="page"] { color: var(--bone); }

.head__tel {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--bone);
  white-space: nowrap;
  min-height: 44px;
}
.head__tel:hover { color: var(--sand); }
.head__tel svg { flex: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  padding: 15px 26px;
  min-height: 48px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn--solid { background: var(--bone); color: var(--ink); }
.btn--solid:hover { background: var(--sand); color: var(--ink); }
.btn--ghost { background: transparent; color: var(--bone); border-color: var(--line-d); }
.btn--ghost:hover { border-color: var(--sand); color: var(--sand); }
.btn--dark { background: var(--ink-text); color: var(--bone); }
.btn--dark:hover { background: var(--sand-deep); color: var(--bone); }

.head .btn { padding: 0 22px; min-height: 44px; }

.menu { display: none; position: relative; }
.menu > summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line-d);
  color: var(--bone);
  font-size: 0.72rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}
.menu > summary::-webkit-details-marker { display: none; }
.menu[open] > summary { border-color: var(--sand); }
.menu__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  min-width: 232px;
  background: var(--raise);
  border: 1px solid var(--line-d);
  padding: 8px;
  display: flex;
  flex-direction: column;
}
.menu__panel a {
  text-decoration: none;
  color: var(--bone);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 14px;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.menu__panel a:hover { background: var(--ink); color: var(--sand); }

.hero { position: relative; background: var(--deep); overflow: hidden; }
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(6, 6, 7, 0.95) 0px, rgba(6, 6, 7, 0.92) 140px,
                    rgba(6, 6, 7, 0.62) 240px, rgba(6, 6, 7, 0) 340px),
    linear-gradient(100deg, rgba(6, 6, 7, 0.93) 0%, rgba(6, 6, 7, 0.82) 40%,
                    rgba(6, 6, 7, 0.48) 70%, rgba(6, 6, 7, 0.2) 100%);
}
.hero__in {
  position: relative;
  z-index: 1;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 168px var(--gut) 76px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.5rem, 6.4vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.018em;
  margin: 0 0 26px;
  max-width: 17ch;
  color: var(--bone);
}
.hero h1 em { font-style: italic; color: var(--sand); }
.hero__sub {
  font-size: 1.06rem;
  line-height: 1.6;
  color: var(--bone);
  max-width: 46ch;
  margin: 0 0 34px;
}
.hero__act { display: flex; flex-wrap: wrap; gap: 14px; }

.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sand);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::after {
  content: "";
  height: 1px;
  width: 56px;
  background: var(--line-d);
  flex: none;
}
.on-light .eyebrow { color: var(--sand-deep); }
.on-light .eyebrow::after { background: var(--line-l); }

.sec { padding: var(--pad) 0; }
.sec--tight { padding: 84px 0; }
.on-light { background: var(--paper); color: var(--body); }
.on-light h2, .on-light h3 { color: var(--ink-text); }

h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.14;
  letter-spacing: -0.012em;
  margin: 0 0 22px;
  max-width: 22ch;
}
h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.32rem;
  line-height: 1.28;
  margin: 0 0 12px;
}

.sec p:not(.eyebrow), .hero p:not(.eyebrow) { max-width: 62ch; }

.lead {
  font-family: var(--display);
  font-size: clamp(1.28rem, 2.3vw, 1.72rem);
  line-height: 1.48;
  color: var(--bone);
  max-width: 30ch;
}
.on-light .lead { color: var(--ink-text); }

.dim { color: var(--mute); }
.on-light .dim { color: var(--quiet); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 64px;
  align-items: start;
}

.grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}
.tile { margin: 0; min-width: 0; }
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--raise);
}
.tile figcaption {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--mute);
}
.tile .num {
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--sand);
  flex: none;
}
.tile .what { color: var(--bone); }

.s2 { grid-column: span 2; }
.s3 { grid-column: span 3; }
.s4 { grid-column: span 4; }

.ar-ls  { aspect-ratio: 3 / 2; }
.ar-pt  { aspect-ratio: 2 / 3; }
.ar-sq  { aspect-ratio: 1 / 1; }
.ar-tl  { aspect-ratio: 4 / 5; }
.ar-34  { aspect-ratio: 3 / 4; }

.feat { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 60px; align-items: center; }
.feat + .feat { margin-top: 104px; }
.feat__txt { min-width: 0; }
.feat__media { min-width: 0; }

.feat img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--raise);
}

.feat--flip { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.feat--flip .feat__media { order: 2; }

.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2px; }
.card {
  background: var(--raise);
  padding: 40px 34px 44px;
  min-width: 0;
}
.on-light .card { background: var(--tint); }
.card .num {
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  color: var(--sand);
  display: block;
  margin-bottom: 22px;
}
.on-light .card .num { color: var(--sand-deep); }
.card p { color: var(--mute); margin: 0; }
.on-light .card p { color: var(--quiet); }

.state { background: var(--deep); }
.state blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.34;
  letter-spacing: -0.008em;
  color: var(--bone);
  max-width: 24ch;
}

.ticks { list-style: none; margin: 0; padding: 0; }
.ticks li {
  position: relative;
  padding: 14px 0 14px 30px;
  border-bottom: 1px solid var(--line-d);
  color: var(--mute);
}
.on-light .ticks li { border-color: var(--line-l); color: var(--body); }

.ticks strong { color: var(--bone); font-weight: 600; }
.on-light .ticks strong { color: var(--ink-text); }
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 14px;
  height: 1px;
  background: var(--sand);
}
.on-light .ticks li::before { background: var(--sand-deep); }

.spec { width: 100%; border-collapse: collapse; }
.spec th, .spec td {
  text-align: left;
  padding: 16px 14px 16px 0;
  border-bottom: 1px solid var(--line-d);
  vertical-align: top;
}
.on-light .spec th, .on-light .spec td { border-color: var(--line-l); }
.spec th {
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  width: 34%;
}
.on-light .spec th { color: var(--sand-deep); }
.spec td { color: var(--mute); }
.on-light .spec td { color: var(--body); }

.tlink {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--sand);
  min-height: 44px;
}
.on-light .tlink { color: var(--sand-deep); }

.tlink > svg { flex: none; transition: transform 0.15s; }
.tlink:hover > svg { transform: translateX(4px); }

.form { display: grid; gap: 20px; }
.row2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--bone);
  background: var(--raise);
  border: 1px solid var(--line-d);
  padding: 14px 15px;
  min-height: 50px;
  width: 100%;
  min-width: 0;
}
.field textarea { min-height: 148px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--mute); opacity: 1; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--sand); }
.hint { font-size: 0.82rem; color: var(--mute); margin: 0; }

.after-head { margin-top: 44px; }

.more { margin-top: 38px; }

.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }

.plain {
  color: var(--bone);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.plain:hover { color: var(--sand); }
.on-light .plain { color: var(--ink-text); }

.spec-block { margin-top: 64px; max-width: 840px; }
.spec-block h3 { margin-bottom: 22px; }

.foot { background: var(--deep); border-top: 1px solid var(--line-d); padding: 84px 0 38px; }
.foot__top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
.foot h4 {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin: 0 0 18px;
  font-weight: 600;
}
.foot a { color: var(--mute); text-decoration: none; }
.foot a:hover { color: var(--bone); }
.foot p { margin: 0 0 9px; }
.foot p:last-child { margin-bottom: 0; }
.foot__intro { margin-bottom: 15px; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }

.foot li a,
.foot p a,
.foot__bar a { display: inline-flex; align-items: center; min-height: 44px; }
.foot__bar {
  margin-top: 60px;
  padding-top: 26px;
  border-top: 1px solid var(--line-d);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--mute);
}

.phead { padding: 92px 0 68px; border-bottom: 1px solid var(--line-d); }
.phead h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: -0.016em;
  margin: 0 0 20px;
  max-width: 18ch;
}
.phead p:not(.eyebrow) { color: var(--mute); max-width: 56ch; margin: 0; font-size: 1.04rem; }

.brk { overflow-wrap: anywhere; }

@media (max-width: 1040px) {
  :root { --pad: 92px; }
  .split { gap: 44px; }
  .feat { gap: 40px; }
  .grid { gap: 22px; }
}

@media (max-width: 940px) {
  .nav { display: none; }
  .menu { display: block; }
  .head__tel { order: 1; }
  .menu { order: 2; }
  .head .btn { display: none; }
  .head__in { gap: 14px; }
}

@media (max-width: 860px) {
  .split { grid-template-columns: minmax(0, 1fr); gap: 30px; }

  .feat, .feat--flip { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .feat + .feat { margin-top: 66px; }

  .feat--flip .feat__media { order: 0; }
  .cards { grid-template-columns: minmax(0, 1fr); }
  .foot__top { grid-template-columns: 1fr 1fr; gap: 36px; }

  .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .s4 { grid-column: span 4; }
  .s3 { grid-column: span 2; }
  .s2 { grid-column: span 2; }
}

@media (max-width: 700px) {
  :root { --pad: 72px; --gut: 20px; }

  .hero { display: flex; flex-direction: column; }
  .hero__img {
    position: static;
    height: auto;
    aspect-ratio: 5 / 4;
    object-position: center 45%;
  }
  .hero::after { display: none; }
  .hero__in {
    min-height: 0;
    padding-top: 44px;
    padding-bottom: 60px;
  }
  .row2 { grid-template-columns: minmax(0, 1fr); }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .s4, .s3, .s2 { grid-column: span 2; }

  .grid .half { grid-column: span 1; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .brand span { display: none; }
  .brand b { font-size: 1.18rem; }
  .foot__top { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .hero__act .btn { flex: 1 1 100%; }
  .state blockquote { max-width: none; }
}

@media (max-width: 430px) {
  .menu > summary { padding-left: 13px; padding-right: 13px; gap: 0; }
  .menu > summary .lbl { display: none; }
  .head__tel .telnum { display: none; }
  .head__tel { min-width: 44px; justify-content: center; gap: 0; }
  .head__in { gap: 10px; min-height: 66px; }
  .brand b { font-size: 1.06rem; letter-spacing: 0.04em; }
  .brand__mark { width: 26px; height: 26px; }
  .grid { gap: 14px; }
  .card { padding: 30px 24px 34px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

@media print {
  .head, .demobar, .foot, .skip, .menu { display: none; }
  body { background: #fff; color: #000; }
}
