@font-face {
  font-family: Manrope;
  src: url('assets/Manrope.ttf') format('truetype');
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: Lora;
  src: url('assets/Lora.ttf') format('truetype');
  font-weight: 400 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #ffffff;
  --ink: #303f37;
  --muted: #626b65;
  --blush: #f8e5eb;
  --line: #dce3dd;
}

* { box-sizing: border-box; letter-spacing: 0; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Manrope, sans-serif; line-height: 1.65; }
a { color: inherit; text-underline-offset: 5px; }
a:focus-visible { outline: 3px solid currentColor; outline-offset: 6px; }
.skip-link { position: absolute; left: 24px; top: -100px; z-index: 2; padding: 12px; background: white; }
.skip-link:focus { top: 16px; }
.masthead { min-height: 100px; padding: 22px 5%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; font: 500 25px Lora, serif; text-decoration: none; }
.brand img { border-radius: 8px; flex-shrink: 0; }
.header-link { font-size: 13px; text-decoration: none; border-bottom: 1px solid var(--line); padding-block: 6px; }
.hero { position: relative; isolation: isolate; min-height: 520px; height: min(680px, 72svh); display: flex; align-items: center; color: white; background: #4c626a; }
.hero-photo { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 43%; }
.hero::before { content: ''; position: absolute; inset: 0; z-index: -1; background: rgb(0 0 0 / 27%); }
.hero-copy { padding: 48px 5%; width: 100%; text-shadow: 0 1px 12px rgb(0 0 0 / 18%); }
.eyebrow { font-size: 12px; font-weight: 600; margin: 0 0 22px; }
h1 { font: 500 72px/1.12 Lora, serif; margin: 0 0 24px; }
.hero-description { font: 400 38px/1.2 Lora, serif; margin: 0 0 22px; }
.hero-detail { font-size: 15px; max-width: 42ch; margin: 0 0 30px; }
.hero-link { display: inline-flex; align-items: center; gap: 28px; padding-block: 8px; border-bottom: 1px solid rgb(255 255 255 / 75%); font-size: 13px; text-decoration: none; }
.hero-link:hover { border-bottom-width: 2px; padding-bottom: 7px; }
.about { max-width: 1200px; margin: auto; padding: 72px 5% 80px; scroll-margin-top: 32px; }
.about .eyebrow { color: var(--muted); }
h2 { font: 400 38px/1.35 Lora, serif; margin: 0 0 24px; }
.intro { max-width: 62ch; font-size: 16px; color: var(--muted); margin: 0; }
.details { margin-top: 56px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; }
.details > div { border-top: 1px solid var(--line); padding-top: 20px; }
.detail-number { font-size: 11px; color: var(--muted); }
h3 { font-size: 16px; font-weight: 600; margin: 18px 0 10px; }
.details p { color: var(--muted); font-size: 14px; margin: 0; max-width: 32ch; }
.closing { background: var(--blush); padding: 48px 5%; text-align: center; }
.closing p { margin: 0 0 10px; font: 400 30px/1.4 Lora, serif; }
.closing span { font-size: 13px; }
footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; padding: 32px 5%; font-size: 12px; color: var(--muted); }
.footer-brand { font: 500 20px Lora, serif; color: var(--ink); text-decoration: none; }

@media (min-width: 1600px) {
  .hero { height: min(680px, 65svh); }
}

@media (max-width: 700px) {
  .masthead { min-height: 84px; padding: 18px 24px; }
  .brand { font-size: 20px; gap: 10px; }
  .brand img { width: 34px; height: 34px; }
  .header-link { display: none; }
  .hero { min-height: 470px; height: 70svh; max-height: 660px; align-items: end; }
  .hero-photo { object-position: 62% center; }
  .hero::before { background: linear-gradient(180deg, rgb(0 0 0 / 8%), rgb(0 0 0 / 58%) 55%, rgb(0 0 0 / 65%)); }
  .hero-copy { padding: 32px 24px; }
  .eyebrow { font-size: 11px; margin-bottom: 18px; }
  h1 { font-size: 42px; margin-bottom: 18px; }
  .hero-description { font-size: 30px; margin-bottom: 16px; }
  .hero-detail { font-size: 14px; max-width: 33ch; margin-bottom: 18px; }
  .desktop-break { display: none; }
  .about { padding: 44px 24px 48px; }
  h2 { font-size: 28px; }
  h2 br { display: none; }
  .intro { font-size: 15px; }
  .details { grid-template-columns: 1fr; gap: 28px; margin-top: 36px; }
  .details p { max-width: 48ch; }
  h3 { margin-top: 10px; }
  .closing { padding: 36px 24px; }
  .closing p { font-size: 26px; }
  footer { padding: 28px 24px; gap: 16px; }
  footer > span { flex-basis: 100%; order: 1; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy { animation: arrive 650ms ease-out both; }
  @keyframes arrive { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
}

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