
:root {
  --brick: #9b3f30;
  --brick-dark: #713024;
  --leaf: #087b3c;
  --leaf-light: #91bb4e;
  --harvest: #d6a344;
  --cream: #f5efe3;
  --paper: #fffdf8;
  --ink: #3f3a35;
  --muted: #726a61;
  --line: #ded3c4;
  --max: 1040px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #e9e2d6;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
a { color: var(--brick-dark); }
a:hover { color: var(--leaf); }
.skip-link { position:absolute; left:-9999px; top:auto; }
.skip-link:focus { left:16px; top:16px; z-index:99; background:white; padding:8px 12px; border:2px solid var(--brick); }
.page-shell {
  width: min(calc(100% - 24px), 1120px);
  margin: 18px auto;
  background: var(--paper);
  border: 1px solid #d8cec0;
  box-shadow: 0 3px 18px rgba(59,43,31,.16);
}
.topline {
  background: var(--leaf);
  color: white;
  font-size: 14px;
  text-align: center;
  padding: 7px 16px;
  letter-spacing: .01em;
}
.topline a { color: white; font-weight: bold; text-decoration: none; }
.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 145px;
  padding: 20px 28px 16px;
  background: white;
}
.brand img { display:block; width:min(657px, 92%); height:auto; }
.nav {
  background: linear-gradient(#a94938, #8f392c);
  border-top: 1px solid #7a2d22;
  border-bottom: 4px solid var(--harvest);
}
.nav-inner {
  max-width: var(--max);
  margin: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.nav a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 14px;
  font-weight: bold;
  padding: 13px 22px 12px;
  border-left: 1px solid rgba(255,255,255,.13);
}
.nav a:last-child { border-right: 1px solid rgba(255,255,255,.13); }
.nav a:hover, .nav a[aria-current="page"] { background: rgba(74,25,18,.28); }
.hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #45413d;
}
.hero > img { width:100%; height:440px; object-fit:cover; display:block; filter:saturate(.9) contrast(.94); }
.hero-panel {
  position:absolute;
  left:7%;
  top:50%;
  transform:translateY(-50%);
  width:min(520px, 86%);
  background:rgba(255,253,248,.94);
  border-left:7px solid var(--brick);
  padding:24px 28px 25px;
  box-shadow:0 4px 20px rgba(0,0,0,.2);
}
.eyebrow { color:var(--leaf); text-transform:uppercase; font-size:13px; font-weight:bold; letter-spacing:.1em; margin:0 0 4px; }
h1,h2,h3 { font-family: Georgia, 'Times New Roman', serif; color:var(--brick-dark); line-height:1.18; }
h1 { font-size:clamp(34px,5vw,50px); margin:.1em 0 .25em; font-weight:normal; }
h2 { font-size:32px; margin:0 0 .4em; font-weight:normal; }
h3 { font-size:23px; margin:.25em 0; }
p { margin:.55em 0 1em; }
.btn {
  display:inline-block;
  padding:10px 17px;
  margin:5px 8px 2px 0;
  background:var(--brick);
  border:1px solid var(--brick-dark);
  color:white;
  text-decoration:none;
  font-weight:bold;
  border-radius:2px;
}
.btn.alt { background:var(--leaf); border-color:#075f31; }
.btn:hover { color:white; filter:brightness(.93); }
.content { max-width:var(--max); margin:auto; padding:42px 34px; }
.intro-grid { display:grid; grid-template-columns:1.45fr .8fr; gap:42px; align-items:start; }
.info-card { border:1px solid var(--line); background:var(--cream); padding:20px 22px; }
.info-card strong { color:var(--brick-dark); }
.rule { border:0; border-top:1px solid var(--line); margin:30px 0; }
.tiles { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:22px; }
.tile { border:1px solid var(--line); background:white; }
.tile img { width:100%; aspect-ratio:4/3; object-fit:cover; display:block; }
.tile-body { padding:18px 18px 20px; }
.photo-band { display:grid; grid-template-columns:1fr 1fr; gap:0; background:var(--cream); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.photo-band img { width:100%; height:330px; object-fit:cover; display:block; }
.photo-copy { padding:38px; align-self:center; }
.quote { font-family:Georgia, 'Times New Roman', serif; font-size:27px; color:var(--brick-dark); line-height:1.35; margin:0; }
.quote-by { color:var(--muted); font-size:14px; }
.subhero { background:var(--cream); border-bottom:1px solid var(--line); padding:38px 34px; text-align:center; }
.subhero h1 { margin:.1em 0; }
.two-col { display:grid; grid-template-columns:1.4fr .8fr; gap:40px; }
.steps { counter-reset:step; padding:0; list-style:none; }
.steps li { position:relative; padding:0 0 20px 46px; min-height:40px; }
.steps li:before { counter-increment:step; content:counter(step); position:absolute; left:0; top:1px; width:30px; height:30px; border-radius:50%; background:var(--leaf); color:white; display:grid; place-items:center; font-weight:bold; }
.contact-list { list-style:none; padding:0; }
.contact-list li { padding:7px 0; border-bottom:1px dotted #cdbfad; }
.notice { padding:14px 17px; background:#fff6df; border-left:4px solid var(--harvest); }
footer { background:#4b453f; color:#eee7dd; border-top:5px solid var(--leaf); }
.footer-inner { max-width:var(--max); margin:auto; padding:28px 34px; display:grid; grid-template-columns:1fr 1fr; gap:30px; }
footer a { color:#fff; }
.small { font-size:13px; color:#d7cec1; }
.mobile-toggle { display:none; }
@media (max-width: 760px) {
  .page-shell { width:100%; margin:0; border:0; }
  .brand { min-height:110px; padding:18px 12px; }
  .nav-inner { display:block; }
  .mobile-toggle { display:block; width:100%; background:#8f392c; color:white; border:0; padding:12px; font-weight:bold; text-transform:uppercase; }
  .nav .links { display:none; }
  .nav.open .links { display:block; }
  .nav a { display:block; text-align:center; border:0; border-top:1px solid rgba(255,255,255,.12); }
  .hero { min-height:510px; }
  .hero > img { height:510px; }
  .hero-panel { left:6%; top:auto; bottom:30px; transform:none; width:88%; padding:20px; }
  .intro-grid,.two-col,.tiles,.photo-band,.footer-inner { grid-template-columns:1fr; }
  .content { padding:32px 20px; }
  .photo-band img { height:270px; }
  .photo-copy { padding:30px 22px; }
  .subhero { padding:32px 20px; }
}
