:root {
  --warm-white: #f7f5f0;
  --ivory: #f2efe8;
  --warm-grey: #d8d3ca;
  --charcoal: #171717;
  --soft-black: #242321;
  --oak: #a58c70;
  --oak-dark: #78644f;
  --line: rgba(23, 23, 23, 0.16);
  --line-light: rgba(247, 245, 240, 0.22);
  --serif: "Outfit", Arial, sans-serif;
  --sans: "Outfit", Arial, sans-serif;
  --shell: min(1380px, calc(100vw - 80px));
  --header-height: 96px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 2px solid var(--oak-dark); outline-offset: 4px; }
::selection { background: var(--oak); color: #fff; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: #fff;
  color: #000;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 144px 0; }
.section-ivory { background: var(--ivory); }
.section-charcoal { background: var(--charcoal); color: var(--warm-white); }

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: .94;
}
h1 em, h2 em {
  font-style: normal;
  font-weight: 300;
  letter-spacing: -0.04em;
}
h2 { font-size: clamp(52px, 5.5vw, 88px); }
.eyebrow {
  margin-bottom: 24px;
  color: var(--oak-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow.light { color: rgba(255,255,255,.72); }
.section-index { margin: 0; color: #6e6a64; font-size: 13px; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--charcoal); color: var(--warm-white); }
.button-dark:hover { background: var(--oak-dark); }
.button-light { background: var(--warm-white); color: var(--charcoal); }
.button-light:hover { background: #fff; }
.button-outline-light { border-color: rgba(255,255,255,.55); color: #fff; }
.button-outline-light:hover { background: #fff; color: #111; border-color: #fff; }
.button-full { width: 100%; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
}
.text-link span { transition: transform .25s var(--ease); }
.text-link:hover span { transform: translate(3px, -3px); }
.light-link { color: #fff; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  color: #fff;
  transition: height .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255,255,255,.2);
}
.site-header.is-scrolled {
  --header-height: 74px;
  background: rgba(247,245,240,.96);
  color: var(--charcoal);
  box-shadow: 0 8px 36px rgba(23,23,23,.06);
  backdrop-filter: blur(16px);
}
.site-header.is-scrolled::after { background: rgba(23,23,23,.09); }
.header-inner { height: 100%; display: grid; grid-template-columns: 180px 1fr auto; align-items: center; gap: 38px; }
.wordmark { display: inline-flex; width: max-content; flex-direction: column; line-height: 1; }
.wordmark-main {
  text-transform: uppercase; font-family: var(--serif); font-size: 25px; font-weight: 700; letter-spacing: .18em; }
.wordmark-sub { margin-top: 7px; font-size: 7px; font-weight: 500; letter-spacing: .33em; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(18px, 2vw, 34px); }
.desktop-nav a { position: relative; font-size: 12px; font-weight: 500; letter-spacing: .025em; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  transition: right .25s var(--ease);
}
.desktop-nav a:hover::after { right: 0; }
.button-header { min-height: 44px; padding-inline: 21px; border-color: rgba(255,255,255,.56); color: #fff; }
.button-header:hover { background: #fff; color: #111; }
.is-scrolled .button-header { background: var(--charcoal); border-color: var(--charcoal); color: #fff; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 25px; height: 1px; margin: 7px auto; background: currentColor; transition: transform .25s var(--ease), opacity .25s var(--ease); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 0;
  padding: 38px max(24px, calc((100vw - 1380px) / 2));
  overflow-y: auto;
  background: var(--warm-white);
  color: var(--charcoal);
}
.menu-open .site-header { background: var(--warm-white); color: var(--charcoal); }
.menu-open .site-header::after { background: rgba(23,23,23,.09); }
.mobile-menu nav { display: grid; margin-bottom: 40px; }
.mobile-menu nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 32px; line-height: 1; }
.mobile-menu p { margin: 18px 0 0; text-align: center; color: #716d66; font-size: 12px; }

.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; background: #1f1f1d; color: #fff; }
.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1600210491892-03d54c0aaf87?auto=format&fit=crop&w=2200&q=88");
  background-position: center 52%;
  background-size: cover;
  transform: scale(1.02);
  animation: hero-settle 1.6s var(--ease) both;
}
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,15,14,.82) 0%, rgba(15,15,14,.52) 42%, rgba(15,15,14,.18) 74%), linear-gradient(180deg, rgba(8,8,8,.12), rgba(8,8,8,.45) 100%); }
.hero-content { position: relative; z-index: 2; width: 100%; min-height: 100svh; display: flex; align-items: flex-end; padding-top: calc(var(--header-height) + 72px); padding-bottom: 7vh; }
.hero-panel {
  max-width: 760px;
  margin-top: auto;
  padding: clamp(30px, 3vw, 42px);
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(180deg, rgba(19,19,18,.18), rgba(19,19,18,.34));
  backdrop-filter: blur(4px);
}
.hero h1 { max-width: 860px; font-size: clamp(64px, 6.6vw, 106px); line-height: .92; }
.hero h1 em { color: #ebe4d8; }
.hero-copy { max-width: 590px; margin: 28px 0 32px; color: rgba(255,255,255,.86); font-size: clamp(17px, 1.28vw, 20px); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.hero-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-trust { margin: 0; color: rgba(255,255,255,.7); font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; }
.hero-trust span { margin-inline: 10px; }
.hero-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-list li {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.82);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.scroll-cue { position: absolute; z-index: 2; right: 42px; bottom: 34px; display: grid; justify-items: center; gap: 12px; color: rgba(255,255,255,.72); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.scroll-cue i { display: block; width: 1px; height: 54px; overflow: hidden; background: rgba(255,255,255,.28); }
.scroll-cue i::after { content: ""; display: block; width: 1px; height: 24px; background: #fff; animation: scroll-line 2s ease-in-out infinite; }

.intro { overflow: hidden; }
.intro.section { padding: 112px 0 104px; }
.intro-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(380px, .92fr); gap: clamp(40px, 5vw, 76px); align-items: start; }
.intro-copy { max-width: 620px; padding-top: 8px; }
.intro-copy h2 { font-size: clamp(54px, 5.6vw, 84px); margin-top: 18px; }
.intro-copy p { max-width: 560px; margin: 22px 0 24px; color: #55514b; font-size: 18px; line-height: 1.78; }
.intro-points { display: grid; gap: 14px; margin: 0 0 30px; padding: 0; list-style: none; }
.intro-points li {
  position: relative;
  padding-left: 18px;
  color: #625e58;
  line-height: 1.7;
}
.intro-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--oak);
}
.intro-image { position: relative; margin: 0; justify-self: end; width: 100%; max-width: 500px; min-height: 620px; background: #e9e4db url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1200&q=86") center / cover no-repeat; }
.intro-image img { display: block; width: 100%; min-height: 620px; aspect-ratio: 4 / 4.9; object-fit: cover; clip-path: inset(0) !important; opacity: 1 !important; transform: none !important; }
.intro-image::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(23,23,23,.11);
  z-index: -1;
}
.intro-image figcaption { margin-top: 18px; color: #716d66; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

.section-heading { margin-bottom: 78px; }
.split-heading { display: grid; grid-template-columns: 1.6fr .6fr; gap: 70px; align-items: end; }
.split-heading > p { max-width: 420px; margin: 0 0 8px; color: #625e58; font-size: 16px; line-height: 1.7; }
.split-heading h2 { font-size: clamp(54px, 5.3vw, 82px); }
.principles-list { border-top: 1px solid var(--line); }
.principle { display: grid; grid-template-columns: 90px 1.1fr .9fr; gap: 40px; padding: 34px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.principle .number { color: var(--oak-dark); font-size: 11px; letter-spacing: .15em; }
.principle h3 { margin: 0; font-family: var(--serif); font-size: clamp(31px, 3vw, 45px); font-weight: 500; }
.principle p { max-width: 460px; margin: 0; color: #66615b; }
.section-cta { display: flex; align-items: center; gap: 24px; margin-top: 48px; }
.section-cta span { color: #6d6862; font-size: 12px; }

.services-heading { display: grid; grid-template-columns: 1fr 1.2fr .8fr; gap: 60px; align-items: end; }
.services-heading .eyebrow { align-self: start; }
.services-heading h2 { font-size: clamp(58px, 6vw, 92px); }
.services-heading > p:last-child { margin: 0 0 10px; color: #625e58; line-height: 1.72; }
.services-carousel { position: relative; }
.services-viewport { overflow: hidden; }
.services-track {
  display: flex;
  gap: 22px;
  will-change: transform;
  transition: transform .58s var(--ease);
}
.service-card {
  position: relative;
  flex: 0 0 calc((100% - 44px) / 3);
  height: 590px;
  margin: 0;
  overflow: hidden;
  background: #d9d4cc;
  color: #fff;
}
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(12,12,12,.82), rgba(12,12,12,.08) 70%); }
.service-card:hover img { transform: scale(1.035); }
.service-card figcaption { position: absolute; z-index: 2; inset: auto 28px 28px; }
.service-card .service-index { display: block; margin-bottom: 10px; color: rgba(255,255,255,.7); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.service-card h3 { margin: 0 0 10px; font-family: var(--serif); font-size: clamp(31px, 2.6vw, 42px); font-weight: 600; line-height: 1; }
.service-card p { min-height: 64px; max-width: 440px; margin: 0 0 18px; color: rgba(255,255,255,.84); font-size: 14px; line-height: 1.55; }
.service-card a { display: inline-flex; gap: 14px; align-items: center; padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.55); font-size: 11px; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; }
.services-carousel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.services-carousel-footer > p { max-width: 650px; margin: 0; color: #68635d; font-size: 13px; }
.carousel-controls { display: flex; align-items: center; gap: 14px; }
.carousel-controls button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  transition: background .25s, color .25s, opacity .25s;
}
.carousel-controls button:hover:not(:disabled) { background: var(--charcoal); color: #fff; }
.carousel-controls button:disabled { opacity: .32; cursor: default; }
.carousel-controls span { min-width: 84px; text-align: center; color: #6b665f; font-size: 11px; letter-spacing: .12em; }

.project-feature { position: relative; min-height: 900px; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.project-media { position: absolute; inset: 0; background: url("https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?auto=format&fit=crop&w=2200&q=88") center / cover; }
.project-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,9,9,.82) 0%, rgba(9,9,9,.12) 65%), linear-gradient(90deg, rgba(9,9,9,.26), transparent 55%); }
.project-content { position: relative; z-index: 2; display: grid; grid-template-columns: .65fr 1.45fr .9fr; gap: 70px; align-items: end; padding-bottom: 82px; }
.project-content h2 { font-size: clamp(66px, 7vw, 108px); }
.project-content > div > p { max-width: 590px; margin: 28px 0; color: rgba(255,255,255,.8); font-size: 17px; }
.project-content dl { margin: 0; border-top: 1px solid var(--line-light); }
.project-content dl div { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line-light); }
.project-content dt { color: rgba(255,255,255,.56); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.project-content dd { margin: 0; font-size: 13px; }

.gallery-heading { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: end; }
.gallery-heading h2 { font-size: clamp(60px, 6vw, 92px); }
.gallery-filters { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px 18px; max-width: 600px; }
.gallery-filters button { padding: 5px 0; border: 0; border-bottom: 1px solid transparent; background: transparent; color: rgba(255,255,255,.58); font-size: 11px; cursor: pointer; }
.gallery-filters button:hover, .gallery-filters button.is-active { border-color: #fff; color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.gallery-item { position: relative; height: 430px; margin: 0; overflow: hidden; cursor: zoom-in; }
.gallery-item[hidden] { display: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease), filter .4s var(--ease); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.62), transparent 48%); opacity: .72; transition: opacity .3s var(--ease); }
.gallery-item:hover img { transform: scale(1.025); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item figcaption { position: absolute; z-index: 2; inset: auto 22px 20px; display: flex; justify-content: space-between; align-items: end; gap: 20px; color: #fff; }
.gallery-item h3 { margin: 0; font-family: var(--serif); font-size: 26px; font-weight: 500; }
.gallery-item span { color: rgba(255,255,255,.66); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.gallery-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 54px; padding-top: 34px; border-top: 1px solid var(--line-light); }
.gallery-footer p { margin: 0; font-family: var(--serif); font-size: 36px; }

.process-track { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); margin: 0; padding: 0; list-style: none; }
.process-track::before { content: ""; position: absolute; top: 25px; left: 2%; right: 2%; height: 1px; background: var(--line); }
.process-step { position: relative; padding: 66px 28px 0 0; }
.process-step::before { content: ""; position: absolute; top: 20px; left: 0; width: 11px; height: 11px; border: 1px solid var(--oak-dark); border-radius: 50%; background: var(--warm-white); transition: background .3s var(--ease), transform .3s var(--ease); }
.process-step:hover::before { background: var(--oak-dark); transform: scale(1.35); }
.process-step .number { color: var(--oak-dark); font-size: 10px; letter-spacing: .15em; }
.process-step h3 { margin: 18px 0 12px; font-family: var(--serif); font-size: 29px; font-weight: 500; line-height: 1; }
.process-step p { margin: 0; color: #68635d; font-size: 13px; line-height: 1.65; }

.testimonial-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 54px;
  align-items: end;
  margin-bottom: 58px;
}
.testimonial-intro h2 { max-width: 920px; font-size: clamp(56px, 5.3vw, 82px); }
.testimonial-intro > p:not(.eyebrow) { max-width: 620px; margin: 28px 0 0; color: #625e58; }
.testimonial-controls { padding-bottom: 4px; }
.testimonial-carousel { position: relative; }
.testimonial-viewport { overflow: hidden; }
.testimonial-track {
  display: flex;
  gap: 22px;
  will-change: transform;
  transition: transform .58s var(--ease);
}
.testimonial-card {
  flex: 0 0 calc((100% - 22px) / 2);
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px;
  background: var(--warm-white);
  border-top: 4px solid var(--oak);
}
.testimonial-mark { font-family: var(--serif); font-size: 68px; line-height: .5; color: var(--oak); }
.testimonial-quote { max-width: 760px; margin: 34px 0 50px; font-family: var(--serif); font-size: clamp(27px, 2.35vw, 38px); line-height: 1.22; }
.testimonial-meta { display: flex; justify-content: space-between; gap: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.testimonial-meta strong { font-size: 13px; font-weight: 500; }
.testimonial-meta span { color: #6c6760; font-size: 12px; }

.brand-statement { background: linear-gradient(180deg, #f7f5f0 0%, #f2efe8 100%); }
.statement-grid {
  display: grid;
  grid-template-columns: 1.2fr .85fr;
  gap: 48px 84px;
  align-items: start;
}
.statement-heading-block h2 { font-size: clamp(58px, 5.8vw, 90px); margin-top: 12px; }
.statement-copy-block { max-width: 430px; padding-top: 46px; }
.statement-copy-block p { margin: 0 0 26px; color: #625e58; font-size: 17px; line-height: 1.75; }
.statement-grid ul {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin: 6px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.statement-grid li {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 22px 20px;
  background: rgba(255,255,255,.4);
  border: 1px solid rgba(23,23,23,.08);
}
.statement-grid li strong { font-size: 14px; font-weight: 600; }
.statement-grid li span { color: #68635d; font-size: 13px; line-height: 1.65; }

.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 110px; align-items: start; }
.faq-intro { position: sticky; top: 116px; }
.faq-intro h2 { font-size: clamp(55px, 5.1vw, 78px); }
.faq-intro > p:not(.eyebrow) { max-width: 430px; margin: 32px 0 28px; color: #625e58; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-button { width: 100%; display: grid; grid-template-columns: 44px 1fr 32px; gap: 16px; align-items: center; padding: 25px 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.accordion-button .number { color: var(--oak-dark); font-size: 10px; letter-spacing: .14em; }
.accordion-button .question { font-family: var(--serif); font-size: 28px; }
.accordion-button .plus { position: relative; width: 22px; height: 22px; }
.accordion-button .plus::before, .accordion-button .plus::after { content: ""; position: absolute; top: 50%; left: 50%; width: 18px; height: 1px; background: currentColor; transition: transform .3s var(--ease); }
.accordion-button .plus::before { transform: translate(-50%,-50%); }
.accordion-button .plus::after { transform: translate(-50%,-50%) rotate(90deg); }
.accordion-button[aria-expanded="true"] .plus::after { transform: translate(-50%,-50%) rotate(0); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.accordion-panel p { max-width: 720px; margin: 0; padding: 0 52px 28px 60px; color: #5f5a54; line-height: 1.75; }

.final-cta { position: relative; min-height: 800px; display: flex; align-items: center; overflow: hidden; color: #fff; }
.final-cta-media { position: absolute; inset: 0; background: url("https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&w=2200&q=88") center / cover; }
.final-cta-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,12,11,.8), rgba(12,12,11,.24) 72%); }
.final-cta-content { position: relative; z-index: 2; }
.final-cta-content h2 { max-width: 950px; font-size: clamp(66px, 7.4vw, 114px); }
.final-cta-content > p:not(.eyebrow) { max-width: 560px; margin: 32px 0 36px; color: rgba(255,255,255,.82); font-size: 18px; }
.cta-group { display: flex; gap: 12px; }
.final-cta-content > span { display: block; margin-top: 22px; color: rgba(255,255,255,.6); font-size: 11px; letter-spacing: .08em; }

.contact { background: var(--warm-white); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 120px; }
.contact-intro h2 { font-size: clamp(66px, 6.4vw, 96px); }
.contact-intro > p:not(.eyebrow) { max-width: 520px; margin: 32px 0 42px; color: #625e58; font-size: 17px; }
.contact-details { margin: 0 0 36px; border-top: 1px solid var(--line); }
.contact-details div { display: grid; grid-template-columns: 100px 1fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-details dt { color: var(--oak-dark); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.contact-details dd { margin: 0; font-size: 14px; }
.contact-details a:hover { text-decoration: underline; }
.whatsapp-inline { display: flex; align-items: center; gap: 16px; }
.whatsapp-inline > span:first-child { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; }
.whatsapp-inline b { display: block; font-size: 13px; font-weight: 600; }
.whatsapp-inline span span { color: #6d6861; font-size: 12px; }
.quote-form { padding: 52px; background: var(--ivory); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { margin-bottom: 24px; }
.field label { display: block; margin-bottom: 9px; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #c8c2b8; border-radius: 0; background: var(--warm-white); color: var(--charcoal); }
.field input, .field select { height: 52px; padding: 0 14px; }
.field textarea { min-height: 132px; padding: 14px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--oak-dark); outline: 1px solid var(--oak-dark); outline-offset: 0; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 0 0 22px; color: #5e5952; font-size: 12px; }
.consent input { margin-top: 3px; accent-color: var(--charcoal); }
.form-note { margin: 14px 0 0; text-align: center; color: #6f6a63; font-size: 11px; }
.form-status { min-height: 20px; margin: 9px 0 0; text-align: center; color: var(--oak-dark); font-size: 12px; }

.site-footer { padding: 84px 0 28px; background: var(--charcoal); color: var(--warm-white); }
.footer-grid { display: grid; grid-template-columns: 1.65fr repeat(3, .72fr); gap: 70px; padding-bottom: 72px; }
.wordmark-footer { margin-bottom: 24px; }
.footer-brand p { max-width: 380px; color: rgba(255,255,255,.58); font-size: 14px; }
.footer-grid h3 { margin: 0 0 22px; color: rgba(255,255,255,.45); font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid a, .footer-grid span { color: rgba(255,255,255,.74); font-size: 13px; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid var(--line-light); }
.footer-bottom p, .footer-bottom a { margin: 0; color: rgba(255,255,255,.42); font-size: 10px; }
.footer-bottom div { display: flex; gap: 22px; }

.floating-whatsapp { position: fixed; z-index: 900; right: 24px; bottom: 24px; display: inline-flex; align-items: center; gap: 9px; min-height: 48px; padding: 0 17px 0 13px; border-radius: 999px; background: #1f2a25; color: #fff; box-shadow: 0 14px 34px rgba(0,0,0,.2); font-size: 12px; transition: transform .3s var(--ease), background .3s; }
.floating-whatsapp svg { width: 23px; height: 23px; }
.floating-whatsapp:hover { transform: translateY(-4px); background: #31483d; }

.lightbox { width: min(1100px, calc(100vw - 40px)); max-height: calc(100svh - 40px); padding: 0; border: 0; background: transparent; color: #fff; }
.lightbox::backdrop { background: rgba(10,10,10,.92); backdrop-filter: blur(5px); }
.lightbox figure { margin: 0; }
.lightbox img { width: 100%; max-height: calc(100svh - 110px); object-fit: contain; }
.lightbox figcaption { margin-top: 12px; text-align: center; color: rgba(255,255,255,.72); font-size: 12px; }
.lightbox-close { position: fixed; top: 18px; right: 23px; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: transparent; color: #fff; font-size: 28px; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.image-reveal { clip-path: inset(0 0 100% 0); transition: clip-path 1.05s var(--ease), opacity .7s var(--ease), transform .7s var(--ease); }
.image-reveal.is-visible { clip-path: inset(0); }

@keyframes hero-settle { from { opacity: 0; transform: scale(1.08); } to { opacity: 1; transform: scale(1.02); } }
@keyframes scroll-line { 0% { transform: translateY(-25px); } 50%,100% { transform: translateY(56px); } }

@media (max-width: 1180px) {
  :root { --shell: min(calc(100% - 48px), 1180px); }
  .desktop-nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto auto; }
  .menu-toggle { display: block; }
  .hero-panel { max-width: 700px; }
  .intro-grid { grid-template-columns: minmax(0, 1fr) minmax(320px, .92fr); gap: 42px; }
  .services-heading { grid-template-columns: .65fr 1.35fr; }
  .services-heading > p:last-child { grid-column: 2; }
  .project-content { grid-template-columns: .4fr 1.35fr .8fr; gap: 42px; }
  .process-track { grid-template-columns: repeat(3, 1fr); row-gap: 46px; }
  .process-track::before { display: none; }
  .process-step { padding-top: 38px; }
  .process-step::before { top: 0; }
  .statement-grid { grid-template-columns: 1.15fr .85fr; gap: 40px 48px; }
  .contact-grid { gap: 70px; }
}

@media (max-width: 900px) {
  :root { --shell: calc(100% - 40px); }
  .section { padding: 104px 0; }
  .button-header { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .hero-content { min-height: 100svh; padding-top: calc(var(--header-height) + 56px); padding-bottom: 9vh; }
  .hero-panel { max-width: 100%; }
  .hero h1 { font-size: clamp(60px, 10vw, 92px); }
  .hero-copy { max-width: 520px; }
  .hero-meta { flex-direction: column; align-items: flex-start; }
  .scroll-cue { display: none; }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-copy { max-width: 100%; }
  .intro-image { justify-self: start; max-width: 620px; min-height: 520px; }
  .intro-image img { min-height: 520px; }
  .split-heading { grid-template-columns: 1fr; gap: 24px; }
  .principle { grid-template-columns: 55px 1fr; }
  .principle p { grid-column: 2; }
  .services-heading { grid-template-columns: 1fr; gap: 24px; }
  .services-heading > p:last-child { grid-column: auto; max-width: 620px; }
  .service-card { flex-basis: calc((100% - 22px) / 2); height: 540px; }
  .project-feature { min-height: 850px; }
  .project-content { grid-template-columns: 1fr 1fr; }
  .project-content > .eyebrow { grid-column: 1 / -1; }
  .project-content dl { align-self: end; }
  .gallery-heading { grid-template-columns: 1fr; }
  .gallery-filters { justify-content: flex-start; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-item { height: 390px; }
  .testimonial-header { grid-template-columns: 1fr; gap: 28px; }
  .testimonial-controls { justify-self: start; }
  .testimonial-card { min-height: 400px; padding: 38px; }
  .statement-grid { grid-template-columns: 1fr; }
  .statement-copy-block { max-width: 100%; padding-top: 0; }
  .statement-grid ul { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); }
  .faq-layout { grid-template-columns: 1fr; gap: 55px; }
  .faq-intro { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 32px); --header-height: 74px; }
  .section { padding: 84px 0; }
  h2 { font-size: 49px; line-height: .98; }
  .wordmark-main { font-size: 23px; }
  .hero { min-height: 92svh; }
  .hero-media { background-position: 63% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(15,15,14,.86), rgba(15,15,14,.4)), linear-gradient(0deg, rgba(8,8,8,.58), transparent 48%); }
  .hero-content { min-height: 92svh; padding-top: calc(var(--header-height) + 34px); padding-bottom: 5vh; }
  .hero-panel { padding: 24px 22px; margin-right: 8px; }
  .hero h1 { font-size: clamp(50px, 15vw, 72px); line-height: .94; }
  .hero-copy { margin: 20px 0 24px; font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { width: fit-content; }
  .hero-meta { margin-top: 28px; gap: 18px; }
  .hero-trust { line-height: 1.8; }
  .hero-trust span { margin-inline: 5px; }
  .hero-list { gap: 8px; }
  .hero-list li { font-size: 10px; }
  .intro-grid { grid-template-columns: 1fr; gap: 34px; }
  .intro.section { padding: 84px 0 84px; }
  .intro-copy h2 { font-size: 48px; }
  .intro-copy p { margin-top: 20px; font-size: 16px; }
  .intro-points { gap: 12px; }
  .intro-image { width: 100%; max-width: 100%; min-height: 360px; margin-left: 0; }
  .intro-image img { min-height: 360px; }
  .intro-image::after { inset: 10px -10px -10px 10px; }
  .section-heading { margin-bottom: 50px; }
  .split-heading h2 { font-size: 52px; }
  .principle { grid-template-columns: 38px 1fr; gap: 12px; padding: 26px 0; }
  .principle h3 { font-size: 34px; }
  .principle p { font-size: 14px; }
  .section-cta { align-items: stretch; flex-direction: column; }
  .section-cta .button { width: 100%; }
  .services-heading h2 { font-size: 56px; }
  .service-card { flex-basis: 100%; height: 520px; }
  .service-card figcaption { inset: auto 24px 25px; }
  .service-card p { min-height: 0; }
  .services-carousel-footer { align-items: flex-start; flex-direction: column; gap: 22px; }
  .services-controls { width: 100%; justify-content: space-between; }
  .project-feature { min-height: 820px; }
  .project-content { grid-template-columns: 1fr; gap: 32px; padding-bottom: 44px; }
  .project-content h2 { font-size: 62px; }
  .project-content dl { margin-top: 12px; }
  .gallery-heading h2 { font-size: 57px; }
  .gallery-filters { gap: 8px 15px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 360px; }
  .gallery-item figcaption { inset: auto 18px 17px; }
  .gallery-footer { align-items: stretch; flex-direction: column; gap: 24px; }
  .gallery-footer .button { width: 100%; }
  .process-track { grid-template-columns: 1fr; gap: 0; border-left: 1px solid var(--line); }
  .process-step { padding: 0 0 34px 34px; }
  .process-step::before { left: -6px; top: 2px; }
  .process-step h3 { margin-top: 10px; }
  .testimonial-intro h2 { font-size: 51px; }
  .testimonial-header { margin-bottom: 38px; }
  .testimonial-card { flex-basis: 100%; min-height: 390px; padding: 34px 25px; }
  .testimonial-quote { font-size: 30px; }
  .testimonial-meta { flex-direction: column; gap: 4px; }
  .testimonial-controls { width: 100%; justify-content: space-between; }
  .statement-grid { grid-template-columns: 1fr; gap: 24px; }
  .statement-heading-block h2 { font-size: 52px; }
  .statement-grid ul { grid-template-columns: 1fr; gap: 12px; margin-top: 12px; }
  .statement-grid li { min-height: auto; padding: 18px 16px; }
  .faq-intro h2 { font-size: 51px; }
  .accordion-button { grid-template-columns: 32px 1fr 24px; }
  .accordion-button .question { font-size: 24px; }
  .accordion-panel p { padding-left: 48px; padding-right: 20px; }
  .final-cta { min-height: 760px; }
  .final-cta-media { background-position: 63% center; }
  .final-cta-content h2 { font-size: 59px; }
  .cta-group { flex-direction: column; }
  .cta-group .button { width: 100%; }
  .contact-intro h2 { font-size: 59px; }
  .quote-form { padding: 30px 20px; margin-inline: -8px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom div { flex-wrap: wrap; }
  .floating-whatsapp { right: 14px; bottom: 14px; width: 49px; height: 49px; justify-content: center; padding: 0; }
  .floating-whatsapp span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .image-reveal { clip-path: inset(0); }
}

/* WordPress integration */
.desktop-nav .desktop-menu,
.mobile-menu .mobile-menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.desktop-nav .desktop-menu {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
}
.desktop-nav .desktop-menu li,
.mobile-menu .mobile-menu-list li { margin: 0; padding: 0; }
.desktop-nav .desktop-menu a,
.mobile-menu .mobile-menu-list a { display: block; }
.mobile-menu .mobile-menu-list { display: grid; }
.forme-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.has-fallback-image { background-color: #d8d3ca; background-size: cover; }
.admin-bar .site-header { top: 32px; }
.admin-bar .mobile-menu { inset: calc(var(--header-height) + 32px) 0 0; }
body:not(.home) .site-header {
  background: rgba(247,245,240,.98);
  color: var(--charcoal);
  box-shadow: 0 8px 36px rgba(23,23,23,.06);
}
body:not(.home) .site-header::after { background: rgba(23,23,23,.09); }
body:not(.home) .button-header { background: var(--charcoal); border-color: var(--charcoal); color: #fff; }
.page-shell { min-height: 72vh; padding: 170px 0 110px; }
.basic-page { max-width: 860px; }
.basic-page h1 { margin-bottom: 42px; font-size: clamp(58px, 7vw, 100px); }
.entry-content { color: #514d47; font-size: 18px; line-height: 1.8; }
.entry-content > * { max-width: 760px; }
.entry-content img { height: auto; }

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
  .admin-bar .mobile-menu { inset: calc(var(--header-height) + 46px) 0 0; }
}

@media (max-width: 640px) {
  .page-shell { padding: 130px 0 80px; }
  .basic-page h1 { font-size: 52px; }
  .entry-content { font-size: 16px; }
}
section[id] { scroll-margin-top: 82px; }

/* =========================================================
   AFMUSA 1.3 — COMPLETE PREMIUM DESIGN REFINEMENT
   Selective radii, improved rhythm, surfaces and interactions
   ========================================================= */
:root {
  --radius-xs: 7px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;
  --surface: #fbfaf7;
  --surface-warm: #eee9e0;
  --shadow-soft: 0 18px 52px rgba(30, 26, 22, .08);
  --shadow-card: 0 16px 38px rgba(24, 22, 19, .10);
  --shadow-dark: 0 24px 70px rgba(0, 0, 0, .22);
}

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

.section {
  position: relative;
}

.button {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.button-dark,
.button-light {
  box-shadow: 0 10px 24px rgba(23, 23, 23, .08);
}

.button:hover {
  box-shadow: 0 14px 30px rgba(23, 23, 23, .13);
}

.eyebrow {
  width: fit-content;
}

/* Header */
.site-header.is-scrolled {
  box-shadow: 0 12px 42px rgba(23, 23, 23, .08);
}

.button-header {
  border-radius: var(--radius-sm);
}

.menu-toggle {
  border-radius: 50%;
  transition: background-color .25s var(--ease);
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, .12);
}

.site-header.is-scrolled .menu-toggle:hover,
.menu-open .menu-toggle:hover {
  background: rgba(23, 23, 23, .06);
}

.mobile-menu .button {
  border-radius: var(--radius-sm);
}

/* Hero */
.hero-panel {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-dark);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.08), transparent 42%);
}

.hero-panel {
  position: relative;
}

.hero-list li {
  border-radius: var(--radius-pill);
}

.hero-actions .text-link {
  border-radius: 0;
}

/* Approach */
.intro-grid {
  align-items: center;
}

.intro-copy {
  position: relative;
}

.intro-copy::before {
  content: "";
  position: absolute;
  top: 0;
  left: -28px;
  width: 3px;
  height: 82px;
  border-radius: var(--radius-pill);
  background: linear-gradient(var(--oak), rgba(165,140,112,.14));
}

.intro-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.intro-image::after {
  border-radius: var(--radius-lg);
}

.intro-image img {
  border-radius: inherit;
}

.intro-points li {
  padding: 13px 16px 13px 36px;
  border: 1px solid rgba(23,23,23,.075);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.48);
}

.intro-points li::before {
  left: 17px;
}

/* Why choose us */
.principles.section-ivory {
  background: linear-gradient(180deg, var(--ivory), #ebe6dc);
}

.principles-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  border-top: 0;
}

.principle {
  display: flex;
  min-height: 285px;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 28px;
  border: 1px solid rgba(23,23,23,.085);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.52);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}

.principle:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-soft);
}

.principle .number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 44px;
  border: 1px solid rgba(120,100,79,.28);
  border-radius: 50%;
  background: rgba(165,140,112,.08);
}

.principle h3 {
  margin-bottom: 18px;
  font-size: clamp(25px, 2.15vw, 34px);
  line-height: 1.02;
}

.principle p {
  margin-top: auto;
  font-size: 14px;
  line-height: 1.7;
}

/* Services */
.services {
  background: var(--surface);
}

.services-viewport {
  border-radius: var(--radius-lg);
}

.service-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.service-card::after {
  border-radius: inherit;
}

.service-card img {
  border-radius: inherit;
}

.service-card figcaption {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-md);
  background: rgba(15,15,14,.24);
  backdrop-filter: blur(8px);
}

.services-carousel-footer {
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(242,239,232,.7);
}

.carousel-controls button {
  border-radius: 50%;
  background: rgba(255,255,255,.6);
}

/* Featured project */
.project-feature {
  width: calc(100% - 40px);
  max-width: 1760px;
  min-height: 820px;
  margin: 20px auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-dark);
}

.project-media,
.project-overlay {
  border-radius: inherit;
}

.project-content dl {
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-md);
  background: rgba(15,15,14,.28);
  backdrop-filter: blur(10px);
}

.project-content dl div:first-child {
  border-top: 0;
}

/* Gallery */
.gallery {
  margin-top: 20px;
}

.gallery-filters {
  gap: 10px;
}

.gallery-filters button {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.035);
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}

.gallery-filters button:hover,
.gallery-filters button.is-active {
  border-color: var(--warm-white);
  background: var(--warm-white);
  color: var(--charcoal);
}

.gallery-item {
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}

.gallery-item::after,
.gallery-item img {
  border-radius: inherit;
}

.gallery-footer {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.035);
}

/* Process */
.process {
  background: var(--warm-white);
}

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

.process-track::before {
  display: none;
}

.process-step {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(23,23,23,.085);
  border-radius: var(--radius-md);
  background: var(--ivory);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}

.process-step:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.process-step::before {
  top: 28px;
  left: auto;
  right: 28px;
  width: 12px;
  height: 12px;
  box-shadow: 0 0 0 7px rgba(165,140,112,.09);
}

.process-step h3 {
  max-width: 260px;
  margin-top: 46px;
  font-size: 28px;
  line-height: 1.05;
}

.process-step p {
  margin-top: auto;
}

/* Testimonials */
.testimonials.section-ivory {
  background: linear-gradient(180deg, #eee9e0, var(--ivory));
}

.testimonial-card {
  border: 1px solid rgba(23,23,23,.08);
  border-top: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 5px 0 var(--oak), var(--shadow-soft);
  overflow: hidden;
}

.testimonial-controls button {
  border-radius: 50%;
}

/* Built for everyday life */
.brand-statement {
  background: var(--surface);
}

.statement-heading-block,
.statement-copy-block {
  position: relative;
  z-index: 1;
}

.statement-grid li {
  border-radius: var(--radius-md);
  transition: transform .32s var(--ease), background .32s var(--ease), box-shadow .32s var(--ease);
}

.statement-grid li:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

/* FAQ */
.faq.section-ivory {
  background: #ece7de;
}

.accordion {
  border-top: 0;
}

.accordion-item {
  margin-bottom: 12px;
  border: 1px solid rgba(23,23,23,.08);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.62);
  overflow: hidden;
  transition: background-color .25s var(--ease), box-shadow .25s var(--ease);
}

.accordion-item:hover,
.accordion-item:has(.accordion-button[aria-expanded="true"]) {
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.accordion-button {
  padding: 24px;
}

.accordion-panel p {
  padding: 0 58px 28px 84px;
}

.accordion-button .plus {
  border: 1px solid var(--line);
  border-radius: 50%;
}

.accordion-button .plus::before,
.accordion-button .plus::after {
  width: 12px;
}

/* Final CTA */
.final-cta {
  width: calc(100% - 40px);
  max-width: 1760px;
  min-height: 740px;
  margin: 20px auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-dark);
}

.final-cta-media,
.final-cta-overlay {
  border-radius: inherit;
}

.final-cta-content {
  width: min(760px, calc(100% - 80px));
  margin-left: max(40px, calc((100vw - 1380px) / 2));
  margin-right: auto;
  padding: 42px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg);
  background: rgba(14,14,13,.30);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(8px);
}

/* Contact */
.contact {
  background: var(--surface);
}

.contact-details {
  display: grid;
  gap: 10px;
  border-top: 0;
}

.contact-details div {
  padding: 16px 18px;
  border: 1px solid rgba(23,23,23,.08);
  border-radius: var(--radius-sm);
  background: rgba(242,239,232,.64);
}

.whatsapp-inline {
  width: fit-content;
  padding: 12px 16px 12px 12px;
  border: 1px solid rgba(23,23,23,.08);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.68);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.whatsapp-inline:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.quote-form {
  border: 1px solid rgba(23,23,23,.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--ivory), #ece7de);
  box-shadow: var(--shadow-card);
}

.field input,
.field select,
.field textarea {
  border-radius: var(--radius-sm);
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease), background-color .22s var(--ease);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #aaa296;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(165,140,112,.13);
}

/* Footer and utility surfaces */
.site-footer {
  margin-top: 20px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.floating-whatsapp {
  border: 1px solid rgba(255,255,255,.13);
}

.lightbox img {
  border-radius: var(--radius-md);
}

.page-shell .basic-page,
.entry-content img,
.entry-content .wp-block-image img,
.entry-content .wp-block-group,
.entry-content .wp-block-cover {
  border-radius: var(--radius-md);
}

@media (max-width: 1180px) {
  .principles-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .intro-copy::before {
    display: none;
  }

  .principle {
    min-height: 245px;
  }

  .project-feature,
  .final-cta {
    width: calc(100% - 28px);
    margin: 14px auto;
    border-radius: var(--radius-lg);
  }

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

  .final-cta-content {
    width: min(720px, calc(100% - 48px));
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --radius-lg: 19px;
    --radius-xl: 22px;
  }

  .hero-panel {
    border-radius: var(--radius-lg);
  }

  .intro-points li {
    padding: 12px 14px 12px 34px;
  }

  .intro-points li::before {
    left: 15px;
  }

  .principles-list,
  .process-track {
    grid-template-columns: 1fr;
  }

  .principle,
  .process-step {
    min-height: auto;
    padding: 24px;
  }

  .principle .number {
    margin-bottom: 28px;
  }

  .service-card figcaption {
    inset: auto 16px 16px;
    padding: 18px;
  }

  .services-carousel-footer,
  .gallery-footer {
    padding: 20px;
  }

  .project-feature,
  .final-cta {
    width: calc(100% - 20px);
    margin: 10px auto;
    border-radius: var(--radius-lg);
  }

  .project-content dl {
    padding: 12px 16px;
  }

  .gallery-filters button {
    min-height: 32px;
    padding-inline: 12px;
  }

  .accordion-button {
    padding: 20px 17px;
  }

  .accordion-panel p {
    padding: 0 18px 22px 50px;
  }

  .final-cta-content {
    width: calc(100% - 32px);
    padding: 28px 22px;
    border-radius: var(--radius-md);
  }

  .quote-form {
    margin-inline: 0;
    border-radius: var(--radius-md);
  }

  .site-footer {
    margin-top: 10px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
}

/* =========================================================
   Version 1.4.0 — vertical section hierarchy and process icons
   ========================================================= */

/* The approach highlights should read as a refined list, not oversized cards. */
.intro-points {
  max-width: 650px;
  gap: 0;
  margin-top: 8px;
  border-top: 1px solid var(--line);
}

.intro-points li {
  min-height: 0;
  padding: 15px 0 15px 26px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: #5f5a54;
  font-size: 15px;
  line-height: 1.55;
}

.intro-points li::before {
  left: 2px;
  top: 1.52em;
  width: 7px;
  height: 7px;
  box-shadow: 0 0 0 5px rgba(165,140,112,.09);
}

/* Every section introduction follows one vertical editorial hierarchy. */
.section-heading,
.split-heading,
.services-heading,
.gallery-heading,
.testimonial-header {
  display: flex;
  width: 100%;
  max-width: 960px;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.section-heading > div,
.testimonial-intro {
  display: flex;
  max-width: 900px;
  flex-direction: column;
  align-items: flex-start;
}

.section-heading .eyebrow,
.testimonial-header .eyebrow {
  margin-bottom: 20px;
}

.split-heading h2,
.services-heading h2,
.gallery-heading h2,
.testimonial-intro h2 {
  max-width: 880px;
}

.split-heading > p,
.services-heading > p:last-child,
.testimonial-intro > p:not(.eyebrow) {
  max-width: 650px;
  margin: 26px 0 0;
  color: #625e58;
  font-size: 16px;
  line-height: 1.72;
}

.gallery-heading {
  max-width: none;
}

.gallery-heading > div {
  max-width: 900px;
}

.gallery-filters {
  justify-content: flex-start;
  margin-top: 30px;
}

.testimonial-header {
  margin-bottom: 48px;
}

.testimonial-controls {
  margin-top: 28px;
}

/* Keep the built-for-life heading, subheading and copy in one column. */
.statement-grid {
  grid-template-columns: 1fr;
  gap: 26px;
}

.statement-heading-block,
.statement-copy-block {
  max-width: 850px;
}

.statement-copy-block {
  padding-top: 0;
}

.statement-copy-block p {
  max-width: 680px;
}

.statement-grid ul {
  grid-column: 1;
  width: 100%;
  margin-top: 20px;
}

/* Featured project copy also follows the same vertical reading order. */
.project-content {
  display: flex;
  max-width: min(1380px, calc(100vw - 80px));
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0;
}

.project-content > .eyebrow {
  margin-bottom: 20px;
}

.project-content > div {
  max-width: 820px;
}

.project-content dl {
  display: grid;
  width: min(820px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
}

.project-content dl div {
  padding: 8px 22px;
  border-top: 0;
  border-left: 1px solid rgba(255,255,255,.16);
}

.project-content dl div:first-child {
  padding-left: 0;
  border-left: 0;
}

/* How it works: icon-led, clearer and easier to scan. */
.process .section-heading {
  margin-bottom: 54px;
}

.process-track {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.process-step {
  position: relative;
  min-height: 300px;
  padding: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, #f2efe8 0%, #faf8f4 100%);
}

.process-step::before {
  display: none;
}

.process-step::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--oak), rgba(165,140,112,.1));
  opacity: .82;
}

.process-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.process-icon {
  display: grid;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  place-items: center;
  border: 1px solid rgba(120,100,79,.22);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  color: var(--oak-dark);
  box-shadow: 0 10px 26px rgba(45,38,31,.07);
  transition: transform .3s var(--ease), background-color .3s var(--ease), color .3s var(--ease);
}

.process-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-step .number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(120,100,79,.18);
  border-radius: 50%;
  background: rgba(165,140,112,.07);
  color: var(--oak-dark);
  font-size: 10px;
  letter-spacing: .14em;
}

.process-step h3 {
  max-width: 100%;
  margin: 32px 0 14px;
  font-size: clamp(25px, 2.2vw, 32px);
  line-height: 1.08;
}

.process-step p {
  max-width: 370px;
  margin: 0;
  color: #68635d;
  font-size: 14px;
  line-height: 1.7;
}

.process-step:hover .process-icon {
  transform: translateY(-3px) rotate(-2deg);
  background: var(--charcoal);
  color: var(--warm-white);
}

@media (max-width: 1180px) {
  .section-heading,
  .split-heading,
  .services-heading,
  .gallery-heading,
  .testimonial-header {
    max-width: 880px;
  }

  .statement-grid ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .project-content {
    max-width: calc(100% - 48px);
  }

  .project-content dl {
    grid-template-columns: 1fr;
  }

  .project-content dl div,
  .project-content dl div:first-child {
    padding: 13px 0;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.16);
  }

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

@media (max-width: 640px) {
  .intro-points li {
    padding: 13px 0 13px 24px;
    font-size: 14px;
  }

  .intro-points li::before {
    top: 1.45em;
  }

  .section-heading,
  .testimonial-header {
    margin-bottom: 42px;
  }

  .gallery-filters,
  .testimonial-controls {
    margin-top: 22px;
  }

  .statement-grid ul,
  .process-track {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 0;
    padding: 24px;
  }

  .process-icon {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
    border-radius: 16px;
  }

  .process-icon svg {
    width: 28px;
    height: 28px;
  }

  .process-step h3 {
    margin-top: 26px;
  }
}
