:root {
  --red: #d60325;
  --red-dark: #aa001b;
  --charcoal: #171717;
  --text: #30333a;
  --muted: #626772;
  --soft: #f7f4f2;
  --line: #e9e2df;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
.wrap { width: min(1180px, calc(100% - 42px)); margin: 0 auto; }

.site-header {
  background: var(--red);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 14px rgba(0,0,0,.12);
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  text-decoration: none;
  min-width: 0;
}
.brand img {
  width: 128px;
  height: auto;
  flex: 0 0 auto;
}
.brand span {
  color: var(--white);
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-size: 15px;
  white-space: nowrap;
}
.top-nav { display: flex; align-items: center; gap: 30px; flex: 0 0 auto; }
.top-nav a {
  color: var(--red);
  background: var(--white);
  text-decoration: none;
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
  padding: 12px 18px;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}
.top-nav a:hover { background: #fff3f5; }

.hero { padding: 82px 0 74px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .68fr);
  gap: 70px;
  align-items: center;
}
.eyebrow {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  margin: 0 0 18px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  color: var(--charcoal);
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -1.7px;
  margin-bottom: 24px;
}
h2 {
  color: var(--charcoal);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.9px;
  margin-bottom: 18px;
}
h3 { font-size: 20px; color: var(--charcoal); margin-bottom: 10px; }
p { color: var(--muted); font-size: 17px; }
.lead { font-size: 20px; color: #4d525b; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 900;
  line-height: 1;
}
.button.primary { background: var(--red); color: var(--white); }
.button.primary:hover { background: var(--red-dark); }
.button.secondary { background: var(--soft); color: var(--red); border: 1px solid var(--line); }
.button.light { background: var(--white); color: var(--red); }

.hero-card {
  background: var(--red);
  border-radius: 26px;
  padding: 44px 36px;
  color: var(--white);
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(214,3,37,.18);
}
.hero-card img {
  width: min(350px, 92%);
  border-radius: 0;
  margin-bottom: 30px;
}
.hero-card h2 { color: var(--white); font-size: clamp(24px, 2.4vw, 34px); margin-bottom: 12px; }
.hero-card p { color: var(--charcoal); font-weight: 900; }

.section { padding: 66px 0; }
.soft { background: var(--soft); }
.intro-strip { padding: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.strip-grid div { padding: 25px 22px; border-right: 1px solid var(--line); }
.strip-grid div:last-child { border-right: none; }
.strip-grid strong { display: block; color: var(--red); font-size: 22px; line-height: 1.15; }
.strip-grid span { color: var(--muted); font-size: 15px; }

.two-col { display: grid; grid-template-columns: 1fr .78fr; gap: 44px; align-items: start; }
.simple-card, .price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 10px 26px rgba(0,0,0,.035);
}
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.price { color: var(--red); font-weight: 900; font-size: 34px; margin-bottom: 8px; }
.note { font-size: 15px; margin-top: 18px; }

.gallery-section h2 { margin-bottom: 26px; }
.image-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.image-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(0,0,0,.045);
}
.postcodes { color: var(--red); font-size: 25px; font-weight: 900; letter-spacing: 1px; }

.final-cta { background: var(--red); color: var(--white); text-align: center; padding: 70px 0; }
.final-cta h2 { color: var(--white); }
.final-cta p { color: rgba(255,255,255,.86); }
.site-footer { background: #171717; padding: 34px 0; }
.footer-grid { display: flex; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.site-footer strong { color: var(--white); }
.site-footer p { color: rgba(255,255,255,.65); margin-bottom: 6px; font-size: 14px; }
.company-note { font-size: 13px; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; align-items: start; }
.footer-links a { color: var(--white); text-decoration: none; font-weight: 700; font-size: 14px; }
.footer-links a:hover { text-decoration: underline; }

@media (max-width: 880px) {
  .brand span { display: none; }
  .hero { padding: 44px 0 52px; }
  .hero-grid, .two-col, .pricing-grid, .strip-grid, .image-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 34px; }
  .hero-card { min-height: auto; }
  .strip-grid div { border-right: none; border-bottom: 1px solid var(--line); }
  .strip-grid div:last-child { border-bottom: none; }
}
@media (max-width: 520px) {
  .wrap { width: min(100% - 26px, 1180px); }
  .header-inner { min-height: 58px; gap: 10px; }
  .brand img { width: 94px; }
  .top-nav a { font-size: 14px; padding: 10px 14px; }
  .hero { padding: 34px 0 42px; }
  .eyebrow { font-size: 11px; letter-spacing: 1.7px; margin-bottom: 14px; }
  h1 { font-size: clamp(32px, 10vw, 38px); letter-spacing: -1.1px; margin-bottom: 18px; }
  h2 { font-size: 28px; }
  p, .lead { font-size: 16px; line-height: 1.55; }
  .hero-actions { margin-top: 24px; }
  .hero-actions .button { flex: 1 1 100%; }
  .hero-card { padding: 24px 20px; border-radius: 20px; }
  .hero-card img { width: min(260px, 92%); margin-bottom: 18px; }
  .hero-card h2 { font-size: 23px; margin-bottom: 8px; }
  .hero-card p { font-size: 14px; }
  .section { padding: 44px 0; }
  .strip-grid div { padding: 18px 4px; }
  .image-grid { gap: 12px; }
}
