:root {
  --ink: #090c0b;
  --ink-soft: #151917;
  --bronze: #b7784e;
  --bronze-dark: #805036;
  --ivory: #f6f0e7;
  --stone: #d8cec1;
  --warm-white: #fffaf3;
  --muted: #756b61;
  --line: rgba(9, 12, 11, 0.14);
  --line-light: rgba(255, 250, 243, 0.18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --container: min(1180px, calc(100vw - 40px));
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--warm-white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 999;
  padding: 12px 16px;
  background: var(--ivory);
  color: var(--ink);
}

.section {
  padding: 104px 0;
}

.section-kicker,
.eyebrow {
  margin: 0 0 18px;
  color: var(--bronze);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 5.7rem);
  font-weight: 600;
  line-height: 0.95;
  max-width: 900px;
}

.lead {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-accent {
  background: var(--bronze);
  color: #fff;
}

.button-accent:hover {
  background: var(--bronze-dark);
}

.button-ghost {
  border-color: rgba(255, 250, 243, 0.42);
  color: var(--warm-white);
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--bronze-dark);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--warm-white);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header:focus-within {
  background: rgba(9, 12, 11, 0.94);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1440px, calc(100vw - 32px));
  min-height: 82px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand img,
.footer-logo img {
  width: 138px;
  height: auto;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.24));
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.primary-nav a,
.header-phone {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  opacity: 0.9;
}

.primary-nav a:hover,
.header-phone:hover {
  color: var(--stone);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-light);
  border-radius: 4px;
  background: rgba(255, 250, 243, 0.08);
  color: currentColor;
}

.menu-toggle span:not(.visually-hidden) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.mega-panel {
  position: absolute;
  top: 74px;
  left: 50%;
  display: flex;
  gap: 22px;
  padding: 16px 22px;
  border: 1px solid var(--line-light);
  background: rgba(9, 12, 11, 0.96);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-header:has(.has-mega:hover) .mega-panel,
.mega-panel:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  color: var(--warm-white);
  background: var(--ink);
  overflow: hidden;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  opacity: 0.68;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 12, 11, 0.78), rgba(9, 12, 11, 0.26) 55%, rgba(9, 12, 11, 0.7)), linear-gradient(0deg, rgba(9, 12, 11, 0.86), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 178px 0 152px;
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 8vw, 8.4rem);
  font-weight: 600;
  line-height: 0.9;
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 250, 243, 0.88);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-trust {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: rgba(9, 12, 11, 0.48);
  backdrop-filter: blur(12px);
}

.hero-trust span {
  padding: 22px;
  border-right: 1px solid var(--line-light);
  color: rgba(255, 250, 243, 0.76);
  font-size: 0.86rem;
}

.hero-trust span:last-child {
  border-right: 0;
}

.hero-trust strong {
  display: block;
  color: #fff;
  font-family: var(--serif);
  font-size: 2.1rem;
  line-height: 1;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 34px;
  bottom: 132px;
  writing-mode: vertical-rl;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trust-strip {
  background: var(--ink);
  color: rgba(255, 250, 243, 0.82);
  border-top: 1px solid var(--line-light);
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-grid,
.why-grid,
.transformation-grid,
.sustainability-grid,
.estimator-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.intro-image img,
.why-image img,
.heritage-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.intro-copy p:not(.section-kicker) {
  max-width: 640px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 48px;
  align-items: end;
  margin-bottom: 54px;
}

.centre-heading {
  max-width: 820px;
  margin: 0 auto 54px;
  text-align: center;
}

.services-section,
.estimator-section {
  background: var(--ivory);
}

.service-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 460px;
  margin-bottom: 24px;
  background: var(--ink);
  color: var(--warm-white);
}

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

.service-feature-copy {
  align-self: center;
  padding: clamp(32px, 5vw, 64px);
}

.service-feature-copy span,
.project-caption span,
.insight-card span,
.testimonial-card span {
  display: block;
  color: var(--bronze);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-feature-copy h3 {
  margin: 12px 0 16px;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.95;
}

.service-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-panel {
  display: grid;
  grid-template-rows: 210px 1fr;
  background: var(--warm-white);
  border: 1px solid var(--line);
}

.service-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-panel div {
  padding: 24px;
}

.service-panel h3,
.project-caption h3,
.insight-card h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 1.75rem;
  line-height: 1;
}

.service-panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0 22px;
  list-style: none;
}

.service-panel li,
.why-points span,
.sustainability-list span,
.cert-row span,
.cta-reassurance span {
  border: 1px solid var(--line);
  padding: 7px 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.all-services-link {
  display: block;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  text-align: center;
  color: var(--bronze-dark);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-showcase {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 32px;
}

.project-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--ink);
  color: var(--warm-white);
}

.project-card-large {
  grid-row: span 2;
  min-height: 742px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 500ms ease, opacity 300ms ease;
}

.project-card:hover img {
  transform: scale(1.035);
  opacity: 0.68;
}

.project-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 28px;
  background: linear-gradient(0deg, rgba(9, 12, 11, 0.88), transparent);
}

.project-caption p {
  max-width: 520px;
  color: rgba(255, 250, 243, 0.78);
}

.project-caption a {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.process-section {
  background: var(--ink);
  color: var(--warm-white);
}

.process-section .section-title,
.process-section p {
  color: var(--warm-white);
}

.process-timeline {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.process-timeline li {
  position: relative;
  min-height: 260px;
  padding: 28px 20px;
  border-right: 1px solid var(--line-light);
}

.process-timeline li:last-child {
  border-right: 0;
}

.process-timeline span {
  color: var(--bronze);
  font-family: var(--serif);
  font-size: 2.4rem;
}

.process-timeline h3 {
  margin: 36px 0 10px;
  font-family: var(--serif);
  font-size: 1.55rem;
}

.process-timeline p {
  color: rgba(255, 250, 243, 0.72);
  font-size: 0.92rem;
}

.why-image {
  position: relative;
}

.stat-tile {
  position: absolute;
  right: -22px;
  bottom: 34px;
  width: 210px;
  padding: 24px;
  background: var(--ink);
  color: var(--warm-white);
}

.stat-tile strong {
  display: block;
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: 1;
}

.why-points,
.sustainability-list,
.cert-row,
.cta-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.before-after {
  --handle: 50%;
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--ink);
}

.before-after img,
.before-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.before-after img {
  object-fit: cover;
}

.before-layer {
  overflow: hidden;
  border-right: 2px solid var(--warm-white);
}

.before-after::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--handle);
  width: 2px;
  background: #fff;
  pointer-events: none;
}

.before-after input {
  position: absolute;
  inset: auto 24px 24px;
  z-index: 4;
  accent-color: var(--bronze);
}

.label-before,
.label-after {
  position: absolute;
  top: 18px;
  z-index: 3;
  padding: 6px 9px;
  background: rgba(9, 12, 11, 0.7);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.label-before {
  left: 18px;
}

.label-after {
  right: 18px;
}

.heritage-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  background: var(--ink);
  color: var(--warm-white);
}

.heritage-image img {
  height: 100%;
  min-height: 680px;
  opacity: 0.82;
}

.heritage-copy {
  align-self: center;
  max-width: 760px;
  padding: 84px clamp(32px, 8vw, 110px);
}

.heritage-copy p {
  color: rgba(255, 250, 243, 0.8);
}

.sustainability-section {
  background: #17201b;
  color: var(--warm-white);
}

.sustainability-section .lead {
  color: rgba(255, 250, 243, 0.82);
}

.sustainability-list span,
.sustainability-section .cta-reassurance span {
  border-color: var(--line-light);
  color: rgba(255, 250, 243, 0.8);
}

.testimonial-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.testimonial-card {
  padding: clamp(28px, 5vw, 56px);
  border-left: 2px solid var(--bronze);
  background: var(--ivory);
}

.testimonial-card p {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.05;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.insight-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--warm-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.estimator-preview,
.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background: var(--warm-white);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
}

.consent input {
  width: 18px;
  margin-top: 5px;
}

.honeypot {
  display: none;
}

.has-error input,
.has-error select,
.has-error textarea {
  border-color: #9f2f22;
}

.form-status {
  padding: 14px;
  font-weight: 800;
}

.form-status.success {
  background: #e6f2e8;
  color: #163f22;
}

.form-status.error {
  background: #f5e6e2;
  color: #7a241b;
}

.form-status a {
  display: inline-block;
  margin-left: 10px;
  text-decoration: underline;
}

.final-cta {
  padding: 92px 0;
  color: var(--warm-white);
  background: linear-gradient(rgba(9, 12, 11, 0.68), rgba(9, 12, 11, 0.84)), url("https://images.unsplash.com/photo-1600607688960-e095ff83135c?auto=format&fit=crop&w=2200&q=86") center/cover;
}

.final-cta-inner {
  max-width: 840px;
}

.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 6vw, 6.5rem);
  line-height: 0.93;
}

.final-cta p {
  max-width: 620px;
  color: rgba(255, 250, 243, 0.82);
  font-size: 1.16rem;
}

.contact-details a,
.contact-details p {
  display: block;
  margin: 18px 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.contact-details span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 250, 243, 0.78);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 42px;
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--line-light);
}

.footer-intro p {
  max-width: 360px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-column h2 {
  margin: 0 0 12px;
  color: var(--warm-white);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a:hover,
.footer-bottom a:hover {
  color: var(--warm-white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  font-size: 0.82rem;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  padding: 12px 15px;
  border-radius: 999px;
  background: #1f7a4d;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Premium architectural direction */
:root {
  --ink: #0a0d0c;
  --ink-soft: #141a17;
  --forest: #101613;
  --navy: #111827;
  --bronze: #b96f42;
  --bronze-dark: #8c5132;
  --champagne: #d0a06d;
  --ivory: #f5f1ea;
  --stone: #eeeae2;
  --warm-white: #faf8f4;
  --grey: #e6e7e4;
  --muted: #686158;
  --container: min(1380px, calc(100vw - 48px));
}

body {
  background: var(--warm-white);
  color: var(--ink);
}

.section {
  padding: clamp(76px, 8vw, 128px) 0;
}

.section-title {
  font-size: clamp(2.25rem, 4vw, 3.65rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-kicker,
.eyebrow {
  color: var(--champagne);
  letter-spacing: 0.12em;
}

.nav-shell {
  width: min(1440px, calc(100vw - 40px));
  min-height: 92px;
}

.site-header {
  background: linear-gradient(180deg, rgba(10, 13, 12, 0.72), transparent);
}

.site-header.is-scrolled,
.site-header:focus-within {
  background: rgba(10, 13, 12, 0.96);
}

.brand img,
.footer-logo img {
  width: 150px;
}

.primary-nav {
  gap: clamp(14px, 1.55vw, 26px);
}

.primary-nav a,
.header-phone {
  font-size: 0.78rem;
  letter-spacing: 0.055em;
}

.primary-nav a[aria-current="page"],
.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--champagne);
}

.button {
  border-radius: 2px;
  min-height: 50px;
  padding: 13px 22px;
  letter-spacing: 0.045em;
}

.button-accent {
  background: linear-gradient(135deg, var(--bronze), var(--champagne));
  color: #17110c;
}

.button-ghost {
  background: rgba(250, 248, 244, 0.08);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 3px;
}

.hero,
.hero-slider {
  min-height: 88vh;
  height: 880px;
  max-height: 940px;
}

.hero-slider .hero-content {
  min-height: inherit;
  display: grid;
  align-content: center;
  padding-top: 140px;
  padding-bottom: 190px;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.98;
  transform: scale(1.01);
}

.hero::after,
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 13, 12, 0.72) 0%, rgba(10, 13, 12, 0.42) 42%, rgba(10, 13, 12, 0.04) 74%),
    linear-gradient(0deg, rgba(10, 13, 12, 0.62), rgba(10, 13, 12, 0.02) 58%);
}

.hero-slider h1 {
  max-width: 850px;
  font-size: clamp(2.9rem, 6vw, 5.15rem);
  line-height: 0.95;
}

.hero-copy {
  max-width: 620px;
  color: rgba(250, 248, 244, 0.86);
}

.hero-project-label {
  position: absolute;
  right: 0;
  bottom: 250px;
  max-width: 250px;
  padding: 18px 0 0 18px;
  border-top: 1px solid rgba(208, 160, 109, 0.6);
  color: rgba(250, 248, 244, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-controls {
  bottom: 145px;
}

.hero-controls button,
.testimonial-controls button {
  border-color: rgba(250, 248, 244, 0.32);
  background: rgba(10, 13, 12, 0.58);
}

.hero-dots button {
  width: 46px;
  height: 2px;
}

.hero-trust {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1380px, calc(100vw - 48px));
  transform: translateX(-50%);
  grid-template-columns: repeat(4, 1fr);
  background: rgba(10, 13, 12, 0.72);
}

.hero-trust span {
  padding: 26px 28px;
}

.trust-strip {
  background: var(--forest);
}

.trust-strip-inner {
  padding: 16px 0;
}

.intro-section,
.gallery-section,
.accreditations-section {
  background: var(--warm-white);
}

.services-section,
.testimonials-section {
  background: var(--stone);
}

.intro-editorial {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.intro-copy {
  position: relative;
}

.intro-copy::before {
  content: "Integrated Design & Build";
  position: absolute;
  left: -48px;
  top: 8px;
  writing-mode: vertical-rl;
  color: rgba(10, 13, 12, 0.35);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intro-mosaic img:first-child {
  width: 82%;
  height: min(58vw, 620px);
}

.intro-mosaic .intro-detail {
  width: 44%;
  height: min(34vw, 360px);
  border-color: var(--warm-white);
  box-shadow: 0 28px 60px rgba(10, 13, 12, 0.18);
}

.service-explorer {
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  min-height: 660px;
  border: 0;
  background: var(--ink);
  color: var(--warm-white);
}

.service-tabs {
  border-right: 1px solid rgba(250, 248, 244, 0.14);
  background: #0f1412;
}

.service-tabs button {
  display: grid;
  gap: 8px;
  min-height: 78px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(250, 248, 244, 0.12);
  color: rgba(250, 248, 244, 0.75);
}

.service-tabs button span {
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1;
}

.service-tabs button[aria-selected="true"],
.service-tabs button:hover {
  background: var(--warm-white);
  color: var(--ink);
}

.service-tab-panel.is-active {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 0;
  min-height: 660px;
  padding: 0;
}

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

.service-panel-copy {
  align-self: center;
  padding: clamp(32px, 5vw, 72px);
}

.service-panel-copy > p:first-child {
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.service-panel-copy h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: 0.96;
}

.service-panel-copy p {
  color: rgba(250, 248, 244, 0.76);
}

.service-panel-copy ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.service-panel-copy li {
  border-top: 1px solid rgba(250, 248, 244, 0.16);
  padding-top: 10px;
  color: rgba(250, 248, 244, 0.88);
  font-weight: 700;
}

.project-showcase {
  grid-template-columns: 1.25fr 0.75fr;
}

.project-card {
  border-radius: 0;
  box-shadow: none;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 13, 12, 0.82), transparent 58%);
  pointer-events: none;
}

.project-caption {
  z-index: 2;
  background: transparent;
}

.detail-story {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.detail-story-media,
.detail-story-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.detail-story-media img {
  object-fit: cover;
  opacity: 0.78;
}

.detail-story::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 13, 12, 0.82), rgba(10, 13, 12, 0.08)), linear-gradient(0deg, rgba(10, 13, 12, 0.84), transparent);
}

.detail-story-panel {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin-bottom: 76px;
  margin-left: max(24px, calc((100vw - 1380px) / 2));
  padding: 34px;
  border-left: 2px solid var(--bronze);
  background: rgba(10, 13, 12, 0.72);
  color: var(--warm-white);
  backdrop-filter: blur(10px);
}

.detail-story-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.process-section {
  background:
    linear-gradient(rgba(10, 13, 12, 0.9), rgba(10, 13, 12, 0.94)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1800&q=78") center/cover;
}

.process-timeline {
  border: 1px solid rgba(250, 248, 244, 0.16);
}

.process-timeline li {
  min-height: 300px;
  background: rgba(250, 248, 244, 0.025);
}

.why-section {
  background: var(--grey);
}

.why-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.why-points span {
  border: 0;
  border-bottom: 1px solid rgba(10, 13, 12, 0.16);
  padding: 10px 0;
  color: var(--ink);
}

.gallery-masonry {
  column-gap: 20px;
}

.gallery-item {
  margin-bottom: 20px;
}

.gallery-item img {
  min-height: 250px;
}

.ceo-section {
  background: #171d1a;
  color: var(--warm-white);
}

.ceo-copy p {
  color: rgba(250, 248, 244, 0.76);
}

.portrait-placeholder {
  min-height: 560px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border: 1px solid rgba(250, 248, 244, 0.18);
  background:
    linear-gradient(135deg, rgba(208, 160, 109, 0.16), rgba(10, 13, 12, 0.18)),
    #101613;
  color: var(--warm-white);
}

.portrait-placeholder strong {
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 1;
}

.portrait-placeholder small {
  color: rgba(250, 248, 244, 0.62);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.heritage-timeline-section {
  background: var(--warm-white);
}

.timeline-list {
  border-left: 1px solid rgba(10, 13, 12, 0.16);
}

.timeline-list p {
  position: relative;
  margin: 0;
  padding: 0 0 24px 28px;
}

.timeline-list p::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 8px;
  width: 9px;
  height: 9px;
  background: var(--bronze);
}

.sustainability-section {
  background: #101a16;
}

.sustainability-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.78fr) minmax(0, 0.9fr);
  gap: 42px;
}

.sustainability-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.sustainability-list {
  align-content: center;
}

.sustainability-list span {
  width: 100%;
  border-color: rgba(250, 248, 244, 0.18);
}

.testimonial-card {
  border-left: 0;
  border-top: 2px solid var(--bronze);
  background: var(--warm-white);
}

.insights-section {
  background: var(--warm-white);
}

.insight-grid {
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
}

.insight-card:first-child {
  min-height: 360px;
  background: var(--ink);
  color: var(--warm-white);
}

.insight-card:first-child p {
  color: rgba(250, 248, 244, 0.72);
}

.accreditation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}

.accreditation-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
}

.accreditation-list span {
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.accreditation-list span:nth-child(2n) {
  border-right: 0;
}

.accreditation-list span:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.estimator-section {
  background:
    linear-gradient(90deg, rgba(10, 13, 12, 0.92), rgba(10, 13, 12, 0.72)),
    url("https://images.unsplash.com/photo-1600566753051-f0b89df2dd90?auto=format&fit=crop&w=1800&q=82") center/cover;
  color: var(--warm-white);
}

.estimator-section p {
  color: rgba(250, 248, 244, 0.76);
}

.estimator-preview,
.contact-form {
  border: 0;
  box-shadow: 0 28px 80px rgba(10, 13, 12, 0.16);
}

.contact-section {
  background: var(--stone);
}

.final-cta {
  padding: clamp(90px, 11vw, 150px) 0;
}

.site-footer {
  border-top: 2px solid var(--bronze);
}

.footer-main {
  grid-template-columns: 1.25fr 0.9fr 0.85fr 0.85fr;
}

/* Homepage refinement pass */
:root {
  --container: min(1320px, calc(100vw - 56px));
  --section-pad: clamp(82px, 8vw, 122px);
  --section-pad-tight: clamp(64px, 7vw, 96px);
  --gap-xs: 12px;
  --gap-sm: 20px;
  --gap-md: 32px;
  --gap-lg: 48px;
  --gap-xl: 64px;
  --surface: #fffaf4;
  --surface-muted: #f1ece4;
  --shadow-soft: 0 26px 70px rgba(10, 13, 12, 0.12);
}

.section {
  padding: var(--section-pad) 0;
}

.container,
.hero-trust,
.hero-controls {
  width: var(--container);
}

.section-heading {
  margin-bottom: clamp(38px, 5vw, 60px);
}

.split-heading {
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.42fr);
  gap: var(--gap-xl);
  align-items: end;
}

.split-heading > p,
.split-heading > .text-link {
  justify-self: end;
  max-width: 430px;
}

.section-title {
  max-width: 820px;
  font-size: clamp(2rem, 3.5vw, 3.45rem);
  line-height: 1.03;
}

.lead {
  max-width: 680px;
  line-height: 1.72;
}

.site-header {
  border-bottom: 1px solid transparent;
}

.nav-shell {
  width: min(1440px, calc(100vw - 48px));
  min-height: 88px;
  gap: 24px;
}

.header-actions .button {
  min-height: 44px;
  padding-inline: 18px;
}

.hero,
.hero-slider {
  min-height: 820px;
  height: min(90vh, 900px);
}

.hero-slider .hero-content {
  padding-top: 150px;
  padding-bottom: 190px;
  align-content: end;
}

.hero-slider::after {
  display: none;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.hero-slide:not(.is-active) .hero-content {
  visibility: hidden;
}

.hero-slider h1 {
  max-width: 780px;
  font-size: clamp(2.75rem, 5.6vw, 4.75rem);
  line-height: 0.98;
}

.hero-copy {
  max-width: 590px;
  margin-top: 24px;
  line-height: 1.7;
}

.hero-actions {
  gap: 12px;
  margin-top: 30px;
}

.hero-project-label {
  right: 28px;
  bottom: 260px;
}

.hero-controls {
  bottom: 128px;
}

.hero-controls button {
  min-width: 48px;
  border-radius: 999px;
}

.hero-dots {
  align-items: center;
}

.hero-trust {
  border: 1px solid rgba(250, 248, 244, 0.16);
  border-bottom: 0;
}

.hero-trust span {
  min-height: 104px;
  display: grid;
  align-content: center;
  padding: 24px 26px;
}

.trust-strip-inner {
  justify-content: center;
  gap: 16px 28px;
  text-align: center;
}

.intro-editorial,
.why-grid,
.transformation-grid,
.estimator-grid,
.contact-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: var(--gap-xl);
}

.intro-copy::before {
  left: -34px;
}

.intro-copy p:not(.section-kicker) {
  max-width: 620px;
}

.intro-mosaic {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.46fr);
  gap: var(--gap-sm);
  align-items: end;
}

.intro-mosaic img:first-child,
.intro-mosaic .intro-detail {
  position: static;
  width: 100%;
  border: 0;
  box-shadow: none;
}

.intro-mosaic img:first-child {
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.intro-mosaic .intro-detail {
  height: auto;
  aspect-ratio: 4 / 5.35;
  object-fit: cover;
}

.service-explorer {
  min-height: 0;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  border: 1px solid rgba(10, 13, 12, 0.12);
  box-shadow: var(--shadow-soft);
}

.service-tabs button {
  min-height: 74px;
  padding: 19px 22px;
  transition: background 180ms ease, color 180ms ease;
}

.service-tab-panel.is-active {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  min-height: 600px;
}

.service-panel-image {
  min-height: 100%;
}

.service-panel-image img {
  aspect-ratio: 5 / 4;
  min-height: 100%;
}

.service-panel-copy {
  padding: clamp(34px, 4.8vw, 64px);
}

.service-panel-copy h3 {
  max-width: 520px;
  font-size: clamp(2rem, 3.3vw, 3.4rem);
}

.all-services-link {
  margin-top: 24px;
  background: var(--surface);
  transition: background 180ms ease, border-color 180ms ease;
}

.all-services-link:hover {
  border-color: rgba(185, 111, 66, 0.5);
  background: #fff;
}

.project-showcase {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  grid-auto-rows: 340px;
  gap: var(--gap-sm);
}

.project-card,
.project-card-large {
  min-height: 0;
  height: 100%;
}

.project-card-large {
  grid-row: span 2;
}

.project-card img {
  object-position: center;
}

.project-caption {
  padding: clamp(22px, 3vw, 34px);
}

.project-caption h3,
.insight-card h3,
.service-panel h3 {
  line-height: 1.05;
}

.detail-story {
  min-height: clamp(520px, 58vw, 680px);
}

.detail-story-media img {
  object-position: center 58%;
}

.detail-story-panel {
  width: min(560px, calc(100vw - 56px));
  margin-bottom: clamp(48px, 7vw, 84px);
  margin-left: max(28px, calc((100vw - 1320px) / 2));
  padding: clamp(28px, 4vw, 44px);
}

.transformation-grid {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.18fr);
}

.before-after {
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-soft);
}

.process-section {
  padding: var(--section-pad-tight) 0;
}

.process-timeline {
  grid-template-columns: repeat(3, 1fr);
}

.process-timeline li,
.process-timeline li:nth-child(3) {
  min-height: 245px;
  border-bottom: 1px solid var(--line-light);
}

.process-timeline li:nth-child(3n) {
  border-right: 0;
}

.process-timeline li:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.process-timeline h3 {
  margin-top: 24px;
  line-height: 1.06;
}

.why-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  align-items: center;
}

.why-image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.stat-tile {
  right: 24px;
  bottom: 24px;
  width: 220px;
  border-left: 2px solid var(--bronze);
}

.why-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  max-width: 720px;
}

.gallery-masonry {
  columns: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-sm);
}

.gallery-item {
  margin: 0;
  overflow: hidden;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-column: span 2;
}

.gallery-item img {
  min-height: 0;
  max-height: none;
  height: 100%;
  aspect-ratio: 4 / 3;
}

.gallery-item:nth-child(1) img,
.gallery-item:nth-child(6) img {
  aspect-ratio: 8 / 5;
}

.ceo-grid {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: var(--gap-xl);
  align-items: center;
}

.ceo-section {
  padding: var(--section-pad-tight) 0;
}

.ceo-image {
  align-self: stretch;
}

.portrait-placeholder {
  min-height: 0;
  height: 100%;
  aspect-ratio: 4 / 5;
  padding: 36px;
}

.ceo-copy {
  max-width: 760px;
}

.ceo-copy blockquote {
  max-width: 760px;
  margin: 26px 0;
  font-size: clamp(1.65rem, 2.8vw, 2.8rem);
}

.heritage-timeline-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: var(--gap-xl);
  align-items: center;
}

.heritage-timeline-grid > div:first-child img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.timeline-list {
  margin: 28px 0;
}

.sustainability-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.76fr) minmax(0, 0.88fr);
  gap: var(--gap-lg);
  align-items: center;
}

.sustainability-list {
  display: grid;
  gap: 10px;
  margin-top: 0;
}

.sustainability-list span {
  padding: 14px 16px;
}

.testimonial-layout {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: var(--gap-xl);
}

.testimonial-card {
  min-height: 330px;
  display: grid;
  align-content: center;
  box-shadow: 0 18px 56px rgba(10, 13, 12, 0.08);
}

.insight-grid {
  align-items: stretch;
  gap: var(--gap-sm);
}

.insight-card {
  min-height: 320px;
  padding: clamp(24px, 3vw, 34px);
}

.accreditations-section {
  padding: var(--section-pad-tight) 0;
}

.estimator-grid,
.contact-grid {
  align-items: start;
}

.estimator-preview,
.contact-form {
  gap: 18px;
  padding: clamp(28px, 4vw, 46px);
  background: rgba(255, 250, 244, 0.98);
}

input,
select,
textarea {
  min-height: 50px;
  border-color: rgba(10, 13, 12, 0.16);
  background: #fffdf8;
}

textarea {
  min-height: 150px;
}

.contact-details {
  max-width: 560px;
}

.contact-details a,
.contact-details p {
  margin: 0;
  padding: 19px 0;
}

.contact-details .lead {
  margin-bottom: 26px;
}

.final-cta {
  min-height: 520px;
  display: grid;
  align-items: center;
  padding: clamp(88px, 10vw, 136px) 0;
  background-position: center 58%;
}

.final-cta-inner {
  max-width: 780px;
}

.final-cta h2 {
  font-size: clamp(2.3rem, 5vw, 4.9rem);
  line-height: 1;
}

.cta-reassurance span {
  border-color: rgba(250, 248, 244, 0.22);
  color: rgba(250, 248, 244, 0.82);
}

.footer-main {
  grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(170px, 0.85fr));
  gap: clamp(28px, 4vw, 56px);
  padding: 70px 0 50px;
}

.footer-column a,
.footer-column p {
  margin: 0;
  line-height: 1.55;
}

/* Luxury section redesign pass */
.button::after,
.text-link::after {
  content: "→";
  margin-left: 10px;
  transition: transform 180ms ease;
}

.button:hover::after,
.text-link:hover::after,
.project-card:hover i,
.insight-card:hover i {
  transform: translateX(4px);
}

.service-explorer-premium {
  display: grid;
  grid-template-columns: minmax(320px, 0.38fr) minmax(0, 0.62fr);
  min-height: 680px;
  overflow: hidden;
  background: #0b100e;
  box-shadow: 0 30px 80px rgba(11, 16, 14, 0.16);
}

.service-explorer-premium .service-tabs {
  display: grid;
  border: 0;
  background: #101713;
}

.service-explorer-premium .service-tabs button {
  position: relative;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "num title arrow" ". meta arrow";
  gap: 7px 16px;
  min-height: 84px;
  padding: 20px 24px;
  border: 0;
  border-bottom: 1px solid rgba(246, 242, 234, 0.12);
  color: rgba(244, 242, 237, 0.78);
}

.service-explorer-premium .service-tabs button::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: transparent;
}

.service-explorer-premium .service-tabs span {
  grid-area: num;
  color: #c47c4d;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.service-explorer-premium .service-tabs strong {
  grid-area: title;
  color: inherit;
  font-size: 0.95rem;
  line-height: 1.2;
}

.service-explorer-premium .service-tabs em {
  grid-area: meta;
  color: rgba(244, 242, 237, 0.5);
  font-size: 0.74rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-explorer-premium .service-tabs i {
  grid-area: arrow;
  align-self: center;
  color: #c47c4d;
  font-style: normal;
}

.service-explorer-premium .service-tabs button[aria-selected="true"],
.service-explorer-premium .service-tabs button:hover,
.service-explorer-premium .service-tabs button:focus-visible {
  background: #f6f2ea;
  color: #151917;
}

.service-explorer-premium .service-tabs button[aria-selected="true"]::before {
  background: #b96f43;
}

.service-explorer-premium .service-tab-panel {
  display: none;
}

.service-explorer-premium .service-tab-panel.is-active {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 680px;
}

.service-explorer-premium .service-panel-image,
.service-explorer-premium .service-panel-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-explorer-premium .service-panel-image img {
  object-fit: cover;
  opacity: 0.82;
  transform: scale(1.01);
  animation: serviceFade 280ms ease;
}

.service-explorer-premium .service-tab-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(11, 16, 14, 0.88), rgba(11, 16, 14, 0.08) 58%),
    linear-gradient(90deg, rgba(11, 16, 14, 0.35), transparent 56%);
}

.service-explorer-premium .service-panel-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  max-width: 720px;
  padding: clamp(34px, 5vw, 72px);
  color: #f4f2ed;
}

.service-explorer-premium .service-panel-copy > p:first-child {
  color: #c47c4d;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-explorer-premium .service-panel-copy h3 {
  font-size: clamp(2.2rem, 4vw, 4.25rem);
}

.service-explorer-premium .service-panel-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-explorer-premium .service-panel-copy li {
  border: 1px solid rgba(244, 242, 237, 0.2);
  padding: 9px 12px;
  background: rgba(11, 16, 14, 0.34);
}

.service-accordion {
  display: none;
}

@keyframes serviceFade {
  from { opacity: 0.4; transform: scale(1.025); }
  to { opacity: 0.82; transform: scale(1.01); }
}

.project-showcase {
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 300px;
}

.project-card {
  grid-column: span 5;
}

.project-card-featured {
  grid-column: span 7;
  grid-row: span 2;
}

.project-card-wide {
  grid-column: span 7;
}

.project-card-link {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}

.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.project-caption strong,
.insight-card strong {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ceo-section {
  background:
    linear-gradient(90deg, rgba(185, 111, 67, 0.08), transparent 42%),
    #eee9df;
  color: #151917;
}

.ceo-image figure {
  position: relative;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(185, 111, 67, 0.32);
  background: #fbf9f5;
}

.ceo-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.ceo-image figcaption {
  padding-top: 12px;
  color: #565d58;
  font-size: 0.82rem;
}

.ceo-copy {
  position: relative;
  padding-left: clamp(0px, 3vw, 36px);
  border-left: 1px solid rgba(185, 111, 67, 0.32);
}

.ceo-copy blockquote {
  position: relative;
}

.ceo-copy blockquote::before {
  content: "“";
  position: absolute;
  left: -0.12em;
  top: -0.42em;
  color: rgba(185, 111, 67, 0.24);
  font-family: var(--serif);
  font-size: 7rem;
  line-height: 1;
}

.sustainability-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(36px, 5vw, 70px);
}

.sustainability-copy {
  align-self: center;
}

.sustainability-image {
  position: relative;
  margin: 0;
}

.sustainability-image img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.sustainability-image figcaption {
  margin-top: 10px;
  color: rgba(244, 242, 237, 0.66);
  font-size: 0.82rem;
}

.sustainability-principle {
  position: absolute;
  right: 24px;
  bottom: 42px;
  width: min(300px, calc(100% - 48px));
  padding: 20px;
  border-left: 2px solid #c47c4d;
  background: rgba(11, 16, 14, 0.78);
  color: #f4f2ed;
  backdrop-filter: blur(10px);
}

.sustainability-principle strong,
.sustainability-principle span {
  display: block;
}

.sustainability-principle span {
  margin-top: 8px;
  color: rgba(244, 242, 237, 0.72);
  font-size: 0.86rem;
}

.sustainability-commitments {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 8px;
  background: rgba(244, 242, 237, 0.16);
}

.sustainability-commitments article {
  min-height: 190px;
  padding: 24px;
  background: #101713;
}

.sustainability-commitments span {
  color: #c47c4d;
  font-family: var(--serif);
  font-size: 1.55rem;
}

.sustainability-commitments h3 {
  margin: 26px 0 10px;
  color: #f4f2ed;
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.08;
}

.sustainability-commitments p {
  color: rgba(244, 242, 237, 0.72);
  font-size: 0.92rem;
}

.testimonial-layout {
  align-items: start;
}

.testimonial-card {
  display: none;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
  gap: 0;
  min-height: 430px;
  padding: 0;
  border-top: 0;
  background: #fbf9f5;
}

.testimonial-card.is-active {
  display: grid;
}

.testimonial-card figure {
  position: relative;
  margin: 0;
  min-height: 100%;
}

.testimonial-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.testimonial-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 10px;
  background: rgba(11, 16, 14, 0.76);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-copy {
  display: grid;
  align-content: center;
  padding: clamp(30px, 5vw, 58px);
}

.testimonial-copy p {
  font-size: clamp(1.75rem, 3vw, 3.15rem);
}

.testimonial-copy footer {
  display: grid;
  gap: 4px;
  color: #565d58;
}

.testimonial-controls {
  align-items: center;
}

.testimonial-count {
  color: #565d58;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.editorial-insights {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  grid-auto-flow: dense;
}

.insight-card,
.insight-card:first-child {
  min-height: 0;
  padding: 0;
  background: #fbf9f5;
  color: #151917;
}

.insight-card a {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  height: 100%;
  color: inherit;
}

.insight-card-featured {
  grid-row: span 3;
}

.insight-card-featured a {
  grid-template-columns: 1fr;
}

.insight-card img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  transition: transform 300ms ease;
}

.insight-card-featured img {
  aspect-ratio: 16 / 10;
}

.insight-card:hover img {
  transform: scale(1.025);
}

.insight-card div {
  display: grid;
  align-content: center;
  padding: 24px;
}

.insight-card h3 {
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
}

.insight-card strong {
  color: #a9633e;
}

.accreditation-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(11, 16, 14, 0.14);
  background: #fbf9f5;
}

.accreditation-list article {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid rgba(11, 16, 14, 0.14);
}

.accreditation-list article:last-child {
  border-right: 0;
}

.accreditation-list strong {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(185, 111, 67, 0.42);
  color: #a9633e;
  font-family: var(--serif);
  font-size: 1.4rem;
}

.accreditation-list h3 {
  margin: 28px 0 10px;
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.08;
}

.accreditation-list p {
  color: #565d58;
}

.accreditation-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
  background: #0b100e;
  color: rgba(244, 242, 237, 0.78);
}

.accreditation-stats span {
  min-height: 96px;
  padding: 20px;
  border-right: 1px solid rgba(244, 242, 237, 0.14);
}

.accreditation-stats span:last-child {
  border-right: 0;
}

.accreditation-stats strong {
  display: block;
  color: #f4f2ed;
  font-family: var(--serif);
  font-size: 1.45rem;
}

/* Luxury homepage system pass */
:root {
  --ink: #0b100e;
  --ink-soft: #151a18;
  --forest: #111714;
  --charcoal: #151a18;
  --surface: #f9f7f2;
  --surface-muted: #eee9e0;
  --ivory: #f6f2ea;
  --bronze: #b96f43;
  --bronze-dark: #a9653f;
  --champagne: #c17a4b;
  --muted: #616862;
  --line: rgba(32, 37, 33, 0.14);
  --line-light: rgba(249, 247, 242, 0.18);
  --container: min(1360px, calc(100vw - clamp(44px, 10vw, 144px)));
  --section-pad: clamp(88px, 8vw, 128px);
}

body {
  background: var(--surface);
  color: #202521;
  font-size: 17px;
}

.section {
  padding: var(--section-pad) 0;
}

.section-title {
  font-size: clamp(2.35rem, 4vw, 3.625rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.lead,
.split-heading p,
.intro-copy p,
.contact-details a,
.contact-details p {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.72;
}

.section-kicker,
.eyebrow {
  color: var(--bronze);
  font-size: 0.82rem;
  letter-spacing: 0.13em;
}

.button {
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 3px;
  font-size: 0.82rem;
}

.button-accent {
  background: var(--bronze);
  color: #fff;
}

.button-accent:hover {
  background: var(--bronze-dark);
}

.button-ghost {
  border-color: rgba(249, 247, 242, 0.52);
  background: rgba(11, 16, 14, 0.18);
  color: var(--surface);
}

.text-link {
  color: var(--bronze-dark);
  font-size: 0.86rem;
}

.text-link::after {
  content: " ->";
  padding-left: 6px;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.site-header {
  background: rgba(11, 16, 14, 0.62);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled,
.site-header:focus-within {
  background: rgba(11, 16, 14, 0.96);
}

.nav-shell {
  min-height: 96px;
  width: min(1480px, calc(100vw - 56px));
}

.brand img,
.footer-logo img {
  width: 166px;
}

.primary-nav {
  gap: clamp(18px, 1.55vw, 30px);
}

.primary-nav a {
  position: relative;
  padding: 38px 0;
  font-size: 0.84rem;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  height: 1px;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.hero,
.hero-slider {
  min-height: 86vh;
  height: min(92vh, 940px);
}

.hero-slider .hero-content {
  align-content: center;
  padding-top: 132px;
  padding-bottom: 164px;
}

.hero-slider h1 {
  max-width: 920px;
  font-size: clamp(3rem, 6vw, 5.125rem);
  line-height: 0.98;
}

.hero-copy {
  max-width: 660px;
  color: rgba(249, 247, 242, 0.9);
  font-size: clamp(1.08rem, 1.35vw, 1.25rem);
}

.hero-slide::after {
  background:
    linear-gradient(90deg, rgba(11, 16, 14, 0.78) 0%, rgba(11, 16, 14, 0.48) 42%, rgba(11, 16, 14, 0.08) 76%),
    linear-gradient(0deg, rgba(11, 16, 14, 0.62), transparent 54%);
}

.hero-controls {
  bottom: 118px;
}

.hero-progress {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 108px;
  width: min(1360px, calc(100vw - 56px));
  height: 1px;
  transform: translateX(-50%);
  background: rgba(249, 247, 242, 0.22);
}

.hero-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--bronze);
  animation: heroProgress 5.6s linear infinite;
}

@keyframes heroProgress {
  from { width: 0; }
  to { width: 100%; }
}

.hero-trust {
  width: min(1360px, calc(100vw - 56px));
  background: rgba(11, 16, 14, 0.78);
}

.hero-trust span {
  min-height: 108px;
  font-size: 0.95rem;
}

.hero-trust strong {
  font-size: 2.4rem;
}

.trust-strip {
  display: none;
}

.intro-section,
.projects-section,
.gallery-section,
.insights-section,
.accreditations-section {
  background: var(--surface);
}

.services-section,
.why-section,
.contact-section {
  background: var(--surface-muted);
}

.intro-editorial {
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(48px, 6vw, 88px);
}

.verified-points,
.estimate-benefits,
.mini-accreditations {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.verified-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.verified-points span,
.estimate-benefits span,
.mini-accreditations span {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: #202521;
  font-weight: 800;
}

.intro-mosaic {
  grid-template-columns: minmax(0, 7fr) minmax(190px, 3fr);
  align-items: end;
}

.intro-mosaic img:first-child,
.intro-mosaic .intro-detail {
  aspect-ratio: 4 / 5;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.image-caption {
  grid-column: 1 / -1;
  max-width: 420px;
  margin: 0 0 0 auto;
  color: var(--muted);
  font-size: 0.88rem;
}

.service-explorer-premium {
  display: grid;
  grid-template-columns: minmax(320px, 5fr) minmax(0, 7fr);
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
}

.service-explorer-premium .service-tabs {
  display: grid;
  border: 0;
  background: transparent;
}

.service-explorer-premium .service-tabs button {
  position: relative;
  min-height: 76px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.service-explorer-premium .service-tabs button::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: var(--bronze);
  opacity: 0;
}

.service-explorer-premium .service-tabs button[aria-selected="true"]::before,
.service-explorer-premium .service-tabs button:hover::before {
  opacity: 1;
}

.service-explorer-premium .service-tabs button[aria-selected="true"],
.service-explorer-premium .service-tabs button:hover {
  background: transparent;
  color: var(--ink);
}

.service-tabs button strong {
  font-size: clamp(1rem, 1.2vw, 1.18rem);
}

.service-tabs button em {
  grid-column: 2 / -1;
  color: var(--muted);
  font-size: 0.88rem;
}

.service-tabs button i {
  color: var(--bronze);
  font-style: normal;
  transition: transform 180ms ease;
}

.service-tabs button:hover i {
  transform: translateX(5px);
}

.service-tab-panel.is-active {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.service-panel-image,
.service-panel-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-panel-image img {
  object-fit: cover;
  opacity: 0.9;
  transition: opacity 260ms ease, transform 520ms ease;
}

.service-tab-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 16, 14, 0.9), rgba(11, 16, 14, 0.12) 62%);
}

.service-panel-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
  align-self: end;
  padding: clamp(34px, 5vw, 66px);
  color: var(--surface);
}

.service-panel-copy h3 {
  font-size: clamp(2.25rem, 4vw, 4rem);
}

.service-panel-copy p,
.service-panel-copy li {
  color: rgba(249, 247, 242, 0.86);
}

.project-showcase {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 270px;
  gap: 18px;
}

.project-card {
  min-height: 0;
  grid-column: span 4;
  grid-row: span 1;
  background: #d9d2c7;
}

.project-card-featured {
  grid-column: span 8;
  grid-row: span 2;
}

.project-card-wide {
  grid-column: span 5;
}

.project-card:nth-child(5) {
  grid-column: span 7;
}

.project-card img {
  opacity: 0.92;
}

.project-card:hover img {
  opacity: 0.98;
  transform: scale(1.045);
}

.project-caption {
  padding: clamp(22px, 3vw, 36px);
  background: linear-gradient(0deg, rgba(11, 16, 14, 0.9), rgba(11, 16, 14, 0.04) 100%);
}

.project-caption h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
}

.project-caption strong i {
  display: inline-block;
  transition: transform 180ms ease;
}

.project-card:hover .project-caption strong i {
  transform: translateX(5px);
}

.detail-story {
  min-height: clamp(420px, 45vw, 520px);
}

.detail-story-media img {
  opacity: 0.9;
}

.detail-story::after {
  background: linear-gradient(90deg, rgba(11, 16, 14, 0.74), rgba(11, 16, 14, 0.04) 70%);
}

.detail-story-panel {
  margin-bottom: clamp(44px, 6vw, 70px);
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.detail-story-panel p {
  font-size: 1.08rem;
}

.detail-story-panel small {
  display: block;
  margin-top: 18px;
  color: rgba(249, 247, 242, 0.72);
}

.transformation-grid {
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
}

.project-meta {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.project-meta div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.project-meta dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-meta dd {
  margin: 0;
  font-weight: 700;
}

.before-after {
  border: 10px solid #fff;
  box-shadow: 0 28px 70px rgba(11, 16, 14, 0.14);
}

.process-section {
  background: var(--forest);
}

.process-timeline {
  position: relative;
  border: 0;
  gap: 0;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 48px;
  height: 1px;
  background: rgba(249, 247, 242, 0.18);
}

.process-timeline li {
  min-height: 220px;
  padding: 20px 24px 0 0;
  border: 0;
}

.process-timeline span {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(193, 122, 75, 0.52);
  background: var(--forest);
  color: var(--champagne);
  font-size: 1.55rem;
}

.process-timeline h3 {
  margin: 28px 0 10px;
  font-size: 1.55rem;
}

.process-timeline p {
  max-width: 230px;
  font-size: 0.98rem;
}

.why-grid {
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
}

.why-image img {
  aspect-ratio: 5 / 6;
  width: 100%;
  object-fit: cover;
}

.stat-tile {
  right: 24px;
  bottom: -28px;
  width: min(260px, 78%);
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 22px 50px rgba(11, 16, 14, 0.16);
}

.why-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
}

.why-points span {
  position: relative;
  padding: 12px 0 12px 24px;
}

.why-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 10px;
  height: 1px;
  background: var(--bronze);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 170px;
  gap: 18px;
  columns: auto;
}

.gallery-item {
  height: 100%;
  margin: 0;
  background: #d9d2c7;
}

.gallery-item:nth-child(1) { grid-column: span 4; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 8; grid-row: span 1; }
.gallery-item:nth-child(3),
.gallery-item:nth-child(4) { grid-column: span 4; grid-row: span 1; }
.gallery-item:nth-child(5) { grid-column: span 8; grid-row: span 2; }
.gallery-item:nth-child(6),
.gallery-item:nth-child(7) { grid-column: span 4; grid-row: span 1; }
.gallery-item:nth-child(8) { grid-column: span 4; grid-row: span 1; }

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: cover;
}

.ceo-section {
  background: var(--ivory);
  color: var(--ink);
}

.ceo-grid {
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
}

.founder-identity-placeholder {
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  border: 1px solid rgba(185, 111, 67, 0.38);
  background:
    linear-gradient(135deg, rgba(185, 111, 67, 0.13), transparent 44%),
    linear-gradient(180deg, #f4efe6, #d8d0c4);
  color: var(--ink);
}

.founder-identity-placeholder span {
  font-family: var(--serif);
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 0.9;
}

.founder-identity-placeholder small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ceo-image figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 800;
}

.ceo-copy blockquote {
  color: var(--ink);
  font-size: clamp(2rem, 3.4vw, 3.25rem);
}

.heritage-timeline-grid {
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
}

.heritage-year {
  display: block;
  margin-top: 26px;
  color: var(--bronze);
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 11rem);
  line-height: 0.82;
}

.heritage-timeline-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.heritage-story {
  grid-column: 1 / -1;
}

.timeline-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 0;
  border-top: 1px solid var(--line);
}

.timeline-list p {
  padding: 24px 22px 0 0;
  border-right: 1px solid var(--line);
}

.timeline-list p:last-child {
  border-right: 0;
}

.timeline-list p::before {
  top: -5px;
  left: 0;
}

.sustainability-section {
  background: var(--forest);
}

.sustainability-grid {
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(38px, 5vw, 70px);
}

.sustainability-image img {
  aspect-ratio: 16 / 11;
}

.sustainability-commitments {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-light);
}

.sustainability-commitments article {
  padding: 24px 24px 0 0;
  border-right: 1px solid var(--line-light);
}

.sustainability-commitments article:last-child {
  border-right: 0;
}

.testimonials-section {
  background: var(--surface-muted);
}

.testimonial-layout {
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
}

.testimonial-card,
.testimonial-card.is-active {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--surface);
  box-shadow: 0 28px 70px rgba(11, 16, 14, 0.12);
}

.testimonial-card figure {
  position: relative;
  margin: 0;
}

.testimonial-card img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.testimonial-card figcaption {
  position: absolute;
  margin: 18px;
  padding: 7px 10px;
  background: rgba(11, 16, 14, 0.72);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.testimonial-copy {
  display: grid;
  align-content: center;
  padding: clamp(32px, 5vw, 66px);
}

.testimonial-copy p {
  font-size: clamp(1.75rem, 3vw, 3rem);
}

.testimonial-copy em {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-style: normal;
  font-size: 0.88rem;
}

.editorial-insights {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 18px;
}

.insight-card {
  padding: 0;
  overflow: hidden;
}

.insight-card a {
  min-height: 100%;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  align-items: stretch;
}

.insight-card img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.insight-card div {
  padding: 22px 22px 22px 0;
}

.insight-card-featured {
  grid-row: span 3;
}

.insight-card-featured a {
  grid-template-columns: 1fr;
}

.insight-card-featured img {
  min-height: 440px;
}

.insight-card-featured div {
  padding: 30px;
}

.accreditation-list {
  grid-template-columns: repeat(4, 1fr);
}

.accreditation-list article {
  border-right: 1px solid var(--line);
  border-bottom: 0;
}

.accreditation-list article:last-child {
  border-right: 0;
}

.estimator-section {
  background: var(--ivory);
  color: var(--ink);
}

.estimator-section p {
  color: var(--muted);
}

.estimator-grid {
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
}

.estimator-preview {
  position: relative;
  padding-top: 72px;
}

.estimator-preview::before {
  content: "Step 1 of 3";
  position: absolute;
  top: 28px;
  left: 34px;
  right: 34px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--bronze);
  color: var(--bronze-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-disclaimer {
  font-size: 0.92rem;
}

.contact-section {
  background: var(--surface-muted);
}

.contact-grid {
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
}

.service-map {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(185, 111, 67, 0.12), transparent 42%),
    var(--surface);
}

.service-map strong {
  display: block;
  color: var(--bronze-dark);
  font-family: var(--serif);
  font-size: 2.4rem;
}

.contact-form {
  border: 0;
  background: #fff;
  box-shadow: 0 28px 70px rgba(11, 16, 14, 0.12);
}

input,
select,
textarea {
  min-height: 52px;
  border-color: rgba(32, 37, 33, 0.18);
}

.final-cta {
  min-height: 560px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(11, 16, 14, 0.74), rgba(11, 16, 14, 0.2) 68%),
    var(--final-cta-image) center/cover;
}

.final-cta-inner {
  max-width: 900px;
}

.final-cta h2 {
  font-size: clamp(3rem, 5.6vw, 6.25rem);
}

.site-footer {
  border-top: 2px solid var(--bronze);
}

.footer-main {
  grid-template-columns: 1.35fr 0.9fr 0.85fr 0.95fr 1.1fr;
  gap: clamp(26px, 3vw, 48px);
}

.footer-column,
.footer-intro {
  font-size: 0.95rem;
}

/* Service Explorer redesign */
.services-section {
  padding-top: clamp(96px, 8vw, 120px);
  padding-bottom: clamp(96px, 8vw, 124px);
  background: #f5f1e9;
}

.services-section .split-heading {
  grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
  align-items: end;
  gap: clamp(38px, 5vw, 64px);
  margin-bottom: clamp(48px, 5vw, 64px);
}

.services-section .section-title {
  max-width: 760px;
  font-size: clamp(2.5rem, 4.8vw, 4rem);
}

.services-section .split-heading p:not(.section-kicker) {
  max-width: 520px;
  color: #616761;
}

.service-selector {
  display: grid;
  grid-template-columns: minmax(300px, 4fr) minmax(0, 8fr);
  min-height: clamp(600px, 48vw, 660px);
  gap: 0;
  align-items: stretch;
}

.service-selector-nav {
  display: grid;
  align-content: start;
  background: #faf8f4;
  border-left: 1px solid rgba(37, 42, 38, 0.08);
  border-top: 1px solid rgba(37, 42, 38, 0.08);
  border-bottom: 1px solid rgba(37, 42, 38, 0.08);
}

.service-selector-nav button {
  position: relative;
  width: 100%;
  min-height: 88px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 10px 14px;
  align-items: center;
  padding: 18px 20px;
  border: 0;
  border-bottom: 1px solid rgba(37, 42, 38, 0.12);
  background: transparent;
  color: #252a26;
  text-align: left;
  cursor: pointer;
  transition: background 250ms ease, color 250ms ease, padding-left 250ms ease;
}

.service-selector-nav button::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: #b96f43;
  opacity: 0;
  transition: opacity 250ms ease;
}

.service-selector-nav button span {
  align-self: start;
  color: #b96f43;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.service-selector-nav button strong {
  display: block;
  color: inherit;
  font-size: clamp(1.05rem, 1.2vw, 1.25rem);
  line-height: 1.18;
}

.service-selector-nav button em {
  grid-column: 2 / 3;
  display: block;
  color: #616761;
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.35;
}

.service-selector-nav button i {
  grid-column: 3;
  grid-row: 1 / span 2;
  color: #b96f43;
  font-style: normal;
  transition: transform 220ms ease;
}

.service-selector-nav button:hover {
  background: rgba(185, 111, 67, 0.08);
}

.service-selector-nav button:hover i,
.service-selector-nav button:focus-visible i {
  transform: translateX(4px);
}

.service-selector-nav button[aria-selected="true"] {
  padding-left: 28px;
  background: #111714;
  color: #faf8f4;
}

.service-selector-nav button[aria-selected="true"]::before {
  opacity: 1;
}

.service-selector-nav button[aria-selected="true"] em {
  color: rgba(250, 248, 244, 0.68);
}

.service-selector-more {
  border-bottom: 1px solid rgba(37, 42, 38, 0.12);
}

.service-selector-more summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 20px;
  color: #a9653f;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

.service-selector-more summary::-webkit-details-marker {
  display: none;
}

.service-selector-more summary::after {
  content: "+";
  color: #b96f43;
  font-size: 1.25rem;
}

.service-selector-more[open] summary::after {
  content: "-";
}

.service-selector-more div {
  display: grid;
}

.service-selector-more button {
  min-height: 76px;
}

.service-selector-more a {
  padding: 16px 20px 18px 78px;
  color: #a9653f;
  font-size: 0.86rem;
  font-weight: 900;
}

.service-selector-stage {
  position: relative;
  overflow: hidden;
  min-height: inherit;
  background: #d8d0c4;
}

.service-selector-panel {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  background-color: #d9d2c7;
  background-size: cover;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 360ms ease, transform 360ms ease;
}

.service-selector-panel[hidden] {
  display: none;
  pointer-events: none;
}

.service-selector-panel.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.service-selector-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-selector-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(32deg, rgba(11, 16, 14, 0.86), rgba(11, 16, 14, 0.48) 42%, transparent 74%);
  pointer-events: none;
}

.service-selector-copy {
  position: relative;
  z-index: 2;
  width: min(45%, 560px);
  min-width: 420px;
  padding: clamp(30px, 4vw, 54px);
  color: #faf8f4;
}

.service-selector-copy > p:first-child {
  margin: 0 0 12px;
  color: #c27a49;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-selector-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.375rem, 4vw, 3.625rem);
  line-height: 0.98;
}

.service-selector-copy p:not(:first-child) {
  max-width: 540px;
  margin: 18px 0 0;
  color: rgba(250, 248, 244, 0.84);
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.65;
}

.service-selector-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 26px;
  list-style: none;
}

.service-selector-copy li,
.service-accordion-panel li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(250, 248, 244, 0.28);
  background: rgba(11, 16, 14, 0.34);
  color: rgba(250, 248, 244, 0.86);
  font-size: 0.9rem;
  line-height: 1.3;
}

.service-selector-copy li span,
.service-accordion-panel li span {
  width: 11px;
  height: 1px;
  background: #c27a49;
}

.service-selector-copy .text-link {
  color: #faf8f4;
}

.service-selector-accordion {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .service-selector-panel,
  .service-selector-nav button,
  .service-selector-nav button i {
    transition: none;
  }
}

/* Why Choose section redesign */
.why-section {
  background: #f4efe6;
  color: #171c18;
  padding: clamp(72px, 8vw, 124px) 0;
}

.why-shell {
  max-width: 1360px;
}

.why-section .why-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(44px, 5vw, 72px);
  align-items: start;
}

.why-copy {
  grid-column: span 6;
}

.why-section .section-kicker {
  color: #b96f43;
}

.why-section .section-title {
  max-width: 650px;
  margin-bottom: 24px;
  color: #0b100e;
  font-size: clamp(40px, 4.8vw, 62px);
  line-height: 1.02;
}

.why-section .lead {
  max-width: 600px;
  margin-bottom: 42px;
  color: #4f5751;
  font-size: clamp(1.0625rem, 1.35vw, 1.125rem);
  line-height: 1.65;
}

.why-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 30px;
}

.why-benefit {
  position: relative;
  min-height: 156px;
  padding: 20px 0 0 24px;
  border-top: 1px solid rgba(17, 23, 20, 0.14);
}

.why-benefit::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 3px;
  height: 72px;
  background: #b96f43;
}

.why-benefit span {
  display: inline-block;
  margin-bottom: 18px;
  color: #b96f43;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.why-benefit h3 {
  margin: 0 0 10px;
  color: #111714;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.2;
}

.why-benefit p {
  margin: 0;
  color: #5e655f;
  font-size: 0.95rem;
  line-height: 1.55;
}

.why-cta {
  min-height: 52px;
  margin-top: 42px;
  border: 1px solid #111714;
  background: transparent;
  color: #111714;
}

.why-cta::after {
  color: #b96f43;
}

.why-cta:hover,
.why-cta:focus-visible {
  border-color: #111714;
  background: #111714;
  color: #f9f4ec;
}

.why-visual {
  position: relative;
  grid-column: span 6;
  align-self: stretch;
  margin: 0;
  background: #d7cfc3;
}

.why-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 680px;
  max-height: 760px;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  object-fit: cover;
}

.why-stat-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(280px, calc(100% - 32px));
  padding: 24px;
  background: #0b100e;
  color: #f8f4ec;
  box-shadow: 0 18px 34px rgba(11, 16, 14, 0.16);
}

.why-stat-panel span {
  display: block;
  margin-bottom: 16px;
  color: #c17a4b;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.why-stat-panel strong {
  display: block;
  color: #fffaf3;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 500;
  line-height: 0.98;
}

.why-stat-panel p {
  margin: 8px 0 18px;
  color: rgba(248, 244, 236, 0.76);
  font-size: 0.9rem;
  line-height: 1.45;
}

.why-stat-panel p:last-child {
  margin-bottom: 0;
}

.why-accreditations {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(38px, 5vw, 60px);
  border: 1px solid rgba(17, 23, 20, 0.14);
  background: rgba(255, 252, 247, 0.58);
}

.why-accreditations article {
  min-height: 178px;
  padding: clamp(24px, 2.6vw, 32px);
  border-right: 1px solid rgba(17, 23, 20, 0.14);
}

.why-accreditations article:last-child {
  border-right: 0;
}

.why-accreditations strong {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  min-height: 32px;
  margin-bottom: 20px;
  border: 1px solid rgba(185, 111, 67, 0.34);
  color: #b96f43;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
}

.why-accreditations h3 {
  margin: 0 0 10px;
  color: #111714;
  font-size: clamp(0.98rem, 1.2vw, 1.06rem);
  line-height: 1.25;
}

.why-accreditations p {
  margin: 0;
  color: #5e655f;
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .why-section {
    padding: 88px 0;
  }

  .why-section .why-grid {
    gap: 44px;
  }

  .why-visual img {
    min-height: 620px;
  }
}

@media (max-width: 900px) {
  .why-section {
    padding: 80px 0 88px;
  }

  .why-section .why-grid {
    grid-template-columns: 1fr;
  }

  .why-copy,
  .why-visual {
    grid-column: 1;
  }

  .why-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-visual img {
    min-height: 0;
    max-height: none;
    aspect-ratio: 16 / 11;
  }

  .why-accreditations {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-accreditations article:nth-child(2) {
    border-right: 0;
  }

  .why-accreditations article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(17, 23, 20, 0.14);
  }
}

@media (max-width: 600px) {
  .why-section {
    padding: 64px 0 72px;
  }

  .why-section .section-title {
    font-size: clamp(2.35rem, 10vw, 3.15rem);
  }

  .why-section .lead {
    margin-bottom: 34px;
  }

  .why-benefit-grid,
  .why-accreditations {
    grid-template-columns: 1fr;
  }

  .why-benefit {
    min-height: 0;
  }

  .why-cta {
    width: 100%;
  }

  .why-visual img {
    aspect-ratio: 4 / 5;
  }

  .why-stat-panel {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    padding: 20px;
  }

  .why-stat-panel strong {
    font-size: 2rem;
  }

  .why-accreditations article,
  .why-accreditations article:nth-child(2),
  .why-accreditations article:nth-child(-n + 2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 23, 20, 0.14);
  }

  .why-accreditations article:last-child {
    border-bottom: 0;
  }
}

/* Client feedback section redesign */
.testimonials-section {
  background: #f4efe6;
  color: #1b211d;
  padding: clamp(76px, 8vw, 124px) 0;
}

.testimonials-section .testimonial-layout {
  max-width: 1360px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(42px, 5vw, 72px);
  align-items: center;
}

.testimonial-intro {
  grid-column: span 4;
}

.testimonial-intro .section-title {
  max-width: 500px;
  margin-bottom: 22px;
  color: #101511;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.02;
}

.testimonial-intro p:not(.section-kicker) {
  max-width: 440px;
  margin: 0;
  color: #626862;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.65;
}

.testimonial-trust-line {
  display: block;
  max-width: 360px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 23, 20, 0.14);
  color: #1b211d;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-slider,
.testimonial-card.testimonial-fallback-card {
  grid-column: span 8;
}

.testimonial-slider {
  position: relative;
}

.testimonial-track {
  position: relative;
}

.testimonials-section .testimonial-card,
.testimonials-section .testimonial-card.is-active {
  display: none;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: 540px;
  max-height: 600px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 23, 20, 0.12);
  border-radius: 4px;
  background: #fbf9f4;
  box-shadow: 0 22px 52px rgba(16, 21, 17, 0.08);
}

.testimonials-section .testimonial-card.is-active,
.testimonials-section .testimonial-fallback-card {
  display: grid;
}

.testimonial-media {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #d8d0c4;
}

.testimonial-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(11, 16, 14, 0.82), rgba(11, 16, 14, 0));
  pointer-events: none;
}

.testimonials-section .testimonial-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.testimonial-media figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  background: transparent;
  color: #fffaf3;
}

.testimonial-media figcaption span {
  display: block;
  color: #fffaf3;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.testimonial-media figcaption small {
  color: rgba(255, 250, 243, 0.78);
  font-size: 0.9rem;
}

.testimonials-section .testimonial-copy {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 4.8vw, 62px);
  color: #1b211d;
}

.testimonials-section .testimonial-copy::before {
  content: "\201C";
  position: absolute;
  top: 34px;
  right: clamp(32px, 4.8vw, 58px);
  color: rgba(185, 111, 67, 0.24);
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 1;
}

.testimonials-section .testimonial-copy > span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 28px;
  color: #b96f43;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonials-section .testimonial-copy p {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 0;
  color: #101511;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.45vw, 2.08rem);
  line-height: 1.28;
}

.testimonials-section .testimonial-copy footer {
  display: grid;
  gap: 5px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(17, 23, 20, 0.12);
  color: #626862;
}

.testimonials-section .testimonial-copy footer strong {
  color: #101511;
  font-size: 1rem;
}

.testimonials-section .testimonial-copy footer small,
.testimonials-section .testimonial-copy footer em {
  color: #626862;
  font-size: 0.92rem;
  font-style: normal;
  line-height: 1.45;
}

.testimonial-controls {
  position: absolute;
  right: clamp(26px, 4.8vw, 52px);
  bottom: clamp(24px, 3.4vw, 42px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #101511;
}

.testimonial-controls button {
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(17, 23, 20, 0.22);
  border-radius: 2px;
  background: transparent;
  color: #101511;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.testimonial-controls button:hover,
.testimonial-controls button:focus-visible {
  border-color: #101511;
  background: #101511;
  color: #fbf9f4;
}

.testimonial-progress {
  width: min(9vw, 92px);
  height: 1px;
  background: rgba(17, 23, 20, 0.18);
}

.testimonial-progress span {
  display: block;
  width: 50%;
  height: 100%;
  background: #b96f43;
  transition: width 240ms ease;
}

.testimonial-count {
  color: #626862;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-progress span {
    transition: none;
  }
}
