:root {
  color-scheme: light;
  --primary: #4E5945;
  --accent: #B58A5B;
  --background: #F7F4EF;
  --surface: #FFFDFC;
  --text: #34382F;
  --muted: #55585d;
  --heading: "Georgia", "Times New Roman", serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.site-header {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
}
.header-inner, .section-inner, .footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255,255,255,.28);
}
.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.brand-mark {
  width: 26px;
  height: 26px;
  border: 7px solid var(--accent);
  background: var(--primary);
}
.nav { display: flex; align-items: center; gap: 18px; }
.nav a { font-size: 13px; font-weight: 650; text-decoration: none; }
.nav-menu { display: none; position: relative; }
.nav-menu summary {
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  list-style: none;
}
.nav-menu summary::-webkit-details-marker { display: none; }
.nav-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(250px, calc(100vw - 28px));
  padding: 8px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 6px;
  background: rgba(17,18,20,.98);
  box-shadow: 0 14px 32px rgba(0,0,0,.28);
}
.nav-panel a {
  min-width: 0;
  padding: 10px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.nav-panel a:hover, .nav-panel a:focus-visible { background: rgba(255,255,255,.12); }
.hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: flex-end;
  background: #1b1d1f;
  color: #fff;
  isolation: isolate;
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0,0,0,.54);
}
.hero-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 78px;
}
.eyebrow {
  margin: 0 0 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: var(--heading); letter-spacing: 0; }
h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.02;
}
.hero-copy { max-width: 650px; margin: 22px 0 0; font-size: 18px; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 12px 20px;
  border-radius: 6px;
  background: var(--primary);
  color: #ffffff;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}
.content-section { padding: 78px 0; border-bottom: 1px solid color-mix(in srgb, var(--text) 14%, transparent); }
.content-section:nth-child(even) { background: var(--surface); }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading h2 { margin: 0 0 12px; font-size: clamp(30px, 5vw, 52px); line-height: 1.08; }
.section-heading p { margin: 0; color: var(--muted); }
.item-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.item {
  min-width: 0;
  padding: 24px 0;
  border-top: 3px solid var(--accent);
}
.item h3 { margin: 0 0 8px; font-size: 20px; }
.item p { margin: 0; color: var(--muted); }
.contact-line { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.text-link { color: var(--primary); font-weight: 750; }
.site-footer { padding: 42px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; color: var(--muted); font-size: 13px; }
.social-links { display: flex; flex-wrap: wrap; gap: 14px; }
@media (max-width: 720px) {
  .header-inner, .section-inner, .footer-inner, .hero-inner { width: min(100% - 28px, 1120px); }
  .header-inner { min-height: 64px; }
  .brand { max-width: calc(100% - 78px); font-size: 16px; }
  .nav-desktop { display: none; }
  .nav-menu { display: block; flex: 0 0 auto; }
  .hero { min-height: 82svh; }
  .hero-inner { padding: 120px 0 54px; }
  h1 { font-size: 44px; }
  .hero-copy { font-size: 16px; }
  .content-section { padding: 58px 0; }
  .item-grid { grid-template-columns: 1fr; gap: 8px; }
  .footer-inner { flex-direction: column; }
}