:root {
  --ink: #102A43;
  --muted: #5C6F7B;
  --line: #D8E6EA;
  --panel: #F8FAFC;
  --paper: #ffffff;
  --teal: #0E7C7B;
  --orange: #E76F35;
  --orange-dark: #B94F25;
  --gold: #F4A261;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; }
body { margin: 0; color: var(--ink); background: var(--panel); line-height: 1.6; }
a { color: var(--teal); font-weight: 800; text-underline-offset: 3px; }
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}
.brand img { display: block; width: min(272px, 74vw); height: auto; }
.nav { display: flex; flex-wrap: wrap; gap: 10px; }
.button,
.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 6px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}
.button.primary,
.nav a.primary { background: var(--orange); border-color: var(--orange); color: #fff; }
.hero {
  color: white;
  padding: clamp(42px, 7vw, 82px) clamp(18px, 4vw, 48px);
  background:
    linear-gradient(110deg, rgba(16, 42, 67, 0.94), rgba(16, 42, 67, 0.78), rgba(231, 111, 53, 0.58)),
    url("../assets/nuthurst-west-sussex-log-pile.jpg") center 52% / cover;
}
.inner { max-width: 1120px; margin: 0 auto; }
.hero h1 { max-width: 820px; margin: 0 0 14px; font-size: clamp(38px, 6vw, 70px); line-height: 1; letter-spacing: 0; }
.hero p { max-width: 690px; margin: 0; color: rgba(255,255,255,0.88); font-size: 18px; }
.review-banner {
  padding: 12px clamp(18px, 4vw, 48px);
  background: #0F1724;
  color: #fff;
}
.review-banner .inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
}
.review-banner img { width: 146px; background: #fff; border-radius: 8px; display: block; }
.review-banner strong { display: block; }
.review-banner span { color: rgba(255,255,255,0.78); font-size: 13px; }
main { padding: 34px clamp(18px, 4vw, 48px) 52px; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.post-card,
article,
.cta {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(16, 42, 67, 0.06);
}
.post-card { display: block; color: var(--ink); text-decoration: none; }
.post-card img {
  display: block;
  width: calc(100% + 44px);
  max-width: none;
  margin: -22px -22px 18px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  border-bottom: 1px solid var(--line);
}
.post-card h2 { margin: 0 0 8px; font-size: 22px; line-height: 1.15; color: var(--teal); }
.post-card p { margin: 0 0 14px; color: var(--muted); }
.post-card span { color: var(--teal); font-weight: 900; text-decoration: underline; text-underline-offset: 3px; }
.meta { color: var(--muted); font-size: 13px; font-weight: 800; margin-bottom: 12px; }
article { max-width: 820px; margin: 0 auto; }
article h1 { margin: 0 0 12px; font-size: clamp(34px, 5vw, 58px); line-height: 1; letter-spacing: 0; }
.article-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  margin: 18px 0 20px;
}
article h2 { margin: 30px 0 8px; font-size: 26px; }
article p,
article li { color: #304E63; }
article li { margin: 8px 0; }
article .lede { font-size: 19px; color: var(--muted); }
.cta { max-width: 820px; margin: 18px auto 0; background: #102A43; color: white; }
.cta p { color: rgba(255,255,255,0.82); margin: 0 0 14px; }
.site-footer {
  background: #102A43;
  color: rgba(255,255,255,0.78);
  padding: 44px clamp(18px, 4vw, 48px) 28px;
  border-top: 4px solid var(--orange);
  scroll-margin-top: 180px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(150px, 0.7fr)) minmax(220px, 0.9fr);
  gap: 28px;
  align-items: start;
}
.footer-logo {
  display: inline-flex;
  background: white;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}
.footer-logo img { display: block; width: 214px; height: auto; }
.site-footer h2 {
  margin: 0 0 14px;
  color: white;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.site-footer p { margin: 0; color: rgba(255,255,255,0.76); }
.footer-small { margin-top: 14px !important; font-size: 12px; color: rgba(255,255,255,0.58) !important; }
.footer-links { display: grid; gap: 11px; }
.site-footer a { color: white; text-decoration-color: rgba(255,255,255,0.36); text-underline-offset: 3px; }
.site-footer a:hover { color: #F4A261; }
.footer-cta { display: grid; gap: 12px; border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.06); border-radius: 8px; padding: 16px; }
.footer-cta .button { background: var(--orange); border-color: var(--orange); color: white; width: 100%; }
.footer-bottom {
  max-width: 1120px;
  margin: 32px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.56);
  font-size: 12px;
}

@media (max-width: 820px) {
  .topbar,
  .review-banner .inner,
  .grid,
  .footer-grid { grid-template-columns: 1fr; display: grid; }
  .nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav a { text-align: center; white-space: normal; }
  .review-banner img { width: 136px; }
  .review-banner .button { width: 100%; }
  .footer-logo img { width: 190px; }
}
