:root {
  --primary: #eb0a0c;
  --primary-dark: #b30809;
  --primary-soft: #ffd9d9;
  --primary-wash: #fff1f1;
  --primary-glow: rgba(235, 10, 12, 0.14);

  --ink: #1f2430;
  --text: #2a3140;
  --muted: #6b7280;
  --white: #ffffff;
  --line: rgba(31, 36, 48, 0.1);

  --shadow: 0 18px 50px rgba(235, 10, 12, 0.1);
  --shadow-soft: 0 10px 30px rgba(31, 36, 48, 0.08);

  --radius: 22px;
  --radius-sm: 16px;
  --max: 1160px;

  /* Section background controls */
  --section-bg-1: #ffffff;
  --section-bg-2: #fff5f5;
  --section-bg-3: #fff0f0;
  --section-bg-4: #fdf2f2;

  /* Section-alt controls */
  --section-alt-bg: #fff5f5;
  --section-alt-card-bg: #ffffff;
  --section-alt-card-border: rgba(235, 10, 12, 0.12);
  --section-alt-heading: #8f0b0c;
  --section-alt-text: #5f2a2b;
  --section-alt-muted: #7a4a4b;
  --section-alt-tag-bg: #ffffff;
  --section-alt-tag-text: #b30809;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(235, 10, 12, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(235, 10, 12, 0.08), transparent 24%),
    linear-gradient(180deg, #fff7f7 0%, #ffffff 45%, #fff5f5 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(92%, var(--max));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(235, 10, 12, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
}

.logo-image {
  max-height: 56px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  font-weight: 600;
  color: var(--ink);
  transition: color 0.25s ease;
}

nav a:hover {
  color: var(--primary);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 80px;
  background:
    linear-gradient(rgba(31, 36, 48, 0.45), rgba(31, 36, 48, 0.35)),
    url("worcestershire-fields.png") center center / cover no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero h1,
.hero p {
  color: #ffffff;
}

.hero .section-tag {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-card,
.card,
.content-card,
.testimonial-card,
.contact-panel {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(235, 10, 12, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero-card {
  border-radius: var(--radius);
  padding: 30px;
}

.stat + .stat {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(235, 10, 12, 0.1);
}

.stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.stat span {
  color: var(--muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #ff4d4f);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(235, 10, 12, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(235, 10, 12, 0.28);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: rgba(31, 36, 48, 0.1);
}

.btn-secondary:hover {
  border-color: rgba(235, 10, 12, 0.18);
  color: var(--primary);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(235, 10, 12, 0.22);
  color: var(--primary-dark);
}

/* Sections */
.section {
  padding: 84px 0;
  background: var(--section-bg-1);
}

.section-alt {
  padding: 84px 0;
  background: var(--section-alt-bg);
  border-top: 1px solid rgba(235, 10, 12, 0.08);
  border-bottom: 1px solid rgba(235, 10, 12, 0.08);
}

.section-intro {
  width: 100%;
  margin-bottom: 30px;
}

.section-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.section-intro h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 760px;
}

.section-intro p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

/* Section-alt overrides */
.section-alt .section-tag {
  background: var(--section-alt-tag-bg);
  color: var(--section-alt-tag-text);
  box-shadow: 0 4px 14px rgba(235, 10, 12, 0.08);
}

.section-alt .section-intro h2 {
  color: var(--section-alt-heading);
}

.section-alt .section-intro p,
.section-alt .content-card p,
.section-alt .card p,
.section-alt .contact-copy p,
.section-alt .info-card p {
  color: var(--section-alt-muted);
}

.section-alt .card,
.section-alt .content-card,
.section-alt .contact-panel,
.section-alt .info-card {
  background: var(--section-alt-card-bg);
  border: 1px solid var(--section-alt-card-border);
  box-shadow: 0 10px 30px rgba(179, 8, 9, 0.08);
}

.section-alt .card h3,
.section-alt .contact-copy h3,
.section-alt .info-card a {
  color: var(--section-alt-heading);
}

.section-alt .info-label {
  color: var(--primary-dark);
}

/* About */
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.content-card {
  border-radius: var(--radius);
  padding: 28px;
}

.content-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

/* Services */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.card {
  padding: 28px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), #ff7b7c);
}

.card h3 {
  margin: 8px 0 10px;
  color: var(--ink);
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  border-radius: var(--radius);
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fff5f5 100%);
  position: relative;
}

.testimonial-card::before {
  content: "“";
  display: block;
  font-size: 3rem;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 800;
}

.testimonial-quote {
  margin: 0 0 18px;
  color: var(--text);
}

.testimonial-name {
  margin: 0;
  font-weight: 700;
  color: var(--primary-dark);
}

/* Contact */
.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #fff4f4 100%);
  box-shadow: var(--shadow);
}

.contact-copy h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.4rem;
}

.contact-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  max-width: 52ch;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-card {
  background: var(--white);
  border: 1px solid rgba(235, 10, 12, 0.08);
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.info-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  font-weight: 800;
}

.info-card a {
  font-weight: 700;
  color: var(--ink);
}

.info-card p {
  margin: 0;
  color: var(--muted);
}

/* Footer */
.site-footer {
  padding: 26px 0 40px;
}

.footer-inner {
  padding-top: 18px;
  border-top: 1px solid rgba(235, 10, 12, 0.08);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .content-grid,
  .cards,
  .testimonial-grid,
  .contact-panel,
  .contact-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    gap: 14px;
  }

  nav {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 80px 0 60px;
  }

  .section,
  .section-alt {
    padding: 64px 0;
  }

  .logo-image {
    max-height: 48px;
  }

  .hero h1 {
    max-width: none;
  }
}