:root {
  --paper: #f4f1e9;
  --paper-light: #fbfaf6;
  --ink: #1c1e1c;
  --muted: #666b66;
  --line: #d8d3c7;
  --green: #263c35;
  --gold: #9a8860;
  --white: #ffffff;
  --content: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-light);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { color: inherit; text-underline-offset: .2em; }
a:hover { color: var(--green); }

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 100;
  padding: 9px 13px;
  background: var(--ink);
  color: var(--white);
}
.skip-link:focus { left: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(251,250,246,.96);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  letter-spacing: .02em;
  line-height: 1.2;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  color: #343834;
  font-size: 12px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--green); }

.nav-contact {
  border: 1px solid var(--green);
  padding: 6px 10px;
}

.hero {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.hero-inner {
  min-height: 365px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px 0 42px;
}

.hero-signature {
  display: block;
  width: min(455px, 62vw);
  margin: 0 0 16px;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 3.1vw, 43px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.02em;
}

.hero-lead {
  max-width: 690px;
  margin: 16px 0 0;
  color: #484d48;
  font-size: 15px;
  line-height: 1.58;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 11px;
}

.hero-meta span::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 1px;
  margin: 0 8px 3px 0;
  background: var(--gold);
}

.section { padding: 48px 0; }
.section-muted {
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(230px, .8fr) minmax(0, 1.7fr);
  gap: 46px;
  align-items: start;
}

.section-intro { margin-bottom: 28px; }

.eyebrow {
  margin: 0 0 9px;
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-title {
  max-width: 360px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 2.4vw, 35px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.015em;
}

.section-copy { max-width: 720px; }
.section-copy > p:first-child {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 1.8vw, 25px);
  line-height: 1.35;
}
.section-copy p:last-child { margin-bottom: 0; }

.fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.field {
  min-height: 156px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  background: var(--white);
}

.field-number {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1;
}

.field h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
}

.field p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.locations {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: center;
}

.location-panel {
  min-height: 230px;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  background: var(--green);
  color: var(--white);
}

.location-panel p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.4vw, 33px);
  line-height: 1.28;
}

.location-copy h2,
.contact-card h1,
.legal-page h1 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.12;
}

.location-copy p { color: var(--muted); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
}
.text-link::after { content: "→"; font-size: 15px; }

.cta {
  padding: 38px 0;
  color: var(--white);
  background: var(--green);
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: center;
}

.cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.6vw, 35px);
  font-weight: 400;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.75);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
.button:hover { color: var(--green); background: var(--white); }

.page-hero {
  padding: 42px 0 32px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.08;
}
.page-hero p {
  max-width: 740px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 30px;
  align-items: start;
}
.contact-card,
.contact-aside { border: 1px solid var(--line); background: var(--white); }
.contact-card { padding: 32px; }
.contact-card address { margin: 24px 0 0; font-style: normal; }
.contact-card a { color: var(--green); }
.contact-aside { padding: 28px; background: var(--green); color: var(--white); }
.contact-aside h2 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 400;
}
.contact-aside p { color: rgba(255,255,255,.78); font-size: 14px; }

.legal-page { padding: 44px 0 66px; }
.legal-layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 820px);
  gap: 42px;
  align-items: start;
}
.legal-nav {
  position: sticky;
  top: 90px;
  border-left: 1px solid var(--line);
  padding-left: 18px;
}
.legal-nav a {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  text-decoration: none;
}
.legal-content { min-width: 0; }
.legal-content h2,
.legal-content h3 {
  scroll-margin-top: 100px;
  margin: 34px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.25;
}
.legal-content h2 { font-size: 25px; }
.legal-content h3 { font-size: 20px; }
.legal-content h2:first-child,
.legal-content h3:first-child { margin-top: 0; }
.legal-content p,
.legal-content li { color: #454a45; font-size: 14px; }
.legal-content ul { padding-left: 20px; }
.legal-box {
  margin: 22px 0;
  padding: 20px 22px;
  border-left: 3px solid var(--gold);
  background: var(--paper);
}

.site-footer {
  padding: 36px 0 20px;
  color: rgba(255,255,255,.74);
  background: #16251f;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-title {
  margin: 0 0 10px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
}
.footer-copy { max-width: 500px; margin: 0; font-size: 12px; }
.footer-heading {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li + li { margin-top: 6px; }
.footer-links a { font-size: 12px; text-decoration: none; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  font-size: 11px;
}

@media (max-width: 900px) {
  .site-header { position: static; }
  .header-inner { padding: 16px 0; align-items: flex-start; flex-direction: column; }
  .site-nav ul { flex-wrap: wrap; gap: 12px 18px; }
  .hero-inner { min-height: 0; padding: 42px 0; }
  .section-grid,
  .locations,
  .contact-layout,
  .legal-layout { grid-template-columns: 1fr; gap: 30px; }
  .fields { grid-template-columns: 1fr; }
  .field { min-height: 0; }
  .legal-nav { position: static; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 6px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--content)); }
  .brand-subtitle { display: none; }
  .site-nav a { font-size: 12px; }
  .hero-signature { width: 100%; }
  .hero h1 { font-size: 31px; }
  .section { padding: 40px 0; }
  .location-panel { min-height: 205px; }
  .cta-inner,
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .legal-nav { grid-template-columns: 1fr; }
}
