/* ==========================================================================
   JD Contractors & Groundworks — Design System v2
   Official brand: hot pink (#FE307B) + gunmetal charcoal on white.
   Light, modern construction aesthetic. Display: Space Grotesk.
   ========================================================================== */

:root {
  /* Brand palette (extracted from official logo) */
  --pink:       #fe307b;
  --pink-deep:  #d91b64;
  --pink-soft:  #fdeaf2;
  --pink-tint:  #fdcde0;
  --pink-glow:  rgba(254, 48, 123, 0.25);

  --ink:        #17141b;
  --ink-2:      #221e28;

  --paper:      #ffffff;
  --paper-2:    #f8f6f9;
  --line:       rgba(23, 20, 27, 0.10);
  --line-strong:rgba(23, 20, 27, 0.18);
  --line-dark:  rgba(255, 255, 255, 0.13);

  --text:       #17141b;
  --text-dim:   #5f5a68;
  --text-light: #f5f3f7;
  --text-light-dim: #b9b3c2;

  /* Type */
  --f-display: "Space Grotesk", "Helvetica Neue", sans-serif;
  --f-head:    "Space Grotesk", "Helvetica Neue", sans-serif;
  --f-body:    "Plus Jakarta Sans", system-ui, sans-serif;

  /* Metrics */
  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section: clamp(4.5rem, 9vw, 8.5rem);
  --radius: 10px;
  --radius-lg: 18px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 20px 50px -20px rgba(23, 20, 27, 0.18);
  --shadow-sm: 0 8px 24px -12px rgba(23, 20, 27, 0.14);
}

/* ------- Reset ------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  font-family: var(--f-body);
  background: var(--paper);
  color: var(--text);
  line-height: 1.65;
  font-weight: 450;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ------- Layout ------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); position: relative; background: var(--paper); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); position: relative; background: var(--paper); }
/* Section tints: bg-ink = dark charcoal band; bg-ink2 = soft light grey */
.bg-ink { background: var(--ink); color: var(--text-light); }
.bg-ink2 { background: var(--paper-2); }
.bg-surface { background: var(--paper-2); }
.bg-paper { background: var(--paper); }
.bg-pink { background: var(--pink); color: #fff; }

/* ------- Typography ------- */
.display {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
h1, h2, h3, h4 { font-family: var(--f-head); font-weight: 700; line-height: 1.08; letter-spacing: -0.025em; }
.h-xl { font-size: clamp(2.5rem, 6.2vw, 5.4rem); }
.h-lg { font-size: clamp(1.9rem, 4.2vw, 3.3rem); }
.h-md { font-size: clamp(1.5rem, 2.8vw, 2.3rem); }
.h-sm { font-size: clamp(1.15rem, 2vw, 1.4rem); }

/* Deep pink for small text on light bg (AA); bright brand pink re-asserted on dark scopes */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--f-head); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--pink-deep);
}
.eyebrow::before { content: ""; width: 28px; height: 2.5px; background: currentColor; display: inline-block; border-radius: 2px; }
.hero .eyebrow, .page-hero .eyebrow, .bg-ink .eyebrow, .cta .eyebrow, .project .eyebrow, .footer .eyebrow { color: var(--pink); }

.lead { font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: var(--text-dim); max-width: 60ch; }
.bg-ink .lead { color: var(--text-light-dim); }
.muted { color: var(--text-dim); }
.bg-ink .muted { color: var(--text-light-dim); }
.accent { color: var(--pink); }

/* Visible keyboard focus everywhere (bright pink: >=3:1 on white and on ink) */
:focus-visible { outline: 2.5px solid var(--pink); outline-offset: 2px; }

/* ------- Buttons ------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--f-head); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 1.02rem 1.75rem; border-radius: 100px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  position: relative; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
/* Deep pink fill so white label passes AA (4.89:1); brighter on hover-lift */
.btn--primary { background: var(--pink-deep); color: #fff; box-shadow: 0 12px 28px -10px var(--pink-glow); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 38px -12px var(--pink-glow); background: #c01458; }
.btn--ghost { border: 1.5px solid color-mix(in srgb, currentColor 35%, transparent); color: inherit; }
.btn--ghost:hover { border-color: var(--pink-deep); color: var(--pink-deep); transform: translateY(-3px); }
.hero .btn--ghost:hover, .page-hero .btn--ghost:hover, .bg-ink .btn--ghost:hover, .cta .btn--ghost:hover { border-color: var(--pink); color: var(--pink); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-2); transform: translateY(-3px); }
.cta .btn--dark { background: #fff; color: var(--ink); }
.cta .btn--dark:hover { background: var(--pink-soft); }
.btn--lg { padding: 1.15rem 2.1rem; font-size: 1rem; }
.btn--block { width: 100%; justify-content: center; }

/* ------- Brand rule divider ------- */
.tape {
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--pink-deep));
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border-bottom: 1px solid transparent;
  padding-block: 0.6rem;
  color: #fff; /* over dark hero */
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  color: var(--ink);
  box-shadow: 0 6px 24px -18px rgba(23, 20, 27, 0.25);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav__links { display: flex; align-items: center; gap: 2.2rem; }
.nav__link {
  font-family: var(--f-head); font-weight: 600; font-size: 0.94rem;
  color: inherit; position: relative; padding-block: 0.4rem;
  transition: color 0.25s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2.5px; width: 0; background: var(--pink);
  border-radius: 2px; transition: width 0.3s var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--pink); }
.site-header.scrolled .nav__link:hover, .site-header.scrolled .nav__link.active { color: var(--pink-deep); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 1rem; }
.nav__phone {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--f-head); font-weight: 700; font-size: 0.95rem; color: inherit;
}
.nav__phone svg { width: 17px; height: 17px; color: var(--pink); }

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 0.75rem; color: inherit; }
.logo__img {
  width: 46px; height: 46px; flex: none; object-fit: cover;
  border-radius: 12px; background: #fff;
  box-shadow: 0 4px 14px -6px rgba(23, 20, 27, 0.35);
}
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name { font-family: var(--f-head); font-weight: 700; font-size: 1.02rem; letter-spacing: -0.01em; }
.logo__sub { font-family: var(--f-head); font-weight: 600; font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--pink); margin-top: 3px; }
.site-header.scrolled .logo__sub { color: var(--pink-deep); }

/* Mobile nav */
.nav__toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; align-items: center; }
.nav__toggle span { width: 24px; height: 2px; background: currentColor; transition: transform 0.3s var(--ease), opacity 0.3s; border-radius: 2px; }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; position: relative; z-index: 95; }
  .nav__toggle.open span { background: var(--ink); }
  /* Compact pink click-to-call pill stays in the mobile header */
  .nav__cta .nav__phone {
    width: 44px; height: 44px; justify-content: center; gap: 0;
    border-radius: 100px; background: var(--pink-deep); color: #fff;
    font-size: 0; overflow: hidden;
  }
  .nav__cta .nav__phone svg { width: 20px; height: 20px; color: #fff; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(85vw, 360px);
    background: #fff; color: var(--ink);
    border-left: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 1.5rem; padding: 2rem var(--gutter);
    transform: translateX(100%); transition: transform 0.45s var(--ease); z-index: 90;
    box-shadow: -30px 0 80px -40px rgba(23, 20, 27, 0.35);
  }
  .nav__links.open { display: flex; transform: translateX(0); }
  .nav__link { font-size: 1.35rem; }
  .nav__links .nav__link:hover, .nav__links .nav__link.active { color: var(--pink-deep); }
  .nav__links .btn { margin-top: 1rem; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  padding-top: 8rem; padding-bottom: clamp(3rem, 6vw, 5rem); overflow: hidden;
  color: #fff;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(23,20,27,0.5) 0%, rgba(23,20,27,0.3) 40%, rgba(23,20,27,0.9) 100%),
    linear-gradient(90deg, rgba(23,20,27,0.75) 0%, rgba(23,20,27,0.1) 65%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__eyebrow { margin-bottom: 1.5rem; }
.hero h1 { margin-bottom: 1.5rem; max-width: 17ch; }
.hero__lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: #e6e2ea; max-width: 54ch; margin-bottom: 2.4rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero__scroll {
  position: absolute; right: var(--gutter); bottom: clamp(3rem, 6vw, 5rem); z-index: 2;
  writing-mode: vertical-rl; font-family: var(--f-head); font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-light-dim);
  display: flex; align-items: center; gap: 1rem;
}
.hero__scroll::after { content: ""; width: 2px; height: 60px; background: linear-gradient(var(--pink), transparent); border-radius: 2px; }
@media (max-width: 700px) { .hero__scroll { display: none; } }

/* Trust strip */
.trust { border-bottom: 1px solid var(--line); background: var(--paper); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust__item {
  padding: 2.2rem var(--gutter); text-align: center; border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 0.35rem;
}
.trust__item:last-child { border-right: none; }
.trust__num { font-family: var(--f-display); font-weight: 700; letter-spacing: -0.03em; font-size: clamp(1.9rem, 3.8vw, 2.9rem); color: var(--pink); line-height: 1; }
.trust__label { font-size: 0.82rem; color: var(--text-dim); letter-spacing: 0.04em; }
@media (max-width: 760px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__item:nth-child(2n) { border-right: none; }
  .trust__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* ==========================================================================
   Section header
   ========================================================================== */
.sec-head { max-width: 62ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sec-head--split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: end; max-width: none; }
.sec-head h2 { margin-top: 1.1rem; }
.sec-head p { margin-top: 1.2rem; }
@media (max-width: 820px) { .sec-head--split { grid-template-columns: 1fr; align-items: start; } }

/* ==========================================================================
   Intro / split feature
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); aspect-ratio: 4/3.2; box-shadow: var(--shadow); }
.split__badge {
  position: absolute; bottom: -22px; left: -22px; z-index: 2;
  background: var(--pink-deep); color: #fff; padding: 1.3rem 1.6rem; border-radius: var(--radius);
  box-shadow: 0 18px 40px -14px var(--pink-glow); max-width: 250px;
}
.split__badge .n { display: block; font-family: var(--f-display); font-weight: 700; font-size: 2.4rem; line-height: 1; letter-spacing: -0.02em; }
.split__badge .t { display: block; font-family: var(--f-head); font-weight: 600; font-size: 0.85rem; margin-top: 0.35rem; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__badge { left: 16px; }
}

.checklist { display: grid; gap: 0.9rem; margin-top: 1.8rem; }
.checklist li { display: flex; gap: 0.85rem; align-items: flex-start; font-size: 1rem; }
.checklist svg { width: 22px; height: 22px; flex: none; color: var(--pink); margin-top: 2px; }
.bg-ink .checklist { color: var(--text-light); }

/* ==========================================================================
   Services grid
   ========================================================================== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .svc-grid { grid-template-columns: 1fr; } }

.svc-card {
  position: relative; padding: 2.2rem 2rem; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.svc-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: var(--pink); transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); border-color: var(--pink-tint); box-shadow: var(--shadow); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card__icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--pink-soft); margin-bottom: 1.5rem; color: var(--pink);
}
.svc-card__icon svg { width: 28px; height: 28px; }
.svc-card h3 { font-size: 1.22rem; margin-bottom: 0.7rem; }
.svc-card p { color: var(--text-dim); font-size: 0.95rem; }
.svc-card__link {
  margin-top: 1.3rem; display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--f-head); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.05em;
  color: var(--pink-deep); text-transform: uppercase;
}
.svc-card__link svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.svc-card:hover .svc-card__link svg { transform: translateX(5px); }

/* ==========================================================================
   Detailed service rows (services page)
   ========================================================================== */
.svc-row { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.svc-row + .svc-row { margin-top: clamp(3.5rem, 7vw, 6rem); }
.svc-row:nth-child(even) .svc-row__media { order: 2; }
.svc-row__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.svc-row__index { font-family: var(--f-head); font-weight: 700; font-size: 0.95rem; color: var(--pink-deep); letter-spacing: 0.14em; text-transform: uppercase; }
.svc-row h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 0.8rem 0 1.1rem; }
.svc-row .tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.6rem; }
.tag {
  font-family: var(--f-head); font-weight: 600; font-size: 0.8rem;
  padding: 0.45rem 0.95rem; border: 1px solid var(--line-strong); border-radius: 100px; color: var(--text-dim);
  background: var(--paper);
}
@media (max-width: 820px) {
  .svc-row { grid-template-columns: 1fr; }
  .svc-row:nth-child(even) .svc-row__media { order: 0; }
}

/* ==========================================================================
   Why / stats band (dark charcoal)
   ========================================================================== */
.why { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
@media (max-width: 900px) { .why { grid-template-columns: 1fr; } }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: var(--radius-lg); overflow: hidden; }
.stat { background: var(--ink-2); padding: 2rem 1.8rem; }
.stat__n { font-family: var(--f-display); font-weight: 700; letter-spacing: -0.03em; font-size: clamp(2.2rem, 4.6vw, 3.2rem); color: #fff; line-height: 1; }
.stat__l { color: var(--text-light-dim); font-size: 0.9rem; margin-top: 0.6rem; }

.feature-list { display: grid; gap: 1.4rem; margin-top: 0.5rem; }
.feature {
  display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: start;
  padding-bottom: 1.4rem; border-bottom: 1px solid var(--line);
}
.bg-ink .feature { border-bottom-color: var(--line-dark); }
.feature:last-child { border-bottom: none; }
.feature__ic { width: 46px; height: 46px; border-radius: 12px; background: var(--pink-soft); color: var(--pink); display: grid; place-items: center; flex: none; }
.bg-ink .feature__ic { background: rgba(254, 48, 123, 0.16); }
.feature__ic svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.feature p { color: var(--text-dim); font-size: 0.93rem; }
.bg-ink .feature p { color: var(--text-light-dim); }

/* ==========================================================================
   Featured project
   ========================================================================== */
.project {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 460px;
  display: flex; align-items: flex-end; padding: clamp(2rem, 5vw, 3.5rem);
  color: #fff; box-shadow: var(--shadow);
}
.project img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.project::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23,20,27,0.92) 0%, rgba(23,20,27,0.55) 55%, rgba(23,20,27,0.2) 100%); z-index: 1; }
.project__body { position: relative; z-index: 2; max-width: 560px; }
.project__body .lead { color: var(--text-light-dim); }
.project__tag {
  display: inline-block; font-family: var(--f-head); font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: #fff; background: var(--pink-deep);
  padding: 0.45rem 0.95rem; border-radius: 100px; margin-bottom: 1.2rem;
}
.project h3 { font-size: clamp(1.6rem, 3.4vw, 2.6rem); margin-bottom: 1rem; }

/* ==========================================================================
   Service areas
   ========================================================================== */
.areas { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 820px) { .areas { grid-template-columns: 1fr; } }
.area-pills { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.area-pill {
  font-family: var(--f-head); font-weight: 600; font-size: 0.95rem;
  padding: 0.7rem 1.2rem; border: 1px solid var(--line-strong); border-radius: 100px;
  background: var(--paper); transition: all 0.3s var(--ease); display: inline-flex; align-items: center; gap: 0.5rem;
}
.area-pill svg { width: 14px; height: 14px; color: var(--pink); }
.area-pill:hover { border-color: var(--pink-deep); color: var(--pink-deep); transform: translateY(-2px); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 900px) { .reviews { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }
.review {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem 1.9rem; display: flex; flex-direction: column; gap: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.review__stars { display: flex; gap: 3px; color: var(--pink); }
.review__stars svg { width: 18px; height: 18px; }
.review__text { font-size: 1.02rem; color: #3f3a47; line-height: 1.65; flex: 1; }
.review__who { display: flex; align-items: center; gap: 0.9rem; }
.review__av { width: 42px; height: 42px; border-radius: 50%; background: var(--pink-deep); color: #fff; display: grid; place-items: center; font-family: var(--f-head); font-weight: 700; }
.review__name { font-family: var(--f-head); font-weight: 700; font-size: 0.95rem; }
.review__meta { font-size: 0.8rem; color: var(--text-dim); }

/* ==========================================================================
   CTA band (dark card on light section)
   ========================================================================== */
.cta {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 5rem); display: grid; grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem; align-items: center; color: #fff; box-shadow: var(--shadow);
}
.cta img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cta::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23,20,27,0.95), rgba(23,20,27,0.75) 70%, rgba(23,20,27,0.55)); z-index: 1; }
.cta__body { position: relative; z-index: 2; }
.cta__body .lead { color: var(--text-light-dim); }
.cta__actions { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 0.9rem; }
.cta h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin: 1rem 0; }
@media (max-width: 760px) { .cta { grid-template-columns: 1fr; } }

/* Pink brand moment — home page CTA owns a full pink surface */
.cta--pink { background: linear-gradient(115deg, var(--pink-deep), #a90f4c); }
.cta--pink::after { display: none; }
.cta--pink .eyebrow { color: #fff; }
.cta--pink .lead { color: #ffd9e7; }
.cta--pink .btn--primary { background: #fff; color: var(--ink); box-shadow: 0 14px 34px -14px rgba(23, 20, 27, 0.5); }
.cta--pink .btn--primary:hover { background: var(--paper-2); }
.cta--pink .btn--dark { background: var(--ink); color: #fff; }
.cta--pink .btn--dark:hover { background: var(--ink-2); }
.cta--pink .btn--ghost { border-color: rgba(255, 255, 255, 0.5); color: #fff; }
.cta--pink .btn--ghost:hover { border-color: #fff; color: #fff; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-cards { display: grid; gap: 1rem; margin-top: 2rem; }
.contact-card {
  display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: center;
  padding: 1.4rem 1.6rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.contact-card:hover { border-color: var(--pink-tint); transform: translateY(-2px); }
.contact-card__ic { width: 48px; height: 48px; border-radius: 12px; background: var(--pink-soft); color: var(--pink); display: grid; place-items: center; }
.contact-card__ic svg { width: 24px; height: 24px; }
.contact-card .k { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); font-weight: 600; }
.contact-card .v { font-family: var(--f-head); font-weight: 700; font-size: 1.08rem; margin-top: 2px; word-break: break-word; }

/* Form */
.form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 2.6rem); box-shadow: var(--shadow); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-family: var(--f-head); font-weight: 600; font-size: 0.85rem; margin-bottom: 0.5rem; letter-spacing: 0.02em; }
.field input, .field textarea, .field select {
  width: 100%; padding: 0.95rem 1.1rem; background: var(--paper-2); border: 1.5px solid var(--line);
  border-radius: var(--radius); color: var(--text); transition: border-color 0.25s, background 0.25s;
}
.field input::placeholder, .field textarea::placeholder { color: #6d6878; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--pink-deep); background: #fff; box-shadow: 0 0 0 3px var(--pink-soft); outline: none; }
.field input:focus-visible, .field textarea:focus-visible, .field select:focus-visible { outline: 2px solid var(--pink-deep); outline-offset: 1px; }
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.form__note { font-size: 0.82rem; color: var(--text-dim); margin-top: 1rem; }

/* Map */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); line-height: 0; box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* ==========================================================================
   Page hero (interior pages — dark charcoal with image)
   ========================================================================== */
.page-hero { position: relative; padding-top: clamp(9rem, 16vw, 12rem); padding-bottom: clamp(3.5rem, 7vw, 6rem); overflow: hidden; color: #fff; }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(254, 48, 123, 0.16), transparent 55%),
    linear-gradient(180deg, rgba(23, 20, 27, 0.62), rgba(23, 20, 27, 0.88));
}
.page-hero__inner { position: relative; z-index: 2; }
.page-hero h1 { margin: 1.2rem 0 1rem; }
.page-hero .lead { color: var(--text-light-dim); }
.crumbs { font-family: var(--f-head); font-weight: 600; font-size: 0.85rem; color: var(--text-light-dim); letter-spacing: 0.03em; }
.crumbs a:hover { color: var(--pink); }
.crumbs span { color: var(--pink); }

/* ==========================================================================
   Process steps
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { padding: 2rem 1.7rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); position: relative; box-shadow: var(--shadow-sm); }
.step__n { font-family: var(--f-display); font-weight: 700; font-size: 2.3rem; color: var(--pink); line-height: 1; letter-spacing: -0.02em; }
.step h3 { font-size: 1.15rem; margin: 0.8rem 0 0.5rem; }
.step p { color: var(--text-dim); font-size: 0.92rem; }

/* ==========================================================================
   Values (about)
   ========================================================================== */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 820px) { .values { grid-template-columns: 1fr; } }
.value { padding: 2.2rem 2rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.value__ic { width: 54px; height: 54px; border-radius: 14px; background: var(--pink-soft); color: var(--pink); display: grid; place-items: center; margin-bottom: 1.3rem; }
.value__ic svg { width: 28px; height: 28px; }
.value h3 { font-size: 1.22rem; margin-bottom: 0.6rem; }
.value p { color: var(--text-dim); font-size: 0.95rem; }

/* ==========================================================================
   Footer (dark charcoal)
   ========================================================================== */
.footer { background: var(--ink); color: var(--text-light); border-top: 4px solid var(--pink); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3.5rem; border-bottom: 1px solid var(--line-dark); }
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 520px) { .footer__top { grid-template-columns: 1fr; } }
.footer__about { max-width: 34ch; color: var(--text-light-dim); font-size: 0.95rem; margin-top: 1.3rem; }
.footer__social { display: flex; gap: 0.7rem; margin-top: 1.5rem; }
.footer__social a { width: 42px; height: 42px; border: 1px solid var(--line-dark); border-radius: 12px; display: grid; place-items: center; color: var(--text-light); transition: all 0.3s var(--ease); }
.footer__social a:hover { background: var(--pink); color: #fff; border-color: var(--pink); transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }
.footer h4 { font-family: var(--f-head); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-light-dim); margin-bottom: 1.3rem; }
.footer__links { display: grid; gap: 0.8rem; }
.footer__links a { font-size: 0.95rem; color: #d8d3de; transition: color 0.25s, padding 0.25s; }
.footer__links a:hover { color: var(--pink); padding-left: 5px; }
.footer__contact { display: grid; gap: 0.9rem; }
.footer__contact a, .footer__contact p { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.95rem; color: #d8d3de; }
.footer__contact svg { width: 18px; height: 18px; color: var(--pink); flex: none; margin-top: 2px; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: 1.8rem; font-size: 0.85rem; color: var(--text-light-dim); }
.footer__bottom a:hover { color: var(--pink); }

/* ==========================================================================
   Reveal animation
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.40s; }

/* Skip link (visible on keyboard focus only) */
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 200;
  background: var(--ink); color: #fff;
  font-family: var(--f-head); font-weight: 700; font-size: 0.9rem;
  padding: 0.85rem 1.3rem; border-radius: 0 0 10px 10px;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; }

/* Utilities */
.stack-sm > * + * { margin-top: 0.8rem; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.text-center { text-align: center; }
.center-x { margin-inline: auto; }
.maxw-60 { max-width: 60ch; } .maxw-50 { max-width: 50ch; }
.divider { height: 1px; background: var(--line); border: none; }
