/* M&DS Landscaping - site styles */
:root {
  --green-dark: #1e5c38;
  --green: #2d7a4f;
  --green-light: #3d8b5a;
  --green-soft: #e8f3ec;
  --earth: #5c4a32;
  --sand: #f5f1ea;
  --sand-deep: #ebe4d8;
  --ink: #1a1a1a;
  --muted: #5a5a5a;
  --white: #ffffff;
  --border: #d9e5dd;
  --shadow: 0 8px 28px rgba(30, 92, 56, 0.12);
  --shadow-lg: 0 18px 48px rgba(30, 92, 56, 0.16);
  --radius: 14px;
  --max: 1120px;
  --header-h: 76px;
  --font: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-color: #eef3ef;
  background-image: linear-gradient(180deg, #f6f8f6 0%, #eef3ef 50%, #e9efe9 100%);
  background-attachment: fixed;
}

body > * {
  position: relative;
  z-index: 1;
}

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

a {
  color: var(--green-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  box-shadow: 0 4px 18px rgba(30, 92, 56, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  max-width: min(46vw, 200px);
}

.logo img {
  height: 52px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0.65rem;
  cursor: pointer;
  color: var(--green-dark);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  border-radius: 1px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.35rem;
  flex-wrap: wrap;
}

.nav-list a {
  position: relative;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.35rem 0;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--green-dark);
  text-decoration: none;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.18s ease;
  transform-origin: center;
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
  line-height: 1.2;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-call {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

.btn-call:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-outline:hover {
  background: var(--green-soft);
  color: var(--green-dark);
}

.btn-lg {
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
}

.btn-icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(460px, 76vh, 680px);
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--green-dark) center/cover no-repeat;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(14, 40, 24, 0.92) 0%,
    rgba(30, 92, 56, 0.78) 48%,
    rgba(30, 92, 56, 0.45) 100%
  );
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 72px;
  background:
    linear-gradient(transparent, rgba(14, 40, 24, 0.2)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 72' preserveAspectRatio='none'%3E%3Cpath fill='%23eef3ef' d='M0 40c120 24 240 32 360 28s240-20 360-24 240 8 360 16 240 12 360 4V72H0z'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  padding: 4.5rem 0 4rem;
  max-width: 660px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.38);
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.hero h1 {
  font-size: clamp(2.05rem, 4.6vw, 3.15rem);
  line-height: 1.12;
  margin-bottom: 0.9rem;
  font-weight: 800;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}

.hero-lead {
  font-size: 1.16rem;
  opacity: 0.96;
  margin-bottom: 1.7rem;
  max-width: 34rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-meta {
  font-size: 0.95rem;
  opacity: 0.92;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-meta strong {
  font-weight: 700;
}

/* Trust strip */
.trust-strip {
  background: linear-gradient(180deg, #ffffff 0%, #f2f7f3 100%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(30, 92, 56, 0.07);
  position: relative;
  z-index: 2;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.6rem 0 1.75rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  padding: 1.15rem 0.9rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(30, 92, 56, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(30, 92, 56, 0.1);
}

.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(160deg, #e9f6ee, #d4eddc);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #c7e0d0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.trust-item strong {
  display: block;
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 0.2rem;
}

.trust-item span {
  display: block;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.4;
}

.trust-copy {
  min-width: 0;
}

/* Sections - even colour wash + subtle image pattern tile */
.section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(30, 92, 56, 0.06);
  background-image:
    url("/images/pattern.svg"),
    linear-gradient(180deg, #f3f9f5 0%, #e8f3ec 50%, #e3efe7 100%);
  background-size: 120px 120px, auto;
  background-repeat: repeat, no-repeat;
  background-position: 0 0, 0 0;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section-services {
  background-image:
    url("/images/pattern.svg"),
    linear-gradient(180deg, #f3f9f5 0%, #e8f3ec 50%, #e3efe7 100%);
}

.section-process {
  background-image:
    url("/images/pattern.svg"),
    linear-gradient(180deg, #eef6f1 0%, #e6f1ea 50%, #e1ece5 100%);
}

.section-alt {
  background-image:
    url("/images/pattern.svg"),
    linear-gradient(180deg, #f6f1e9 0%, #efe8dc 50%, #e9e1d4 100%);
}

.section-work {
  background-image:
    url("/images/pattern.svg"),
    linear-gradient(180deg, #f4f9f6 0%, #ebf3ee 50%, #e6f0ea 100%);
}

.section-green {
  background-image:
    url("/images/pattern.svg"),
    linear-gradient(180deg, #e8f3ec 0%, #e0eee5 50%, #dae9df 100%);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--green-dark);
  margin: 0 0 0.7rem;
  position: relative;
  display: block;
  width: 100%;
}

.section-head h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  margin: 0.75rem auto 0;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
  max-width: 36rem;
}

.eyebrow {
  display: block;
  width: fit-content;
  max-width: 100%;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 auto 0.75rem;
  background: linear-gradient(180deg, #f2faf5, var(--green-soft));
  border: 1px solid var(--border);
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(30, 92, 56, 0.06);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.7rem 1.45rem 1.4rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--green-light), var(--green-dark));
  opacity: 0.85;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #c5dbcd;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--green-soft), #d7efe1);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.05rem;
  border: 1px solid var(--border);
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
  color: var(--ink);
}

.service-card p {
  color: var(--muted);
  font-size: 0.97rem;
  flex: 1;
}

.service-tag {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 1.15rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
}

/* Process */
.process-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  counter-reset: none;
}

.process-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.7rem 1.45rem;
  box-shadow: var(--shadow);
  position: relative;
}

.process-card::after {
  content: "";
  position: absolute;
  top: 2rem;
  right: -0.75rem;
  width: 1.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--green-light), transparent);
  z-index: 1;
}

.process-card:last-child::after {
  display: none;
}

.process-num {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  margin-bottom: 0.95rem;
}

.process-card h3 {
  font-size: 1.15rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.process-card p {
  color: var(--muted);
  font-size: 0.97rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.75rem;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-image {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5 / 4;
  border: 4px solid var(--white);
  outline: 1px solid var(--border);
  position: relative;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(14, 40, 24, 0.28));
  pointer-events: none;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-float-card {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow);
  max-width: calc(100% - 2rem);
}

.about-float-card strong {
  display: block;
  color: var(--green-dark);
  font-size: 0.98rem;
}

.about-float-card span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  margin-top: 0.15rem;
}

.about-copy .eyebrow {
  margin-left: 0;
  margin-right: auto;
}

.about-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.about-copy p {
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.tagline-box {
  background: linear-gradient(120deg, #123d26, var(--green-dark) 50%, #2a6b47);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin: 1.4rem 0 1.55rem;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-points {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.6rem;
}

.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--ink);
  font-weight: 500;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
}

.about-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--green-light), var(--green-dark));
  margin-top: 0.4rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(45, 122, 79, 0.15);
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
  background: var(--border);
  border: 1px solid rgba(30, 92, 56, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.4rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(10, 32, 20, 0.92) 55%);
  color: var(--white);
  display: grid;
  gap: 0.22rem;
}

.gallery-badge {
  display: inline-flex;
  width: fit-content;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0.22rem 0.55rem;
  margin-bottom: 0.15rem;
}

.gallery-caption strong {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.25;
}

.gallery-caption span:last-child {
  font-size: 0.86rem;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1.35;
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, #123d26 0%, var(--green-dark) 50%, #2a7a4d 100%);
  color: var(--white);
  padding: 3.75rem 0;
  position: relative;
  overflow: hidden;
}



.cta-inner {
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.55rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
}

.cta-band h2 {
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  margin-bottom: 0.65rem;
}

.cta-band p {
  opacity: 0.95;
  margin-bottom: 0;
  font-size: 1.05rem;
  max-width: 36rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.cta-band .btn-call {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}

.cta-band .btn-call:hover {
  background: var(--sand);
  border-color: var(--sand);
  color: var(--green-dark);
}

.cta-band .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.85);
}

.cta-band .btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.85rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
}

.contact-card h3 {
  color: var(--green-dark);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.contact-list {
  display: grid;
  gap: 1rem;
}

.contact-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #fbfdfc, #f3f9f5);
  border: 1px solid var(--border);
}

.contact-list strong {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.contact-list a {
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--ink);
}

.contact-list a:hover {
  color: var(--green-dark);
}

.contact-list .icon {
  width: 36px;
  height: 36px;
  color: var(--green-dark);
  background: linear-gradient(160deg, #e9f6ee, #d4eddc);
  border: 1px solid #c7e0d0;
  border-radius: 50%;
  padding: 7px;
  box-sizing: border-box;
  display: block;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.area-box {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.55), transparent 45%),
    linear-gradient(160deg, #eef7f1, var(--green-soft));
  border-radius: var(--radius);
  padding: 1.85rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.area-box h3 {
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.area-box p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.area-box ul {
  display: grid;
  gap: 0.45rem;
}

.area-box li {
  padding-left: 1.1rem;
  position: relative;
  color: var(--ink);
  font-weight: 500;
}

.area-box li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #163224 0%, #122a1c 55%, #0e2218 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.75rem 0 1.5rem;
  position: relative;
}

.site-footer > .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .logo {
  margin-bottom: 0.85rem;
  max-width: 200px;
  /* Full-colour logo on dark footer: slight lift for contrast */
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}

.footer-brand .logo img {
  height: 48px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 28rem;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 0.85rem;
  font-size: 1rem;
}

.footer-col ul {
  display: grid;
  gap: 0.45rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
}

/* Privacy page */
.page-hero {
  background: linear-gradient(120deg, var(--green-dark), var(--green));
  color: var(--white);
  padding: 3rem 0;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.4rem;
}

.page-hero p {
  opacity: 0.9;
}

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 0 4rem;
}

.legal h2 {
  color: var(--green-dark);
  font-size: 1.25rem;
  margin: 1.75rem 0 0.65rem;
}

.legal p,
.legal li {
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.legal ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal a {
  font-weight: 600;
}

/* Floating mobile CTA */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 0.65rem 0.85rem;
  gap: 0.55rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.mobile-cta .btn {
  flex: 1;
}

/* Utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Responsive */
@media (max-width: 960px) {
  .services-grid,
  .gallery-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .process-card::after {
    display: none;
  }

  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .header-actions .btn span.label {
    display: none;
  }

  .header-actions .btn {
    padding: 0.65rem 0.85rem;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 68px;
  }

  .logo {
    max-width: min(52vw, 160px);
  }

  .logo img {
    height: 44px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1rem 1rem;
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-list a {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--border);
  }

  .header-actions {
    margin-left: auto;
    margin-right: 0.35rem;
  }

  .services-grid,
  .gallery-grid,
  .process-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    gap: 0.75rem;
    padding: 1rem 0 1.15rem;
  }

  .trust-item {
    padding: 1rem 0.85rem;
  }

  .hero-content {
    padding: 3rem 0 3.5rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .mobile-cta {
    display: flex;
  }

  body {
    padding-bottom: 72px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .hero-actions .btn {
    width: 100%;
  }
}
