:root {
  color-scheme: light;
  --ink: #171b20;
  --ink-soft: #27313a;
  --paper: #f3f1ed;
  --white: #ffffff;
  --muted: #6d7478;
  --line: #d7d4ce;
  --accent: #b85d43;
  --accent-dark: #8f3d2d;
  --sand: #e4ddd1;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, 'Avenir Next', Avenir, Arial, sans-serif;
  --content: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 10;
  padding: .75rem 1rem;
  background: var(--white);
  color: var(--ink);
}
.skip-link:focus { top: 1rem; }
.site-header {
  min-height: 88px;
  padding: 1rem max(5vw, calc((100vw - var(--content)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.05;
  font-size: 1.03rem;
  font-weight: 750;
  letter-spacing: .15em;
  white-space: nowrap;
}
.brand small {
  margin-top: .35rem;
  color: var(--muted);
  font-size: .58rem;
  font-weight: 650;
  letter-spacing: .32em;
}
.main-nav { display: flex; align-items: center; gap: clamp(1rem, 2.3vw, 2rem); }
.main-nav a {
  text-decoration: none;
  font-size: .88rem;
  font-weight: 650;
  color: #3e464b;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--accent-dark); }
.header-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .8rem 1.25rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .01em;
  transition: background .2s ease, transform .2s ease;
}
.header-cta:hover, .button:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); }
.button-light { background: transparent; color: var(--ink); }
.button-light:hover { color: var(--white); }
.button-accent { background: var(--accent); border-color: var(--accent); }
.section { padding: clamp(4rem, 7vw, 7.25rem) max(5vw, calc((100vw - var(--content)) / 2)); }
.section-dark { background: var(--ink); color: var(--paper); }
.section-white { background: var(--white); }
.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent-dark);
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-dark .eyebrow { color: #e7a28c; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; line-height: 1.05; }
h1 { max-width: 760px; margin-bottom: 1.25rem; font-size: clamp(2.7rem, 6vw, 5.25rem); }
h2 { margin-bottom: 1.1rem; font-size: clamp(2.1rem, 4vw, 3.55rem); }
h3 { margin-bottom: .5rem; font-size: 1.1rem; line-height: 1.3; }
.lead { max-width: 650px; color: #d2d4d5; font-size: clamp(1.05rem, 1.7vw, 1.25rem); }
.intro { max-width: 700px; color: #4d5559; font-size: 1.1rem; }
.section-dark .intro { color: #c9cccd; }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.75rem; }
.text-link { display: inline-flex; gap: .45rem; margin-top: .6rem; font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: .22em; }
.hero {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  background: var(--ink);
  color: var(--paper);
}
.hero-copy { align-self: center; padding: clamp(3rem, 7vw, 6.8rem) max(5vw, calc((100vw - var(--content)) / 2)); padding-right: 2rem; }
.hero h1 { max-width: 610px; }
.hero-media { min-height: 590px; position: relative; overflow: hidden; background: #31383c; }
.hero-media img { width: 100%; height: 100%; min-height: 590px; object-fit: cover; }
.hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23,27,32,.26), transparent 55%); pointer-events: none; }
.hero-note { position: absolute; z-index: 1; right: 1.5rem; bottom: 1.5rem; max-width: 240px; padding: 1rem 1.1rem; background: rgba(243,241,237,.94); color: var(--ink); font-size: .85rem; }
.value-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); background: var(--white); }
.value-item { padding: 1.35rem 1.5rem; text-align: center; font-size: .87rem; font-weight: 700; letter-spacing: .03em; }
.value-item + .value-item { border-left: 1px solid var(--line); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split-image { overflow: hidden; background: var(--sand); }
.split-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 2.5rem; }
.card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--white);
  border: 1px solid var(--line);
}
.card-dark { background: var(--ink-soft); color: var(--paper); border-color: var(--ink-soft); }
.card p { color: #5b6266; }
.card-dark p { color: #c9cccd; }
.card .text-link { display: inline-flex; gap: .45rem; margin-top: .6rem; font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: .22em; }
.number { display: block; margin-bottom: 1.5rem; color: var(--accent); font-family: var(--serif); font-size: 2.5rem; line-height: 1; }
.look-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.1rem; margin-top: 2.5rem; }
.look-grid-home { grid-template-columns: 1fr 1fr; margin-top: 0; }
.look-card { background: var(--white); }
.look-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--sand); }
.look-copy { padding: 1.35rem 1.4rem 1.55rem; }
.look-copy p { margin-bottom: 0; color: #5b6266; font-size: .94rem; }
.look-label { display: block; margin-bottom: .5rem; color: var(--accent-dark); font-size: .69rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.note { margin-top: 1.25rem; color: var(--muted); font-size: .88rem; }
.section-dark .note { color: #aeb5b8; }
.page-hero { padding-top: clamp(4rem, 8vw, 7rem); padding-bottom: clamp(3rem, 5vw, 4rem); }
.page-hero h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
.page-hero .lead { color: #c9cccd; }
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; margin-top: 2.5rem; }
.step { border-top: 2px solid var(--accent); padding-top: 1.2rem; }
.step p { color: #c9cccd; }
.detail-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 2.5rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.detail-list li { padding: 1rem 0; border-top: 1px solid var(--line); }
.detail-list strong { display: block; margin-bottom: .35rem; }
.detail-list span { color: #5b6266; }
.quote-band { padding: 2rem; border-left: 4px solid var(--accent); background: #e7e2da; }
.quote-band p { margin-bottom: 0; font-family: var(--serif); font-size: clamp(1.3rem, 2.5vw, 2rem); line-height: 1.25; }
.form-wrap { max-width: 760px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2rem; }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field-full { grid-column: 1 / -1; }
label { font-size: .9rem; font-weight: 700; }
input, select, textarea { width: 100%; min-height: 48px; padding: .75rem .85rem; border: 1px solid #a9aaa7; border-radius: 0; background: var(--white); color: var(--ink); }
textarea { min-height: 150px; resize: vertical; }
input:focus, select:focus, textarea:focus, a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid #cf775b; outline-offset: 3px; }
.form-notice { margin: 1rem 0 1.5rem; padding: 1rem; background: #ece8e2; color: #41484b; font-size: .9rem; }
.form-status { min-height: 1.5rem; margin-top: 1rem; color: var(--accent-dark); font-weight: 700; }
.site-footer { padding: 3rem max(5vw, calc((100vw - var(--content)) / 2)) 1.5rem; background: var(--ink); color: var(--paper); }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; padding-bottom: 2rem; }
.footer-top p { max-width: 400px; margin: 1rem 0 0; color: #b9c0c2; }
.footer-nav { display: flex; flex-wrap: wrap; gap: .7rem 1.25rem; }
.footer-nav a { color: #e0e1df; text-decoration: none; font-size: .88rem; }
.footer-nav a:hover { color: #e7a28c; }
.footer-bottom { padding-top: 1.2rem; border-top: 1px solid #41474c; display: flex; justify-content: space-between; gap: 1rem; color: #aeb5b8; font-size: .78rem; }
.class-note { margin: 0; }
.center { text-align: center; }
.center .intro { margin-right: auto; margin-left: auto; }
.center .button-row { justify-content: center; }

@media (max-width: 900px) {
  .site-header { flex-wrap: wrap; gap: 1.2rem; }
  .main-nav { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; }
  .header-cta { margin-left: auto; }
  .hero { grid-template-columns: 1fr 1fr; min-height: 500px; }
  .hero-copy { padding-left: 5vw; }
  .hero-media, .hero-media img { min-height: 500px; }
}
@media (max-width: 680px) {
  .site-header { min-height: auto; padding: 1rem 1.2rem; }
  .main-nav { justify-content: flex-start; gap: .65rem 1.1rem; }
  .main-nav a { font-size: .82rem; }
  .header-cta { min-height: 42px; padding: .6rem .85rem; font-size: .82rem; }
  .hero { display: flex; flex-direction: column; }
  .hero-copy { padding: 3.25rem 1.25rem 2rem; }
  .hero-media, .hero-media img { min-height: 320px; height: 320px; }
  .hero-note { right: .75rem; bottom: .75rem; max-width: 195px; padding: .75rem; }
  .section { padding: 3.5rem 1.25rem; }
  .value-strip { grid-template-columns: 1fr; }
  .value-item { padding: .95rem 1.2rem; text-align: left; }
  .value-item + .value-item { border-top: 1px solid var(--line); border-left: 0; }
  .split, .cards, .look-grid, .steps, .detail-list { grid-template-columns: 1fr; }
  .look-grid-home { grid-template-columns: 1fr; }
  .split { gap: 2rem; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .footer-top, .footer-bottom { flex-direction: column; }
  .footer-nav { gap: .7rem 1rem; }
  .site-footer { padding: 2.5rem 1.25rem 1.2rem; }
}
