@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;450;500;600;700;750;800&display=swap');

/* Applewood Construction Kent Limited
   Contractor-led redesign: forest green, off-white, practical and corporate. */

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

:root {
  --forest: #123629;
  --forest-2: #0c2a20;
  --forest-3: #1c4a39;
  --sage: #6f806c;
  --sage-soft: #dfe7db;
  --cream: #f6f2e9;
  --cream-2: #eee7da;
  --cream-3: #e7ddcc;
  --white: #ffffff;
  --ink: #1b2520;
  --ink-2: #34423b;
  --muted: #69756f;
  --line: #d9d0bf;
  --line-dark: rgba(255,255,255,.16);
  --brass: #b28a4a;
  --brass-2: #8a682f;
  --shadow-sm: 0 10px 30px rgba(18,54,41,.10);
  --shadow: 0 24px 70px rgba(18,54,41,.15);
  --shadow-lg: 0 40px 110px rgba(18,54,41,.24);
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;
  --max: 1220px;
  --gutter: clamp(20px, 4vw, 48px);
  --nav-h: 88px;
  --ease: cubic-bezier(.22,1,.36,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--forest); color: var(--white); }

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

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--gutter);
  z-index: 9999;
  background: var(--forest);
  color: var(--white);
  padding: 12px 16px;
}
.skip-link:focus { top: 12px; }

/* Header */
.top-strip {
  background: var(--forest-2);
  color: rgba(255,255,255,.78);
  font-size: .78rem;
  letter-spacing: .02em;
}
.top-strip .container {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.top-strip a { color: var(--white); font-weight: 600; }
.top-strip__right { display: flex; gap: 22px; align-items: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--forest);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 28px rgba(12,42,32,.18);
}

.nav-inner {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 260px;
}
.brand img {
  width: 44px;
  height: 54px;
  object-fit: contain;
  background: var(--cream);
  padding: 6px;
  border-radius: 2px;
}
.brand-copy { display: block; }
.brand strong {
  display: block;
  font-size: .97rem;
  line-height: 1.1;
  font-weight: 750;
  letter-spacing: -.02em;
}
.brand small {
  display: block;
  margin-top: 4px;
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.64);
  font-weight: 700;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 3px;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 3px;
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  font-weight: 650;
  letter-spacing: -.01em;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,.09);
  color: var(--white);
}
.nav-links .nav-cta {
  background: var(--cream);
  color: var(--forest);
  margin-left: 10px;
  padding-inline: 18px;
}
.nav-links .nav-cta:hover { background: var(--white); color: var(--forest-2); }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.08);
  border-radius: 3px;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--white);
  transition: transform .35s var(--ease), opacity .25s var(--ease), top .35s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 23px; }
.nav-toggle span:nth-child(3) { top: 31px; }
body.nav-open .nav-toggle span:nth-child(1) { top: 23px; transform: rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: var(--forest-2);
  color: var(--white);
  transform: translateY(-100%);
  transition: transform .55s var(--ease);
  padding: calc(var(--nav-h) + 70px) var(--gutter) 42px;
  overflow-y: auto;
}
body.nav-open .mobile-overlay { transform: translateY(0); }
.mobile-overlay::after {
  content: "";
  position: absolute;
  right: -18vw;
  bottom: -24vw;
  width: 58vw;
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}
.mobile-menu {
  width: min(100%, 760px);
  margin: 0 auto;
  list-style: none;
}
.mobile-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.13);
  padding: 22px 0;
  font-size: clamp(2rem, 10vw, 4.6rem);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 760;
}
.mobile-menu li:last-child a { border-bottom: 1px solid rgba(255,255,255,.13); }
.mobile-menu a::after { content: "↗"; font-size: .32em; opacity: .55; }
.mobile-contact {
  width: min(100%, 760px);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  padding: 26px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
}
.mobile-contact p { color: rgba(255,255,255,.70); max-width: 520px; }

/* Typography */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  color: var(--brass-2);
  margin-bottom: 15px;
}
.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: currentColor;
}
.hero .eyebrow,
.inner-hero .eyebrow,
.section-forest .eyebrow,
.footer .eyebrow { color: #d4b06d; }

h1, h2, h3, h4 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 760;
  letter-spacing: -.04em;
  line-height: 1.06;
  color: inherit;
}
h1 { font-size: clamp(2.85rem, 6.8vw, 6.2rem); max-width: 1050px; }
h2 { font-size: clamp(2rem, 4.2vw, 4.2rem); max-width: 950px; }
h3 { font-size: clamp(1.28rem, 2.1vw, 2rem); letter-spacing: -.03em; }
h4 { font-size: 1rem; letter-spacing: -.015em; font-weight: 750; }
p { color: var(--muted); }
.lead {
  color: var(--ink-2);
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  line-height: 1.72;
  max-width: 760px;
}
.section-forest p,
.section-forest .lead,
.footer p { color: rgba(255,255,255,.72); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 3px;
  border: 1px solid transparent;
  font-size: .92rem;
  font-weight: 750;
  letter-spacing: -.01em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--forest); color: var(--white); }
.btn-primary:hover { background: var(--forest-2); }
.btn-light { background: var(--cream); color: var(--forest); }
.btn-light:hover { background: var(--white); }
.btn-outline { border-color: rgba(255,255,255,.36); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.65); }
.btn-outline-dark { border-color: rgba(18,54,41,.24); color: var(--forest); }
.btn-outline-dark:hover { background: var(--forest); border-color: var(--forest); color: var(--white); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* Layout basics */
.section { position: relative; padding: clamp(70px, 8vw, 118px) 0; }
.section-tight { padding: clamp(50px, 6vw, 80px) 0; }
.section-white { background: var(--white); }
.section-cream { background: var(--cream); }
.section-stone { background: var(--cream-2); }
.section-forest { background: var(--forest); color: var(--white); overflow: hidden; }
.section-forest::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .28;
  pointer-events: none;
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .6fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(32px, 5vw, 58px);
}
.section-head .lead { margin-bottom: 2px; }
.split {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}
.split.reverse { grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr); }
.text-stack > * + * { margin-top: 18px; }
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 900px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
}

/* Heroes */
.hero {
  position: relative;
  min-height: clamp(640px, calc(100vh - 126px), 860px);
  color: var(--white);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--forest-2);
}
.hero-media,
.inner-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img,
.inner-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.02);
}
.hero-media::after,
.inner-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,29,22,.94) 0%, rgba(8,29,22,.78) 38%, rgba(8,29,22,.34) 70%, rgba(8,29,22,.20) 100%),
    linear-gradient(180deg, rgba(8,29,22,.28) 0%, rgba(8,29,22,.68) 100%);
}
.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 124px) 0 clamp(34px, 5vw, 70px);
}
.hero-content { max-width: 960px; }
.hero p {
  max-width: 720px;
  margin-top: 24px;
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  line-height: 1.72;
  color: rgba(255,255,255,.80);
}
.hero-credentials {
  position: relative;
  z-index: 1;
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.18);
  border-left: 1px solid rgba(255,255,255,.18);
  background: rgba(12,42,32,.58);
  backdrop-filter: blur(12px);
}
.hero-credentials div {
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,.18);
  min-height: 112px;
}
.hero-credentials strong {
  display: block;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  line-height: 1;
  letter-spacing: -.045em;
  color: var(--white);
  margin-bottom: 8px;
}
.hero-credentials span { color: rgba(255,255,255,.72); font-size: .9rem; }

.inner-hero {
  position: relative;
  min-height: 470px;
  color: var(--white);
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--forest-2);
}
.inner-hero .container {
  position: relative;
  z-index: 1;
  padding: clamp(72px, 9vw, 128px) 0 clamp(58px, 7vw, 86px);
}
.inner-hero h1 { max-width: 930px; }
.inner-hero p {
  margin-top: 22px;
  max-width: 760px;
  color: rgba(255,255,255,.80);
  font-size: clamp(1.04rem, 1.35vw, 1.24rem);
  line-height: 1.72;
}
.breadcrumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(255,255,255,.72);
  font-size: .85rem;
  font-weight: 650;
}
.breadcrumbs a:hover { color: var(--white); }

/* Cards */
.card {
  background: var(--white);
  border: 1px solid rgba(18,54,41,.10);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.card-pad { padding: clamp(24px, 3vw, 36px); }
.image-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--forest);
  box-shadow: var(--shadow);
}
.image-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.image-card.small img { min-height: 320px; }
.image-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  background: rgba(12,42,32,.86);
  color: var(--white);
  padding: 18px;
  border-left: 4px solid var(--brass);
  backdrop-filter: blur(8px);
}
.image-caption strong { display: block; font-size: 1.1rem; margin-bottom: 4px; }
.image-caption span { color: rgba(255,255,255,.72); font-size: .88rem; }

.stat-card {
  background: var(--white);
  border: 1px solid rgba(18,54,41,.12);
  padding: clamp(24px, 3vw, 34px);
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.stat-card strong {
  display: block;
  color: var(--forest);
  font-size: clamp(2.3rem, 4.5vw, 4.3rem);
  letter-spacing: -.07em;
  line-height: .88;
  font-weight: 780;
}
.stat-card span { color: var(--ink-2); font-weight: 650; margin-top: 22px; display: block; }
.section-forest .stat-card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); }
.section-forest .stat-card strong { color: var(--white); }
.section-forest .stat-card span { color: rgba(255,255,255,.76); }

.service-tile {
  background: var(--white);
  border: 1px solid rgba(18,54,41,.11);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.service-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(18,54,41,.22);
}
.service-tile__media { overflow: hidden; aspect-ratio: 4/3; background: var(--cream-2); }
.service-tile__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.service-tile:hover img { transform: scale(1.045); }
.service-tile__body { padding: 26px; }
.service-tile__body h3 { margin-bottom: 10px; }
.service-tile__body p { margin-bottom: 20px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-weight: 760;
  font-size: .9rem;
}
.text-link::after { content: "→"; transition: transform .25s var(--ease); }
.text-link:hover::after { transform: translateX(4px); }

.feature-list { list-style: none; display: grid; gap: 14px; margin-top: 26px; }
.feature-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  color: var(--ink-2);
  font-weight: 560;
}
.feature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: .55em;
  border-radius: 999px;
  background: var(--forest);
  box-shadow: 0 0 0 5px var(--sage-soft);
}
.section-forest .feature-list li { color: rgba(255,255,255,.78); }
.section-forest .feature-list li::before { background: var(--brass); box-shadow: 0 0 0 5px rgba(212,176,109,.18); }

.info-panel {
  background: var(--forest);
  color: var(--white);
  padding: clamp(28px, 4vw, 44px);
  border-left: 6px solid var(--brass);
  box-shadow: var(--shadow);
}
.info-panel p { color: rgba(255,255,255,.76); }
.fact-list { display: grid; gap: 0; margin-top: 24px; border-top: 1px solid var(--line-dark); }
.fact-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-dark);
}
.fact-list dt { color: rgba(255,255,255,.62); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 780; }
.fact-list dd { color: var(--white); font-weight: 650; }

.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--cream-2);
  color: var(--forest);
  border: 1px solid var(--line);
  font-size: .82rem;
  font-weight: 700;
}
.section-forest .pill { background: rgba(255,255,255,.08); color: var(--white); border-color: rgba(255,255,255,.15); }

/* Home */
.client-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}
.client-strip .container {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 34px;
  align-items: center;
}
.client-strip p { font-weight: 720; color: var(--forest); font-size: .9rem; }
.logo-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: center;
}

@media (max-width: 900px) {
  .logo-row,
  .logo-showcase,
  .accreditation-band__logos {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
  
  .logo-box {
    min-height: 90px !important;
    padding: 12px !important;
  }
  
  .logo-box img {
    max-height: 48px !important;
    max-width: 100% !important;
  }
}
.logo-box {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: 1px solid rgba(18,54,41,.09);
  padding: 16px 20px;
}
.logo-box img { max-height: 52px; max-width: 148px; object-fit: contain; }

.ksp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.ksp-item {
  background: var(--white);
  min-height: 220px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ksp-item span {
  display: block;
  color: var(--brass-2);
  font-weight: 800;
  letter-spacing: .08em;
  font-size: .72rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.ksp-item h3 { font-size: 1.2rem; margin-bottom: 10px; }
.ksp-item p { font-size: .92rem; }

.accreditation-band {
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
}
.accreditation-band__text { padding: 30px; border-right: 1px solid var(--line); }
.accreditation-band__logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.accreditation-band__logos div {
  min-height: 126px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-right: 1px solid var(--line);
}
.accreditation-band__logos div:last-child { border-right: 0; }
.accreditation-band__logos img { max-height: 70px; max-width: 130px; object-fit: contain; }

/* About/process */
.workforce-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

@media (max-width: 900px) {
  .workforce-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  
  .workforce-card {
    min-height: auto !important;
  }
}
.workforce-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px;
}
.workforce-card strong {
  display: block;
  color: var(--forest);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: .9;
  letter-spacing: -.06em;
  margin-bottom: 18px;
}
.workforce-card h3 { font-size: 1.15rem; margin-bottom: 8px; }

.process-list {
  display: grid;
  border-top: 1px solid var(--line);
}
.process-step {
  display: grid;
  grid-template-columns: 94px .85fr 1fr;
  gap: 28px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.process-step .num {
  color: var(--brass-2);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.process-step h3 { font-size: 1.35rem; }
.process-step p { max-width: 620px; }

/* Services */
.service-block {
  display: grid;
  grid-template-columns: minmax(280px, 42%) 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(38px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--line);
}
.service-block:last-child { border-bottom: 0; }
.service-block:nth-child(even) { grid-template-columns: 1fr minmax(280px, 42%); }
.service-block:nth-child(even) .service-media { order: 2; }
.service-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-2);
  box-shadow: var(--shadow-sm);
}
.service-media img { width: 100%; height: 100%; object-fit: cover; }
.service-copy .lead { margin-top: 15px; }
.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.scope-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px;
  min-height: 210px;
}
.scope-card h3 { font-size: 1.22rem; margin-bottom: 12px; }

/* Clients */
.logo-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.logo-showcase .logo-box { 
  min-height: 154px; 
  background: var(--white); 
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 1px solid var(--line);
}
.logo-showcase .logo-box img { 
  max-height: 82px; 
  max-width: 190px; 
  width: auto;
}

@media (max-width: 900px) {
  .logo-showcase { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 14px; 
  }
  .logo-showcase .logo-box { 
    min-height: 120px; 
    padding: 12px;
  }
  .logo-showcase .logo-box img { 
    max-height: 58px; 
    max-width: 140px; 
  }
}

@media (max-width: 640px) {
  .logo-showcase .logo-box { 
    min-height: 110px; 
  }
  .logo-showcase .logo-box img { 
    max-height: 48px; 
    max-width: 120px; 
  }
}
.project-case {
  display: grid;
  grid-template-columns: 48% 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  margin-bottom: 24px;
}
.project-case__media { min-height: 430px; overflow: hidden; }
.project-case__media img { width: 100%; height: 100%; object-fit: cover; }
.project-case__content { padding: clamp(30px, 4vw, 50px); }
.project-case__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.project-case__meta div {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.project-case__meta span {
  display: block;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 4px;
}
.project-case__meta strong { color: var(--forest); }
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 42px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial blockquote {
  font-size: clamp(1.1rem, 1.55vw, 1.35rem);
  line-height: 1.65;
  letter-spacing: -.02em;
  color: var(--ink);
}
.testimonial cite { font-style: normal; color: var(--forest); font-weight: 760; }
.testimonial span { display: block; color: var(--muted); font-size: .92rem; font-weight: 500; margin-top: 3px; }

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}
.contact-card {
  background: var(--forest);
  color: var(--white);
  padding: clamp(28px, 4vw, 42px);
  position: sticky;
  top: calc(var(--nav-h) + 42px);
}
.contact-card p { color: rgba(255,255,255,.72); }
.contact-methods { display: grid; gap: 18px; margin-top: 28px; }
.contact-method {
  border-top: 1px solid var(--line-dark);
  padding-top: 17px;
}
.contact-method span {
  display: block;
  color: rgba(255,255,255,.62);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.contact-method a, .contact-method strong { color: var(--white); font-size: 1.15rem; font-weight: 760; }
.enquiry-panel {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(30px, 4vw, 50px);
}
.enquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 730; font-size: .88rem; color: var(--ink); }
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--cream);
  min-height: 50px;
  padding: 12px 14px;
  border-radius: 3px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.field textarea { min-height: 142px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--forest);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(18,54,41,.10);
}
.coverage-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}
.coverage-card img { width: 100%; max-height: 520px; object-fit: cover; }
.coverage-card__body { padding: 26px; }

/* CTA & footer */
.cta-panel {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  color: var(--white);
  min-height: 430px;
  display: grid;
  align-items: end;
}
.cta-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .34;
}
.cta-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12,42,32,.94), rgba(12,42,32,.66) 60%, rgba(12,42,32,.35));
}
.cta-panel__content {
  position: relative;
  z-index: 1;
  padding: clamp(34px, 6vw, 64px);
  max-width: 760px;
}
.cta-panel__content p { color: rgba(255,255,255,.76); margin-top: 18px; font-size: 1.08rem; }

.footer {
  background: var(--forest-2);
  color: var(--white);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .65fr .85fr .85fr;
  gap: clamp(26px, 5vw, 70px);
  margin-bottom: 42px;
}
.footer-brand { display: flex; gap: 16px; align-items: center; margin-bottom: 22px; }
.footer-brand img { width: 48px; height: 60px; background: var(--cream); padding: 6px; }
.footer h3 { font-size: 1rem; letter-spacing: -.01em; margin-bottom: 18px; }
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer li, .footer a { color: rgba(255,255,255,.68); }
.footer a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.52);
  font-size: .85rem;
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); animation: revealUp .8s var(--ease) forwards; }
.delay-1 { animation-delay: .08s; }
.delay-2 { animation-delay: .16s; }
.delay-3 { animation-delay: .24s; }
@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .top-strip__right span:last-child { display: none; }
  .grid-4, .ksp-grid, .workforce-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-row { grid-template-columns: repeat(3, 1fr); }
  .accreditation-band { grid-template-columns: 1fr; }
  .accreditation-band__text { border-right: 0; border-bottom: 1px solid var(--line); }
  .accreditation-band__logos { grid-template-columns: repeat(3, 1fr); }
  .client-strip .container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --nav-h: 76px; }
  .top-strip { display: none; }
  .brand { min-width: 0; }
  .brand img { width: 38px; height: 48px; }
  .brand strong { font-size: .9rem; }
  .brand small { font-size: .62rem; }
  .hero { min-height: 720px; }
  .hero-media::after,
  .inner-hero-media::after {
    background: linear-gradient(180deg, rgba(8,29,22,.84) 0%, rgba(8,29,22,.74) 58%, rgba(8,29,22,.90) 100%);
  }
  .hero-credentials { grid-template-columns: repeat(2, 1fr); }
  .section-head,
  .split,
  .split.reverse,
  .service-block,
  .service-block:nth-child(even),
  .project-case,
  .contact-layout { grid-template-columns: 1fr; }
  .service-block:nth-child(even) .service-media { order: 0; }
  .grid-2, .grid-3, .scope-grid, .testimonial-grid, .logo-showcase { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 1fr; gap: 10px; }
  .contact-card { position: relative; top: 0; }
  .mobile-contact { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 36px, var(--max)); }
  .section { padding: 62px 0; }
  h1 { font-size: clamp(2.55rem, 14vw, 4.2rem); }
  h2 { font-size: clamp(2rem, 11vw, 3.1rem); }
  .hero-credentials { grid-template-columns: 1fr; }
  .hero-credentials div { min-height: auto; padding: 20px; }
  .logo-row, .accreditation-band__logos, .grid-4, .ksp-grid, .workforce-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .client-strip p { font-size: .82rem; }
  .fact-list div { grid-template-columns: 1fr; gap: 4px; }
  .project-case__meta { grid-template-columns: 1fr; }
  .enquiry-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .btn { width: 100%; }
  .logo-box img { max-height: 42px; max-width: 110px; }
}

/* Refinement: quieter contractor-led tone, less promotional scale, clearer work examples. */
:root {
  --forest: #0f3327;
  --forest-2: #09261d;
  --cream: #f5f0e6;
  --cream-2: #ebe3d5;
  --ink: #18231f;
  --ink-2: #31413a;
}

body {
  letter-spacing: 0;
}

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -.028em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.45rem, 5.25vw, 4.95rem);
  max-width: 980px;
}

h2 {
  font-size: clamp(1.85rem, 3.35vw, 3.25rem);
  max-width: 860px;
}

h3 {
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
  letter-spacing: -.02em;
  font-weight: 690;
}

.lead {
  font-size: clamp(1.02rem, 1.15vw, 1.16rem);
  line-height: 1.68;
}

.hero p,
.inner-hero p {
  font-size: clamp(1.02rem, 1.18vw, 1.16rem);
  line-height: 1.7;
}

.eyebrow {
  font-weight: 760;
  letter-spacing: .13em;
  font-size: .68rem;
}

.btn,
.nav-links a,
.text-link {
  font-weight: 680;
}

.hero {
  min-height: clamp(590px, calc(100vh - 126px), 780px);
}

.inner-hero {
  min-height: 420px;
}

.hero-content {
  max-width: 900px;
}

.stat-card strong {
  font-size: clamp(1.65rem, 3vw, 2.85rem);
  letter-spacing: -.04em;
  font-weight: 700;
  line-height: 1.02;
}

.stat-card span {
  font-weight: 590;
}

/* Fix white text appearing inside the key selling point cards on forest sections. */
.section-forest .ksp-item {
  background: var(--cream);
  color: var(--ink);
}
.section-forest .ksp-item h3 {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.35;
  font-weight: 680;
}
.section-forest .ksp-item p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.58;
}
.section-forest .ksp-item span {
  color: var(--brass-2);
}

.ksp-item {
  min-height: 205px;
  padding: 26px 24px;
}

.image-caption {
  display: none;
}

.project-case__content h2 {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.14;
}

.project-case__content .lead {
  font-size: clamp(1rem, 1.12vw, 1.14rem);
}

.project-case__meta strong {
  font-size: .95rem;
  line-height: 1.35;
  font-weight: 700;
}

.industry-grid {
  align-items: stretch;
}

.industry-card {
  min-height: 220px;
  padding: clamp(24px, 2.5vw, 34px);
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.16);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.industry-card h3 {
  color: var(--white);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.industry-card p {
  color: rgba(255,255,255,.74);
  font-weight: 560;
  line-height: 1.55;
  margin-top: 24px;
}

.workforce-card strong {
  font-size: clamp(1.85rem, 3vw, 2.9rem);
  font-weight: 700;
}

.mobile-menu a {
  font-weight: 700;
  letter-spacing: -.04em;
}

@media (max-width: 1020px) {
  h1 { font-size: clamp(2.35rem, 8vw, 4rem); }
  h2 { font-size: clamp(1.75rem, 5.8vw, 3rem); }
  .ksp-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-card { min-height: 180px; }
}

@media (max-width: 640px) {
  h1 { font-size: clamp(2.1rem, 10vw, 3.1rem); }
  h2 { font-size: clamp(1.65rem, 8vw, 2.55rem); }
  .ksp-grid { grid-template-columns: 1fr; }
  .industry-card h3 { font-size: 1.65rem; }
}

/* Services page: restore four-image work examples per service */
.service-block--gallery,
.service-block--gallery:nth-child(even) {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  align-items: center;
}

.service-block--gallery:nth-child(even) .service-media,
.service-block--gallery:nth-child(even) .service-gallery {
  order: 0;
}

.service-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.service-gallery figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-2);
  box-shadow: var(--shadow-sm);
}

.service-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .65s var(--ease), filter .65s var(--ease);
}

.service-gallery figure:hover img {
  transform: scale(1.035);
  filter: contrast(1.03) saturate(1.02);
}

@media (max-width: 900px) {
  .service-block--gallery,
  .service-block--gallery:nth-child(even) {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .service-gallery {
    gap: 8px;
  }

  .service-gallery figure {
    aspect-ratio: 1 / 0.82;
  }
}
/* FINAL OVERRIDE — calmer contractor hero + mobile menu sizing */

/* Desktop hero typography */
.hero-content,
.inner-hero-content {
  max-width: 740px !important;
}

.hero h1,
.inner-hero h1 {
  font-size: clamp(2.05rem, 3.15vw, 3.45rem) !important;
  font-weight: 600 !important;
  line-height: 1.16 !important;
  letter-spacing: -0.012em !important;
  max-width: 760px !important;
}

.inner-hero h1 {
  font-size: clamp(1.95rem, 2.85vw, 3.15rem) !important;
  max-width: 720px !important;
}

.hero p,
.inner-hero p {
  font-size: clamp(0.98rem, 0.95vw, 1.08rem) !important;
  line-height: 1.65 !important;
  font-weight: 400 !important;
  max-width: 640px !important;
}

.hero .eyebrow,
.inner-hero .eyebrow {
  font-size: 0.64rem !important;
  letter-spacing: 0.13em !important;
  font-weight: 700 !important;
}

/* Make hero feel less overpowering */
.hero {
  min-height: 620px !important;
}

.inner-hero {
  min-height: 460px !important;
}

/* Softer image overlay */
.hero-media::after,
.inner-hero-media::after {
  background:
    linear-gradient(
      90deg,
      rgba(8, 29, 22, 0.64) 0%,
      rgba(8, 29, 22, 0.44) 42%,
      rgba(8, 29, 22, 0.20) 72%,
      rgba(8, 29, 22, 0.10) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 29, 22, 0.08) 0%,
      rgba(8, 29, 22, 0.28) 100%
    ) !important;
}

/* Mobile hero text */
@media (max-width: 640px) {
  .hero {
    min-height: 600px !important;
  }

  .inner-hero {
    min-height: 390px !important;
  }

  .hero .container {
    padding: 56px 0 32px !important;
  }

  .inner-hero .container {
    padding: 54px 0 42px !important;
  }

  .hero-content,
  .inner-hero-content {
    max-width: 100% !important;
  }

  .hero h1,
  .inner-hero h1 {
    font-size: clamp(1.65rem, 6.7vw, 2.15rem) !important;
    line-height: 1.19 !important;
    font-weight: 600 !important;
    letter-spacing: -0.01em !important;
    max-width: 100% !important;
  }

  .hero p,
  .inner-hero p {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    margin-top: 14px !important;
    max-width: 100% !important;
  }

  .hero .eyebrow,
  .inner-hero .eyebrow {
    font-size: 0.58rem !important;
    letter-spacing: 0.12em !important;
    margin-bottom: 16px !important;
  }

  .hero-actions {
    margin-top: 22px !important;
    gap: 10px !important;
  }

  .hero .btn {
    min-height: 46px !important;
    font-size: 0.88rem !important;
  }

  .hero-credentials {
    margin-top: 22px !important;
  }

  .hero-credentials div {
    padding: 15px 17px !important;
  }

  .hero-credentials strong {
    font-size: 1.6rem !important;
    font-weight: 600 !important;
  }

  .hero-credentials span {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
  }

  /* Mobile menu sizing */
  .mobile-menu a {
    font-size: clamp(1.28rem, 5.8vw, 1.7rem) !important;
    line-height: 1.16 !important;
    letter-spacing: -0.018em !important;
    font-weight: 600 !important;
    padding: 15px 0 !important;
  }

  .mobile-overlay {
    padding: calc(var(--nav-h) + 34px) var(--gutter) 30px !important;
  }

  .mobile-contact {
    margin-top: 22px !important;
    padding: 18px !important;
  }

  .mobile-contact p {
    font-size: 0.92rem !important;
    line-height: 1.5 !important;
  }
}

/* Clients page premium testimonial slider */
.testimonial-slider {
  position: relative;
}

.testimonial-slider__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.testimonial-slider__count {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: var(--forest);
  font-size: 0.85rem;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.testimonial-slider__count span:nth-child(2),
.testimonial-slider__count span:nth-child(3) {
  color: var(--muted);
}

.testimonial-slider__controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-slider__button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 700;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}

.testimonial-slider__button:hover,
.testimonial-slider__button:focus-visible {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
  transform: translateY(-1px);
  outline: none;
}

.testimonial-slider__viewport {
  overflow: hidden;
}

.testimonial-slider__track {
  display: flex;
  gap: 22px;
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 calc((100% - 44px) / 3);
  min-height: 395px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.testimonial-slide blockquote {
  font-size: clamp(0.94rem, 1vw, 1.04rem);
  line-height: 1.58;
  letter-spacing: -0.012em;
  color: var(--ink);
}

.testimonial-slide cite {
  font-style: normal;
  color: var(--forest);
  font-weight: 740;
  font-size: 0.92rem;
}

.testimonial-slide cite span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
  margin-top: 3px;
}

.testimonial-slide::before {
  content: "“";
  display: block;
  color: var(--brass-2);
  font-size: 2.6rem;
  line-height: 0.75;
  font-weight: 600;
  margin-bottom: -8px;
}

/* Legacy testimonial grid retained as fallback but no longer used on the clients page */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

@media (max-width: 860px) {
  .testimonial-slider__top {
    align-items: flex-end;
  }

  .testimonial-slide {
    flex-basis: 100%;
    min-height: 390px;
  }
}

@media (max-width: 520px) {
  .testimonial-slider__top {
    margin-bottom: 14px;
  }

  .testimonial-slider__button {
    width: 40px;
    height: 40px;
  }

  .testimonial-slide {
    padding: 24px;
    min-height: 430px;
  }

  .testimonial-slide blockquote {
    font-size: 0.92rem;
    line-height: 1.55;
  }
}
/* Premium floating testimonial for About page hero - desktop only */
.floating-testimonial {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  display: none;
}

.testimonial-float {
  background: rgba(18, 54, 41, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 24px 28px;
  max-width: 320px;
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.testimonial-float .stars {
  color: #d4b06d;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.testimonial-float p {
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.95);
}

.testimonial-float cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  display: block;
}

.testimonial-float cite span {
  display: block;
  font-weight: 400;
  opacity: 0.8;
  font-size: 0.85rem;
  margin-top: 4px;
}

@media (min-width: 1024px) {
  .floating-testimonial {
    display: block;
  }
}

/* Hero capability strip for Services - Premium Elite Style */
.hero-capability-strip {
  position: absolute;
  bottom: 55px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  background: rgba(15, 51, 39, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 176, 109, 0.3);
  border-radius: 50px;
  padding: 16px 40px;
  z-index: 5;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 88%;
  box-shadow: 0 20px 60px rgba(18,54,41,0.4);
}

.hero-capability-strip .pill {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(212, 176, 109, 0.4);
  padding: 10px 26px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  border-radius: 999px;
  transition: all .25s cubic-bezier(0.23,1,0.32,1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hero-capability-strip .pill:hover {
  background: rgba(255,255,255,0.22);
  border-color: #d4b06d;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

@media (min-width: 1024px) {
  .hero-capability-strip {
    display: flex;
  }
}

.clients-strip {
  bottom: 50px;
}

.contact-strip {
  bottom: 45px;
  gap: 10px;
}
.floating-testimonial {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  display: none;
}

.testimonial-float {
  background: rgba(18, 54, 41, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 24px 28px;
  max-width: 320px;
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.testimonial-float .stars {
  color: #d4b06d;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.testimonial-float p {
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.95);
}

.testimonial-float cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  display: block;
}

.testimonial-float cite span {
  display: block;
  font-weight: 400;
  opacity: 0.8;
  font-size: 0.85rem;
  margin-top: 4px;
}

@media (min-width: 1024px) {
  .floating-testimonial {
    display: block;
  }
}

/* Make inner page heroes full-size like the homepage hero */
.inner-hero {
  min-height: clamp(620px, calc(100vh - 126px), 860px) !important;
  display: flex !important;
  align-items: stretch !important;
}

.inner-hero .container {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: clamp(70px, 8vw, 124px) 0 clamp(34px, 5vw, 70px) !important;
}

/* Keep the inner hero text slightly calmer than the homepage */
.inner-hero h1 {
  max-width: 760px !important;
}

.inner-hero p {
  max-width: 640px !important;
}

/* Mobile version */
@media (max-width: 640px) {
  .inner-hero {
    min-height: 600px !important;
  }

  .inner-hero .container {
    padding: 56px 0 32px !important;
    justify-content: center !important;
  }
}

.testimonial-showcase{background:#f7f4ed}
.elite-testimonials{
display:grid;
grid-template-columns:repeat(3,minmax(0,1fr));
gap:24px;
overflow-x:auto;
scroll-snap-type:x mandatory;
padding-bottom:8px;
}
.elite-card{
background:#fff;
border:1px solid #ddd;
border-radius:18px;
padding:28px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
scroll-snap-align:start;
min-width:280px;
}
.elite-card .stars{font-size:1.1rem;margin-bottom:14px}
.elite-card p{margin-bottom:18px}
.elite-card span{display:block;opacity:.7;font-size:.9rem}
@media (max-width: 768px){
 .elite-testimonials{
   display:flex;
   gap:16px;
 }
 .elite-card{
   flex:0 0 85%;
 }
}
