:root {
  color-scheme: light;
  --paper: #f3ece1;
  --paper-2: #efe4d4;
  --ink: #1c2430;
  --muted: #5c6570;
  --gold: #b5792e;
  --gold-deep: #8c4a2f;
  --navy: #243044;
  --line: rgba(28, 36, 48, 0.12);
  --danger: #9b2f2f;
  --display: "Fraunces", "Iowan Old Style", "Palatino Linotype", serif;
  --sans: "Source Sans 3", "Source Sans Pro", "Segoe UI", system-ui, sans-serif;
}

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

html {
  background: var(--paper);
  color: var(--ink);
  font-size: 18px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--sans);
  line-height: 1.65;
  background:
    radial-gradient(900px 480px at 100% 0%, rgba(181, 121, 46, 0.12), transparent 50%),
    var(--paper);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-deep); text-decoration-thickness: 1px; text-underline-offset: 0.16em; }
a:hover { color: var(--navy); }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 1rem; top: 1rem; z-index: 50; background: #fff; padding: 0.4rem 0.7rem; }

.wrap { width: min(1080px, calc(100% - 2.2rem)); margin-inline: auto; }

.nav {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem 1rem;
  border-bottom: 1px solid var(--line);
}
.brand {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--ink);
  text-decoration: none;
}
.nav-links { display: flex; gap: 1.2rem; align-items: center; font-size: 0.95rem; }
.nav-links a { color: var(--muted); text-decoration: none; }
.nav-links a:hover { color: var(--ink); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.15rem;
  background: var(--navy);
  color: #f3ece1 !important;
  border: 0;
  font: inherit;
  cursor: pointer;
  text-decoration: none !important;
}
.btn:hover { background: var(--gold-deep); }
.btn-ghost {
  background: transparent;
  color: var(--navy) !important;
  border: 1px solid var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: #f3ece1 !important; }

.hero {
  position: relative;
  min-height: min(86vh, 820px);
  display: grid;
  place-items: end stretch;
  overflow: hidden;
  isolation: isolate;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(28,36,48,0.08) 0%, rgba(28,36,48,0.28) 40%, rgba(28,36,48,0.78) 100%);
}
.hero-copy { width: min(1080px, calc(100% - 2.2rem)); margin: 0 auto 3.8rem; color: #f6efe6; }
.kicker {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: #e8c48a;
  margin: 0 0 0.5rem;
}
.wordmark {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(3.4rem, 11vw, 8.2rem);
  line-height: 0.92;
  margin: 0;
  letter-spacing: -0.03em;
}
.lede {
  max-width: 34rem;
  font-size: 1.15rem;
  margin: 1rem 0 1.3rem;
  color: #f3ece1;
}
.hero-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }

.ad-slot {
  margin: 1.6rem auto;
  width: min(1080px, calc(100% - 2.2rem));
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.35);
  border: 1px dashed rgba(28, 36, 48, 0.18);
  overflow: hidden;
}
.ad-slot.leader { min-height: 96px; }
.ad-slot.rect { min-height: 280px; max-width: 360px; }
.ad-slot.sky {
  min-height: 600px;
  width: 160px;
  margin: 0;
  flex: 0 0 160px;
  background: rgba(255,255,255,0.4);
}
.ad-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.section { padding: 4rem 0; }
.section h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-style: italic;
  margin: 0 0 0.9rem;
  letter-spacing: -0.02em;
}

.mast {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2.2rem;
  align-items: start;
}
.pull {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 1.1rem;
}
.copy p { margin: 0 0 1rem; }
.copy p.muted { color: var(--muted); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 2rem;
  align-items: start;
}

.essay-photos {
  display: grid;
  grid-template-columns: 1fr 1fr 0.85fr;
  gap: 0.8rem;
  margin-top: 1.6rem;
}
.essay-photos figure { margin: 0; }
.essay-photos img { width: 100%; height: 280px; object-fit: cover; }
.essay-photos figcaption {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.6rem;
  align-items: center;
}
.split img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }

.uses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 2rem;
}
.use h3 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  margin: 0 0 0.3rem;
}
.use p { margin: 0; color: var(--muted); }

.inquire {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
form { display: grid; gap: 0.85rem; max-width: 34rem; }
label { font-size: 0.82rem; color: var(--muted); }
input, textarea {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.7rem 0.75rem;
  border: 1px solid var(--line);
  background: #f7f1e8;
  color: var(--ink);
  font: inherit;
}
textarea { min-height: 8rem; resize: vertical; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.note { color: var(--muted); font-size: 0.92rem; }
.err {
  color: var(--danger);
  border: 1px solid rgba(155, 47, 47, 0.35);
  padding: 0.7rem 0.8rem;
  background: rgba(155, 47, 47, 0.06);
}
.ok {
  border: 1px solid var(--line);
  padding: 1rem 1.1rem;
  background: #f7f1e8;
}

.site-foot {
  padding: 2.4rem 0 3.2rem;
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-foot a { color: var(--muted); }

@media (max-width: 900px) {
  .mast, .grid-2, .split { grid-template-columns: 1fr; }
  .ad-slot.sky { display: none; }
  .essay-photos { grid-template-columns: 1fr 1fr; }
  .essay-photos img { height: 220px; }
  .uses { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .essay-photos { grid-template-columns: 1fr; }
  .nav-links a:not(.btn) { display: none; }
}
