:root {
  --ink: #17313a;
  --paper: #f8f4ea;
  --forest: #174e4b;
  --coral: #db5d42;
  --sun: #e8b74a;
  --line: rgba(23, 49, 58, .17);
  --shadow: 0 20px 55px rgba(23, 49, 58, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.62;
}
a { color: inherit; text-underline-offset: .18em; }
a:hover { color: var(--coral); }
img { display: block; max-width: 100%; }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem clamp(1.25rem, 5vw, 5rem);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; font-weight: 700; }
.brand-mark { display: grid; width: 2.75rem; height: 2.75rem; place-items: center; color: var(--paper); background: var(--forest); border-radius: 50% 50% 50% 12%; font-family: "Fraunces", serif; font-size: 1.4rem; }
.brand span { font-family: "Fraunces", serif; font-size: 1.1rem; line-height: 1.05; }
nav { display: flex; flex-wrap: wrap; justify-content: end; gap: 1.1rem; font-size: .92rem; font-weight: 700; }
nav a { text-decoration: none; }

.hero {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  min-height: 37rem;
  background: var(--forest);
}
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 8vw, 7rem); color: #fffdf7; }
.eyebrow { margin: 0 0 1rem; color: #f6d583; font-size: .77rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.hero h1, .page-hero h1, h2, h3 { font-family: "Fraunces", serif; line-height: 1.03; }
h1 { max-width: 13ch; margin: 0; font-size: clamp(3rem, 6vw, 5.75rem); font-weight: 500; letter-spacing: -.045em; }
.hero p { max-width: 35rem; margin: 1.75rem 0 0; font-size: clamp(1.05rem, 1.7vw, 1.3rem); }
.hero-image { min-height: 20rem; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75) contrast(1.05); }

.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 3rem; padding: .72rem 1.05rem; border: 1px solid currentColor; border-radius: 999px; text-decoration: none; font-size: .9rem; font-weight: 700; transition: transform .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); color: inherit; }
.button.primary { color: var(--ink); background: var(--sun); border-color: var(--sun); }
.button.light:hover { background: #fffdf7; color: var(--forest); }

main { overflow: hidden; }
.notice { margin: -2.25rem auto 0; position: relative; width: min(72rem, calc(100% - 2.5rem)); padding: 1.25rem 1.4rem; color: var(--ink); background: #fffdf7; border-left: .45rem solid var(--coral); box-shadow: var(--shadow); }
.notice strong { display: block; margin-bottom: .2rem; }
.section { width: min(72rem, calc(100% - 2.5rem)); margin: 0 auto; padding: clamp(3.7rem, 7vw, 6.5rem) 0; }
.section-heading { display: grid; grid-template-columns: .68fr 1.32fr; gap: clamp(2rem, 7vw, 7rem); margin-bottom: 2.5rem; }
.kicker { margin: .25rem 0 0; color: var(--coral); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
h2 { margin: 0; max-width: 15ch; font-size: clamp(2.15rem, 4.5vw, 4rem); font-weight: 500; letter-spacing: -.04em; }
.section-heading > div > p { margin: 0; font-size: 1.1rem; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.card { min-height: 100%; padding: 1.5rem; background: #fffdf7; border: 1px solid var(--line); }
.card h3 { margin: .4rem 0 .8rem; font-size: 1.55rem; font-weight: 500; }
.card p { margin: 0; }
.card .label { color: var(--coral); font-size: .78rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.card.photo { padding: 0; overflow: hidden; }
.card.photo img { width: 100%; height: 18rem; object-fit: cover; }
.card.photo div { padding: 1.3rem 1.5rem 1.5rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split-image { position: relative; }
.split-image img { aspect-ratio: 4 / 5; width: 100%; object-fit: cover; }
.split-image::after { content: ""; position: absolute; right: -1.25rem; bottom: -1.25rem; width: 42%; height: 34%; border: .55rem solid var(--sun); z-index: -1; }
.split h2 { max-width: 12ch; }
.list { padding: 0; margin: 1.5rem 0 0; list-style: none; }
.list li { padding: .7rem 0; border-bottom: 1px solid var(--line); }
.list li::before { content: "•"; margin-right: .6rem; color: var(--coral); }

.page-hero { padding: clamp(3.5rem, 8vw, 7rem) clamp(1.25rem, 11vw, 11rem); color: #fffdf7; background: var(--forest); }
.page-hero h1 { margin-top: .7rem; }
.page-hero p { max-width: 45rem; margin: 1.4rem 0 0; font-size: 1.1rem; }
.info-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1.25rem; }
.info-panel { padding: clamp(1.4rem, 3vw, 2.2rem); background: #fffdf7; border: 1px solid var(--line); }
.info-panel h2 { max-width: none; margin-bottom: 1rem; font-size: 2rem; }
.info-panel address { font-style: normal; }
table { width: 100%; border-collapse: collapse; font-size: .94rem; }
th, td { padding: .7rem .35rem; border-bottom: 1px solid var(--line); text-align: left; }
th { color: var(--coral); font-size: .77rem; letter-spacing: .08em; text-transform: uppercase; }

.site-footer { padding: 2.4rem clamp(1.25rem, 5vw, 5rem); color: #e5eee9; background: #102f31; }
.footer-grid { display: flex; justify-content: space-between; gap: 2rem; width: min(72rem, 100%); margin: auto; }
.site-footer p { max-width: 40rem; margin: .5rem 0 0; font-size: .88rem; }
.site-footer a { color: #f6d583; }

@media (max-width: 760px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  nav { justify-content: flex-start; }
  .hero, .section-heading, .split, .info-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-copy { min-height: 32rem; }
  .hero-image { height: 21rem; }
  .card-grid { grid-template-columns: 1fr; }
  .notice { margin-top: 0; width: 100%; }
  .section-heading { gap: 1rem; }
  .footer-grid { flex-direction: column; gap: .5rem; }
}
