:root {
  --cream: #f3ede4;
  --paper: #faf7f1;
  --blue: #829bb4;
  --red: #873c2c;
  --olive: #63634b;
  --ink: #342f2b;
  --white: #fff;
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial,Helvetica,sans-serif;
  color: var(--ink);
  background: var(--cream);
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  padding: 18px 4.5%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  /* Very subtle background while at top */
  background: rgba(30, 31, 29, 0.08);
  color: white;

  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);

  transition:
    transform .34s ease,
    background .3s ease,
    box-shadow .3s ease,
    backdrop-filter .3s ease;
}

.site-header.header-hidden {
  transform: translateY(-105%);
}

.site-header.header-scrolled {
  /* Darker navbar once scrolling */
  background: rgba(51, 46, 41, .92);

  box-shadow: 0 8px 28px rgba(0, 0, 0, .13);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.brand img {
  width: 120px;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 16px;
}

.nav>a,.dropdown>button {
  color: white;
  text-decoration: none;
  background: none;
  border: 0;
  font: inherit;
  padding: 10px 0;
  cursor: pointer;
}

.dropdown>button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}

.nav-chevron {
  width: 8px;
  height: 8px;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transform-origin: center;
  transition: transform .2s ease;
}

.dropdown:hover .nav-chevron,.dropdown:focus-within .nav-chevron {
  transform: rotate(225deg) translate(-1px,-1px);
}

.nav .active {
  border-bottom: 1px solid white;
}

.nav-cta {
  border: 2px solid white !important;
  border-radius: 999px !important;
  padding: 15px 24px !important;
  background: var(--red) !important;
  text-transform: uppercase;
  font-weight: 700;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 42px;
  right: 0;
  min-width: 230px;
  padding: 8px 0;
  background: #332e29;
  text-align: right;
}

.dropdown:hover .dropdown-menu,.dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 8px 18px;
}

.menu-toggle {
  display: none;
}

.hero {
  height: 100vh;
  min-height: 650px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(30,28,25,.27);
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding-top: 90px;
}

.hero h1 {
  font-size: clamp(48px,5.2vw,82px);
  font-weight: 400;
  margin: 0 0 65px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn,.small-btn {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  transition: .2s transform,.2s opacity;
}

.btn:hover,.small-btn:hover {
  transform: translateY(-2px);
  opacity: .92;
}

.btn {
  padding: 20px 46px;
  min-width: 220px;
  text-align: center;
}

.btn-light {
  background: #fff;
  color: #302d29;
  border: 2px solid #302d29;
}

.btn-red {
  background: var(--red);
  color: white;
  border: 2px solid white;
}

.btn-blue {
  background: var(--blue);
  color: white;
}

.btn-olive {
  background: var(--olive);
  color: white;
}

.btn-outline {
  border: 2px solid var(--blue);
  color: var(--blue);
  margin-left: 10px;
}

.btn-light-blue {
  background: #f8f4ed;
  color: var(--blue);
}

.section {
  padding: 90px 4%;
}

.values {
  padding-top: 120px;
  padding-bottom: 120px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  max-width: 1400px;
  margin: auto;
}

.value-card {
  background: white;
  border: 1px solid #ded5ca;
  border-radius: 20px;
  padding: 55px 60px;
  min-height: 320px;
  box-shadow: 0 2px 8px #00000010;
}

.value-card img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.value-card h3 {
  font-size: 28px;
  margin: 20px 0 10px;
}

.value-card p {
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
}

.projects {
  background: var(--paper);
  overflow: hidden;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section h2 {
  font-size: clamp(42px,4vw,68px);
  font-weight: 400;
  margin: 0 0 55px;
  color: var(--olive);
}

.project-carousel {
  display: grid;
  grid-template-columns: 72px minmax(0,1fr) 72px;
  align-items: center;
  gap: 18px;
}

.project-arrow,.quote-arrow {
  border: 0;
  background: var(--olive);
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform .2s ease,opacity .2s ease;
}

.project-arrow:hover,.quote-arrow:hover {
  transform: scale(1.06);
  opacity: .92;
}

.project-arrow.prev {
  justify-self: start;
}

.project-arrow.next {
  justify-self: end;
}

.project-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 35px;
}

.project-track::-webkit-scrollbar {
  display: none;
}

.project-card {
  flex: 0 0 calc((100% - 20px)/2);
  scroll-snap-align: start;
}

.project-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.project-card h3 {
  font-size: 22px;
  margin: 22px 0 6px;
  font-weight: 400;
}

.project-card p {
  margin: 0 0 24px;
}

.small-btn {
  padding: 15px 25px;
  background: var(--olive);
  color: #fff;
  font-size: 14px;
}

.center {
  text-align: center;
  margin-top: 20px;
}

.about-grid {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-photo img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  border-radius: 42px;
}

.about-small {
  width: 75%;
  height: 230px;
  object-fit: cover;
  border-radius: 32px;
  margin-left: 5%;
}

.about-copy h2 {
  color: var(--blue);
  line-height: .95;
  margin: 55px 0 20px;
}

.about-copy h2 span {
  text-decoration: underline;
}

.about-copy p {
  font-size: 22px;
  line-height: 1.55;
  max-width: 600px;
}

.process h2 {
  color: var(--red);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 65px;
}

.process-grid article {
  background: #fff;
  border: 1px solid #d8cfc4;
  border-radius: 22px;
  min-height: 200px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 8px #0002;
}

.process-grid b {
  display: block;
  color: var(--red);
  font-size: 26px;
  margin-bottom: 38px;
}

.process-grid span {
  font-size: 25px;
}

.process-link {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 55px auto 0;
  font-size: 23px;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
}

.testimonials {
  background: var(--paper);
  padding-top: 120px;
  padding-bottom: 120px;
}

.testimonial-wrap {
  display: grid;
  grid-template-columns: 90px 1fr 90px;
  align-items: center;
  gap: 30px;
}

.testimonial-wrap blockquote {
  max-width: 900px;
  margin: auto;
  transition: opacity .28s ease,transform .28s ease;
}

.testimonial-wrap blockquote.quote-out {
  opacity: 0;
  transform: translateX(18px);
}

.testimonial-wrap blockquote.quote-in {
  animation: quoteIn .38s ease both;
}

@keyframes quoteIn {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.testimonial-wrap p {
  font-size: clamp(30px,3vw,48px);
  line-height: 1.08;
  margin: 0 0 20px;
}

.testimonial-wrap cite {
  font-style: normal;
  font-size: 20px;
}

.guide {
  padding-top: 140px;
  padding-bottom: 140px;
}

.guide-card {
  max-width: 1180px;
  margin: auto;
  background: white;
  border: 1px solid #d7cec3;
  border-radius: 22px;
  padding: 70px 65px;
  box-shadow: 0 2px 8px #0002;
}

.guide-card h2 {
  color: var(--ink);
  font-size: clamp(36px,4vw,58px);
  margin-bottom: 18px;
}

.guide-card p {
  font-size: 20px;
  margin-bottom: 50px;
}

.cta {
  background: var(--blue);
  color: white;
  text-align: center;
  border-radius: 26px 26px 0 0;
  padding: 110px 20%;
}

.cta h2 {
  color: white;
  margin-bottom: 25px;
}

.cta p {
  font-size: 22px;
  line-height: 1.5;
  margin: 0 auto 55px;
  max-width: 850px;
}

footer {
  padding: 55px 11% 10px;
  background: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 70px;
}

.footer-grid h3 {
  font-size: 25px;
  margin-top: 0;
}

.footer-grid p {
  font-size: 18px;
  line-height: 1.55;
}

.footer-grid .blue {
  color: var(--blue);
}

.footer-grid .red {
  color: var(--red);
}

.footer-grid .olive {
  color: var(--olive);
}

.copyright {
  text-align: center;
  margin: 55px 0 0;
  font-size: 17px;
}

@media(max-width:900px) {
  .site-header {
    height: 82px;
    padding: 12px 20px;
  }

  .site-header.header-scrolled {
    background: rgba(51,46,41,.96);
  }

  .brand img {
    width: 95px;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    z-index: 3;
  }

  .menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: #fff;
  }

  .nav {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: min(88vw,390px);
    min-height: 100vh;
    padding: 100px 30px 40px;
    background: #332e29;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .nav.open {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    text-align: left;
    background: #49423b;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: 620px;
    height: 90vh;
  }

  .hero-content {
    padding: 100px 20px 0;
  }

  .hero h1 {
    margin-bottom: 45px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .value-grid,.about-grid,.footer-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 0;
    padding: 35px;
  }

  .project-carousel {
    grid-template-columns: 44px minmax(0,1fr) 44px;
    gap: 6px;
  }

  .project-arrow {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .project-card {
    flex-basis: calc((100% - 20px)/2);
  }

  .about-grid {
    gap: 35px;
  }

  .about-photo img {
    height: 500px;
  }

  .about-small {
    width: 100%;
    margin: 0;
  }

  .process-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
  }

  .process-grid article {
    min-width: 220px;
  }

  .testimonial-wrap {
    grid-template-columns: 55px 1fr 55px;
    gap: 8px;
  }

  .quote-arrow {
    width: 48px;
    height: 48px;
  }

  .guide-card {
    padding: 45px 28px;
  }

  .guide-card .btn {
    display: block;
    margin: 10px 0;
  }

  .cta {
    padding: 80px 28px;
  }

  .footer-grid {
    gap: 25px;
  }

  .section {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.reveal,.reveal-left,.reveal-right {
  opacity: 0;
  transition: opacity .72s cubic-bezier(.2,.7,.2,1),transform .72s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay,0ms);
}

.reveal {
  transform: translateY(34px);
}

.reveal-left {
  transform: translateX(-38px);
}

.reveal-right {
  transform: translateX(38px);
}

.reveal.revealed,.reveal-left.revealed,.reveal-right.revealed {
  opacity: 1;
  transform: none;
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-header,.reveal,.reveal-left,.reveal-right,.testimonial-wrap blockquote,.project-arrow,.quote-arrow {
    transition: none !important;
    animation: none !important;
  }

  .reveal,.reveal-left,.reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media(max-width:700px) {
  .project-card {
    flex-basis: 100%;
  }

  .project-track {
    gap: 14px;
  }

  .project-carousel {
    grid-template-columns: 40px minmax(0,1fr) 40px;
  }

  .project-arrow {
    width: 38px;
    height: 38px;
  }
}

/* About page */

.inner-page {
  background: var(--cream);
}

.inner-header {
  background: rgba(51,46,41,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.about-hero {
  padding-top: 190px;
  padding-bottom: 105px;
  background: var(--paper);
}

.about-hero-inner {
  max-width: 1050px;
  margin: auto;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 24px;
}

.red-text {
  color: var(--red);
}

.about-hero h1 {
  font-size: clamp(52px,6vw,88px);
  font-weight: 400;
  line-height: 1.02;
  margin: 0 0 30px;
}

.about-hero .lead {
  max-width: 800px;
  margin: auto;
  font-size: 22px;
  line-height: 1.6;
}

.story {
  background: var(--cream);
}

.story-grid {
  max-width: 1320px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 90px;
  align-items: center;
}

.story-image img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  border-radius: 38px;
}

.story-copy h2 {
  color: var(--blue);
  line-height: 1.04;
  margin: 0 0 28px;
}

.story-copy p:not(.eyebrow) {
  font-size: 20px;
  line-height: 1.65;
  margin: 0 0 20px;
}

.story-copy .btn {
  margin-top: 22px;
}

.family-story {
  background: #fff;
}

.family-heading {
  max-width: 920px;
  margin: 0 auto 65px;
  text-align: center;
}

.family-heading h2 {
  margin-bottom: 25px;
}

.family-heading>p:last-child {
  font-size: 20px;
  line-height: 1.65;
}

.family-gallery {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 18px;
  align-items: center;
}

.family-gallery img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 24px;
}

.family-gallery img:nth-child(2) {
  height: 530px;
}

.about-quote {
  background: var(--paper);
  text-align: center;
  padding-top: 130px;
  padding-bottom: 130px;
}

.about-quote blockquote {
  max-width: 1050px;
  margin: 0 auto 25px;
  font-size: clamp(38px,4.3vw,66px);
  line-height: 1.13;
  font-weight: 400;
  color: var(--olive);
}

.about-quote p {
  font-size: 19px;
  margin: 0;
}

.trust {
  background: var(--cream);
}

.trust-intro {
  max-width: 850px;
  margin: 0 auto 60px;
  text-align: center;
}

.trust-intro h2 {
  margin-bottom: 25px;
  color: var(--red);
}

.trust-intro>p:last-child {
  font-size: 20px;
  line-height: 1.6;
}

.trust-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}

.trust-grid article {
  background: #fff;
  border: 1px solid #ded5ca;
  border-radius: 22px;
  padding: 44px 40px;
  min-height: 285px;
}

.trust-grid span {
  display: block;
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .12em;
  margin-bottom: 36px;
}

.trust-grid h3 {
  font-size: 27px;
  margin: 0 0 14px;
}

.trust-grid p {
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
}

@media(max-width:900px) {
  .about-hero {
    padding-top: 145px;
    padding-bottom: 75px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .story-image img {
    height: 540px;
  }

  .family-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .family-gallery img,.family-gallery img:nth-child(2) {
    height: 360px;
  }

  .family-gallery img:last-child {
    grid-column: 1/-1;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .inner-header {
    background: rgba(51,46,41,.96);
  }
}

@media(max-width:600px) {
  .about-hero .lead {
    font-size: 19px;
  }

  .story-image img {
    height: 430px;
    border-radius: 26px;
  }

  .story-copy p:not(.eyebrow),.family-heading>p:last-child,.trust-intro>p:last-child {
    font-size: 18px;
  }

  .family-gallery {
    grid-template-columns: 1fr;
  }

  .family-gallery img,.family-gallery img:nth-child(2),.family-gallery img:last-child {
    height: 320px;
    grid-column: auto;
  }

  .about-quote {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .trust-grid article {
    padding: 34px 28px;
    min-height: 0;
  }
}

/* editorial experiment */

@media (min-width: 801px) {
  .home-v3 .values {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .home-v3 .value-grid {
    display: grid;
    grid-template-columns: minmax(280px,.85fr) minmax(420px,1.15fr);
    gap: 7vw;
    align-items: start;
  }

  .home-v3 .values-intro {
    grid-row: 1 / span 3;
    position: sticky;
    top: 130px;
  }

  .home-v3 .values-intro h2 {
    font-size: clamp(3rem,5vw,5.6rem);
    line-height: .95;
    margin: .25rem 0 1.5rem;
    font-weight: 500;
    letter-spacing: -.045em;
  }

  .home-v3 .values-intro p {
    max-width: 520px;
    font-size: 1.15rem;
    line-height: 1.65;
  }

  .home-v3 .value-card {
    display: grid;
    grid-template-columns: 70px 1fr;
    column-gap: 1.5rem;
    padding: 1.8rem 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    border-top: 1px solid rgba(55,52,49,.22);
  }

  .home-v3 .value-card:last-child {
    border-bottom: 1px solid rgba(55,52,49,.22);
  }

  .home-v3 .value-card img {
    grid-row: 1 / span 2;
    width: 54px;
    margin: 0;
  }

  .home-v3 .value-card h3,.home-v3 .value-card p {
    margin-left: 0;
  }

  .home-v3 .projects {
    padding-top: 7rem;
    padding-bottom: 8rem;
    overflow: hidden;
  }

  .home-v3 .projects .section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
  }

  .home-v3 .projects .section-head h2 {
    font-size: clamp(3rem,5vw,5.5rem);
    letter-spacing: -.045em;
  }

  .home-v3 .projects .section-head:after {
    content: 'Selected homes across Melbourne';
    font-size: 1rem;
    margin-bottom: .65rem;
    opacity: .68;
  }

  .home-v3 .project-track {
    display: grid;
    grid-template-columns: 1.65fr .85fr;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
    overflow: visible;
  }

  .home-v3 .project-card {
    min-width: 0 !important;
    width: auto !important;
    background: transparent;
  }

  .home-v3 .project-card:nth-child(n+4) {
    display: none;
  }

  .home-v3 .project-card:first-child {
    grid-row: 1 / span 2;
  }

  .home-v3 .project-card img {
    width: 100%;
    height: 100%;
    min-height: 270px;
    aspect-ratio: auto;
    object-fit: cover;
    border-radius: 24px;
  }

  .home-v3 .project-card:first-child img {
    min-height: 680px;
  }

  .home-v3 .project-card h3 {
    margin-top: 1rem;
  }

  .home-v3 .project-carousel .project-arrow {
    display: none;
  }

  .home-v3 .projects .center {
    text-align: right;
    margin-top: 2.5rem;
  }

  .home-v3 .about {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .home-v3 .about-grid {
    grid-template-columns: 1.08fr .92fr;
    gap: 7vw;
    align-items: center;
  }

  .home-v3 .about-photo {
    transform: translateX(-3vw);
  }

  .home-v3 .about-photo img {
    border-radius: 28px;
    min-height: 720px;
    object-fit: cover;
  }

  .home-v3 .about-copy {
    position: relative;
    padding: 4rem 0;
  }

  .home-v3 .about-small {
    position: absolute;
    width: 52%;
    height: 230px;
    object-fit: cover;
    right: -4vw;
    top: -90px;
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(0,0,0,.12);
  }

  .home-v3 .about-copy h2 {
    font-size: clamp(3.2rem,5.3vw,6rem);
    line-height: .92;
    letter-spacing: -.05em;
  }

  .home-v3 .about-copy p {
    max-width: 580px;
    font-size: 1.18rem;
    line-height: 1.7;
  }

  .home-v3 .process {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .home-v3 .process h2 {
    font-size: clamp(3rem,5vw,5.5rem);
  }

  .home-v3 .process-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 0;
    position: relative;
    margin-top: 4rem;
  }

  .home-v3 .process-grid:before {
    content: '';
    position: absolute;
    left: 8%;
    right: 8%;
    top: 31px;
    height: 1px;
    background: rgba(55,52,49,.35);
  }

  .home-v3 .process-grid article {
    border: 0;
    box-shadow: none;
    background: transparent;
    min-height: 190px;
    padding: 0 1rem;
    text-align: center;
    position: relative;
  }

  .home-v3 .process-grid article b {
    display: flex;
    width: 62px;
    height: 62px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #f7f3eb;
    border: 1px solid rgba(55,52,49,.4);
    position: relative;
    z-index: 1;
    font-size: .88rem;
  }

  .home-v3 .process-grid article span {
    font-size: 1.18rem;
    line-height: 1.25;
  }

  .home-v3 .testimonials {
    padding: 10rem 6vw;
  }

  .home-v3 .testimonials h2 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    opacity: .65;
  }

  .home-v3 .testimonial-wrap {
    max-width: 1250px;
    margin: 2.5rem auto 0;
    grid-template-columns: 72px 1fr 72px;
  }

  .home-v3 .testimonial-wrap blockquote p {
    font-size: clamp(2.2rem,4.4vw,5rem);
    line-height: 1.05;
    letter-spacing: -.04em;
  }

  .home-v3 .testimonial-wrap cite {
    font-size: 1.05rem;
    margin-top: 2rem;
  }
}

@media (max-width:800px) {
  .home-v3 .values-intro {
    margin-bottom: 2.5rem;
  }

  .home-v3 .values-intro h2 {
    font-size: 3rem;
    line-height: 1;
    letter-spacing: -.04em;
  }

  .home-v3 .values-intro p {
    line-height: 1.6;
  }

  .home-v3 .value-card {
    box-shadow: none;
    border-radius: 0;
    border-top: 1px solid rgba(55,52,49,.2);
    background: transparent;
    padding: 1.6rem 0;
  }

  .home-v3 .project-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    overflow: visible;
  }

  .home-v3 .project-card {
    min-width: 0 !important;
    width: 100% !important;
  }

  .home-v3 .project-card:nth-child(n+4) {
    display: none;
  }

  .home-v3 .project-card img {
    aspect-ratio: 1/1;
    border-radius: 20px;
  }

  .home-v3 .project-carousel .project-arrow {
    display: none;
  }

  .home-v3 .about-small {
    width: 55%;
    margin: -70px 0 2rem auto;
    position: relative;
    z-index: 2;
  }

  .home-v3 .process-grid {
    display: block;
    margin-left: 1rem;
    border-left: 1px solid rgba(55,52,49,.3);
  }

  .home-v3 .process-grid article {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    min-height: 0;
    padding: 1rem 0 1rem 1.5rem;
    border: 0;
    box-shadow: none;
    background: transparent;
    text-align: left;
  }

  .home-v3 .process-grid article b {
    min-width: 62px;
  }

  .home-v3 .testimonials {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .home-v3 .testimonial-wrap blockquote p {
    font-size: 2rem;
    line-height: 1.12;
  }
}

/* fixes */

@media (min-width: 801px) {
  /* The carousel arrows are hidden in the editorial layout, so let the
     project showcase occupy the entire carousel grid instead of the old
     72px arrow column. */

  .home-v3 .projects .project-track {
    grid-column: 1 / -1;
    width: 100%;
  }

  /* Keep the Why Tapia Homes intro visible and give it a little more presence. */

  .home-v3 .values-intro {
    align-self: start;
  }

  .home-v3 .values-intro .eyebrow {
    margin-bottom: 18px;
  }

  /* Larger, clearer timeline copy. */

  .home-v3 .process-grid article b {
    width: 68px;
    height: 68px;
    font-size: 1rem;
    margin-bottom: 2.2rem;
  }

  .home-v3 .process-grid:before {
    top: 34px;
  }

  .home-v3 .process-grid article span {
    font-size: 1.4rem;
    line-height: 1.22;
    font-weight: 500;
  }

  .home-v3 .process-link {
    font-size: 1.35rem;
    margin-top: 3.5rem;
  }
}

@media (max-width: 800px) {
  .home-v3 .projects .project-track {
    grid-column: 1 / -1;
    width: 100%;
  }

  .home-v3 .process-grid article span {
    font-size: 1.25rem;
    font-weight: 500;
  }
}

/* architectural reset */

.home-v4 {
  --v4-white: #fff;
  --v4-off: #f6f6f4;
  --v4-light: #ececea;
  --v4-mid: #a5a5a0;
  --v4-char: #2f302d;
  --v4-line: #d6d6d2;
  background: var(--v4-white);
  color: var(--v4-char);
}

.home-v4 .brand img {
  width: 116px;
}

.home-v4 .nav {
  gap: 19px;
  font-size: 14px;
}

.home-v4 .nav-cta {
  border: 1px solid #fff !important;
  border-radius: 2px !important;
  padding: 12px 18px !important;
  background: rgba(255,255,255,.08) !important;
  letter-spacing: .05em;
}

.home-v4 .nav-phone {
  font-size: 12px;
  text-transform: none;
  letter-spacing: .07em;
  border-left: 1px solid rgba(255,255,255,.45);
  padding-left: 19px !important;
}

.home-v4 .dropdown-menu {
  background: #2f302d;
}

.home-v4 .hero {
  min-height: 720px;
}

.home-v4 .hero-shade {
  background: linear-gradient(90deg,rgba(17,18,16,.45),rgba(17,18,16,.12) 60%,rgba(17,18,16,.16));
}

.home-v4 .hero-content {
  text-align: left;
  width: min(1180px,84vw);
  padding-top: 100px;
}

.home-v4 .hero-kicker {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  margin: 0 0 22px;
}

.home-v4 .hero h1 {
  font-size: clamp(58px,7vw,104px);
  line-height: .92;
  letter-spacing: -.045em;
  margin: 0 0 46px;
  font-weight: 400;
}

.home-v4 .hero-actions {
  justify-content: flex-start;
  gap: 10px;
}

.home-v4 .btn {
  border-radius: 2px;
  min-width: 0;
  padding: 15px 24px;
  font-size: 12px;
  letter-spacing: .07em;
}

.home-v4 .btn-light {
  border: 1px solid #fff;
  background: #fff;
}

.home-v4 .btn-red {
  border: 1px solid rgba(255,255,255,.8);
  background: transparent;
}

.home-v4 .scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 8vw;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .18em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-v4 .scroll-cue span {
  display: block;
  width: 38px;
  height: 1px;
  background: #fff;
}

.home-v4 .section {
  padding: 110px 7vw;
}

.home-v4 .eyebrow {
  color: #777873;
  font-size: 11px;
  letter-spacing: .19em;
  margin-bottom: 18px;
}

.home-v4 .v4-why {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 10vw;
  background: #fff;
  align-items: start;
}

.home-v4 .v4-why-intro {
  position: sticky;
  top: 140px;
}

.home-v4 .v4-why h2,.home-v4 .v4-section-heading h2,.home-v4 .v4-about h2,.home-v4 .v4-guide h2 {
  color: var(--v4-char);
  font-size: clamp(42px,4.7vw,72px);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 400;
  margin: 0 0 24px;
}

.home-v4 .v4-why-intro>p:last-child {
  font-size: 17px;
  line-height: 1.7;
  max-width: 500px;
  color: #60615d;
}

.home-v4 .v4-proof-list {
  border-top: 1px solid var(--v4-line);
}

.home-v4 .v4-proof {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
  padding: 31px 0;
  border-bottom: 1px solid var(--v4-line);
}

.home-v4 .v4-proof>span {
  font-size: 11px;
  color: #8a8b86;
  padding-top: 5px;
}

.home-v4 .v4-proof h3 {
  font-size: 21px;
  font-weight: 500;
  margin: 0 0 8px;
}

.home-v4 .v4-proof p {
  font-size: 15px;
  line-height: 1.6;
  color: #696a66;
  margin: 0;
  max-width: 520px;
}

.home-v4 .v4-image-break {
  height: 72vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.home-v4 .v4-image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-v4 .v4-image-break:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(20,21,19,.46),transparent 50%);
}

.home-v4 .v4-image-break>div {
  position: absolute;
  z-index: 2;
  left: 7vw;
  bottom: 60px;
  color: #fff;
  max-width: 610px;
}

.home-v4 .v4-image-break span {
  display: block;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 10px;
  margin-bottom: 15px;
}

.home-v4 .v4-image-break strong {
  font-size: clamp(30px,3.5vw,54px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -.03em;
}

.home-v4 .v4-projects {
  background: var(--v4-off);
  padding-top: 105px;
  padding-bottom: 105px;
}

.home-v4 .v4-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 52px;
}

.home-v4 .v4-section-heading h2 {
  margin-bottom: 0;
}

.home-v4 .text-link {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .09em;
  text-decoration: none;
  border-bottom: 1px solid #858681;
  padding-bottom: 6px;
}

.home-v4 .text-link span {
  margin-left: 8px;
}

.home-v4 .project-carousel {
  grid-template-columns: 36px minmax(0,1fr) 36px;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.home-v4 .project-track {
  display: flex;
  gap: 18px;
  overflow: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.home-v4 .project-track::-webkit-scrollbar {
  display: none;
}

.home-v4 .project-card {
  flex: 0 0 calc(50% - 9px);
  min-width: 0;
  scroll-snap-align: start;
  background: transparent;
}

.home-v4 .project-card>a {
  display: block;
  overflow: hidden;
}

.home-v4 .project-card img {
  width: 100%;
  aspect-ratio: 1.22/1;
  object-fit: cover;
  border-radius: 0;
  display: block;
  transition: transform .6s ease;
}

.home-v4 .project-card>a:hover img {
  transform: scale(1.025);
}

.home-v4 .project-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid #cfcfcb;
  margin-top: 16px;
  padding-top: 14px;
}

.home-v4 .project-card h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 5px;
}

.home-v4 .project-card p {
  font-size: 12px;
  color: #777873;
  margin: 0;
}

.home-v4 .project-meta>a {
  font-size: 20px;
  text-decoration: none;
}

.home-v4 .project-arrow {
  width: 30px;
  height: 30px;
  border-radius: 0;
  background: transparent;
  color: var(--v4-char);
  border: 1px solid #a9aaa5;
  font-size: 14px;
}

.home-v4 .project-arrow:hover {
  background: var(--v4-char);
  color: #fff;
  transform: none;
}

.home-v4 .v4-about {
  background: #fff;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 8vw;
  align-items: center;
}

.home-v4 .v4-about-copy {
  padding-left: 4vw;
}

.home-v4 .v4-about-copy>p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.75;
  color: #62635f;
  max-width: 530px;
}

.home-v4 .text-link.strong {
  display: inline-block;
  margin-top: 22px;
  color: var(--v4-char);
  font-weight: 700;
}

.home-v4 .v4-about-image {
  position: relative;
}

.home-v4 .v4-about-image img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  display: block;
}

.home-v4 .image-note {
  position: absolute;
  left: -48px;
  bottom: 34px;
  background: #fff;
  padding: 18px 22px;
  font-size: 11px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: .12em;
  border-left: 3px solid var(--blue);
}

.home-v4 .v4-process {
  background: var(--v4-light);
}

.home-v4 .v4-process .section-summary {
  max-width: 410px;
  font-size: 15px;
  line-height: 1.65;
  color: #656662;
  margin: 0;
}

.home-v4 .process-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  position: relative;
  margin: 70px 0 38px;
}

.home-v4 .process-grid:before {
  content: '';
  position: absolute;
  left: 5%;
  right: 5%;
  top: 19px;
  height: 1px;
  background: #b7b8b3;
}

.home-v4 .process-grid article {
  position: relative;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: left;
  padding: 0 14px;
  min-height: 100px;
}

.home-v4 .process-grid article b {
  position: relative;
  z-index: 2;
  display: flex;
  width: 39px;
  height: 39px;
  align-items: center;
  justify-content: center;
  border: 1px solid #8e8f8a;
  background: var(--v4-light);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 500;
  margin-bottom: 22px;
}

.home-v4 .process-grid article span {
  font-size: 17px;
  line-height: 1.25;
  font-weight: 500;
}

.home-v4 .process-link {
  margin-left: 14px;
}

.home-v4 .v4-testimonials {
  background: #fff;
  padding-top: 95px;
  padding-bottom: 95px;
}

.home-v4 .quote-label {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto 34px;
  border-bottom: 1px solid var(--v4-line);
}

.home-v4 .quote-count {
  font-size: 10px;
  color: #888984;
  letter-spacing: .12em;
}

.home-v4 .testimonial-wrap {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  gap: 34px;
  align-items: center;
  max-width: 980px;
  margin: auto;
}

.home-v4 .testimonial-wrap blockquote {
  margin: 0;
}

.home-v4 .testimonial-wrap blockquote p {
  font-size: clamp(25px,2.7vw,40px);
  line-height: 1.27;
  letter-spacing: -.025em;
  margin: 0;
  color: var(--v4-char);
  font-weight: 400;
}

.home-v4 .testimonial-wrap cite {
  display: block;
  font-style: normal;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 28px;
  color: #73746f;
}

.home-v4 .quote-arrow {
  width: 30px;
  height: 30px;
  border-radius: 0;
  background: transparent;
  color: var(--v4-char);
  border: 1px solid #aaa;
  font-size: 14px;
}

.home-v4 .quote-arrow:hover {
  background: var(--v4-char);
  color: #fff;
  transform: none;
}

.home-v4 .v4-guide {
  background: #333430;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  overflow: hidden;
}

.home-v4 .v4-guide .eyebrow {
  color: #b9bab5;
}

.home-v4 .v4-guide h2 {
  color: #fff;
  font-size: clamp(36px,4vw,60px);
}

.home-v4 .guide-inner>p:not(.eyebrow) {
  font-size: 16px;
  color: #d0d1cc;
  margin: 0 0 30px;
}

.home-v4 .btn-dark {
  background: #fff;
  color: #30312e;
}

.home-v4 .v4-guide .text-link {
  color: #fff;
  border-color: #8b8c87;
  margin-left: 22px;
}

.home-v4 .guide-number {
  font-size: 210px;
  line-height: .72;
  color: rgba(255,255,255,.06);
  font-weight: 700;
  letter-spacing: -.08em;
}

.home-v4 .v4-cta {
  height: 78vh;
  min-height: 610px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home-v4 .v4-cta>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-v4 .cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25,26,23,.56);
}

.home-v4 .cta-content {
  position: relative;
  color: #fff;
  text-align: center;
  max-width: 800px;
  padding: 30px;
}

.home-v4 .cta-content .eyebrow {
  color: #ddd;
}

.home-v4 .cta-content h2 {
  font-size: clamp(42px,5.5vw,78px);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 400;
  margin: 0 0 24px;
}

.home-v4 .cta-content>p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.6;
  margin: 0 auto 36px;
  max-width: 560px;
}

.home-v4 .btn-white {
  background: #fff;
  color: #2f302d;
  border: 1px solid #fff;
}

.home-v4 .btn-ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,.75);
  margin-left: 8px;
}

.home-v4 footer {
  background: #f4f4f2;
}

@media(max-width:1050px) {
  .home-v4 .nav-phone {
    display: none;
  }

  .home-v4 .nav {
    gap: 15px;
  }

  .home-v4 .v4-about {
    grid-template-columns: 1fr 1fr;
  }

  .home-v4 .v4-about-copy {
    padding-left: 0;
  }

  .home-v4 .v4-about-image img {
    height: 570px;
  }
}

@media(max-width:800px) {
  .home-v4 .site-header {
    height: 78px;
  }

  .home-v4 .brand img {
    width: 100px;
  }

  .home-v4 .hero-content {
    width: 86vw;
  }

  .home-v4 .hero h1 {
    font-size: 58px;
  }

  .home-v4 .hero-actions {
    flex-wrap: wrap;
  }

  .home-v4 .section {
    padding: 78px 7vw;
  }

  .home-v4 .v4-why {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .home-v4 .v4-why-intro {
    position: static;
  }

  .home-v4 .v4-image-break {
    height: 62vh;
    min-height: 480px;
  }

  .home-v4 .project-carousel {
    grid-template-columns: 28px minmax(0,1fr) 28px;
    gap: 10px;
  }

  .home-v4 .project-card {
    flex-basis: 100%;
  }

  .home-v4 .project-arrow {
    width: 27px;
    height: 27px;
  }

  .home-v4 .v4-about {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .home-v4 .v4-about-image img {
    height: 500px;
  }

  .home-v4 .image-note {
    left: 18px;
  }

  .home-v4 .v4-section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 38px;
  }

  .home-v4 .process-grid {
    display: block;
    margin: 40px 0;
    border-left: 1px solid #b7b8b3;
  }

  .home-v4 .process-grid:before {
    display: none;
  }

  .home-v4 .process-grid article {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px 0 12px 20px;
    min-height: 0;
  }

  .home-v4 .process-grid article b {
    margin: 0 0 0 -40px;
    min-width: 39px;
  }

  .home-v4 .testimonial-wrap {
    grid-template-columns: 28px 1fr 28px;
    gap: 14px;
  }

  .home-v4 .v4-guide {
    grid-template-columns: 1fr;
  }

  .home-v4 .guide-number {
    display: none;
  }

  .home-v4 .v4-guide .text-link {
    display: inline-block;
    margin: 20px 0 0 0;
  }

  .home-v4 .v4-cta {
    min-height: 620px;
    height: auto;
    padding: 100px 0;
  }

  .home-v4 .btn-ghost {
    margin: 10px 0 0;
  }

  .home-v4 .nav-phone {
    display: block;
    border-left: 0;
    padding-left: 0 !important;
  }
}

/* refinement */

.home-v4 .v4-why {
  grid-template-columns: .82fr 1.18fr;
  gap: 8vw;
  padding-top: 96px;
  padding-bottom: 96px;
  min-height: 0;
}

.home-v4 .v4-why-intro {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.home-v4 .v4-why-intro h2 {
  font-size: clamp(40px,4.25vw,66px);
}

.home-v4 .v4-proof {
  padding: 27px 0;
}

.home-v4 .v4-projects {
  background: #f4f4f2;
  padding-top: 105px;
  padding-bottom: 110px;
}

.home-v4 .v4-projects .v4-section-heading {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.home-v4 .project-carousel {
  grid-template-columns: 32px minmax(0,1fr) 32px;
  gap: 16px;
  max-width: 1400px;
}

.home-v4 .project-track {
  gap: 22px;
}

.home-v4 .project-card {
  flex-basis: calc(50% - 11px);
}

.home-v4 .project-card img {
  aspect-ratio: 1.34/1;
}

.home-v4 .project-arrow,.home-v4 .quote-arrow {
  width: 30px;
  height: 44px;
  border: 0;
  background: transparent;
  font-size: 19px;
  color: #4d4e4a;
  padding: 0;
}

.home-v4 .project-arrow:hover,.home-v4 .quote-arrow:hover {
  background: transparent;
  color: #111;
  transform: none;
}

.home-v4 .v5-visual {
  background: #f1f1ef;
  display: grid;
  grid-template-columns: minmax(0,1.35fr) minmax(300px,.65fr);
  gap: 6vw;
  align-items: center;
  padding-top: 105px;
  padding-bottom: 105px;
}

.home-v4 .v5-visual-main img {
  width: 100%;
  height: clamp(480px,55vw,720px);
  object-fit: cover;
  display: block;
}

.home-v4 .v5-visual-copy {
  padding-right: 2vw;
}

.home-v4 .v5-visual-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(38px,4vw,62px);
  line-height: 1.04;
  letter-spacing: -.04em;
  font-weight: 400;
  color: var(--v4-char);
}

.home-v4 .v5-visual-copy>p:not(.eyebrow) {
  max-width: 410px;
  font-size: 16px;
  line-height: 1.7;
  color: #666762;
  margin: 0 0 30px;
}

.home-v4 .v5-visual-small {
  display: block;
  width: 68%;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin: 54px 0 0 auto;
}

.home-v4 .v4-testimonials {
  padding-top: 85px;
  padding-bottom: 85px;
}

.home-v4 .testimonial-wrap blockquote p {
  font-size: clamp(24px,2.45vw,36px);
  line-height: 1.3;
}

.home-v4 .v4-guide {
  grid-template-columns: 1fr;
}

@media(max-width:800px) {
  .home-v4 .v4-why {
    padding-top: 72px;
    padding-bottom: 72px;
    gap: 36px;
  }

  .home-v4 .project-carousel {
    grid-template-columns: 24px minmax(0,1fr) 24px;
    gap: 7px;
  }

  .home-v4 .project-card {
    flex-basis: 100%;
  }

  .home-v4 .project-arrow,.home-v4 .quote-arrow {
    width: 24px;
    font-size: 18px;
  }

  .home-v4 .v5-visual {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .home-v4 .v5-visual-main img {
    height: 62vh;
    min-height: 430px;
  }

  .home-v4 .v5-visual-copy {
    padding-right: 0;
  }

  .home-v4 .v5-visual-small {
    width: 58%;
    margin-top: 40px;
  }

  .home-v4 .testimonial-wrap blockquote p {
    font-size: 25px;
  }
}

/* refinement */

/* Compact first section — no artificial white void below the proof points. */

.home-v4 .v4-why {
  padding-top: 72px;
  padding-bottom: 72px;
  min-height: auto !important;
  align-items: center;
}

.home-v4 .v4-why-intro {
  position: static !important;
  top: auto !important;
  align-self: center;
}

.home-v4 .v4-proof {
  padding: 22px 0;
}

.home-v4 .v4-proof h3 {
  font-size: 20px;
}

.home-v4 .v4-proof p {
  font-size: 14px;
}

/* Navigation uses the same understated typography language as eyebrow labels. */

.home-v4 .nav,
.home-v4 .dropdown>button,
.home-v4 .nav>a {
  text-transform: none;
  letter-spacing: .13em;
  font-size: 11px;
  font-weight: 700;
}

.home-v4 .nav {
  gap: 18px;
}

.home-v4 .nav-phone {
  font-size: 10px;
  letter-spacing: .13em;
}

.home-v4 .nav-cta {
  font-size: 10px !important;
  letter-spacing: .13em !important;
}

.home-v4 .dropdown-menu a {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: none;
}

/* Footer headings echo eyebrow labels while keeping body copy readable. */

.home-v4 footer {
  background: #f4f4f2;
  padding-top: 58px;
}

.home-v4 .footer-grid h3 {
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 11px;
  font-weight: 700;
  color: #70716c;
  margin-bottom: 20px;
}

.home-v4 .footer-grid h3.blue,
.home-v4 .footer-grid h3.red,
.home-v4 .footer-grid h3.olive {
  color: #70716c;
}

.home-v4 .footer-grid p {
  font-size: 14px;
  line-height: 1.75;
  color: #4f504c;
}

.home-v4 .copyright {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #777873;
}

@media(max-width:800px) {
  .home-v4 .v4-why {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .home-v4 .nav,.home-v4 .dropdown>button,.home-v4 .nav>a {
    font-size: 12px;
  }
}

/* ===== ABOUT V7 — architectural redesign ===== */

.about-v7 {
  background: #fff;
  color: var(--v4-char,#30312e);
}

.about-v7 .site-header {
  background: rgba(39,40,37,.78);
}

.about-v7 .section {
  padding: 105px 7vw;
}

.about-v7-hero {
  height: 84vh;
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.about-v7-hero>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-v7-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(20,21,19,.68) 0%,rgba(20,21,19,.34) 52%,rgba(20,21,19,.10) 100%);
}

.about-v7-hero-copy {
  position: relative;
  z-index: 2;
  color: #fff;
  width: min(900px,78vw);
  margin: 0 0 9vh 7vw;
}

.about-v7-hero-copy .eyebrow {
  color: #deded8;
}

.about-v7-hero-copy h1 {
  font-size: clamp(52px,6vw,92px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 400;
  margin: 0 0 28px;
}

.about-v7-hero-copy>p:not(.eyebrow) {
  font-size: 18px;
  line-height: 1.65;
  max-width: 620px;
  color: #ededeb;
  margin: 0;
}

.about-v7-intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 10vw;
  align-items: start;
  background: #fff;
}

.about-v7-intro h2,.about-v7-story h2,.about-v7-gallery h2,.about-v7-trust h2 {
  font-size: clamp(42px,4.2vw,68px);
  line-height: 1.03;
  letter-spacing: -.04em;
  font-weight: 400;
  color: #30312e;
  margin: 0;
}

.about-v7-intro-copy {
  padding-top: 32px;
  max-width: 620px;
}

.about-v7-intro-copy p {
  font-size: 17px;
  line-height: 1.8;
  color: #5e5f5a;
  margin: 0 0 24px;
}

.about-v7-story {
  background: #f2f2f0;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 7vw;
  align-items: center;
}

.about-v7-story-image img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  display: block;
}

.about-v7-story-copy {
  max-width: 620px;
}

.about-v7-story-copy>p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.78;
  color: #5d5e59;
  margin: 0 0 21px;
}

.about-v7-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #cfd0cc;
  margin-top: 38px;
}

.about-v7-stats>div {
  padding: 27px 26px 0 0;
}

.about-v7-stats>div+div {
  border-left: 1px solid #cfd0cc;
  padding-left: 30px;
}

.about-v7-stats strong {
  display: block;
  font-size: 44px;
  font-weight: 400;
  letter-spacing: -.04em;
  margin-bottom: 7px;
}

.about-v7-stats span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: #70716c;
  line-height: 1.5;
}

.about-v7-gallery {
  background: #fff;
}

.about-v7-gallery-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.about-v7-gallery-heading h2 {
  max-width: 780px;
}

.about-v7-photo-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  grid-template-rows: 360px 360px;
  gap: 18px;
}

.about-v7-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-v7-photo-grid .tall {
  grid-row: 1/3;
}

.about-v7-photo-grid .wide {
  grid-column: 2;
  grid-row: 1;
}

.about-v7-photo-grid .small {
  grid-column: 2;
  grid-row: 2;
}

.about-v7-quote {
  height: 72vh;
  min-height: 580px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-v7-quote>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-v7-quote-shade {
  position: absolute;
  inset: 0;
  background: rgba(25,26,23,.57);
}

.about-v7-quote-copy {
  position: relative;
  z-index: 2;
  color: #fff;
  width: min(1000px,76vw);
  margin-left: 9vw;
}

.about-v7-quote-copy .eyebrow {
  color: #ddd;
}

.about-v7-quote blockquote {
  font-size: clamp(36px,4.5vw,70px);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 400;
  margin: 0 0 32px;
  max-width: 1050px;
}

.about-v7-quote-copy span {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #e0e0dd;
}

.about-v7-trust {
  background: #f2f2f0;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 9vw;
  align-items: start;
}

.about-v7-trust-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid #c9cac5;
}

.about-v7-trust-list article:last-child {
  border-bottom: 1px solid #c9cac5;
}

.about-v7-trust-list article>span {
  font-size: 10px;
  color: #81827d;
  letter-spacing: .08em;
  padding-top: 5px;
}

.about-v7-trust-list h3 {
  font-size: 21px;
  font-weight: 500;
  margin: 0 0 10px;
}

.about-v7-trust-list p {
  font-size: 14px;
  line-height: 1.7;
  color: #62635e;
  margin: 0;
  max-width: 520px;
}

.about-v7-cta {
  height: 76vh;
  min-height: 610px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-v7-cta>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-v7-cta-shade {
  position: absolute;
  inset: 0;
  background: rgba(24,25,22,.62);
}

.about-v7-cta-copy {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  width: min(820px,85vw);
}

.about-v7-cta-copy .eyebrow {
  color: #ddd;
}

.about-v7-cta-copy h2 {
  font-size: clamp(48px,5.3vw,82px);
  line-height: 1.01;
  letter-spacing: -.045em;
  font-weight: 400;
  margin: 0 0 24px;
}

.about-v7-cta-copy>p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto 34px;
  color: #e3e3df;
}

.about-v7-cta .btn-ghost {
  margin-left: 8px;
}

@media(max-width:900px) {
  .about-v7 .section {
    padding: 78px 7vw;
  }

  .about-v7-hero {
    height: 74vh;
    min-height: 580px;
  }

  .about-v7-hero-copy {
    margin-bottom: 7vh;
  }

  .about-v7-intro,.about-v7-story,.about-v7-trust {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-v7-intro-copy {
    padding-top: 0;
  }

  .about-v7-story-image img {
    height: 58vh;
    min-height: 440px;
  }

  .about-v7-gallery-heading {
    display: block;
  }

  .about-v7-gallery-heading .eyebrow {
    margin-bottom: 18px;
  }

  .about-v7-photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }

  .about-v7-photo-grid .tall,.about-v7-photo-grid .wide,.about-v7-photo-grid .small {
    grid-column: auto;
    grid-row: auto;
    height: 52vh;
    min-height: 360px;
  }

  .about-v7-quote {
    height: 62vh;
    min-height: 520px;
  }

  .about-v7-quote-copy {
    width: 84vw;
    margin-left: 8vw;
  }
}

@media(max-width:600px) {
  .about-v7-hero-copy {
    width: 86vw;
    margin-left: 7vw;
  }

  .about-v7-hero-copy h1 {
    font-size: 52px;
  }

  .about-v7-hero-copy>p:not(.eyebrow) {
    font-size: 16px;
  }

  .about-v7-stats {
    grid-template-columns: 1fr;
  }

  .about-v7-stats>div+div {
    border-left: 0;
    border-top: 1px solid #cfd0cc;
    padding-left: 0;
    margin-top: 22px;
    padding-top: 22px;
  }

  .about-v7-quote blockquote {
    font-size: 36px;
  }

  .about-v7-trust-list article {
    grid-template-columns: 42px 1fr;
  }

  .about-v7-cta .btn-ghost {
    margin: 10px 0 0;
  }
}

/* PROJECTS / GALLERY — folder-driven framework */

.project-site-header {
  background: rgba(37,38,35,.94) !important;
}

.projects-index-page,.project-detail-page {
  background: #fff;
  color: #30312e;
}

.projects-index-page .section,.project-detail-page .section {
  padding-left: 7vw;
  padding-right: 7vw;
}

.projects-index-hero {
  padding: 190px 7vw 105px;
  background: #f4f4f2;
  border-bottom: 1px solid #dedfda;
}

.projects-index-hero .eyebrow {
  color: #777973;
}

.projects-index-hero h1 {
  font-size: clamp(58px,7vw,106px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.055em;
  margin: 0 0 34px;
  color: #30312e;
}

.projects-index-hero>p:last-child {
  max-width: 650px;
  font-size: 17px;
  line-height: 1.65;
  color: #676862;
  margin: 0;
}

.projects-filter {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid #d6d7d2;
  margin-bottom: 58px;
  overflow: auto;
  scrollbar-width: none;
}

.projects-filter::-webkit-scrollbar {
  display: none;
}

.projects-filter button {
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 0 0 17px;
  color: #858681;
  font: 700 11px Arial,Helvetica,sans-serif;
  letter-spacing: .14em;
  white-space: nowrap;
  cursor: pointer;
}

.projects-filter button.active {
  color: #30312e;
  border-color: #30312e;
}

.projects-index-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 70px 24px;
}

.projects-index-card[hidden] {
  display: none;
}

.projects-index-card a {
  text-decoration: none;
  display: block;
}

.projects-index-image {
  position: relative;
  overflow: hidden;
  background: #eee;
}

.projects-index-image img {
  width: 100%;
  aspect-ratio: 1.28/1;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}

.projects-index-image span {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: rgba(255,255,255,.92);
  padding: 12px 15px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  opacity: 0;
  transform: translateY(8px);
  transition: .28s ease;
}

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

.projects-index-card:hover .projects-index-image span {
  opacity: 1;
  transform: none;
}

.projects-index-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  padding-top: 18px;
  border-top: 1px solid #cfd0cb;
  margin-top: 14px;
}

.projects-index-meta h2 {
  font-size: 24px !important;
  color: #30312e !important;
  margin: 0 0 6px !important;
  font-weight: 500 !important;
  letter-spacing: -.02em;
}

.projects-index-meta p {
  margin: 0;
  color: #777873;
  font-size: 14px;
}

.projects-index-meta small {
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #858681;
  text-align: right;
  padding-top: 6px;
}

.projects-empty {
  text-align: center;
  padding: 70px 0;
  color: #777873;
}

.projects-index-cta {
  padding: 110px 7vw;
  background: #f2f2f0;
  text-align: center;
}

.projects-index-cta .eyebrow {
  color: #777873;
}

.projects-index-cta h2 {
  font-size: clamp(42px,5vw,70px);
  font-weight: 400;
  letter-spacing: -.04em;
  margin: 0 0 35px;
}

.projects-index-cta .btn-dark {
  background: #30312e;
  color: #fff;
  border: 1px solid #30312e;
}

.project-detail-hero {
  padding: 190px 7vw 72px;
  background: #f4f4f2;
  border-bottom: 1px solid #d7d8d3;
}

.project-detail-hero>div {
  max-width: 1200px;
}

.project-detail-hero .eyebrow {
  color: #777873;
}

.project-detail-hero h1 {
  font-size: clamp(52px,6.5vw,94px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.05em;
  margin: 0 0 22px;
  color: #30312e;
}

.project-detail-hero>div>p:last-child {
  margin: 0;
  color: #777873;
  font-size: 16px;
}

.project-detail-gallery {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 16px;
  background: #fff;
}

.project-gallery-item {
  margin: 0;
  overflow: hidden;
  background: #eee;
}

.project-gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  display: block;
}

.project-gallery-feature {
  grid-column: 1/-1;
}

.project-gallery-feature img {
  min-height: 70vh;
  max-height: 900px;
}

.project-detail-footer {
  background: #f2f2f0;
  border-top: 1px solid #dedfda;
  padding: 88px 7vw 82px;
}

.project-detail-footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px,.72fr) minmax(460px,1fr);
  gap: 110px;
  align-items: end;
}

.project-detail-footer-copy {
  grid-column: 2;
}

.project-detail-footer .eyebrow {
  color: #777873;
  margin: 0 0 22px;
}

.project-detail-footer h2 {
  font-size: clamp(46px,4.6vw,72px) !important;
  line-height: .98 !important;
  font-weight: 400 !important;
  color: #30312e !important;
  margin: 0 0 24px !important;
}

.project-detail-footer-text {
  max-width: 590px;
  color: #5e605b;
  line-height: 1.65;
  margin: 0 0 28px;
}

.project-detail-enquire,.project-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #30312e;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

.project-detail-enquire {
  padding-bottom: 8px;
  border-bottom: 1px solid #9b9d97;
}

.project-detail-enquire span {
  font-size: 17px;
  font-weight: 400;
}

.project-detail-back {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  padding-bottom: 8px;
  border-bottom: 1px solid #b9bab5;
  width: 100%;
  max-width: 360px;
}

@media(max-width:800px) {
  .projects-index-page .section,.project-detail-page .section {
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .projects-index-hero {
    padding: 145px 7vw 72px;
  }

  .projects-index-hero h1 {
    font-size: 56px;
  }

  .projects-filter {
    gap: 22px;
    margin-bottom: 38px;
  }

  .projects-index-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .projects-index-image span {
    display: none;
  }

  .projects-index-meta h2 {
    font-size: 21px !important;
  }

  .projects-index-meta small {
    max-width: 100px;
  }

  .project-detail-hero {
    padding: 145px 7vw 55px;
  }

  .project-detail-hero h1 {
    font-size: 50px;
  }

  .project-detail-gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .project-gallery-feature {
    grid-column: auto;
  }

  .project-gallery-item img,.project-gallery-feature img {
    min-height: 0;
    height: auto;
    aspect-ratio: 1.2/1;
  }

  .project-detail-footer {
    padding: 64px 24px 58px;
  }

  .project-detail-footer-inner {
    display: flex;
    flex-direction: column;
    gap: 52px;
  }

  .project-detail-footer-copy {
    order: 1;
  }

  .project-detail-footer h2 {
    font-size: 46px !important;
  }

  .project-detail-footer-text {
    font-size: 15px;
  }

  .project-detail-back {
    order: 2;
    width: 100%;
    max-width: none;
  }
}

/* project CTA alignment + simplified nav */

.project-end {
  background: #f3f3f1;
  padding: 88px 7%;
}

.project-end__inner {
  max-width: 1320px;
  margin: 0 auto;
}

.project-end__content {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.project-end__content h2 {
  margin: 18px 0 20px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: .98;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.project-end__content p {
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

.project-end__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border-top: 1px solid rgba(47,48,45,.25);
  padding-top: 20px;
}

.project-end__back,
.project-end__enquire {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
}

.project-end__back:hover,
.project-end__enquire:hover {
  opacity: .6;
}

@media (max-width: 700px) {
  .project-end {
    padding: 68px 24px;
  }

  .project-end__content {
    margin-bottom: 36px;
  }

  .project-end__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .project-end__back,
  .project-end__enquire {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
}

/* Project end layout */

.project-gallery-return {
  grid-column: 1/-1;
  display: flex;
  justify-content: flex-start;
  padding-top: 24px;
  margin-top: 8px;
  border-top: 1px solid #d7d8d3;
}

.project-gallery-return a {
  color: #30312e;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

.project-gallery-return a:hover {
  opacity: .55;
}

.project-detail-footer--centred {
  background: #f2f2f0;
  padding: 90px 7vw;
  border-top: 0;
  text-align: center;
}

.project-detail-footer--centred .project-detail-footer-copy {
  max-width: 820px;
  margin: 0 auto;
}

.project-detail-footer--centred .eyebrow {
  margin-bottom: 20px;
}

.project-detail-footer--centred h2 {
  font-size: clamp(44px,5vw,76px) !important;
  line-height: .98 !important;
  margin: 0 0 24px !important;
}

.project-detail-footer--centred .project-detail-footer-text {
  margin: 0 auto 28px;
  max-width: 610px;
}

.project-detail-footer--centred .project-detail-enquire {
  display: inline-flex;
}

/* Process page */

.process-page {
  background: #fff;
  color: #30312e;
}

.process-hero {
  position: relative;
  min-height: 700px;
  height: 78vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.process-hero>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(18,19,17,.62),rgba(18,19,17,.12));
}

.process-hero-content {
  position: relative;
  z-index: 2;
  width: min(1320px,86vw);
  margin: 0 auto;
  padding: 0 0 90px;
  color: #fff;
}

.process-hero-content .eyebrow {
  color: #fff;
  margin-bottom: 22px;
}

.process-hero h1 {
  margin: 0 0 22px;
  max-width: 850px;
  font-size: clamp(58px,7vw,110px);
  line-height: .92;
  font-weight: 400;
  letter-spacing: -.045em;
}

.process-hero-content>p:last-child {
  font-size: 18px;
  max-width: 520px;
  line-height: 1.6;
  color: rgba(255,255,255,.9);
}

.process-intro {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 10vw;
  align-items: end;
  padding-top: 120px !important;
  padding-bottom: 120px !important;
}

.process-intro h2 {
  margin: 18px 0 0;
  font-size: clamp(44px,5vw,74px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.035em;
}

.process-intro>p {
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  color: #5d5f5a;
  max-width: 590px;
}

.process-steps {
  padding-top: 20px !important;
  padding-bottom: 110px !important;
}

.process-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 60px;
  padding: 52px 0;
  border-top: 1px solid #d6d7d2;
}

.process-step:last-child {
  border-bottom: 1px solid #d6d7d2;
}

.process-step-number {
  font-size: 13px;
  letter-spacing: .16em;
  color: #7a7b76;
  padding-top: 9px;
}

.process-step>div {
  display: grid;
  grid-template-columns: minmax(260px,.75fr) minmax(320px,1fr);
  gap: 80px;
  align-items: start;
}

.process-step h2 {
  margin: 0;
  font-size: clamp(32px,3vw,48px);
  font-weight: 400;
  letter-spacing: -.025em;
}

.process-step p {
  margin: 4px 0 0;
  max-width: 590px;
  line-height: 1.75;
  color: #5d5f5a;
  font-size: 16px;
}

.process-image-break {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.process-image-break img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-image-break:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(0,0,0,.58),rgba(0,0,0,.06) 70%);
}

.process-image-break>div {
  position: relative;
  z-index: 2;
  width: min(1320px,86vw);
  margin: 0 auto;
  padding-bottom: 75px;
  color: #fff;
}

.process-image-break span {
  display: block;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  margin-bottom: 18px;
}

.process-image-break strong {
  display: block;
  max-width: 820px;
  font-size: clamp(40px,5vw,74px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.035em;
}

.process-steps--second {
  padding-top: 110px !important;
}

.process-cta {
  background: #2f302d;
  color: #fff;
  text-align: center;
  padding: 115px 7vw;
}

.process-cta .eyebrow {
  color: #bfc0bb;
  margin-bottom: 22px;
}

.process-cta h2 {
  max-width: 880px;
  margin: 0 auto 38px;
  font-size: clamp(42px,5vw,72px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.035em;
}

.process-cta-actions {
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
}

.process-cta-actions a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.55);
  padding-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

.process-cta-actions a:hover {
  opacity: .6;
}

@media(max-width:800px) {
  .process-hero {
    height: auto;
    min-height: 620px;
  }

  .process-hero-content {
    padding-bottom: 60px;
  }

  .process-intro {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 38px 0;
  }

  .process-step>div {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-image-break {
    min-height: 520px;
  }

  .process-steps--second {
    padding-top: 75px !important;
  }

  .project-detail-footer--centred {
    padding: 72px 7vw;
  }
}

/* continuous process steps + image CTA */

.process-steps--second {
  padding-top: 0 !important;
}

.process-cta--image {
  position: relative;
  min-height: 650px;
  padding: 0 7vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2f302d;
}

.process-cta--image>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18,19,17,.58);
}

.process-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

@media(max-width:800px) {
  .process-cta--image {
    min-height: 540px;
    padding: 70px 7vw;
  }
}

/* FAQ + Building Guide */

.resource-hero,.guide-hero {
  position: relative;
  min-height: 680px;
  height: 76vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.resource-hero>img,.guide-hero>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resource-hero__overlay,.guide-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(18,19,17,.66),rgba(18,19,17,.12));
}

.resource-hero__content,.guide-hero__content {
  position: relative;
  z-index: 2;
  width: min(1320px,86vw);
  margin: 0 auto;
  padding-bottom: 82px;
  color: #fff;
}

.resource-hero__content .eyebrow,.guide-hero__content .eyebrow {
  color: #fff;
  margin-bottom: 20px;
}

.resource-hero h1,.guide-hero h1 {
  margin: 0 0 22px;
  max-width: 980px;
  font-size: clamp(56px,7vw,104px);
  line-height: .94;
  font-weight: 400;
  letter-spacing: -.045em;
}

.resource-hero__content>p:last-child,.guide-hero__content>p {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,.92);
}

.faq-intro,.guide-intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 9vw;
  align-items: end;
  padding-top: 110px !important;
  padding-bottom: 100px !important;
}

.faq-intro h2,.guide-intro h2 {
  margin: 18px 0 0;
  font-size: clamp(42px,5vw,72px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.035em;
}

.faq-intro>p,.guide-intro__copy p {
  font-size: 17px;
  line-height: 1.75;
  color: #5f615c;
}

.guide-intro__copy p {
  margin: 0 0 18px;
}

.guide-intro__copy p:last-child {
  margin-bottom: 0;
}

.faq-list {
  padding-top: 10px !important;
  padding-bottom: 110px !important;
}

.faq-item {
  border-top: 1px solid #d8d9d5;
}

.faq-item:last-child {
  border-bottom: 1px solid #d8d9d5;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 32px 56px 32px 0;
  font-size: clamp(22px,2.4vw,34px);
  font-weight: 400;
  letter-spacing: -.02em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  font-weight: 300;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 820px;
  padding: 0 0 36px;
}

.faq-answer p {
  margin: 0;
  color: #5f615c;
  line-height: 1.75;
  font-size: 16px;
}

.faq-support {
  background: #2f302d;
  color: #fff;
  text-align: center;
  padding: 105px 7vw;
}

.faq-support__inner {
  max-width: 850px;
  margin: 0 auto;
}

.faq-support .eyebrow {
  color: #bbbdb7;
  margin-bottom: 20px;
}

.faq-support h2 {
  margin: 0 0 24px;
  font-size: clamp(44px,5vw,72px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.035em;
}

.faq-support p {
  max-width: 620px;
  margin: 0 auto 30px;
  color: #d2d3cf;
  line-height: 1.7;
}

.faq-support__actions {
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
}

.faq-support__actions a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.5);
  padding-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

.guide-primary-btn {
  margin-top: 24px;
  border: 1px solid rgba(255,255,255,.9);
  background: #fff;
  color: #2f302d;
  padding: 15px 22px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  cursor: pointer;
}

.guide-points {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 0;
  padding-top: 20px !important;
  padding-bottom: 120px !important;
}

.guide-point {
  padding: 42px 8vw 42px 0;
  border-top: 1px solid #d8d9d5;
}

.guide-point:nth-child(even) {
  padding-left: 7vw;
  border-left: 1px solid #d8d9d5;
}

.guide-point:last-child {
  grid-column: 1/-1;
  border-bottom: 1px solid #d8d9d5;
}

.guide-point span {
  display: block;
  margin-bottom: 26px;
  color: #8a8b86;
  font-size: 12px;
  letter-spacing: .16em;
}

.guide-point h3 {
  margin: 0 0 16px;
  font-size: clamp(28px,3vw,42px);
  font-weight: 400;
  letter-spacing: -.025em;
}

.guide-point p {
  margin: 0;
  max-width: 560px;
  color: #5f615c;
  line-height: 1.7;
}

.guide-photo-story {
  background: #f2f2f0;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: stretch;
  min-height: 620px;
}

.guide-photo-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.guide-photo-story__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vw;
}

.guide-photo-story__copy h2 {
  margin: 18px 0 24px;
  font-size: clamp(42px,5vw,68px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.035em;
}

.guide-photo-story__copy p:last-child {
  color: #5f615c;
  line-height: 1.75;
  max-width: 520px;
}

.guide-final-cta {
  background: #2f302d;
  color: #fff;
  padding: 110px 7vw;
  text-align: center;
}

.guide-final-cta__inner {
  max-width: 860px;
  margin: 0 auto;
}

.guide-final-cta .eyebrow {
  color: #bfc0ba;
  margin-bottom: 20px;
}

.guide-final-cta h2 {
  margin: 0 0 22px;
  font-size: clamp(44px,5vw,72px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.035em;
}

.guide-final-cta p {
  max-width: 650px;
  margin: 0 auto;
  color: #d3d4d0;
  line-height: 1.7;
}

.guide-primary-btn--light {
  margin-top: 30px;
}

.guide-modal {
  width: min(680px,calc(100% - 32px));
  border: 0;
  padding: 0;
  background: #fff;
  color: #2f302d;
  box-shadow: 0 24px 90px rgba(0,0,0,.24);
}

.guide-modal::backdrop {
  background: rgba(18,19,17,.64);
}

.guide-modal__content {
  padding: 54px;
}

.guide-modal__close {
  position: absolute;
  right: 18px;
  top: 14px;
  border: 0;
  background: none;
  font-size: 28px;
  cursor: pointer;
  color: #2f302d;
}

.guide-modal h2 {
  margin: 16px 0 18px;
  font-size: clamp(38px,5vw,58px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.035em;
}

.guide-modal__lead {
  color: #5f615c;
  line-height: 1.65;
  margin-bottom: 30px;
}

.guide-modal__form label {
  display: block;
  margin-bottom: 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.guide-modal__input-row {
  display: grid;
  grid-template-columns: 1fr auto;
}

.guide-modal__input-row input {
  min-width: 0;
  border: 1px solid #c9cac6;
  border-right: 0;
  padding: 15px 14px;
  font: inherit;
  border-radius: 0;
}

.guide-modal__input-row button {
  border: 1px solid #2f302d;
  background: #2f302d;
  color: #fff;
  padding: 0 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
}

.guide-modal__privacy {
  font-size: 12px;
  color: #777974;
  line-height: 1.55;
  margin: 13px 0 0;
}

.guide-modal__status {
  margin: 14px 0 0;
  font-size: 13px;
  color: #4e504c;
}

@media(max-width:800px) {
  .resource-hero,.guide-hero {
    height: auto;
    min-height: 620px;
  }

  .resource-hero__content,.guide-hero__content {
    padding-bottom: 60px;
  }

  .faq-intro,.guide-intro {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 75px !important;
    padding-bottom: 70px !important;
  }

  .faq-list {
    padding-bottom: 80px !important;
  }

  .faq-item summary {
    padding: 26px 44px 26px 0;
    font-size: 22px;
  }

  .guide-points {
    grid-template-columns: 1fr;
    padding-bottom: 85px !important;
  }

  .guide-point,.guide-point:nth-child(even) {
    padding: 34px 0;
    border-left: 0;
  }

  .guide-point:last-child {
    grid-column: auto;
  }

  .guide-photo-story {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .guide-photo-story__image {
    height: 420px;
  }

  .guide-photo-story__copy {
    padding: 70px 7vw;
  }

  .guide-modal__content {
    padding: 42px 24px 30px;
  }

  .guide-modal__input-row {
    grid-template-columns: 1fr;
  }

  .guide-modal__input-row input {
    border-right: 1px solid #c9cac6;
  }

  .guide-modal__input-row button {
    min-height: 48px;
  }
}

/* FAQ / Building Guide refinements */

/* Building guide: make five items read as one continuous editorial list.
   This avoids leaving item 05 stranded across a full row. */

.guide-points {
  grid-template-columns: 1fr !important;
  padding-top: 10px !important;
}

.guide-point,
.guide-point:nth-child(even),
.guide-point:last-child {
  grid-column: auto !important;
  border-left: 0 !important;
  border-bottom: 0 !important;
  padding: 34px 0 !important;
  display: grid;
  grid-template-columns: 70px minmax(220px,.72fr) minmax(300px,1fr);
  column-gap: 34px;
  align-items: start;
}

.guide-point:last-child {
  border-bottom: 1px solid #d8d9d5 !important;
}

.guide-point span {
  margin: 8px 0 0 !important;
}

.guide-point h3 {
  margin: 0 !important;
}

.guide-point p {
  margin: 3px 0 0 !important;
  max-width: 650px;
}

/* FAQ: bring the question/body typography closer together. */

.faq-item summary {
  font-size: clamp(21px,2vw,29px) !important;
  line-height: 1.25;
}

.faq-answer {
  max-width: 900px;
}

.faq-answer p {
  font-size: 18px !important;
  line-height: 1.72;
}

.faq-intro>p {
  font-size: 18px !important;
}

@media(max-width:800px) {
  .guide-point,
  .guide-point:nth-child(even),
  .guide-point:last-child {
    grid-template-columns: 48px 1fr !important;
    column-gap: 18px;
    padding: 30px 0 !important;
  }

  .guide-point h3 {
    grid-column: 2;
  }

  .guide-point p {
    grid-column: 2;
    margin-top: 13px !important;
  }

  .faq-answer p,
  .faq-intro>p {
    font-size: 17px !important;
  }
}

/* Contact */

.contact-page {
  background: #fff;
  color: #30312e;
}

.contact-hero {
  padding: 190px 7vw 110px;
  background: #f2f2f0;
}

.contact-hero__inner {
  width: min(1320px,100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 9vw;
  align-items: end;
}

.contact-hero__heading h1 {
  margin: 20px 0 0;
  font-size: clamp(58px,7vw,105px);
  line-height: .92;
  font-weight: 400;
  letter-spacing: -.045em;
}

.contact-hero__intro {
  padding-bottom: 8px;
}

.contact-hero__intro p {
  margin: 0 0 28px;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.7;
  color: #5d5f5a;
}

.contact-hero__intro a {
  color: #30312e;
  text-decoration: none;
  border-bottom: 1px solid #8f908b;
  padding-bottom: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

.contact-main {
  width: min(1320px,86vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 10vw;
  padding: 120px 0 130px;
}

.contact-main__details {
  padding-top: 4px;
}

.contact-detail {
  padding: 0 0 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid #d8d9d5;
}

.contact-detail .eyebrow {
  margin-bottom: 16px;
}

.contact-detail a,
.contact-detail p {
  display: block;
  color: #555752;
  text-decoration: none;
  line-height: 1.7;
  margin: 0;
}

.contact-detail a:hover {
  opacity: .6;
}

.contact-detail__large {
  font-size: clamp(25px,2.4vw,35px);
  font-weight: 400;
  letter-spacing: -.02em;
  color: #30312e !important;
  margin-bottom: 4px !important;
}

.contact-detail--note {
  border-bottom: 0;
  max-width: 360px;
}

.contact-detail--note p {
  font-size: 15px;
}

.contact-form-wrap .eyebrow {
  margin-bottom: 18px;
}

.contact-form-wrap h2 {
  margin: 0 0 55px;
  max-width: 720px;
  font-size: clamp(42px,4.5vw,68px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.035em;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form label>span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 0;
  border-bottom: 1px solid #aeb0aa;
  border-radius: 0;
  background: transparent;
  color: #30312e;
  padding: 10px 0 13px;
  font: inherit;
  font-size: 17px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 135px;
  line-height: 1.6;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: #30312e;
}

.contact-form textarea::placeholder {
  color: #92948f;
}

.contact-form__submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 12px;
}

.contact-form__submit button {
  border: 0;
  border-bottom: 1px solid #30312e;
  border-radius: 0;
  background: transparent;
  color: #30312e;
  padding: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  cursor: pointer;
}

.contact-form__submit button:hover {
  opacity: .6;
}

.contact-form__submit p {
  margin: 0;
  color: #777974;
  font-size: 12px;
}

.contact-form__status {
  min-height: 20px;
  margin: 0;
  font-size: 13px;
  color: #555752;
}

.contact-image-break {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.contact-image-break>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-image-break::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(0,0,0,.6),rgba(0,0,0,.06) 68%);
}

.contact-image-break>div {
  position: relative;
  z-index: 2;
  width: min(1320px,86vw);
  margin: 0 auto;
  padding-bottom: 72px;
  color: #fff;
}

.contact-image-break .eyebrow {
  color: #fff;
  margin-bottom: 18px;
}

.contact-image-break h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(48px,6vw,84px);
  line-height: .96;
  font-weight: 400;
  letter-spacing: -.04em;
}

@media(max-width:850px) {
  .contact-hero {
    padding: 145px 7vw 75px;
  }

  .contact-hero__inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .contact-main {
    grid-template-columns: 1fr;
    gap: 65px;
    padding: 80px 0 90px;
  }

  .contact-main__details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 30px;
  }

  .contact-detail--note {
    grid-column: 1/-1;
  }
}

@media(max-width:600px) {
  .contact-main__details {
    grid-template-columns: 1fr;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-form__submit {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-image-break {
    min-height: 500px;
  }
}

/* Refined contact hero, form typography + drawings upload */

.contact-hero.contact-hero--image {
  position: relative;
  min-height: 700px;
  height: 78vh;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2f302d;
}

.contact-hero--image>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18,19,17,.48);
}

.contact-hero__center {
  position: relative;
  z-index: 2;
  width: min(950px,86vw);
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.contact-hero__center .eyebrow {
  color: #fff;
  margin-bottom: 22px;
}

.contact-hero__center h1 {
  margin: 0 auto 25px;
  font-size: clamp(58px,7vw,104px);
  line-height: .93;
  font-weight: 400;
  letter-spacing: -.045em;
}

.contact-hero__center>p {
  max-width: 650px;
  margin: 0 auto 30px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,.93);
}

.contact-hero__center>a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.7);
  padding-bottom: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

/* Keep dropdowns visually subordinate to the field labels. */

.contact-form select,
.contact-form input,
.contact-form textarea {
  font-size: 15px !important;
}

.contact-form select {
  color: #5d5f5a;
}

.contact-form label>span,
.contact-drawings legend,
.contact-upload label>span {
  font-size: 12px;
  line-height: 1.3;
}

/* Working drawings question */

.contact-drawings {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}

.contact-drawings legend {
  padding: 0;
  margin: 0 0 16px;
  font-weight: 700;
  letter-spacing: .12em;
}

.contact-drawings__choices {
  display: flex;
  gap: 30px;
  padding-bottom: 14px;
  border-bottom: 1px solid #aeb0aa;
}

.contact-radio {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 9px !important;
  cursor: pointer;
}

.contact-radio input {
  width: auto !important;
  margin: 0;
  accent-color: #30312e;
}

.contact-radio span {
  font-size: 15px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none;
}

.contact-upload {
  margin-top: 26px;
  padding: 25px 0 4px;
}

.contact-upload[hidden] {
  display: none;
}

.contact-upload>label:first-child {
  display: block;
  margin-bottom: 17px;
}

.contact-upload small {
  display: block;
  margin-top: 7px;
  color: #777974;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0;
}

.contact-upload input[type="file"] {
  position: absolute;
  width: 1px !important;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

.contact-upload__button {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: space-between;
  min-width: 170px;
  padding: 11px 0 8px;
  border-bottom: 1px solid #30312e;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

.contact-upload__button span {
  font-size: 18px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

.contact-upload__files {
  margin: 13px 0 0;
  color: #777974;
  font-size: 12px;
  line-height: 1.5;
  word-break: break-word;
}

@media(max-width:850px) {
  .contact-hero.contact-hero--image {
    min-height: 620px;
    height: auto;
    padding: 145px 0 85px;
  }
}

/* required markers + tighter form/image transition */

.required-mark {
  font: inherit;
  font-weight: 700;
  color: #30312e;
  margin-left: 2px;
}

.contact-required-note {
  margin: -38px 0 46px;
  color: #777974;
  font-size: 12px;
  line-height: 1.4;
}

.contact-required-note span {
  color: #30312e;
  font-weight: 700;
}

/* The previous 130px bottom padding left too much empty white space
   after the form before the photographic section. */

.contact-main {
  padding-bottom: 72px !important;
}

@media(max-width:850px) {
  .contact-main {
    padding-bottom: 58px !important;
  }

  .contact-required-note {
    margin: -34px 0 40px;
  }
}

/* Production polish — navigation, footer, motion and shared calls-to-action */

/* Larger navigation typography while retaining the eyebrow-style spacing. */

.home-v4 .nav {
  font-size: 16px;
  gap: 18px;
}

.home-v4 .nav>a,
.home-v4 .dropdown>button {
  font-size: 16px;
  letter-spacing: .07em;
}

.home-v4 .nav-phone {
  font-size: 12px;
  letter-spacing: .12em;
}

.home-v4 .nav-cta {
  font-size: 12px !important;
  letter-spacing: .12em !important;
}

/* The dropdown now directly touches the trigger's hover area, so it can be
   moved into without first clicking Resources. */

.home-v4 .dropdown {
  position: relative;
}

.home-v4 .dropdown-menu {
  display: block;
  top: 100%;
  right: 0;
  margin-top: 0;
  min-width: 235px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(5px);
  transition: opacity .18s ease,transform .18s ease,visibility .18s ease;
}

.home-v4 .dropdown:hover .dropdown-menu,
.home-v4 .dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.home-v4 .dropdown-menu a {
  font-size: 12px;
  line-height: 1.35;
  padding: 11px 18px;
}

/* Footer hierarchy: larger overall, with headings still one step above copy. */

.home-v4 .footer-grid h3 {
  font-size: 17px;
  letter-spacing: .13em;
  margin-bottom: 18px;
}

.home-v4 .footer-grid p {
  font-size: 16px;
  line-height: 1.7;
}

.home-v4 .copyright {
  font-size: 12px;
}

/* Reusable upward entrance motion. */

.reveal-up {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .72s cubic-bezier(.2,.7,.2,1),transform .72s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay,0ms);
}

.reveal-up.revealed {
  opacity: 1;
  transform: none;
}

/* FAQ answer fades/slides into place when its accordion opens. */

.faq-item[open] .faq-answer {
  animation: faqAnswerIn .30s ease both;
}

@keyframes faqAnswerIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* More breathing room between the Building Guide navbar and the hero copy. */

.guide-hero__content {
  padding-bottom: 48px !important;
}

/* Shared single-action CTA treatment. */

.cta-single-btn,
.page-enquire-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  background: #fff !important;
  color: #2f302d !important;
  border: 1px solid #fff !important;
  border-radius: 2px !important;
  padding: 15px 24px !important;
  text-decoration: none !important;
  text-transform: uppercase;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: .09em !important;
}

.cta-single-btn:hover,
.page-enquire-button:hover {
  opacity: .88;
}

.process-cta-actions,
.faq-support__actions {
  justify-content: center;
}

/* Homepage guide trigger is a button but should visually match the existing link button. */

.guide-home-button {
  cursor: pointer;
  font-family: inherit;
}

/* Guide modal is shared between the homepage and Building Guide page. */

.guide-modal {
  width: min(680px,calc(100% - 32px));
  border: 0;
  padding: 0;
  background: #fff;
  color: #2f302d;
  box-shadow: 0 24px 90px rgba(0,0,0,.24);
}

.guide-modal::backdrop {
  background: rgba(18,19,17,.64);
}

.guide-modal__content {
  padding: 54px;
}

.guide-modal__close {
  position: absolute;
  right: 18px;
  top: 14px;
  border: 0;
  background: none;
  font-size: 28px;
  cursor: pointer;
  color: #2f302d;
}

.guide-modal h2 {
  margin: 16px 0 18px;
  font-size: clamp(38px,5vw,58px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.035em;
}

.guide-modal__lead {
  color: #5f615c;
  line-height: 1.65;
  margin-bottom: 30px;
}

.guide-modal__form label {
  display: block;
  margin-bottom: 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.guide-modal__input-row {
  display: grid;
  grid-template-columns: 1fr auto;
}

.guide-modal__input-row input {
  min-width: 0;
  border: 1px solid #c9cac6;
  border-right: 0;
  padding: 15px 14px;
  font: inherit;
  border-radius: 0;
}

.guide-modal__input-row button {
  border: 1px solid #2f302d;
  background: #2f302d;
  color: #fff;
  padding: 0 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
}

.guide-modal__privacy {
  font-size: 12px;
  color: #777974;
  line-height: 1.55;
  margin: 13px 0 0;
}

.guide-modal__status {
  margin: 14px 0 0;
  font-size: 13px;
  color: #4e504c;
}

@media(max-width:1050px) {
  .home-v4 .nav {
    font-size: 14px;
    gap: 14px;
  }

  .home-v4 .nav>a,.home-v4 .dropdown>button {
    font-size: 14px;
  }
}

@media(max-width:800px) {
  .home-v4 .nav,
  .home-v4 .dropdown>button,
  .home-v4 .nav>a {
    font-size: 14px;
  }

  .home-v4 .footer-grid h3 {
    font-size: 15px;
  }

  .home-v4 .footer-grid p {
    font-size: 15px;
  }

  .guide-hero__content {
    padding-bottom: 42px !important;
  }

  .guide-modal__content {
    padding: 42px 24px 30px;
  }

  .guide-modal__input-row {
    grid-template-columns: 1fr;
  }

  .guide-modal__input-row input {
    border-right: 1px solid #c9cac6;
  }

  .guide-modal__input-row button {
    min-height: 48px;
  }
}

@media(prefers-reduced-motion:reduce) {
  .reveal-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .faq-item[open] .faq-answer {
    animation: none !important;
  }
}

/* =========================
   NAVBAR TYPOGRAPHY & DROPDOWN
   ========================= */

/* Normal navigation references use regular weight. */
.home-v4 .nav > a,
.home-v4 .dropdown > button {
  font-weight: 400;
}

/* The currently selected page is bold. */
.home-v4 .nav > a.active {
  font-weight: 700;
}

/* Resources is bold while a Resources page is selected. */
.home-v4 .dropdown[data-active="true"] > button {
  font-weight: 700;
}

/* Keep the phone number visually understated. */
.home-v4 .nav-phone {
  font-weight: 400;
}

/* Enquire remains stronger because it is the primary action. */
.home-v4 .nav-cta {
  font-weight: 700 !important;
}

/* Dropdown options use regular weight. */
.home-v4 .dropdown-menu a {
  font-weight: 400;
}

/* Keep the submenu directly connected to Resources so it can be entered
   with the mouse without having to click the menu first. */
.home-v4 .dropdown {
  position: relative;
}

.home-v4 .dropdown-menu {
  display: block;
  top: 100%;
  right: 0;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(5px);
  transition:
    opacity .18s ease,
    transform .18s ease,
    visibility .18s ease;
}

.home-v4 .dropdown:hover .dropdown-menu,
.home-v4 .dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}


/* =========================
   NAVBAR BACKGROUND
   ========================= */

.home-v4 .site-header {
  height: 92px;
  padding: 14px 4.2%;

  background: rgba(30, 31, 29, 0.08);

  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.home-v4 .site-header.header-scrolled {
  background: rgba(38, 39, 36, 0.95);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ========================================
   FINAL NAVBAR TRANSPARENCY CONTROL
   Keep this at the BOTTOM of style.css
   ======================================== */

/* At top of page */
body.home-v4 .site-header:not(.header-scrolled) {
  background: rgba(30, 31, 29, 0.65) !important;

  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);

  box-shadow: none;
}

/* After scrolling */
body.home-v4 .site-header.header-scrolled {
  background: rgba(38, 39, 36, 0.95) !important;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
}