:root {
  --forest: #0d4c2e;
  --forest-dark: #07351f;
  --leaf: #5b9f22;
  --lime: #82bd2d;
  --cream: #fbf8ef;
  --sage: #eef5ea;
  --paper: #ffffff;
  --ink: #172019;
  --muted: #617064;
  --gold: #d8a33b;
  --red: #c94a35;
  --line: #dce8dd;
  --shadow: 0 18px 52px rgba(7,53,31,.13);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display:block; max-width:100%; }
a { color:inherit; }
button, input, textarea, select { font: inherit; }

.skip-link { position:absolute; left:-9999px; top:auto; }
.skip-link:focus { left:16px; top:16px; z-index:9999; background:#fff; padding:10px 14px; border-radius:10px; }

.utility-bar {
  background: var(--forest-dark);
  color: rgba(255,255,255,.92);
  font-size: .87rem;
}
.utility-inner {
  max-width: var(--max);
  margin: auto;
  min-height: 38px;
  padding: 7px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.utility-items { display:flex; flex-wrap:wrap; gap:18px; }
.utility-bar a { text-decoration:none; }
.utility-bar a:hover { text-decoration:underline; }

.site-header {
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.95);
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(13,76,46,.10);
}
.header-inner {
  max-width:var(--max);
  margin:auto;
  min-height:84px;
  padding:12px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}
.logo-link { display:block; width:min(390px,46vw); }
.logo-link img { width:100%; height:auto; }
.nav { display:flex; align-items:center; gap:5px; }
.nav a {
  text-decoration:none;
  font-weight:800;
  font-size:.93rem;
  color:var(--forest-dark);
  padding:10px 12px;
  border-radius:999px;
}
.nav a:hover, .nav a[aria-current="page"] { background:var(--sage); }
.nav .call-btn { background:var(--forest); color:#fff; padding-inline:18px; }
.nav .call-btn:hover { background:var(--forest-dark); }
.menu-toggle {
  display:none;
  border:0;
  background:var(--sage);
  color:var(--forest-dark);
  border-radius:12px;
  width:46px;
  height:46px;
}

.hero {
  position:relative;
  min-height:690px;
  display:grid;
  align-items:center;
  overflow:hidden;
  background:var(--forest-dark);
}
.hero::before {
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(4,32,18,.94) 0%, rgba(4,32,18,.77) 42%, rgba(4,32,18,.28) 70%, rgba(4,32,18,.12) 100%),
    url("assets/photos/hero.webp") center/cover no-repeat;
}
.hero::after {
  content:"";
  position:absolute;
  inset:auto -110px -220px auto;
  width:480px;
  height:480px;
  border:88px solid rgba(130,189,45,.15);
  border-radius:50%;
}
.hero-inner {
  position:relative;
  z-index:2;
  width:100%;
  max-width:var(--max);
  margin:auto;
  padding:100px 22px 88px;
}
.hero-copy { max-width:690px; }
.eyebrow {
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:8px 13px;
  border-radius:999px;
  background:rgba(255,255,255,.13);
  border:1px solid rgba(255,255,255,.23);
  color:#fff;
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.11em;
  text-transform:uppercase;
}
.eyebrow::before { content:""; width:8px; height:8px; border-radius:50%; background:var(--lime); box-shadow:0 0 0 5px rgba(130,189,45,.17); }
h1,h2,h3 { font-family:Georgia,"Times New Roman",serif; line-height:1.06; color:var(--forest-dark); }
h1 {
  color:#fff;
  margin:22px 0 18px;
  font-size:clamp(3.5rem,7vw,6.6rem);
  letter-spacing:-.055em;
}
h2 { margin:0; font-size:clamp(2.45rem,4.8vw,4.65rem); letter-spacing:-.045em; }
h3 { margin:0; font-size:1.55rem; }
.hero-lead { margin:0; max-width:650px; color:rgba(255,255,255,.86); font-size:clamp(1.08rem,2vw,1.28rem); }
.hero-meta { margin-top:22px; display:flex; flex-wrap:wrap; gap:10px; }
.meta-pill { color:#fff; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.2); padding:8px 12px; border-radius:999px; font-weight:750; font-size:.9rem; }
.actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:30px; }
.btn {
  min-height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:13px 21px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  border:1px solid transparent;
  transition:transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.btn:hover { transform:translateY(-2px); }
.btn-primary { color:var(--forest-dark); background:#fff; box-shadow:0 12px 30px rgba(0,0,0,.18); }
.btn-primary:hover { background:var(--sage); }
.btn-green { color:#fff; background:var(--forest); box-shadow:0 12px 28px rgba(13,76,46,.2); }
.btn-green:hover { background:var(--forest-dark); }
.btn-outline { color:#fff; border-color:rgba(255,255,255,.42); background:rgba(255,255,255,.08); }
.btn-outline:hover { background:rgba(255,255,255,.15); }
.btn-light { color:var(--forest-dark); background:#fff; border-color:var(--line); }
.btn-red { color:#fff; background:var(--red); }

.trust-strip { position:relative; z-index:3; margin-top:-40px; padding:0 22px; }
.trust-grid {
  max-width:var(--max);
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.trust-item { background:#fff; padding:22px; display:flex; gap:13px; align-items:center; }
.trust-icon { width:44px; height:44px; border-radius:14px; background:var(--sage); display:grid; place-items:center; font-size:1.25rem; flex:0 0 auto; }
.trust-item strong { display:block; color:var(--forest-dark); }
.trust-item span { display:block; color:var(--muted); font-size:.86rem; }

.section { padding:96px 22px; }
.section-inner { max-width:var(--max); margin:auto; }
.section-head { display:flex; justify-content:space-between; align-items:end; gap:34px; margin-bottom:38px; }
.section-head p { max-width:560px; margin:0; color:var(--muted); }
.kicker { display:block; margin-bottom:10px; color:var(--leaf); font-size:.78rem; font-weight:900; letter-spacing:.12em; text-transform:uppercase; }

.circular-grid { display:grid; grid-template-columns:.88fr 1.12fr; gap:34px; align-items:stretch; }
.circular-card {
  padding:38px;
  border-radius:var(--radius);
  background:linear-gradient(145deg,var(--forest-dark),var(--forest));
  color:#fff;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:520px;
  position:relative;
  overflow:hidden;
}
.circular-card::after { content:""; position:absolute; width:320px; height:320px; right:-110px; top:-100px; border:55px solid rgba(255,255,255,.07); border-radius:50%; }
.circular-card h2 { color:#fff; font-size:clamp(2.6rem,4.5vw,4.2rem); max-width:500px; }
.circular-card p { color:rgba(255,255,255,.76); }
.date-badge { display:inline-block; width:fit-content; background:var(--lime); color:var(--forest-dark); font-weight:900; padding:8px 12px; border-radius:999px; margin-bottom:22px; }
.circular-cover {
  border-radius:var(--radius);
  background:#fff;
  border:1px solid var(--line);
  padding:20px;
  box-shadow:var(--shadow);
  display:grid;
  place-items:center;
}
.circular-cover img { width:100%; max-height:670px; object-fit:contain; border-radius:12px; }

.services { background:var(--sage); }
.department-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.department-card { position:relative; min-height:330px; border-radius:var(--radius); overflow:hidden; background:#111; box-shadow:0 14px 34px rgba(7,53,31,.10); }
.department-card img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .45s ease; }
.department-card:hover img { transform:scale(1.04); }
.department-card::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 30%,rgba(5,25,13,.88) 100%); }
.department-copy { position:absolute; z-index:2; left:24px; right:24px; bottom:22px; color:#fff; }
.department-copy h3 { color:#fff; margin-bottom:5px; font-size:1.75rem; }
.department-copy p { margin:0; color:rgba(255,255,255,.82); font-size:.92rem; }

.discount-band { background:var(--forest-dark); color:#fff; }
.discount-grid { display:grid; grid-template-columns:1.2fr .8fr; gap:46px; align-items:center; }
.discount-grid h2 { color:#fff; }
.discount-grid p { color:rgba(255,255,255,.76); max-width:620px; }
.discount-card { background:rgba(255,255,255,.09); border:1px solid rgba(255,255,255,.15); border-radius:24px; padding:30px; }
.discount-card strong { display:block; font-family:Georgia,serif; font-size:2rem; color:#fff; }
.discount-card span { color:rgba(255,255,255,.75); }

.gallery-grid { display:grid; grid-template-columns:1.2fr .8fr .8fr; gap:16px; }
.gallery-grid figure { margin:0; overflow:hidden; border-radius:20px; min-height:260px; }
.gallery-grid figure:first-child { grid-row:span 2; min-height:540px; }
.gallery-grid img { width:100%; height:100%; object-fit:cover; }

.visit-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:30px; align-items:stretch; }
.info-card, .hours-card, .form-card { background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:34px; box-shadow:0 13px 30px rgba(7,53,31,.07); }
.address { font-size:1.16rem; margin:16px 0 8px; }
.muted { color:var(--muted); }
.hours-list { list-style:none; padding:0; margin:20px 0 0; }
.hours-list li { display:flex; justify-content:space-between; gap:20px; padding:10px 0; border-bottom:1px solid var(--line); }
.hours-list li:last-child { border-bottom:0; }
.map-frame { width:100%; min-height:420px; border:0; border-radius:var(--radius); background:var(--sage); }

.page-hero { padding:88px 22px 64px; background:linear-gradient(135deg,#eef5ea,#fbf8ef); }
.page-hero .section-inner { max-width:950px; margin-left:max(22px,calc((100% - var(--max))/2)); }
.page-hero h1 { color:var(--forest-dark); font-size:clamp(3.3rem,6vw,5.8rem); margin:18px 0 14px; }
.page-hero .eyebrow { color:var(--forest-dark); background:#fff; border-color:var(--line); }
.page-lead { color:var(--muted); font-size:1.15rem; max-width:700px; margin:0; }

.circular-pages { display:grid; grid-template-columns:1fr 1fr; gap:24px; align-items:start; }
.circular-page { background:#fff; border:1px solid var(--line); padding:14px; border-radius:18px; box-shadow:0 12px 28px rgba(7,53,31,.07); }
.circular-page img { width:100%; border-radius:10px; }
.circular-tools { position:sticky; top:110px; margin-bottom:28px; background:var(--forest-dark); color:#fff; border-radius:22px; padding:24px; display:flex; flex-wrap:wrap; justify-content:space-between; align-items:center; gap:18px; }
.circular-tools strong { font-family:Georgia,serif; font-size:1.35rem; }
.circular-tools span { display:block; color:rgba(255,255,255,.73); font-size:.9rem; }

.contact-layout { display:grid; grid-template-columns:.82fr 1.18fr; gap:28px; align-items:start; }
.info-stack { display:grid; gap:18px; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field { display:grid; gap:7px; }
.field.full { grid-column:1/-1; }
label { font-weight:850; color:var(--forest-dark); }
input,textarea,select { width:100%; border:1px solid #cad8cc; border-radius:13px; padding:13px 14px; color:var(--ink); background:#fff; }
textarea { min-height:160px; resize:vertical; }
input:focus,textarea:focus,select:focus { outline:3px solid rgba(91,159,34,.16); border-color:var(--leaf); }

.site-footer { background:#062b19; color:rgba(255,255,255,.74); padding:54px 22px 26px; }
.footer-grid { max-width:var(--max); margin:auto; display:grid; grid-template-columns:1.5fr 1fr 1fr; gap:42px; }
.footer-logo { width:min(380px,100%); margin-bottom:14px; filter:brightness(0) invert(1); opacity:.95; }
.site-footer h3 { color:#fff; margin-bottom:14px; }
.footer-links { display:grid; gap:8px; }
.site-footer a { color:rgba(255,255,255,.84); text-decoration:none; }
.site-footer a:hover { color:#fff; text-decoration:underline; }
.footer-bottom { max-width:var(--max); margin:36px auto 0; padding-top:20px; border-top:1px solid rgba(255,255,255,.12); font-size:.84rem; }

.hidden { display:none !important; }

@media (max-width: 980px) {
  .menu-toggle { display:grid; place-items:center; }
  .nav { display:none; position:absolute; top:84px; left:14px; right:14px; flex-direction:column; align-items:stretch; padding:12px; background:#fff; border:1px solid var(--line); border-radius:18px; box-shadow:var(--shadow); }
  .nav.open { display:flex; }
  .nav a { text-align:center; }
  .logo-link { width:min(335px,65vw); }
  .trust-grid { grid-template-columns:1fr 1fr; }
  .circular-grid, .discount-grid, .visit-grid, .contact-layout { grid-template-columns:1fr; }
  .department-grid { grid-template-columns:1fr 1fr; }
  .gallery-grid { grid-template-columns:1fr 1fr; }
  .gallery-grid figure:first-child { grid-row:auto; grid-column:1/-1; min-height:420px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width: 650px) {
  .utility-inner { justify-content:center; text-align:center; }
  .utility-items { justify-content:center; gap:8px 14px; }
  .utility-items span:first-child { width:100%; }
  .header-inner { min-height:72px; padding-inline:15px; }
  .logo-link { width:min(270px,70vw); }
  .nav { top:72px; }
  .hero { min-height:660px; }
  .hero::before { background:linear-gradient(180deg,rgba(4,32,18,.65),rgba(4,32,18,.93)),url("assets/photos/hero.webp") center/cover no-repeat; }
  .hero-inner { padding:82px 18px 85px; }
  h1 { font-size:3.55rem; }
  .actions .btn { width:100%; }
  .trust-strip { padding-inline:14px; margin-top:-30px; }
  .trust-grid { grid-template-columns:1fr; }
  .section { padding:72px 18px; }
  .section-head { display:block; }
  .section-head p { margin-top:14px; }
  .circular-card { min-height:450px; padding:30px; }
  .department-grid, .gallery-grid, .circular-pages, .form-grid { grid-template-columns:1fr; }
  .gallery-grid figure, .gallery-grid figure:first-child { min-height:300px; grid-column:auto; }
  .circular-tools { position:static; }
  .field.full { grid-column:auto; }
  .footer-grid { grid-template-columns:1fr; }
  .page-hero .section-inner { margin:auto; }
}
