:root {
  --navy: #10283d;
  --navy-soft: #27465d;
  --gold: #aa8252;
  --paper: #f8f5ef;
  --paper-deep: #ede8de;
  --ink-muted: #52616b;
  --sans: "DM Sans", Arial, sans-serif;
  --serif: "Libre Baskerville", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--navy); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.65; }
a { color: inherit; }
.skip-link { position: fixed; z-index: 10; top: -4rem; left: 1rem; padding: .65rem 1rem; background: var(--navy); color: white; }
.skip-link:focus { top: 1rem; }

.site-header { width: min(100% - 4rem, 1400px); margin: auto; min-height: 112px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(16, 40, 61, .18); }
.wordmark { text-decoration: none; text-transform: uppercase; line-height: 1; letter-spacing: .1em; }
.wordmark span { display: block; font-family: var(--serif); font-size: 1.2rem; letter-spacing: .115em; }
.wordmark small { display: block; margin-top: .35rem; font-size: .6rem; font-weight: 600; letter-spacing: .21em; }
nav { display: flex; gap: clamp(1rem, 3vw, 2.75rem); font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; }
nav a { text-decoration: none; }
nav a:hover, nav a:focus-visible, footer a:hover, footer a:focus-visible { color: var(--gold); }

.hero { width: min(100% - 4rem, 1400px); min-height: min(800px, calc(100vh - 112px)); margin: auto; display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 3rem; overflow: hidden; }
.hero-copy { max-width: 520px; padding: 6rem 0; position: relative; z-index: 1; }
.eyebrow, .section-label { margin: 0 0 1.4rem; font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .16em; color: var(--gold); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.22; }
h1 { margin-bottom: 1.65rem; font-size: clamp(3rem, 5.35vw, 5.6rem); letter-spacing: -.06em; }
h1 em, h2 em { color: var(--gold); font-weight: 400; }
.hero-intro { max-width: 420px; margin-bottom: 2rem; color: var(--ink-muted); font-size: 1.02rem; }
.text-link { display: inline-block; padding-bottom: .35rem; border-bottom: 1px solid var(--gold); color: var(--navy); text-decoration: none; font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .15em; }
.text-link span { margin-left: .6rem; color: var(--gold); font-size: 1.2rem; }
.hero-art { align-self: end; padding-bottom: clamp(2rem, 7vh, 5rem); transform: translateX(5%); }
.hero-art img { display: block; width: min(930px, 67vw); height: auto; mix-blend-mode: multiply; }

.section { padding: clamp(5rem, 10vw, 10rem) max(2rem, calc((100% - 1400px) / 2)); }
.about { background: var(--navy); color: var(--paper); display: grid; grid-template-columns: .35fr 1fr; gap: 4rem; }
.section-label { line-height: 1.4; }
.about .section-label { color: #d6bd98; }
.section-content { display: grid; grid-template-columns: minmax(280px, .9fr) minmax(280px, .8fr); gap: clamp(3rem, 8vw, 10rem); }
h2 { margin-bottom: 0; font-size: clamp(2rem, 3.75vw, 4rem); letter-spacing: -.05em; }
.prose { color: #d7dfe3; max-width: 520px; }
.prose p + p { margin-top: 1.5rem; }

.contact { background: var(--paper); }
.contact-inner { display: grid; grid-template-columns: .35fr 1fr; gap: 4rem; }
.contact-inner > div:last-child { display: grid; grid-template-columns: minmax(250px, .9fr) 1fr; gap: 2rem; padding-top: .75rem; }
.contact-details { color: var(--ink-muted); }
.email { grid-column: 1 / -1; width: max-content; max-width: 100%; color: var(--navy); font-family: var(--serif); font-size: clamp(1.3rem, 2.3vw, 2.35rem); text-decoration-color: var(--gold); text-decoration-thickness: 1px; text-underline-offset: .35em; overflow-wrap: anywhere; }
.location { align-self: end; margin-bottom: 0; }

footer { width: min(100% - 4rem, 1400px); margin: auto; padding: 1.5rem 0 2.5rem; display: flex; justify-content: space-between; border-top: 1px solid rgba(16, 40, 61, .18); color: var(--ink-muted); font-size: .65rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; }
footer p { margin-bottom: 0; }
footer a { text-decoration: none; }

@media (max-width: 850px) {
  .site-header, .hero, footer { width: min(100% - 2.5rem, 1400px); }
  .site-header { min-height: 90px; }
  nav { gap: 1.2rem; font-size: .61rem; }
  .hero { grid-template-columns: 1fr; gap: 0; min-height: auto; padding-top: 4rem; }
  .hero-copy { padding: 0 0 2rem; }
  .hero-art { order: -1; justify-self: center; width: 100%; padding: 0; transform: none; }
  .hero-art img { width: 120%; max-width: none; margin-left: -10%; }
  .section { padding: 5rem 1.25rem; }
  .about, .contact-inner { grid-template-columns: 1fr; gap: 1.25rem; }
  .section-content { grid-template-columns: 1fr; gap: 2rem; }
  .contact-inner > div:last-child { grid-template-columns: 1fr; padding-top: 1.2rem; }
  .email { grid-column: auto; }
}

@media (max-width: 490px) {
  .site-header { align-items: center; }
  nav { gap: .75rem; }
  .wordmark span { font-size: 1rem; }
  .wordmark small { font-size: .5rem; }
  nav a { font-size: .55rem; }
  footer { flex-direction: column; gap: .75rem; }
}
