/* ==========================================================
   GreenScape Manchester — styles.css
   Shared across all pages
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;500;600&display=swap');

/* ── Variables ───────────────────────────────────────────── */
:root {
  --primary:            hsl(150, 43%, 21%);
  --primary-dark:       hsl(150, 43%, 15%);
  --primary-fg:         hsl(0, 0%, 98%);

  --secondary:          hsl(128, 47%, 60%);
  --secondary-fg:       hsl(0, 0%, 98%);

  --accent:             hsl(34, 48%, 67%);
  --accent-dark:        hsl(34, 48%, 55%);
  --accent-fg:          hsl(150, 43%, 15%);

  --cta:                hsl(145, 64%, 49%);
  --cta-hover:          hsl(145, 64%, 42%);
  --cta-fg:             hsl(0, 0%, 100%);

  --bg:                 hsl(0, 0%, 97%);
  --card:               hsl(0, 0%, 100%);
  --fg:                 hsl(150, 43%, 13%);
  --muted:              hsl(40, 10%, 90%);
  --muted-fg:           hsl(150, 10%, 42%);
  --border:             hsl(40, 15%, 85%);
  --destructive:        hsl(0, 72%, 51%);

  --radius:             0.875rem;
  --radius-lg:          1.25rem;
  --radius-xl:          1.75rem;

  --shadow-sm:  0 1px 3px hsl(150 43% 10% / 0.06), 0 1px 2px hsl(150 43% 10% / 0.04);
  --shadow-md:  0 4px 16px hsl(150 43% 10% / 0.08), 0 2px 6px hsl(150 43% 10% / 0.04);
  --shadow-lg:  0 12px 40px hsl(150 43% 10% / 0.12), 0 4px 12px hsl(150 43% 10% / 0.06);
  --shadow-xl:  0 24px 64px hsl(150 43% 10% / 0.15), 0 8px 20px hsl(150 43% 10% / 0.08);
  --shadow-cta: 0 8px 28px hsl(145 64% 49% / 0.35);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0; padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Open Sans', sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font: inherit; background: none; border: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* ── Layout helpers ──────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}
.section-sm {
  padding-block: clamp(3rem, 5vw, 5rem);
}

/* ── Backgrounds ─────────────────────────────────────────── */
.bg-white  { background: var(--card); }
.bg-tinted { background: var(--bg); }
.bg-dark   { background: var(--primary); color: var(--primary-fg); }

.organic-dots {
  background-color: var(--card);
  background-image: radial-gradient(circle, hsl(150 43% 21% / 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
}
.organic-lines {
  background-image:
    linear-gradient(135deg, hsl(34 48% 67% / 0.035) 25%, transparent 25%),
    linear-gradient(225deg, hsl(34 48% 67% / 0.035) 25%, transparent 25%);
  background-size: 56px 56px;
}

/* ── Section decorators ──────────────────────────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    hsl(34 48% 67% / 0.4) 30%,
    hsl(145 64% 49% / 0.25) 70%,
    transparent 100%);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: hsl(34 48% 67% / 0.5);
}
.section-label span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-label.light::before,
.section-label.light::after { background: hsl(34 48% 67% / 0.45); }
.section-label.light span { color: var(--accent); }

.section-heading {
  text-align: center;
  margin-bottom: 4rem;
}
.section-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--fg);
}
.section-heading h2.light { color: var(--primary-fg); }
.section-heading p {
  font-size: 1.05rem;
  color: var(--muted-fg);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.75;
}
.section-heading p.light { color: hsl(0 0% 98% / 0.65); }
.section-heading .heading-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.section-heading .heading-ornament span:first-child,
.section-heading .heading-ornament span:last-child {
  display: block;
  width: 2.25rem;
  height: 1.5px;
  border-radius: 2px;
  background: hsl(34 48% 67% / 0.35);
}
.section-heading .heading-ornament span:nth-child(2) {
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--cta);
}
.section-heading .heading-ornament.light span:first-child,
.section-heading .heading-ornament.light span:last-child { background: hsl(34 48% 67% / 0.4); }

/* ── Overline text ───────────────────────────────────────── */
.overline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.875rem;
}

/* ── Pill badge (hero) ───────────────────────────────────── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid hsl(0 0% 100% / 0.22);
  background: hsl(0 0% 100% / 0.07);
  backdrop-filter: blur(8px);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: hsl(0 0% 98% / 0.82);
  margin-bottom: 1.5rem;
}
.hero-badge svg { color: var(--cta); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: background 0.22s, color 0.22s, transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-cta {
  background: var(--cta);
  color: var(--cta-fg);
  box-shadow: 0 4px 20px hsl(145 64% 49% / 0.28);
}
.btn-cta:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-cta);
}
.btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--primary-fg);
  border: 2px solid hsl(0 0% 98% / 0.32);
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  background: hsl(0 0% 98% / 0.1);
  border-color: hsl(0 0% 98% / 0.5);
}
.btn-sm {
  padding: 0.65rem 1.4rem;
  font-size: 0.82rem;
}
.btn-lg {
  padding: 1.1rem 2.4rem;
  font-size: 1rem;
}

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid hsl(40 15% 85% / 0.6);
  box-shadow: var(--shadow-sm);
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.38s ease,
              border-color 0.38s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: hsl(34 48% 67% / 0.32);
}
.card-img {
  width: 100%;
  height: 14rem;
  overflow: hidden;
  position: relative;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover .card-img img { transform: scale(1.08); }
.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(150 43% 15% / 0.45), transparent);
  opacity: 0;
  transition: opacity 0.45s;
}
.card:hover .card-img-overlay { opacity: 1; }
.card-body { padding: 1.75rem; }
.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.card-body p {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.card-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cta);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s, color 0.2s;
}
.card-link:hover { gap: 0.6rem; color: var(--cta-hover); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 90vh;
}
.hero-page {
  min-height: 52vh;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform-origin: center center;
  animation: heroZoom 2.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.1); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    hsl(150 43% 15% / 0.78) 0%,
    hsl(150 43% 15% / 0.50) 38%,
    hsl(150 43% 15% / 0.62) 68%,
    hsl(150 43% 15% / 0.88) 100%
  );
}
.hero-bottom-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 9rem;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-inline: 1rem;
  padding-top: 5.5rem; /* clears the 5rem fixed header */
  max-width: 56rem;
  margin-inline: auto;
  width: 100%;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 5.5vw, 4rem);
  font-weight: 600;
  color: var(--primary-fg);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: hsl(0 0% 98% / 0.75);
  max-width: 40rem;
  margin-inline: auto;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  font-size: 0.8rem;
  color: hsl(0 0% 98% / 0.6);
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-trust svg { color: var(--accent); }
.hero-trust .fill-accent { fill: var(--accent); }

/* ── Two-column intro ─────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 5.5rem; }
}
.two-col h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.two-col h2 em { font-style: italic; color: var(--secondary); }
.two-col p {
  color: var(--muted-fg);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.two-col-img {
  position: relative;
}
.two-col-img img {
  border-radius: var(--radius-xl);
  width: 100%;
  height: 26rem;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}
.two-col-img::before {
  content: '';
  position: absolute;
  bottom: -1rem; left: -1rem;
  width: 5.5rem; height: 5.5rem;
  border-radius: var(--radius-lg);
  background: hsl(34 48% 67% / 0.22);
  z-index: -1;
}
.two-col-img::after {
  content: '';
  position: absolute;
  top: -1rem; right: -1rem;
  width: 7rem; height: 7rem;
  border-radius: var(--radius-lg);
  background: hsl(145 64% 49% / 0.12);
  z-index: -1;
}

/* ── Service grid ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── Project grid (2 col) ─────────────────────────────────── */
.projects-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .projects-grid-2 { grid-template-columns: 1fr 1fr; } }

/* ── Project grid (3 col) ─────────────────────────────────── */
.projects-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px)  { .projects-grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .projects-grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* ── Project card (full-bleed with overlay) ──────────────── */
.project-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 20rem;
}
@media (min-width: 768px) { .project-card { height: 22rem; } }
.project-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.project-card:hover img { transform: scale(1.08); }
.project-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    hsl(150 43% 12% / 0.92) 0%,
    hsl(150 43% 12% / 0.2) 55%,
    transparent 100%);
  opacity: 0.82;
  transition: opacity 0.3s;
}
.project-card:hover .project-card-overlay { opacity: 1; }
.project-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.75rem 2rem;
}
.project-card-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-fg);
  margin-bottom: 0.35rem;
}
.project-card-info .location {
  font-size: 0.8rem;
  color: hsl(0 0% 98% / 0.62);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.project-card-arrow {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 2.4rem; height: 2.4rem;
  border-radius: 50%;
  background: hsl(0 0% 100% / 0.12);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-fg);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.project-card:hover .project-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── Before / After ───────────────────────────────────────── */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 54rem;
  margin-inline: auto;
}
@media (min-width: 768px) { .ba-grid { grid-template-columns: 1fr 1fr; } }
.ba-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ba-item img {
  width: 100%; height: 20rem;
  object-fit: cover;
  transition: transform 0.7s;
}
.ba-item:hover img { transform: scale(1.04); }
.ba-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, hsl(150 43% 12% / 0.55), transparent);
}
.ba-label {
  position: absolute;
  bottom: 1.1rem; left: 1.1rem;
  padding: 0.4rem 1.25rem;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ba-label.before { background: var(--destructive); color: #fff; }
.ba-label.after  { background: var(--cta); color: var(--cta-fg); }

/* ── Steps / Process ──────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px)  { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }

.step {
  text-align: center;
  padding: 2.25rem 1.5rem;
  border-radius: var(--radius-lg);
  transition: background 0.3s;
}
.step:hover { background: var(--card); }
.step-icon {
  position: relative;
  width: 5rem; height: 5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, hsl(145 64% 49% / 0.14), hsl(128 47% 60% / 0.09));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--cta);
  transition: transform 0.3s;
}
.step:hover .step-icon { transform: scale(1.1); }
.step-number {
  position: absolute;
  top: -0.55rem; right: -0.55rem;
  width: 1.7rem; height: 1.7rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-fg);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
}
.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.step p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.75; }

/* ── Why-us checklist ────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  max-width: 52rem;
  margin-inline: auto;
}
@media (min-width: 640px)  { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  color: hsl(0 0% 98% / 0.88);
  font-size: 0.9rem;
  transition: background 0.2s;
}
.why-item:hover { background: hsl(0 0% 98% / 0.06); }
.why-item svg { color: var(--cta); flex-shrink: 0; margin-top: 2px; }

/* ── Testimonials ─────────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testi-stars { display: flex; gap: 0.25rem; color: var(--accent); margin-bottom: 1.25rem; }
.testi-text {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.85;
  font-style: italic;
  flex: 1;
  margin-bottom: 1.5rem;
}
.testi-author { display: flex; align-items: center; gap: 0.875rem; }
.testi-avatar {
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--primary-fg);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--fg);
}
.testi-area { font-size: 0.75rem; color: var(--muted-fg); }

/* ── Area pills ───────────────────────────────────────────── */
.area-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
  margin-bottom: 3rem;
}
.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--fg);
  transition: border-color 0.25s, color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.area-pill:hover {
  border-color: var(--cta);
  color: var(--cta);
  box-shadow: 0 4px 16px hsl(145 64% 49% / 0.18);
  transform: translateY(-1px);
}
.area-pill svg { color: var(--accent); }

/* ── Areas page grid ──────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 480px)  { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px)  { .areas-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .areas-grid { grid-template-columns: repeat(6, 1fr); } }
.area-card {
  padding: 1.5rem 0.75rem;
  text-align: center;
}
.area-card svg {
  color: var(--cta);
  margin: 0 auto 0.5rem;
  display: block;
  transition: transform 0.3s;
}
.area-card:hover svg { transform: scale(1.1); }
.area-card-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--fg);
  display: block;
}

/* ── Services page alternating rows ──────────────────────── */
.service-rows { display: flex; flex-direction: column; gap: 5.5rem; }
.service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .service-row { grid-template-columns: 1fr 1fr; gap: 4.5rem; }
  .service-row.flip .sr-img { order: 2; }
  .service-row.flip .sr-text { order: 1; }
}
.sr-img { position: relative; }
.sr-img img {
  border-radius: var(--radius-xl);
  width: 100%; height: 22rem;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}
.sr-img-shadow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: hsl(34 48% 67% / 0.12);
  top: 1rem; left: 1rem;
  z-index: -1;
}
.service-row.flip .sr-img-shadow { left: -1rem; }
.sr-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.875rem;
}
.sr-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 1.1rem;
}
.sr-text p {
  color: var(--muted-fg);
  line-height: 1.85;
  margin-bottom: 2rem;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0.875rem; }
details.faq {
  background: var(--bg);
  border: 1px solid hsl(40 15% 85% / 0.6);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  cursor: pointer;
  transition: border-color 0.22s, box-shadow 0.22s;
}
details.faq:hover { border-color: hsl(34 48% 67% / 0.38); box-shadow: var(--shadow-sm); }
details.faq[open] { border-color: hsl(34 48% 67% / 0.35); box-shadow: var(--shadow-md); }
details.faq summary {
  list-style: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--fg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}
details.faq summary::-webkit-details-marker { display: none; }
.faq-chevron {
  flex-shrink: 0;
  color: var(--muted-fg);
  transition: transform 0.3s, color 0.2s;
}
details.faq[open] .faq-chevron {
  transform: rotate(90deg);
  color: var(--cta);
}
.faq-answer {
  margin-top: 1.1rem;
  font-size: 0.9rem;
  color: var(--muted-fg);
  line-height: 1.85;
  padding-right: 2rem;
}

/* ── CTA banner ───────────────────────────────────────────── */
.cta-section {
  background: var(--primary);
  padding-block: clamp(4.5rem, 8vw, 7rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: var(--cta);
  filter: blur(100px);
  opacity: 0.09;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.85rem, 4vw, 3.1rem);
  font-weight: 600;
  color: var(--primary-fg);
  margin-bottom: 1rem;
}
.cta-inner p {
  font-size: 1.05rem;
  color: hsl(0 0% 98% / 0.65);
  margin-bottom: 2.75rem;
  line-height: 1.75;
}
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ── Contact form & details ───────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4.5rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: 1.375rem; }
.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.form-group input,
.form-group textarea {
  display: block;
  width: 100%;
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--fg);
  font-size: 0.9rem;
  line-height: 1.5;
  transition: border-color 0.22s, box-shadow 0.22s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--cta);
  box-shadow: 0 0 0 3px hsl(145 64% 49% / 0.14);
}
.form-group textarea { resize: vertical; min-height: 148px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  transition: background 0.2s;
  margin-bottom: 0.5rem;
}
.contact-detail:hover { background: var(--bg); }
.contact-icon {
  width: 3rem; height: 3rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, hsl(145 64% 49% / 0.14), hsl(128 47% 60% / 0.08));
  display: flex; align-items: center; justify-content: center;
  color: var(--cta);
  flex-shrink: 0;
}
.contact-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--fg);
  margin-bottom: 0.2rem;
}
.contact-value {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.65;
  white-space: pre-line;
}

/* ── Toast (success notification) ────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--cta);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  max-width: 320px;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--fg);
  margin-bottom: 0.25rem;
}
.toast-desc { font-size: 0.82rem; color: var(--muted-fg); }

/* ── HEADER ───────────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}
#header.scrolled {
  background: hsl(0 0% 100% / 0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px hsl(150 43% 12% / 0.09);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo-main  { color: var(--primary-fg); transition: color 0.3s; }
.logo-accent{ color: var(--accent);     transition: color 0.3s; }
#header.scrolled .logo-main  { color: var(--primary); }
#header.scrolled .logo-accent{ color: var(--secondary); }

.nav-links {
  display: none;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(0 0% 98% / 0.88);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--cta);
  border-radius: 2px;
  transition: width 0.25s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: hsl(0 0% 100%); }
.nav-links a.active { color: var(--cta); }
#header.scrolled .nav-links a { color: var(--fg); }
#header.scrolled .nav-links a:hover { color: var(--cta); }
#header.scrolled .nav-links a.active { color: var(--cta); }

.nav-cta { display: none; }
.nav-cta a {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border-radius: 0.6rem;
  background: var(--cta);
  color: var(--cta-fg);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta a:hover { background: var(--cta-hover); transform: translateY(-1px); }

.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.4rem; height: 2.4rem;
  color: var(--primary-fg);
  transition: color 0.3s;
  padding: 0.25rem;
}
#header.scrolled .nav-hamburger { color: var(--fg); }
.nav-hamburger span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
}
.nav-hamburger span:nth-child(2) { width: 75%; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobile-nav {
  display: none;
  background: var(--card);
  border-top: 1px solid var(--border);
  animation: slideDown 0.28s ease;
}
#mobile-nav.open { display: block; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.875rem;
}
.mobile-nav-inner a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
  transition: background 0.15s, color 0.15s;
}
.mobile-nav-inner a:hover { background: var(--muted); }
.mobile-nav-inner a.active { background: hsl(150 43% 21% / 0.1); color: var(--primary); font-weight: 700; }
.mobile-nav-cta {
  display: block;
  margin-top: 0.5rem;
  text-align: center;
  padding: 0.875rem;
  border-radius: 0.6rem;
  background: var(--cta);
  color: var(--cta-fg) !important;
  font-weight: 700 !important;
}
.mobile-nav-cta:hover { background: var(--cta-hover) !important; }

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta { display: block; }
  .nav-hamburger { display: none; }
  #mobile-nav { display: none !important; }
}

/* ── FOOTER ───────────────────────────────────────────────── */
#footer {
  background: var(--primary);
  color: var(--primary-fg);
  position: relative;
  overflow: hidden;
}
#footer::after {
  content: '';
  position: absolute;
  bottom: -4rem; right: -4rem;
  width: 28rem; height: 28rem;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(100px);
  opacity: 0.06;
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
  padding-bottom: 2.5rem;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}
.footer-logo-icon {
  width: 2.2rem; height: 2.2rem;
  border-radius: 0.5rem;
  background: hsl(145 64% 49% / 0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--cta);
  flex-shrink: 0;
}
.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
}
.footer-logo-text span { color: var(--accent); }
.footer-desc {
  font-size: 0.875rem;
  color: hsl(0 0% 98% / 0.58);
  line-height: 1.75;
  max-width: 22rem;
}
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.footer-col nav { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col nav a {
  font-size: 0.875rem;
  color: hsl(0 0% 98% / 0.58);
  display: inline-block;
  transition: color 0.2s, transform 0.2s;
}
.footer-col nav a:hover { color: var(--accent); transform: translateX(4px); }
.footer-contact { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-contact p { font-size: 0.875rem; color: hsl(0 0% 98% / 0.58); }
.footer-bottom {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  padding-block: 1.75rem;
  border-top: 1px solid hsl(0 0% 98% / 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: hsl(0 0% 98% / 0.38);
}

/* ── Scroll animations ───────────────────────────────────── */
/* Default: content ALWAYS visible — animations are enhancement only */
.reveal { }
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    animation: revealUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
    animation-play-state: paused;
  }
  .reveal.in-view { animation-play-state: running; }
  .reveal-d1 { animation-delay: 0.08s; }
  .reveal-d2 { animation-delay: 0.16s; }
  .reveal-d3 { animation-delay: 0.24s; }
  .reveal-d4 { animation-delay: 0.32s; }
  .reveal-d5 { animation-delay: 0.40s; }
  .reveal-d6 { animation-delay: 0.48s; }
  @keyframes revealUp {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

/* ── Utilities ───────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-2  { margin-top: 2rem; }
.mt-3  { margin-top: 3rem; }
.mt-4  { margin-top: 3.5rem; }
.max-w-2xl { max-width: 42rem; margin-inline: auto; }
.max-w-3xl { max-width: 52rem; margin-inline: auto; }
