.why-choose {
  background: #e9e7e4;
  padding: 4rem 0 3.5rem;
}
.why-choose-title {
  text-align: center;
  margin-bottom: 2.2rem;
}
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem 2.2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.why-choose-item {
  background: none;
  text-align: center;
  padding: 0 1rem;
}
.why-choose-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.1rem;
  object-fit: contain;
  display: block;
  background: transparent;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(60,60,60,0.04);
}
.why-choose-item h3 {
  font-size: 1.13rem;
  margin: 0 0 0.5rem;
  color: #1f2f34;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.why-choose-item p {
  font-size: 1.01rem;
  color: #2d4047;
  margin: 0;
}

.reviews-section {
  background: #f9f7f4;
  padding: 4rem 0;
}

.reviews-title {
  text-align: center;
  margin-bottom: 0.6rem;
}

.reviews-intro {
  text-align: center;
  color: #2d4047;
  margin: 0 auto 2rem;
  max-width: 760px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.review-card {
  background: #ffffff;
  border: 1px solid #dfd9cd;
  border-radius: 14px;
  padding: 1rem 1.1rem;
}

.review-card p {
  margin: 0;
  color: #2d4047;
}

.review-source {
  margin-top: 0.8rem;
  font-weight: 700;
  color: #1f2f34;
}

.partners-section {
  background: #e9e7e4;
  padding: 2.4rem 0 3rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  align-items: center;
}

.partner-logo {
  width: 100%;
  max-height: 70px;
  object-fit: contain;
  background: #fff;
  border: 1px solid #dfd9cd;
  border-radius: 10px;
  padding: 0.6rem;
}

.partner-fallback {
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #2d4047;
}

.final-cta {
  background: #f9f7f4;
  padding: 3.2rem 0 3.6rem;
}

.final-cta-content {
  text-align: center;
}

.final-cta-content h2 {
  margin-bottom: 0.6rem;
}

.final-cta-content p {
  margin: 0 0 1.2rem;
  color: #2d4047;
}

@media (max-width: 900px) {
  .why-choose-grid {
    grid-template-columns: 1fr 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.what-we-do-title {
  text-align: center;
}
@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans:wght@400;500;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  --bg: #f6f3ec;
  --bg-soft: #ece6da;
  --surface: #ffffff;
  --ink: #1f2f34;
  --ink-soft: #45585f;
  --brand: #0f6e7a;
  --brand-dark: #0a4a52;
  --accent: #cc7a2f;
  --line: #d8d1c3;
  --maxw: 1120px;
  --radius: 18px;
  --shadow: 0 14px 36px rgba(15, 33, 38, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 17px;
  color: var(--ink);
  background: #e9e7e4;
  line-height: 1.45;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 2rem, var(--maxw));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 126px;
  background: #242427;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-wrap {
  min-height: 126px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #f7f2e9;
  letter-spacing: 0.02em;
}

.brand img {
  height: 96px;
  width: auto;
  display: block;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
  padding: 0.45rem 0.7rem;
  border-radius: 10px;
  font-size: 1rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.main-nav a {
  color: #f5efe3;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
  font-weight: 600;
}

.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  color: #f5efe3;
  font: inherit;
  font-weight: 600;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.dropdown-toggle:hover,
.dropdown-toggle[aria-expanded="true"] {
  background: #f0eadf;
  color: #112228;
}

.dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 110%;
  min-width: 180px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(30,40,50,0.13);
  padding: 0.5rem 0;
  z-index: 200;
}
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu a {
  display: block;
  color: #1f2f34;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-weight: 500;
  background: none;
  transition: background 0.18s, color 0.18s;
}
.dropdown-menu a:hover {
  background: #f0eadf;
  color: #0f6e7a;
}

.nav-quote-btn {
  margin-left: 0.8rem;
  font-size: 1.08rem;
  padding: 0.55rem 1.3rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(24,165,219,0.08);
}

.main-nav a:hover,
.main-nav a[aria-current='page'] {
  background: #f0eadf;
  color: #112228;
}

.hero {
  padding: 5.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  background: #e0f0ea;
  color: #0b5b63;
  border: 1px solid #bedad1;
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1,
h2,
h3 {
  margin: 0 0 0.6rem;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.lead {
  font-size: 1.2rem;
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  background: #18a5db;
  color: #f6fafb;
}

.btn-primary:hover {
  background: #1288b4;
}

.btn-ghost {
  border-color: var(--brand);
  color: var(--brand);
  background: transparent;
}

.hero-card {
  background: linear-gradient(170deg, #1d383e 0%, #0d262c 100%);
  color: #f3ede2;
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.hero-card p {
  margin: 0.5rem 0;
}

.home-hero {
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(16, 22, 29, 0.56), rgba(16, 22, 29, 0.56)),
    url('../images/town.jpg');
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 700px;
}

.home-hero h1,
.home-hero .lead {
  color: #f7f9fb;
}

.home-hero .btn-ghost {
  border-color: #f7f9fb;
  color: #f7f9fb;
}

.home-hero .btn-ghost:hover {
  background: #f7f9fb;
  color: #142228;
}

.about-points {
  background: #ffffff;
  padding-top: 1.75rem;
  padding-bottom: 2.25rem;
}

.about-points-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.about-point-item img {
  width: auto;
  height: auto;
  max-width: none;
  margin: 0 auto 0.75rem;
}

.about-point-item h3 {
  margin: 0;
  font-size: 1.1rem;
}

.services-detail p {
  color: #2d4047;
}

.service-split-list {
  margin-top: 1.8rem;
  display: grid;
  gap: 1.4rem;
}

.service-split-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

.service-split-item:nth-child(even) .service-image-placeholder {
  order: 2;
}

.service-split-item:nth-child(even) > div:last-child {
  order: 1;
}

.service-image-placeholder {
  min-height: 290px;
  border: 1px dashed #b8b1a6;
  border-radius: 12px;
  background: #f4f1eb;
  color: #6c6a66;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.service-image {
  width: 100%;
  min-height: 290px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.service-page-content {
  max-width: 960px;
}

.service-page-icon {
  margin: 0 auto 1.2rem;
  max-width: 130px;
  width: 100%;
  height: auto;
}

.service-page-content p {
  color: #2d4047;
}

.roofing-work {
  background: #ffffff;
}

.roofing-work-title {
  text-align: center;
  margin-bottom: 1.4rem;
}

.roofing-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.building-work-grid {
  grid-template-columns: repeat(4, 1fr);
}

.roofing-work-item img {
  width: auto;
  height: auto;
  max-width: none;
  margin: 0 auto 0.75rem;
}

.roofing-work-item h3 {
  margin: 0;
  font-size: 1.1rem;
}

.roofing-featured-work {
  background: #e9e7e4;
}

.roofing-featured-title {
  text-align: center;
  margin-bottom: 1.4rem;
}

.roofing-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.roofing-featured-grid-two {
  grid-template-columns: repeat(2, 1fr);
}

.roofing-featured-item {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border: 1px solid #d8d1c3;
  border-radius: 12px;
}

.featured-work {
  background: #e9e7e4;
}

.featured-work h2 {
  text-align: center;
}

.featured-work-lead {
  text-align: center;
  margin: 0 0 1.5rem;
  color: #2d4047;
}

.featured-work-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.9rem;
}

.featured-work-image {
  grid-column: span 2;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.featured-work-image:nth-child(4) {
  grid-column: 2 / span 2;
}

.featured-work-image:nth-child(5) {
  grid-column: 4 / span 2;
}

.home-intro {
  padding: 4rem 0;
}

.intro-split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 2.4rem;
}

.intro-copy h2 {
  margin-bottom: 1.1rem;
}

.intro-copy p {
  margin: 0 0 1rem;
  font-size: 1.08rem;
  color: #2d4047;
}

.intro-form-wrap {
  align-self: center;
}

.home-enquiry-form {
  gap: 0.9rem;
}

.home-enquiry-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
  color: #2d4047;
}

.home-enquiry-form textarea {
  min-height: 140px;
}

.home-enquiry-form .btn {
  justify-self: start;
}

.home-assurance {
  padding-top: 0;
}

.assurance-content {
  max-width: 920px;
  text-align: center;
}

.assurance-image {
  margin: 0 auto 1.6rem;
  max-width: 250px;
}

.assurance-content p {
  margin: 0 0 1rem;
  font-size: 1.08rem;
  color: #2d4047;
}

.what-we-do {
  background: #f9f7f4;
}

.what-we-do h2 {
  margin-bottom: 1.4rem;
}

.what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.what-we-do-item {
  display: grid;
  gap: 0.8rem;
}

.what-we-do-image {
  width: 351px;
  height: 413px;
  object-fit: cover;
  margin: 0 auto;
  display: block;
  background: #efebe4;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(60,60,60,0.04);
}

.what-we-do-item a {
  font-weight: 700;
  color: #1f2f34;
}

section {
  padding: 3.5rem 0;
}

.block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
}

.grid-3 {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.checks {
  list-style: none;
  padding: 0;
  margin: 0.7rem 0 0;
}

.checks li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.45rem;
}

.checks li::before {
  content: '✓';
  color: var(--accent);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
  background: linear-gradient(135deg, #dce9e5 0%, #f8f4ec 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  min-height: 170px;
  padding: 1rem;
  display: flex;
  align-items: end;
  font-weight: 700;
  color: #1f363a;
}

.form {
  display: grid;
  gap: 0.8rem;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid #c7c0b2;
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  font: inherit;
  background: #fff;
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

.quote-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 18, 0.58);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.quote-modal.open {
  display: flex;
}

.quote-modal-panel {
  width: min(92vw, 560px);
  background: #ffffff;
  border-radius: 16px;
  padding: 1.2rem;
  border: 1px solid #d8d1c3;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  position: relative;
}

.quote-modal-panel h2 {
  margin-bottom: 0.9rem;
}

.quote-modal-close {
  position: absolute;
  right: 0.8rem;
  top: 0.6rem;
  border: 1px solid #c7c0b2;
  background: #fff;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
}

.site-footer {
  background: #1a262b;
  color: #ebe5da;
  border-top: 1px solid #2e4148;
  padding: 1.5rem 0;
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-meta {
  margin: 0;
  color: #ebe5da;
}

.fade-up {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.45s ease forwards;
}

.fade-up.delay-1 { animation-delay: 0.08s; }
.fade-up.delay-2 { animation-delay: 0.16s; }
.fade-up.delay-3 { animation-delay: 0.24s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .gallery-grid,
  .intro-split,
  .what-we-do-grid,
  .about-points-grid,
  .featured-work-grid,
  .service-split-item {
    grid-template-columns: 1fr;
  }

  .service-split-item:nth-child(even) .service-image-placeholder,
  .service-split-item:nth-child(even) > div:last-child {
    order: initial;
  }

  .home-intro {
    padding: 3rem 0;
  }

  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    right: 1rem;
    top: 126px;
    background: #203238;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    padding: 0.4rem;
    min-width: 210px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    border-radius: 8px;
  }

  .roofing-work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .roofing-featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .roofing-work-grid {
    grid-template-columns: 1fr;
  }

  .roofing-featured-grid {
    grid-template-columns: 1fr;
  }
}
