:root {
  
  --plaster: #F2EBD9;
  --terracotta: #AB5830;
  --forest: #2F3A1C;
  --concrete: #4F4C43;
  --sandstone: #D7C3A4;
  --ochre: #C48A3A;

  --ink: var(--forest);
  --heading: var(--forest);
  --body: var(--concrete);

  --line: color-mix(in srgb, var(--concrete) 32%, var(--plaster));
  --mute: var(--sandstone);
  --white: var(--plaster);

  --header-h: 76px;


  
  --font-primary: "Satoshi", sans-serif;
  --font-serif: "DM Serif Display", serif;


  --text-nav: 0.875rem;        

  --text-hero: clamp(3rem, 8vw, 8rem);
  --text-h1: clamp(2.5rem, 6vw, 5rem);
  --text-h2: clamp(2rem, 4vw, 3.5rem);
  --text-h3: clamp(1.5rem, 2.5vw, 2.25rem);


  --text-subheading: clamp(1.125rem, 2vw, 1.5rem);

  
  --text-body: 1rem;           
  --text-body-large: 1.125rem; 
  --text-small: 0.875rem;     

  --text-quote: clamp(1.5rem, 3vw, 2.5rem);


  --weight-regular: 400;
  --weight-medium: 500;
  --weight-bold: 700;
  --weight-black: 900;



  --leading-tight: 0.95;
  --leading-heading: 1.1;
  --leading-normal: 1.5;
  --leading-body: 1.7;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }

html { scroll-behavior: auto; }

html.lenis,
html.lenis body {
  height: auto;

}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-10 { gap: 40px; }
.hidden { display: none !important; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.h-px { height: 1px; }
.object-cover { object-fit: cover; }
.rounded-t-full { border-radius: 999px 999px 0 0; }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-0 { margin-top: 0; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 20px; }
.mt-6 { margin-top: 24px; }
.mt-10 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 4px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-10 { margin-bottom: 40px; }
.my-12 { margin-block: 48px; }
.max-w-xl { max-width: 36rem; }
.max-w-md { max-width: 28rem; }
.max-w-\[564px\] { max-width: 564px; }
.max-w-\[560px\] { max-width: 560px; }
.font-serif { font-family: var(--font-serif); }
.leading-snug { line-height: 1.375; }
.leading-\[1\.25\] { line-height: 1.25; }
.text-\[15px\] { font-size: 15px; }
.text-\[22px\] { font-size: 22px; }
.text-\[40px\] { font-size: 40px; }
.text-\[var\(--plaster\)\] { color: var(--plaster); }
.bg-white\/20 { background: rgba(255, 255, 255, .2); }
.normal-case { text-transform: none; }
.tracking-normal { letter-spacing: 0; }
.mt-\[18px\] { margin-top: 18px; }
.mt-\[70px\] { margin-top: 70px; }
.\!normal-case { text-transform: none !important; }
.\!tracking-normal { letter-spacing: 0 !important; }
.\!text-\[22px\] { font-size: 22px !important; }
.\!mb-6 { margin-bottom: 24px !important; }
@media (min-width: 640px) {
  .sm\:mt-4 { margin-top: 16px; }
  .sm\:inline-flex { display: inline-flex !important; }
}
@media (min-width: 768px) {
  .md\:inline-flex { display: inline-flex !important; }
}
@media (min-width: 1024px) {
  .lg\:hidden { display: none !important; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:items-end { align-items: flex-end; }
}
@media (max-width: 1199px) {
  .max-\[1199px\]\:text-\[32px\] { font-size: 32px; }
}
@media (max-width: 767px) {
  .max-\[767px\]\:text-\[20px\] { font-size: 20px; }
  .max-\[767px\]\:mt-10 { margin-top: 40px; }
}

body {
  margin: 0;
  background: var(--plaster);
  color: var(--body);
  font-family: var(--font-primary);
  font-size: var(--text-body);
  font-weight: var(--weight-regular);
  line-height: 1.7;
  letter-spacing: 0;
}

body.bg-white { background-color: var(--plaster); }
#services { background-color: var(--sandstone); }
.check-list svg path { fill: var(--ochre); }
.value-box svg path { fill: var(--ochre); }
.process-card .process-icon svg path { fill: var(--ochre); }
.process-card.dark .process-icon svg path { fill: var(--plaster); }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.font-heading,
h1, h2 {
  font-family: var(--font-primary);
  font-weight: var(--weight-black);
  line-height: 1.18;
  color: var(--heading);
  margin: 0;
}
h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: var(--weight-bold);
  line-height: 1.18;
  color: var(--heading);
  margin: 0;
}
p {
  font-family: var(--font-primary);
  font-weight: var(--weight-regular);
}

.container-site {
  width: min(1290px, calc(100% - 72px));
  margin-inline: auto;
}

@media (max-width: 1199px) {
  .container-site { width: calc(100% - 40px); }
}
@media (max-width: 767px) {
  html, body, .page-shell {
    overflow-x: clip;
    max-width: 100%;
  }
  .container-site { width: calc(100% - 40px); }
}

body.ad-page,
.ad-page.page-shell,
html:has(body.ad-page) {
  overflow-x: clip !important;
  overflow-y: visible !important;
}

body.ad-page {
  padding-top: 105px !important;
}
@media (max-width: 1024px) {
  body.ad-page {
    padding-top: 100px !important;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  padding: 0 22px;
  background: var(--terracotta);
  color: var(--plaster);
  font-family: var(--font-primary);
  font-size: var(--text-small);
  font-weight: var(--weight-medium);
  line-height: 1;
  border: 1px solid var(--terracotta);
  transition: background .35s ease, color .35s ease, border-color .35s ease;
}
.btn .dot { width: 7px; height: 7px; background: currentColor; flex: none; }
.btn:hover { background: var(--ochre); border-color: var(--ochre); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover { background: var(--terracotta); color: var(--plaster); border-color: var(--terracotta); }
.btn-white { background: var(--plaster); color: var(--forest); border-color: var(--plaster); }
.btn-white:hover { background: transparent; color: var(--plaster); }

/* Subtitle */
.sub-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: var(--text-small);
  font-weight: var(--weight-regular);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--concrete);
}
.sub-label svg { display: block; }
.sub-label svg * { fill: var(--ochre); }

/* Header */
.site-header {
  position: relative;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 36px;
  background: var(--plaster);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--terracotta);
  line-height: 1;
}
.logo-mark {
  height: 36px;
  width: auto;
  display: block;
  flex: none;
  object-fit: contain;
}
.logo-word {
  height: 22px;
  width: auto;
  display: block;
}
.site-header .logo {
  justify-self: center;
}
.header-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  font-family: var(--font-primary);
  font-size: var(--text-nav);
  font-weight: var(--weight-medium);
  color: var(--ink);
  line-height: 1.3;
}
.header-meta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.header-meta a span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--terracotta);
  flex: none;
}
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
.site-header .btn { padding: 0 38px; }
.icon-btn {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: var(--plaster);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest);
}
.icon-btn svg path,
.icon-btn svg rect { fill: currentColor; }

.sticky-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  overflow: visible;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 36px;
  background: var(--plaster);
  border-bottom: 1px solid var(--line);
  transform: translateY(-120%);
  transition: transform .45s cubic-bezier(.215,.61,.355,1);
}
.sticky-header.is-visible { transform: translateY(0); }
.sticky-header .logo { justify-self: start; }
.sticky-nav {
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 32px;
  font-family: var(--font-primary);
  font-size: var(--text-nav);
  font-weight: var(--weight-medium);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.sticky-nav a { position: relative; white-space: nowrap; }
.sticky-nav a:hover { opacity: .65; }
.sticky-header .header-actions { justify-self: end; gap: 16px; }
.sticky-header .btn { padding: 0 28px; }
@media (min-width: 1024px) {
  .sticky-nav { display: flex; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  visibility: hidden;
}
.mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}
.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, .55);
  opacity: 0;
  transition: opacity .4s ease;
}
.mobile-menu.is-open .mobile-menu-overlay { opacity: 1; }
.mobile-menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(400px, 82vw);
  height: 100%;
  background: #fff;
  overflow: auto;
  padding: 36px 28px 48px;
  transform: translateX(-100%);
  transition: transform .45s cubic-bezier(.215,.61,.355,1);
}
.mobile-menu.is-open .mobile-menu-panel { transform: none; }
.mobile-menu-heading {
  padding: 4px 0 28px;
}
.mobile-menu-heading h2 {
  font-family: var(--font-primary);
  font-size: var(--text-h3);
  font-weight: var(--weight-black);
  color: #111;
  line-height: 1;
}
.mobile-nav,
.mobile-sub {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav > li {
  border-bottom: 1px solid #e8e8e8;
}
.mobile-nav > li > a,
.mobile-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  gap: 12px;
}
.mobile-nav a {
  display: block;
  flex: 1;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: var(--weight-medium);
  color: #111;
  line-height: 1.3;
  padding: 16px 0;
}
.mobile-nav-toggle {
  position: relative;
  width: 36px;
  height: 36px;
  flex: none;
  background: none;
  border: 0;
  padding: 0;
  color: #9a9a9a;
}
.mobile-nav-toggle::before,
.mobile-nav-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.mobile-nav-toggle::before {
  width: 11px;
  height: 1.5px;
}
.mobile-nav-toggle::after {
  width: 1.5px;
  height: 11px;
  transition: opacity .2s ease, transform .2s ease;
}
.has-children.is-open > .mobile-nav-row > .mobile-nav-toggle::after {
  opacity: 0;
}
.mobile-sub {
  display: none;
  padding: 0 0 10px 12px;
}
.has-children.is-open > .mobile-sub { display: block; }
.mobile-sub a {
  font-size: 15px;
  color: #555;
  padding: 10px 0;
}
.mobile-sub li { border-bottom: 0; }

body.menu-open,
body.lead-open { overflow: hidden; }

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--forest);
}
.hero-stage {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: visible;
}
.hero-swiper,
.hero-swiper .swiper-slide { height: 100%; }
.hero-swiper .swiper-slide { position: relative; }
.hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.28) 100%);
  pointer-events: none;
}
.hero-slide-windows::after,
.hero-slide-split::after,
.hero-slide-forest::after { display: none; }
.hero-windows {
  position: relative;
  overflow: hidden;
  background: var(--terracotta);
  width: 100%;
  height: 100%;
  min-height: 0;
}
.hero-window {
  position: absolute;
  left: var(--x);
  bottom: 0;
  top: auto;
  height: var(--h);
  width: auto;
  aspect-ratio: var(--ratio);
  border-radius: 999px 999px 0 0;
  overflow: hidden;
}
.hero-window img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: var(--focal);
  display: block;
}
.hero-window--sm {
  --x: 10%;
  --h: 40%;
  --ratio: 0.5 / 1;
  margin-bottom: 15%;
  --focal: 30% 45%;
  width: 32%;
}
.hero-window--lg {
  --x: 46%;
  --h: 70%;
  --ratio: 0.58 / 1;
  margin-bottom: 10%;
  --focal: 68% 40%;
  width: 50%;
}
.hero-windows--forest {
  background: var(--forest);
}
.hero-windows--forest .hero-window--sm { --focal: 22% 48%; }
.hero-windows--forest .hero-window--lg { --focal: 70% 42%; }
.hero-slide-windows,
.hero-slide-forest {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  overflow: hidden;
}
.hero-slide-windows { background: var(--terracotta); }
.hero-slide-forest { background: var(--forest); }
.hero-slide-windows .slide-copy,
.hero-slide-forest .slide-copy {
  position: relative;
  left: auto;
  bottom: auto;
  max-width: none;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 168px 48px 8px;
  z-index: 2;
}
.hero-slide-forest .forest-kicker {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
}
.hero-slide-forest .slide-copy h1,
.hero-slide-forest .slide-copy h2 {
  font-family: var(--font-primary);
  font-style: normal;
  font-weight: var(--weight-black);
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.15;
  text-transform: none;
  color: #fff;
}
.hero-slide-forest .slide-copy h1 em,
.hero-slide-forest .slide-copy h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: var(--weight-regular);
  color: var(--terracotta);
}
.hero-slide-forest .slide-copy p {
  max-width: 460px;
  color: rgba(255,255,255,.88);
}
.hero-slide-forest .forest-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}
.hero-slide-forest .forest-work {
  color: #fff;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  height: 100%;
  background: var(--plaster);
  overflow: hidden;
}
.hero-split-copy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 56px 24px 48px;
}
.hero-split-media {
  position: relative;
  z-index: 2;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  border-top-left-radius: min(52vh, 460px);
}
.hero-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-split-mark {
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: 8%;
  width: 108%;
  height: 42%;
  z-index: 1;
  color: color-mix(in srgb, var(--sandstone) 55%, var(--plaster));
  pointer-events: none;
}
.hero-split::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 10px;
  background: linear-gradient(to right, var(--terracotta) 50%, var(--forest) 50%);
}
.hero-slide-split .slide-copy {
  position: static;
  left: auto;
  bottom: auto;
  max-width: 520px;
  color: var(--concrete);
}
.hero-slide-split .slide-copy h1,
.hero-slide-split .slide-copy h2 {
  color: var(--terracotta);
}
.hero-slide-split .slide-copy p {
  color: var(--ochre);
  max-width: 420px;
}
.slide-copy {
  position: absolute;
  left: 36px;
  bottom: 110px;
  z-index: 2;
  color: #fff;
  max-width: 920px;
}
.slide-copy h1,
.slide-copy h2 {
  font-family: var(--font-primary);
  font-size: clamp(36px, 5.6vw, 70px);
  font-weight: var(--weight-black);
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
}
.slide-copy p {
  max-width: 360px;
  margin: 18px 0 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
}
.hero-nav {
  position: absolute;
  top: 95px;
  right: 65px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
}
.hero-nav a {
  color: #fff;
  font-family: var(--font-primary);
  font-size: var(--text-nav);
  font-weight: var(--weight-medium);
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.hero-nav a:hover { opacity: .7; }
.hero-nav .nav-item.has-drop { align-self: flex-end; }
.hero-nav .nav-drop {
  left: auto;
  right: 0;
  transform: none;
  top: calc(100% + 8px);
}
.hero-nav .nav-drop a {
  color: var(--heading);
  text-transform: none;
  letter-spacing: 0;
}
.hero .swiper-pagination {
  left: 36px !important;
  right: auto !important;
  width: 180px !important;
  bottom: 50px !important;
}
.hero .swiper-pagination-progressbar { background: rgba(255,255,255,.25); height: 2px; }
.hero .swiper-pagination-progressbar .swiper-pagination-progressbar-fill { background: #fff; }

@media (max-width: 1199px) {
  .hero { min-height: 550px; }
  .header-meta { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .site-header .logo { justify-self: start; }
  .hero-nav { right: 36px; top: 40px; }
  .hero-slide-windows .slide-copy,
  .hero-slide-forest .slide-copy { padding: 28px 140px 36px 8px; }
}
@media (max-width: 1024px) {
  .hero-nav { display: none; }
  .hero-slide-windows .slide-copy,
  .hero-slide-forest .slide-copy { padding: 28px 28px 36px 8px; }
  .hero-split { grid-template-columns: minmax(280px, 0.9fr) 1.1fr; }
  .hero-split-copy { padding: 0 28px 20px 24px; }
  .hero-split-media { border-top-left-radius: min(40vh, 280px); }
}
@media (max-width: 1023px) {
  .site-header,
  .sticky-header {
    display: flex;
    grid-template-columns: none;
    justify-content: space-between;
  }
  .site-header .logo,
  .sticky-header .logo {
    justify-self: start;
    margin-right: auto;
  }
  .header-actions {
    margin-left: auto;
    justify-self: end;
    gap: 8px;
  }
  .site-header .btn,
  .sticky-header .btn {
    height: 42px;
    padding: 0 14px;
    gap: 6px;
  }
}
@media (max-width: 767px) {
  .hero { min-height: 520px; }
  .site-header, .sticky-header { padding-inline: 20px; }
  .icon-btn { width: 40px; height: 40px; }
  .site-header .btn,
  .sticky-header .btn {
    height: 36px;
    padding: 0 10px;
    gap: 5px;
    font-size: 12px;
  }
  .site-header .btn .dot,
  .sticky-header .btn .dot {
    width: 4px;
    height: 4px;
  }
  .logo-mark { height: 28px; }
  .logo-word { height: 18px; }
  .slide-copy { left: 20px; bottom: 80px; margin-top: 0; }
  .hero-window--sm {
    --x: 5%;
    --h: 58%;
    --ratio: 0.48 / 1;
    margin-bottom: 10%;
    width: 30%;
  }
  .hero-window--lg {
    --x: 46%;
    --h: 80%;
    --ratio: 0.55 / 1;
    margin-bottom: 10%;
    width: 50%;
  }
  .hero-slide-windows,
  .hero-slide-forest {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
  }
  .hero-slide-windows .hero-windows,
  .hero-slide-forest .hero-windows {
    width: 100%;
    height: 100%;
    min-height: 0;
    overflow: hidden;
  }
  .hero-slide-windows .slide-copy,
  .hero-slide-forest .slide-copy {
    position: relative;
    z-index: 3;
    left: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    margin-top: 0;
    padding: 16px 20px 72px;
    justify-content: flex-start;
    text-align: left;
  }
  .hero-slide-windows .slide-copy {
    background: var(--terracotta);
  }
  .hero-slide-forest .slide-copy {
    background: var(--forest);
  }
  .hero-slide-windows .slide-copy h1,
  .hero-slide-windows .slide-copy h2 {
    font-size: 26px;
    line-height: 1.12;
  }
  .hero-slide-windows .slide-copy p,
  .hero-slide-forest .slide-copy p {
    max-width: none;
  }
  .hero-slide-forest .slide-copy h1,
  .hero-slide-forest .slide-copy h2 { font-size: 30px; }
  .hero-slide-forest .forest-cta { margin-top: 20px; }
  .hero-split {
    grid-template-columns: 1fr;
    grid-template-rows: 1.15fr 0.85fr;
  }
  .hero-split-media {
    order: 1;
    border-top-left-radius: 120px;
  }
  .hero-split-copy {
    order: 2;
    align-items: flex-start;
    padding: 24px 20px 72px;
  }
  .hero-slide-split .slide-copy {
    left: auto;
    bottom: auto;
    margin-top: 0;
    max-width: none;
  }
  .hero-split::after {
    background: linear-gradient(to right, var(--terracotta) 50%, var(--forest) 50%);
  }
  .hero .swiper-pagination { left: 20px !important; bottom: 32px !important; }
}

/* About */
.about-section {
  padding: 150px 0 80px;
  overflow: hidden;
}
.about-grid {
  display: flex;
  align-items: flex-end;
  gap: 40px;
}
.about-copy {
  width: 50%;
  padding: 0 0 40px 36px;
  max-width: calc((100% - 72px) / 2 + 36px);
  padding-left: max(36px, calc((100% - 1326px) / 2 + 36px));
}
.about-heading {
  margin-top: 16px;
  max-width: 770px;
  font-size: 35px;
  font-weight: var(--weight-black);
  line-height: 1.25;
  color: var(--heading);
}
.about-lead {
  margin-top: 22px;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--concrete);
}
.about-values {
  margin-top: 72px;
  padding: 0 max(72px, calc((100% - 1326px) / 2 + 36px));
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-top: 28px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.about-features h3 {
  margin-top: 25px;
  font-size: 20px;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: .02em;
}
.about-features p { margin: 12px 0 0; }
.about-features svg path { fill: var(--ochre); }
.about-visual {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 0;
}
.about-visual img {
  width: 100%;
  max-width: 748px;
  height: auto;
}
.about-visual figcaption {
  margin-top: 12px;
  width: 100%;
  max-width: 748px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--concrete);
}

@media (max-width: 1199px) {
  .about-section { padding: 100px 0 60px; }
  .about-heading { font-size: 32px; }
  .about-copy { padding-left: 20px; padding-right: 20px; max-width: none; width: 100%; }
  .about-values { padding: 0 40px; margin-top: 48px; }
  .about-features { gap: 30px; }
}
@media (max-width: 1024px) {
  .about-grid { flex-direction: column; align-items: stretch; }
  .about-copy, .about-visual { width: 100%; }
  .about-visual { justify-content: center; margin-bottom: 0; padding: 0 20px; }
}
@media (max-width: 767px) {
  .about-section { padding: 70px 0 40px; }
  .about-heading { font-size: 24px; }
  .about-copy { padding: 0 20px 24px; }
  .about-lead { max-width: none; }
  .about-values { padding: 0 24px; margin-top: 36px; }
  .about-features { grid-template-columns: 1fr; gap: 28px; margin-top: 24px; padding-top: 28px; }
  .about-visual { padding: 0 20px; align-items: stretch; }
  .about-visual figcaption { padding: 0; }
}

/* Reveal */
.reveal { overflow: hidden; }
.reveal img {
  transform: scale(1.12);
  will-change: transform, clip-path;
}

/* Stats */
.stats-section { width: 100%; }
.stats-grid {
  display: flex;
  min-height: 460px;
  align-items: stretch;
}
.stats-left {
  flex: 1 1 58%;
  min-width: 0;
  background-color: #2a241c;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 36px;
}
@media (min-width: 768px) {
  .stats-left { background-image: url("../assets/stats-bg.webp?v=theme1"); }
}
.stats-left.is-bg-ready {
  background-image: url("../assets/stats-bg.webp?v=theme1");
}
.stat-circle {
  width: 243px;
  max-width: 42vw;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex: none;
  color: #fff;
}
.stat-circle.solid {
  background: var(--terracotta);
  z-index: 1;
}
.stat-circle.glass {
  margin-left: -20px;
  background: #FFFFFF40;
  border: 1px solid #FFFFFF0A;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2;
}
.counter-num {
  font-family: var(--font-primary);
  font-size: 55px;
  font-weight: var(--weight-black);
  color: #fff;
  line-height: 1;
}
.counter-title {
  color: #fff;
  margin-top: 20px;
  max-width: 160px;
  line-height: 1.4;
  font-size: 15px;
}
.stats-right {
  width: 42%;
  max-width: 684px;
  flex: none;
  background: var(--forest);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.stats-copy {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.stats-kicker {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.stats-copy h3 {
  color: #fff;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 400;
}
.stats-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
.stats-mini .counter-num {
  font-size: 32px;
}
.stats-mini .counter-title {
  margin-top: 8px;
  max-width: none;
  font-size: 13px;
  color: rgba(255,255,255,.78);
}
.stats-copy .btn { align-self: flex-start;color: #222; }
.stats-photo { padding: 30px 32px 30px 0; min-height: 0; }
.stats-photo .reveal,
.stats-photo img { width: 100%; height: 100%; }
.stats-photo img { object-fit: cover; }

@media (max-width: 1199px) {
  .stats-grid { flex-direction: column; }
  .stats-left {
    justify-content: center;
    padding: 70px 20px;
    min-height: 360px;
  }
  .stats-right { width: 100%; }
}
@media (max-width: 767px) {
  .stats-left { padding: 50px 15px; }
  .stat-circle { width: 180px; padding: 20px; }
  .stat-circle.glass { margin-left: -16px; }
  .counter-num { font-size: 36px; }
  .counter-title { font-size: 13px; margin-top: 12px; }
  .stats-right { grid-template-columns: 1fr; }
  .stats-photo { padding: 0 15px 15px; height: 100%; }
  .stats-copy h3 { font-size: 20px; }
}

/* Tabs */
.tabs-nav { display: flex; flex-wrap: wrap; gap: 18px 28px; border-bottom: 1px solid var(--line); }
.tab-btn {
  background: none;
  border: 0;
  padding: 0 0 18px;
  text-align: left;
  color: color-mix(in srgb, var(--concrete) 55%, var(--sandstone));
  position: relative;
}
.tab-btn .n { font-size: 12px; display: block; margin-bottom: 6px; }
.tab-btn .t { font-family: var(--font-primary); font-weight: var(--weight-bold); font-size: 18px; white-space: nowrap; }
.tab-btn.is-active { color: var(--heading); }
.tab-btn.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: var(--terracotta);
}
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }
.check-list { list-style: none; padding: 0; margin: 22px 0 0; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  color: var(--ink);
}

/* Services horizontal */
.services-section {
  margin-top: 0;
  overflow: hidden;
}
.services-intro {
  background: var(--sandstone);
  color: var(--forest);
  padding: 150px 0 90px;
  text-align: center;
}
.services-intro .sub-label {
  color: var(--forest);
}
.services-intro h2 {
  max-width: 18em;
  margin: 16px auto 0;
  font-size: 40px;
  line-height: 1.25;
  color: var(--forest);
}
.services-intro a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 15px;
  color: var(--forest);
}
.services-stage {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #1c2414;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .services-stage { background-image: url("../assets/about-history-1.webp?v=pdf1"); }
}
.services-stage.is-bg-ready {
  background-image: url("../assets/about-history-1.webp?v=pdf1");
}
.services-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(3px);
  background: rgba(0,0,0,.18);
}
.services-title {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0 4vw;
  font-family: var(--font-primary);
  font-size: 14vw;
  font-weight: var(--weight-black);
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(217,217,217,.25);
  line-height: .9;
  text-align: center;
  pointer-events: none;
}
.service-track {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  width: max-content;
  will-change: transform;
}
.service-card {
  position: relative;
  flex: 0 0 352px;
  background: var(--plaster);
  padding: 2rem 1.25rem;
  min-height: 420px;
  min-width: 342px;
  display: flex;
  flex-direction: column;
  transition: background .35s ease;
}
.service-card:nth-child(3n + 1) { margin-top: 80px; }
.service-card:nth-child(3n + 2) { margin-top: 40px; }
.service-card .card-icon {
  margin-bottom: 40px;
  height: 58px;
  color: var(--concrete);
  transition: all .35s ease;
  overflow: hidden;
}
.service-card .card-icon svg { display: block; }
.service-card .card-icon svg path { fill: currentColor; }
.service-card h3 {
  font-size: 25px;
  margin: 0;
  color: var(--heading);
  transition: color .35s ease;
}
.service-card .description {
  margin: 15px 0 50px;
  color: var(--body);
  transition: all .35s ease;
  overflow: hidden;
}
.service-card .details {
  height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  color: var(--sandstone);
  border-bottom: 1px solid color-mix(in srgb, var(--sandstone) 40%, transparent);
  transition: all .35s ease;
}
.service-card .details ul {
  margin: 0;
  padding: 0 0 0 17px;
}
.service-card .details li { margin: 6px 0; }
.card-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  color: var(--heading);
  font-size: 14px;
  transition: color .35s ease;
}
.card-link svg path { fill: currentColor; }
.service-card:hover { background: var(--forest); }
.service-card:hover h3,
.service-card:hover .card-link { color: var(--plaster); }
.service-card:hover .card-icon,
.service-card:hover .description {
  margin: 0;
  height: 0;
  opacity: 0;
}
.service-card:hover .details {
  height: auto;
  opacity: 1;
  padding-bottom: 50px;
  margin: 23px 0 45px;
}
@media (max-width: 1199px) {
  .services-intro { padding: 100px 0 70px; }
  .services-intro h2 { font-size: 32px; }
  .service-card { flex-basis: 320px; min-height: 480px; padding: 32px; }
  .service-card:nth-child(3n + 1),
  .service-card:nth-child(3n + 2) { margin-top: 24px; }
}
@media (max-width: 767px) {
  .services-intro { padding: 70px 0 48px; }
  .services-intro h2 { font-size: 20px; }
  .services-stage { min-height: 100svh; height: 100svh; }
  .services-title { font-size: 22vw; }
  .service-track { gap: 16px; }
  .service-card {
    flex: 0 0 min(320px, 82vw);
    min-height: 440px;
    padding: 28px 22px;
    margin-top: 0 !important;
  }
  .service-card h3 { font-size: 20px; }
  .services-stage.is-marquee .service-track {
    animation: services-marquee 42s linear infinite;
  }
  @keyframes services-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
}

/* Values */
.values-section { margin-top: 150px; }
.values-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.values-row {
  display: flex;
  align-items: flex-start;
  margin-top: 85px;
  padding: 0 36px;
}
.value-box {
  flex: 1 1 0;
  min-width: 0;
  border: 1px solid var(--line);
  padding: 14px;
  height: 350px;
  background: var(--plaster);
}
.value-box + .value-box { margin-left: -1px; }
.value-box:nth-child(even) { margin-top: 50px; }
.value-box .box-inner {
  height: 100%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background .35s ease;
}
.value-box:hover .box-inner { background: var(--sandstone); }
.value-box h3 { font-size: 23px; margin: 0; font-weight: var(--weight-bold); }
.value-box .description {
  margin: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all .35s ease;
}
.value-box:hover .description {
  margin-top: 13px;
  height: auto;
  opacity: 1;
}
@media (max-width: 1199px) {
  .values-section { margin-top: 100px; }
  .values-row { margin-top: 50px; padding: 0 20px; flex-wrap: wrap; }
  .value-box { flex: 1 1 45%; height: 300px; }
  .value-box:nth-child(even) { margin-top: 30px; }
}
@media (max-width: 767px) {
  .values-head { padding: 0 20px; }
  .values-row { flex-direction: column; padding: 0 20px; margin-top: 30px; }
  .value-box,
  .value-box:nth-child(even) { margin: 0 0 -1px; height: 280px; }
}

/* Projects */
.project-showcase {
  padding: 150px 0 80px;
  background: var(--plaster);
}
.project-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.project-head h2 {
  margin-top: 12px;
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--heading);
}
.project-view-all {
  font-size: 13px;
  font-weight: var(--weight-medium);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terracotta);
  white-space: nowrap;
}
.project-view-all:hover { opacity: .7; }
.project-swiper { overflow: hidden; }
.project-card {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  color: #fff;
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project-card::after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(180deg, transparent, rgba(17,17,17,.62));
}
.project-card-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
}
.project-card-copy span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sandstone);
}
.project-card-copy h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  color: #fff;
}
.project-card-copy p {
  margin: 6px 0 0;
  font-size: 14px;
  color: rgba(255,255,255,.82);
}
.project-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 28px;
}
.project-nav {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--forest);
  display: grid;
  place-items: center;
}
.project-nav:hover { background: var(--terracotta); border-color: var(--terracotta); color: var(--plaster); }
@media (max-width: 1024px) {
  .project-showcase { padding: 100px 0 60px; }
  .project-card { aspect-ratio: 4 / 3; }
}
@media (max-width: 767px) {
  .project-showcase { padding: 70px 0 48px; }
  .project-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .project-card { aspect-ratio: 5 / 4; }
  .project-card-copy { left: 18px; right: 18px; bottom: 16px; }
  .project-nav { width: 42px; height: 42px; }
}

/* Process */
.process-wrap {
  background: var(--sandstone) url("../assets/process-bg-l.webp") left bottom / auto no-repeat;
  position: relative;
}
.process-wrap .container-site {
  position: relative;
  z-index: 1;
  padding-top: 150px;
}
.process-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/process-bg-r.webp") right bottom / auto no-repeat;
  pointer-events: none;
}
.process-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  overflow: visible;
}
.process-card {
  width: 320px;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 52px 40px;
  background: var(--plaster);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: none;
}
.process-card:nth-child(n+2) {
  margin-left: -40px;
}
.process-card:nth-child(2) {
  z-index: 1;
  background: var(--sandstone);
}
.process-card.dark {
  background: var(--forest);
  color: var(--plaster);
  z-index: 2;
}
.process-card:nth-child(4) {
  z-index: 3;
  background: var(--plaster);
}
.process-card.dark h3,
.process-card.dark p,
.process-card.dark .process-step { color: var(--plaster); }
.process-icon { display: grid; place-items: center; line-height: 0; }
.process-step {
  display: block;
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--concrete);
  margin-bottom: 10px;
}
.process-card h3 {
  font-size: 20px;
  font-weight: var(--weight-bold);
  margin: 28px 0 0;
}
.process-card p {
  margin-top: 10px;
  max-width: 241px;
}

/* Testimonials */
.clients-section {
  padding: 120px 0 32px;
  overflow: hidden;
}
.reviews-heading {
  margin-top: 16px;
  max-width: 760px;
  font-size: clamp(22px, 4vw, 40px);
  font-weight: var(--weight-black);
  line-height: 1.25;
  color: var(--heading);
}
.social-presence-section {
  padding: 48px 0 110px;
  overflow: hidden;
}
.clients-section .review-video-swiper,
.social-presence-section .ig-feed-embed {
  margin-top: 56px;
}
.testimonial-swiper {
  overflow: hidden;
  margin-top: 80px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.testimonial-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
  align-items: stretch;
}
.testimonial-swiper .swiper-slide {
  width: min(540px, 84vw);
  height: auto;
}
.testimonial-card {
  height: 100%;
  padding: 36px 40px;
  background: color-mix(in srgb, var(--sandstone) 22%, var(--plaster));
  border: 1px solid color-mix(in srgb, var(--sandstone) 65%, transparent);
}
.review {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.35;
  color: var(--heading);
  margin: 28px 0 0;
}
.testimonial-initials {
  width: 88px;
  height: 88px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--terracotta);
  color: var(--plaster);
  font-family: var(--font-primary);
  font-weight: var(--weight-bold);
  font-size: 22px;
  letter-spacing: .04em;
}
@media (max-width: 1199px) {
  .clients-section { padding: 100px 0 24px; }
  .social-presence-section { padding: 32px 0 90px; }
  .clients-section .review-video-swiper,
  .social-presence-section .ig-feed-embed { margin-top: 40px; }
}
@media (max-width: 767px) {
  .clients-section { padding: 70px 0 16px; }
  .social-presence-section { padding: 24px 0 72px; }
}

/* Team */
.team-card img { width: 100%; height: 280px; object-fit: cover; }
.team-card .name { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; color: var(--heading); font-family: var(--font-primary); font-size: 16px; font-weight: var(--weight-medium); }
.nav-circle {
  width: 56px;
  height: 56px;
  border: 1px solid var(--line);
  background: var(--plaster);
  display: grid;
  place-items: center;
}
.nav-circle:hover { background: var(--terracotta); color: var(--plaster); }

/* FAQ */
.faq-section {
  background: var(--forest);
  color: var(--plaster);
  position: relative;
  overflow: hidden;
  padding: 150px 0;
}
.faq-section > div {
  position: relative;
  z-index: 1;
  width: min(733px, calc(100% - 72px));
  margin-inline: auto;
}
.faq-section h2 { color: var(--plaster); }
.acc-item { border-bottom: 1px solid rgba(217,217,217,.25); }
.acc-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  background: none;
  border: 0;
  color: var(--plaster);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: var(--weight-bold);
}
.acc-btn span {
  width: 18px;
  height: 18px;
  position: relative;
  flex: none;
}
.acc-btn span::before,
.acc-btn span::after {
  content: "";
  position: absolute;
  background: var(--plaster);
  inset: 50% 0 auto 0;
  height: 1px;
}
.acc-btn span::after { transform: rotate(90deg); }
.acc-item.is-open .acc-btn span::after { opacity: 0; }
.acc-body { display: none; color: var(--sandstone); padding: 0 0 22px; max-width: 520px; }
.acc-item.is-open .acc-body { display: block; }
.faq-float { position: absolute; z-index: 0; width: 20vw; bottom: 0; left: 0; pointer-events: none; }
.faq-float.right { width: 15vw; left: auto; right: 40px; top: 40px; bottom: auto; }

@media (max-width: 1199px) {
  .faq-section { padding: 100px 0; }
  .process-wrap .container-site { padding-top: 100px; }
  .process-card { width: 260px; padding: 36px 28px; }
  .process-card:nth-child(n+2) { margin-left: -32px; }
  .process-card h3 { font-size: 16px; margin-top: 20px; }
}
@media (max-width: 1024px) {
  .process-card { width: 220px; padding: 28px 20px; }
  .process-card:nth-child(n+2) { margin-left: -28px; }
  .process-card h3 { font-size: 15px; margin-top: 16px; }
  .process-card p { max-width: 160px; font-size: 13px; }
}
@media (max-width: 767px) {
  .tabs-nav { flex-direction: column; gap: 0; }
  .faq-section { padding: 70px 0; }
  .process-wrap .container-site { padding-top: 70px; }
  .process-cards { flex-direction: column; align-items: center; }
  .process-card,
  .process-card:nth-child(2),
  .process-card.dark,
  .process-card:nth-child(4) {
    width: min(300px, 100%);
    margin-left: 0;
    margin-top: -28px;
    padding: 30px;
  }
  .process-card:first-child { margin-top: 0; }
  .process-card h3 { font-size: 16px; margin-top: 28px; }
  .process-card p { max-width: 241px; }
  .review { font-size: 20px; }
  .faq-float { display: none; }
}

/* Footer */
.site-footer { background: var(--forest); color: var(--sandstone); padding: 70px 0 30px; }
.site-footer h6 { color: var(--plaster); font-size: 13px; letter-spacing: .12em; margin-bottom: 18px; font-weight: var(--weight-bold); }
.site-footer a:hover { color: var(--plaster); }
.news-form { display: flex; border-bottom: 1px solid color-mix(in srgb, var(--sandstone) 40%, transparent); }
.news-form input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--plaster);
  padding: 12px 0;
  outline: none;
}
.news-form input::placeholder { color: color-mix(in srgb, var(--sandstone) 70%, transparent); }
.news-form button { background: none; border: 0; color: var(--plaster); }
.foot-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
.foot-list { list-style: none; padding: 0; margin: 0; }
.foot-list li { padding: 6px 0; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 50px; padding-top: 24px; border-top: 1px solid color-mix(in srgb, var(--sandstone) 28%, transparent); font-size: 13px; }
.foot-social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.foot-social a {
  width: 38px;
  height: 38px;
  border: 1px solid color-mix(in srgb, var(--sandstone) 40%, transparent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--plaster);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.foot-social a:hover {
  background: var(--plaster);
  color: var(--forest);
  border-color: var(--plaster);
}
.foot-social svg { width: 15px; height: 15px; }

@media (max-width: 900px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .site-header .header-meta { display: none; }
}

/* Inner pages */
.page-shell { background: var(--plaster); }
.sticky-nav a[aria-current="page"] { color: var(--terracotta); }

.about-studio {
  padding: 40px 0 120px;
}
.page-intro,
.about-hero-top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: 24px 64px;
  align-items: end;
  margin-bottom: 72px;
}
.page-intro h1,
.about-hero-top h1 {
  font-size: clamp(42px, 6.5vw, 76px);
  font-weight: var(--weight-black);
  line-height: .95;
  margin: 0;
  letter-spacing: -.02em;
}
.page-intro-lead,
.about-hero-lead {
  max-width: 420px;
  margin: 0 0 8px auto;
  font-size: 16px;
  line-height: 1.7;
}

.inner-page { padding: 40px 0 80px; }
.page-block { padding: 0 0 100px; }
.page-block h2 { font-size: clamp(28px, 3.2vw, 40px); margin: 16px 0 20px; max-width: 720px; }

.expertise-list { border-top: 1px solid var(--line); }
.expertise-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 200px;
  gap: 28px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.expertise-row .n {
  font-size: 15px;
  font-weight: var(--weight-bold);
  letter-spacing: .08em;
  color: var(--terracotta);
}
.expertise-row h3 { font-size: clamp(22px, 2.4vw, 30px); margin: 0 0 10px; }
.expertise-row p { margin: 0; max-width: 560px; }
.expertise-row img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.process-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.process-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: end;
}
.process-photos img { width: 100%; height: 420px; object-fit: cover; }
.process-photos img:last-child { height: 320px; }
.process-acc .acc-item { border-bottom: 1px solid var(--line); }
.process-acc .acc-btn,
.faq-page .acc-btn {
  color: var(--heading);
  font-size: 20px;
}
.process-acc .acc-btn span::before,
.process-acc .acc-btn span::after,
.faq-page .acc-btn span::before,
.faq-page .acc-btn span::after { background: var(--heading); }
.process-acc .acc-body,
.faq-page .acc-body { color: var(--body); max-width: none; }

.page-cta {
  background: var(--forest);
  color: var(--plaster);
  padding: 72px 0;
  margin-top: 20px;
}
.page-cta h2 { color: var(--plaster); font-size: clamp(28px, 3.5vw, 44px); max-width: 640px; }
.page-cta p { color: rgba(255,255,255,.82); max-width: 480px; margin: 16px 0 28px; }

.faq-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 80px;
}
.faq-group h2 { font-size: clamp(26px, 3vw, 36px); margin: 0 0 12px; }
.faq-page .acc-item { border-bottom: 1px solid var(--line); }

@media (max-width: 1024px) {
  .page-intro {
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    margin-bottom: 56px;
  }
  .expertise-row { grid-template-columns: 56px 1fr; }
  .expertise-row img { display: none; }
  .process-split,
  .faq-groups { grid-template-columns: 1fr; }
  .process-photos img,
  .process-photos img:last-child { height: 280px; }
}
@media (max-width: 767px) {
  .page-intro {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
    align-items: start;
  }
  .page-intro-lead { margin: 0; max-width: none; }
  .expertise-row { grid-template-columns: 1fr; gap: 8px; padding: 28px 0; }
  .process-photos { grid-template-columns: 1fr; }
}

.contact-hero-images {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1.35fr;
  gap: 16px;
  margin: 0 0 100px;
}
.contact-hero-images img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.contact-touch-lead {
  max-width: 560px;
  margin: 0 0 48px;
}
.contact-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(min(100%, 440px), 1.15fr);
  gap: 48px 56px;
  align-items: start;
}
.contact-form-col {
  min-width: 0;
  width: 100%;
}
.contact-details {
  display: grid;
  gap: 28px;
}
.contact-label {
  display: block;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: var(--weight-bold);
  color: var(--heading);
  margin-bottom: 8px;
}
.contact-detail p { margin: 0; }
.contact-detail a { color: inherit; }
.contact-social {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.contact-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-social svg { width: 14px; height: 14px; }
.contact-form {
  position: relative;
  display: grid;
  gap: 16px;
  background: #fff;
  border: 1px solid #d8d2c6;
  padding: 40px 36px 32px;
  width: 100%;
  box-shadow: 0 18px 50px rgba(47, 58, 28, .12);
  border-radius: 8px;
}
.contact-form.lead-card {
  padding: 40px 36px 32px;
  gap: 16px;
}
.contact-form .lead-card-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.85rem, 2.8vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--forest);
  margin: 0;
  max-width: none;
}
.contact-form .lead-card-sub {
  margin: -4px 0 6px;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
}
.contact-field {
  display: grid;
  gap: 8px;
}
.contact-form label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: var(--weight-medium);
  color: #8a8478;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d8d2c6;
  background: #fff;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--heading);
  border-radius: 8px;
  outline: none;
}
.contact-form .lead-card-input,
.contact-form .lead-card-phone,
.contact-form .contact-submit {
  width: 100%;
  box-sizing: border-box;
}
.contact-form .lead-card-input {
  height: 52px;
  padding: 0 16px;
  border-radius: 8px;
}
.contact-form .lead-card-phone {
  height: 52px;
  border-radius: 8px;
}
.contact-form .lead-card-phone input {
  width: 0;
  flex: 1 1 0;
  min-width: 0;
  height: 52px;
  border: 0;
  border-radius: 0;
  padding: 0 16px 0 4px;
  background: transparent;
}
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 36px;
  background-color: #fff;
  background-image: linear-gradient(45deg, transparent 50%, #8a8478 50%), linear-gradient(135deg, #8a8478 50%, transparent 50%);
  background-position: calc(100% - 16px) calc(50% - 2px), calc(100% - 11px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.contact-form select:invalid {
  color: #b5afa3;
}
.contact-form select option {
  color: var(--heading);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #b5afa3; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--forest); }
.contact-submit {
  width: 100%;
  margin-top: 6px;
  border: 0;
  background: var(--forest);
  color: var(--plaster);
  font-family: inherit;
  font-size: 13px;
  font-weight: var(--weight-bold);
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 16px 20px;
  cursor: pointer;
}
.contact-submit:hover { background: #243016; }
.contact-form-note {
  margin: 0;
  font-size: 13px;
  color: #6f6a60;
  text-align: left;
}
.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-form-status {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
  color: var(--forest);
}
.contact-form-status a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-form-status.is-error {
  color: var(--terracotta);
}
.contact-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}
.contact-form-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-top: 36px;
}
.contact-locations h2 { margin-bottom: 28px; }
.contact-location-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px 48px;
  align-items: stretch;
}
.contact-location img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}
.contact-location h3 {
  font-size: 26px;
  margin: 0 0 4px;
}
.contact-location-type {
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: var(--weight-bold);
  margin: 0 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.contact-location ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.contact-location li {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 15px;
  margin-bottom: 10px;
}
.contact-location li span,
.contact-location li a { color: var(--body); }
.contact-map {
  min-height: 420px;
  background: var(--sandstone);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1024px) {
  .contact-hero-images {
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 64px;
  }
  .contact-hero-images img { height: 200px; }
  .contact-split,
  .contact-location-grid { grid-template-columns: 1fr; }
  .contact-map,
  .contact-map iframe { min-height: 320px; }
}
@media (max-width: 767px) {
  .contact-hero-images {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 48px;
  }
  .contact-hero-images img { height: 180px; }
  .contact-form,
  .contact-form.lead-card { padding: 28px 20px 24px; }
  .contact-form-row { grid-template-columns: 1fr; }
  .contact-form-image { height: 160px; }
}
.studio-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: start;
}
.studio-grid h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  margin: 16px 0 20px;
  max-width: 640px;
}
.studio-grid p { max-width: 620px; }
.studio-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 36px 0 28px;
  max-width: 420px;
}
.studio-stats-3 {
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 640px;
}
.studio-stat .counter-num {
  font-size: 42px;
  color: var(--heading);
}
.studio-stat .counter-title {
  margin-top: 8px;
  max-width: none;
  color: var(--body);
  font-size: 14px;
}
.studio-tabs { margin-top: 12px; max-width: 560px; }
.studio-tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.studio-tab {
  background: none;
  border: 0;
  padding: 0 0 12px;
  font-family: var(--font-primary);
  font-weight: var(--weight-bold);
  font-size: 15px;
  color: color-mix(in srgb, var(--concrete) 55%, var(--sandstone));
  position: relative;
}
.studio-tab.is-active { color: var(--heading); }
.studio-tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--terracotta);
}
.studio-tab-panel { display: none; }
.studio-tab-panel.is-active { display: block; }
.studio-photos {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: end;
  min-height: 100%;
}
.studio-photos img { width: 100%; object-fit: cover; }
.studio-photos img:first-child { height: 560px; }
.studio-photos img:last-child { height: 380px; }

.about-craft {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 460px;
}
.about-craft-media { min-height: 360px; overflow: hidden; }
.about-craft-media img { width: 100%; height: 100%; object-fit: cover; }
.about-craft-copy {
  background: var(--forest);
  color: var(--plaster);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-craft-copy p { color: rgba(255,255,255,.82); max-width: 440px; }
.skill { margin-top: 22px; }
.skill-top {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
}
.skill-track {
  height: 2px;
  background: rgba(255,255,255,.2);
}
.skill-track span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--terracotta);
}

.about-values.container-site { padding: 0 0 80px; }
.values-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}
.values-intro h2 { margin-top: 12px; font-size: clamp(32px, 4vw, 44px); }
.value-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}
.value-grid-3 .value-box {
  min-height: 240px;
  height: auto;
  margin: 0 !important;
}
.value-grid-3 .value-box + .value-box { margin-left: 0; }
.value-grid-3 .value-box .description {
  height: auto;
  opacity: 1;
  margin-top: 16px;
}

.history-section {
  padding: 80px 0 40px;
}
.history-intro { max-width: 560px; margin-bottom: 40px; }
.history-intro h2 { margin: 12px 0 16px; }
.history-swiper { overflow: hidden; }
.history-card {
  background: var(--plaster);
  border: 1px solid var(--line);
  padding: 28px 28px 0;
}
.history-card .timeline {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
}
.history-card h3 { font-size: 22px; margin-bottom: 10px; }
.history-card img { width: 100%; height: 180px; object-fit: cover; margin-top: 20px; }

@media (max-width: 1024px) {
  .studio-grid,
  .about-craft,
  .values-intro,
  .value-grid-3 { grid-template-columns: 1fr; }
  .about-hero-top {
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    margin-bottom: 56px;
  }
  .studio-photos { grid-template-columns: 1fr 1fr; }
  .studio-photos img:first-child,
  .studio-photos img:last-child { height: 280px; }
  .about-craft-copy { padding: 40px 24px; }
  .about-studio { padding: 32px 0 80px; }
}
@media (max-width: 767px) {
  .about-hero-top {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
    align-items: start;
  }
  .about-hero-lead { margin: 0; max-width: none; }
  .studio-photos { grid-template-columns: 1fr; }
  .studio-stats-3 { grid-template-columns: 1fr 1fr; max-width: none; }
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin: 0 0 48px;
}
.portfolio-filters button {
  background: none;
  border: 0;
  padding: 0 0 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: var(--weight-medium);
  color: color-mix(in srgb, var(--concrete) 55%, var(--sandstone));
  cursor: pointer;
}
.portfolio-filters button.is-active {
  color: var(--heading);
  box-shadow: inset 0 -2px 0 var(--terracotta);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.portfolio-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #d8d2c6;
  color: inherit;
  min-height: 100%;
}
.portfolio-card:hover { border-color: var(--forest); }
.portfolio-card-media {
  overflow: hidden;
  line-height: 0;
}
.portfolio-card-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  display: block;
  transition: transform .6s ease;
}
.portfolio-card:hover .portfolio-card-media img { transform: scale(1.05); }
.portfolio-card-body { padding: 18px 18px 20px; }
.portfolio-card-body span {
  display: block;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
}
.portfolio-card-body h2 {
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 8px;
}
.portfolio-card-body p {
  margin: 0;
  font-size: 14px;
  color: var(--body);
}
.portfolio-card-body em {
  display: inline-block;
  margin-top: 14px;
  font-style: normal;
  font-size: 13px;
  font-weight: var(--weight-bold);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--forest);
}
.portfolio-card:hover em { color: var(--terracotta); }
.portfolio-card[hidden] { display: none; }
.project-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  margin: 0 0 28px;
  color: var(--body);
}
.project-crumb a { color: var(--terracotta); }

.project-detail-main {
  display: grid;
  grid-template-columns: minmax(0, 88vh) minmax(280px, 1fr);
  gap: 28px 56px;
  align-items: end;
  margin-bottom: 56px;
}
.project-detail-gallery {
  display: grid;
  gap: 12px;
  min-width: 0;
  width: fit-content;
  max-width: 100%;
}
.project-detail-frame {
  margin: 0;
  width: fit-content;
  max-width: 100%;
  background: transparent;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}
.project-detail-frame img {
  display: block;
  height: 72vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left bottom;
}
.project-detail-copy {
  padding-top: 0;
  max-width: 520px;
  justify-self: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
}
.project-detail-copy h1 {
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: var(--weight-black);
  line-height: .95;
  margin: 0 0 22px;
  letter-spacing: -.02em;
}
.project-detail-copy p {
  max-width: 520px;
  margin: 0 0 16px;
  line-height: 1.75;
}
.project-detail-copy .btn { margin-top: 12px; }
.project-detail-meta {
  margin-bottom: 56px;
  text-align: center;
}
.project-detail-meta h2 {
  font-size: 18px;
  margin: 0 0 18px;
  text-align: center;
}
.project-detail-meta ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.project-detail-meta li {
  padding: 20px 16px;
  border-right: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
}
.project-detail-meta li:last-child {
  border-right: 0;
}
.project-detail-meta strong {
  display: block;
  color: var(--heading);
  font-weight: var(--weight-bold);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 8px;
  text-align: center;
}
.project-detail-meta span {
  display: block;
  color: var(--body);
  text-align: center;
}
.project-detail-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 10px;
  border-top: 1px solid var(--line);
}
.project-detail-nav a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: var(--weight-medium);
  color: var(--heading);
}
.project-detail-nav a:hover { color: var(--terracotta); }

@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .project-detail-main { grid-template-columns: 1fr; gap: 28px; align-items: start; justify-items: start; }
  .project-detail-gallery,
  .project-detail-frame {
    margin-inline: 0;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .project-detail-frame img {
    height: auto;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center top;
    margin-inline: 0;
  }
  .project-detail-copy {
    justify-self: start;
    width: 100%;
  }
  .project-detail-meta ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 28rem;
    margin: 0 auto;
    padding: 0;
    border-top: 1px solid var(--line);
    border-bottom: 0;
    list-style: none;
  }
  .project-detail-meta li,
  .project-detail-meta li:nth-child(3),
  .project-detail-meta li:nth-child(n + 4),
  .project-detail-meta li:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
    text-align: center;
  }
  .project-detail-meta strong {
    display: block;
    margin: 0 0 6px;
    text-align: center;
  }
  .project-detail-meta span {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .portfolio-grid { grid-template-columns: 1fr; gap: 18px; }
  .inner-page.project-detail { padding-top: 16px; }
  .project-crumb { margin-bottom: 14px; }
  .project-detail-main { gap: 20px; }
  .project-detail,
  .project-detail-main,
  .project-detail-gallery,
  .project-detail-copy,
  .project-detail-meta {
    overflow-x: hidden;
    max-width: 100%;
    min-width: 0;
  }
  .project-detail-nav {
    flex-wrap: nowrap;
    gap: 8px;
    overflow: hidden;
    min-width: 0;
  }
  .project-detail-nav a {
    flex: 0 1 auto;
    min-width: 0;
    gap: 6px;
    font-size: 12px;
    line-height: 1.3;
    white-space: nowrap;
  }
  .project-detail-meta {
    text-align: left;
  }
  .project-detail-meta h2 {
    text-align: left;
  }
  .project-detail-meta ul {
    margin: 0;
    max-width: none;
  }
  .project-detail-meta li,
  .project-detail-meta li:nth-child(3),
  .project-detail-meta li:nth-child(n + 4),
  .project-detail-meta li:last-child {
    align-items: flex-start;
    text-align: left;
  }
  .project-detail-meta strong,
  .project-detail-meta span {
    text-align: left;
  }
}

.nav-item.has-drop { position: relative; }
.nav-drop {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 190px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 10px 0;
  z-index: 30;
}
.nav-item.has-drop:hover .nav-drop,
.nav-item.has-drop:focus-within .nav-drop { display: block; }
.nav-drop a {
  display: block;
  padding: 8px 18px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  font-weight: var(--weight-medium);
}
.nav-drop a:hover { opacity: 1; color: var(--terracotta); background: var(--plaster); }
.sticky-nav .nav-item.has-drop > a { display: inline-flex; }

#pricing,
#faqs { scroll-margin-top: 96px; }
.pricing-section {
  background: var(--plaster);
  padding: 150px 0;
}
.pricing-section .pricing-lead {
  max-width: 640px;
  margin: 16px 0 48px;
  font-size: 16px;
  line-height: 1.7;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.pricing-card {
  background: #fff;
  border: 1px solid #d8d2c6;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
}
.pricing-card.is-featured { border-color: var(--forest); background: var(--forest); color: var(--plaster); }
.pricing-card.is-featured p,
.pricing-card.is-featured li { color: rgba(255,255,255,.82); }
.pricing-card.is-featured h2,
.pricing-card.is-featured h3,
.pricing-card.is-featured .pricing-label { color: var(--plaster); }
.pricing-card.is-featured .btn { background: var(--plaster); color: var(--forest); }
.pricing-label {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: var(--weight-bold);
  margin: 0 0 12px;
}
.pricing-card h2,
.pricing-card h3 {
  font-size: clamp(28px, 3vw, 36px);
  margin: 0 0 12px;
}
.pricing-card h2 span,
.pricing-card h3 span { font-size: 14px; font-weight: var(--weight-medium); }
.pricing-card p { margin: 0 0 18px; font-size: 14px; }
.pricing-card ul { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.pricing-card li {
  padding: 8px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.pricing-card.is-featured li { border-top-color: rgba(255,255,255,.2); }
.pricing-card .btn { align-self: start; }

.team-hero-images {
  display: grid;
  grid-template-columns: 1.3fr .8fr 1.3fr;
  gap: 14px;
  margin: 0 0 56px;
}
.team-hero-images img { width: 100%; height: 220px; object-fit: cover; }
.team-quote {
  max-width: 640px;
  margin: 0 0 64px;
}
.team-quote p { font-family: var(--font-serif); font-size: clamp(22px, 2.6vw, 30px); color: var(--heading); }
.team-quote cite { font-style: normal; font-size: 14px; }
.team-grid-title { margin: 0 0 28px; font-size: clamp(28px, 3vw, 40px); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 24px;
}
.team-card-link { color: inherit; display: block; }
.team-card-link img { width: 100%; height: 320px; object-fit: cover; margin-bottom: 14px; }
.team-card-link h3 { font-size: 22px; margin: 0 0 4px; }
.team-card-link p { margin: 0; font-size: 14px; }
.team-card-link:hover h3 { color: var(--terracotta); }

.team-detail-top {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}
.team-detail-top img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.team-detail-top h1 { font-size: clamp(36px, 5vw, 56px); line-height: .95; margin: 0 0 8px; }
.team-role { font-weight: var(--weight-bold); margin: 0 0 16px; }
.team-contact { list-style: none; padding: 0; margin: 20px 0 0; }
.team-contact li { padding: 6px 0; }
.team-expertise {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 40px;
}
.team-expertise ul { list-style: none; padding: 0; margin: 0; }
.team-expertise li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.team-career {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 1199px) {
  .pricing-section { padding: 100px 0; }
}
@media (max-width: 767px) {
  .pricing-section { padding: 70px 0; }
}
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .team-hero-images { grid-template-columns: 1fr 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-detail-top { grid-template-columns: 220px 1fr; gap: 28px; }
  .team-expertise,
  .team-career { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .team-hero-images { grid-template-columns: 1fr; }
  .team-hero-images img { height: 180px; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card-link img { height: 280px; }
  .team-detail-top { grid-template-columns: 1fr; }
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.location-card {
  scroll-margin-top: 96px;
  background: #fff;
  border: 1px solid #d8d2c6;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.location-card h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin: 0 0 12px;
}
.location-card p { margin: 0 0 20px; font-size: 15px; line-height: 1.65; }
.location-card .btn,
.location-card .btn-outline { align-self: start; margin-top: auto; }
.location-card.is-priority {
  grid-column: 1 / -1;
  background: var(--forest);
  border-color: var(--forest);
  color: var(--plaster);
}
.location-card.is-priority h2,
.location-card.is-priority p { color: var(--plaster); }
.location-card.is-priority .location-tag {
  color: var(--sandstone);
}
.location-card.is-priority .btn {
  background: var(--plaster);
  color: var(--forest);
}
.location-tag {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: var(--weight-bold);
  margin: 0 0 10px;
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .sticky-nav { gap: 22px; }
}
@media (max-width: 1024px) {
  .location-grid { grid-template-columns: 1fr 1fr; }
  .location-card.is-priority { grid-column: auto; }
}
@media (max-width: 767px) {
  .location-grid { grid-template-columns: 1fr; }
}

.legal-meta {
  font-size: 14px;
  margin: 0 0 36px;
}
.legal-toc {
  background: #fff;
  border: 1px solid #d8d2c6;
  padding: 24px 28px;
  margin: 0 0 48px;
}
.legal-toc h2 {
  font-size: 18px;
  margin: 0 0 12px;
}
.legal-toc ol {
  margin: 0;
  padding-left: 22px;
  columns: 2;
  gap: 24px;
}
.legal-toc a { color: var(--terracotta); }
.legal-doc {
  max-width: 780px;
}
.legal-doc h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  margin: 40px 0 14px;
  max-width: none;
  scroll-margin-top: 96px;
}
.legal-doc h3 {
  font-size: 18px;
  margin: 28px 0 10px;
}
.legal-doc p,
.legal-doc li {
  font-size: 16px;
  line-height: 1.75;
}
.legal-doc ul,
.legal-doc ol {
  margin: 0 0 18px;
  padding-left: 22px;
}
.legal-doc p { margin: 0 0 16px; }
.legal-note {
  border-left: 3px solid var(--terracotta);
  padding: 8px 0 8px 16px;
  margin: 0 0 24px;
}
@media (max-width: 767px) {
  .legal-toc ol { columns: 1; }
}

/* Ad landing page */
.ad-page .ad-hero > .site-header {
  position: relative;
  z-index: 50;
  flex: none;
  align-self: stretch;
  margin: 0;
  background: var(--plaster);
}
.ad-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.ad-section-head {
  margin-bottom: 40px;
  max-width: 640px;
}
.ad-section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.05;
}
.ad-section-head p:last-child {
  margin: 0;
  color: var(--body);
}

.ad-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--plaster);
  overflow: hidden;
}
.ad-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ad-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(47, 58, 28, .18) 0%, rgba(47, 58, 28, .55) 48%, rgba(47, 58, 28, .88) 100%);
}
.ad-hero-copy {
  position: relative;
  z-index: 1;
  width: min(1326px, calc(100% - 80px));
  margin-top: auto;
  margin-inline: auto;
  margin-bottom: 0;
  padding: 0 0 40px;
}
.ad-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(40px, 7vw, 84px);
  line-height: .95;
  color: var(--plaster);
  max-width: 14ch;
}
.ad-hero-lead {
  max-width: 540px;
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(242, 235, 217, .9);
}
.ad-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}
.ad-btn-light {
  background: transparent;
  color: var(--plaster);
  border-color: rgba(242, 235, 217, .55);
}
.ad-btn-light:hover {
  background: var(--plaster);
  color: var(--forest);
  border-color: var(--plaster);
}
.ad-hero-trust {
  margin: 0;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(242, 235, 217, .72);
}
.ad-hero-stage {
  position: relative;
  z-index: 1;
  width: min(1326px, calc(100% - 80px));
  margin: auto auto 40px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 28px;
}
.ad-hero-stage .ad-hero-copy {
  width: auto;
  margin: 0;
  padding: 0;
}
.ad-hero-form { display: none; }
@media (min-width: 1025px) {
  .ad-hero-stage {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 392px);
    align-items: center;
    margin-bottom: 56px;
    gap: 48px;
  }
  .ad-hero-form { display: block; }
}

.ad-trust {
  padding: 56px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.ad-trust .ad-kicker { text-align: center; }
.ad-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  text-align: center;
  margin-top: 28px;
}
.ad-stat {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  color: var(--forest);
  margin-bottom: 10px;
}
.ad-trust-grid p {
  margin: 0;
  font-size: 14px;
  letter-spacing: .04em;
}

.impact-bar {
  padding: 48px 0;
  background: #f6f4ef;
  border-top: 1px solid color-mix(in srgb, var(--line) 22%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 22%, transparent);
}
.impact-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 32px;
}
.impact-bar article {
  text-align: left;
}
.impact-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  color: var(--terracotta);
}
.impact-icon svg {
  width: 32px;
  height: 32px;
}
.impact-bar h3 {
  margin: 0 0 6px;
  font-family: var(--font-primary);
  font-size: clamp(22px, 2.1vw, 28px);
  font-weight: var(--weight-bold);
  line-height: 1.2;
  color: var(--forest);
}
.impact-bar p {
  margin: 0;
  font-size: 14px;
  color: var(--body);
}
@media (max-width: 1024px) {
  .impact-bar-grid { grid-template-columns: 1fr 1fr; gap: 32px 28px; }
}
@media (max-width: 767px) {
  .impact-bar { padding: 36px 0; }
  .impact-bar-grid { gap: 28px 20px; }
  .impact-bar h3 { font-size: 22px; }
}
.studio-grid .impact-bar,
.page-block .impact-bar {
  padding: 28px 0 4px;
  background: transparent;
  border: 0;
}
.studio-grid .impact-bar .container-site,
.page-block .impact-bar .container-site {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}
.studio-grid .impact-bar-grid,
.page-block .impact-bar-grid {
  grid-template-columns: 1fr 1fr;
  gap: 22px 18px;
}

/* Ad Page Delivered by BuildAbo Section */
.ad-delivered-section {
  padding: 64px 0 60px;
  background: #ffffff;
  border-bottom: 1px solid #f0eae1;
  position: relative;
  opacity: 1;
}

.ad-delivered-grid {
  display: grid;
  grid-template-columns: 440px minmax(0, 480px);
  gap: 56px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

/* Video Player Card */
.ad-delivered-video-col {
  width: 100%;
}

.ad-delivered-video-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  background: #111111;
  box-shadow: 0 16px 40px rgba(35, 25, 15, 0.16);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.ad-delivered-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  cursor: pointer;
}

/* Top-Left Badge */
.ad-video-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  background: #93562a;
  color: #ffffff;
  border-radius: 999px;
  padding: 5px 14px 5px 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.ad-badge-icon-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ad-badge-icon {
  display: block;
  color: #ffffff;
}

.ad-badge-text {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #ffffff;
  white-space: nowrap;
}

/* Cursive Script Handwriting Overlays */
.ad-video-script {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  font-family: 'Caveat', cursive, sans-serif;
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.ad-video-script-top {
  top: 18px;
  right: 18px;
  text-align: right;
  transform: rotate(-6deg);
}

.ad-video-script-bottom {
  bottom: 70px;
  left: 18px;
  text-align: left;
  transform: rotate(-5deg);
}

.ad-script-swoosh {
  width: 48px;
  height: 10px;
  display: block;
  margin-top: 2px;
}

.ad-video-script-top .ad-script-swoosh {
  margin-left: auto;
}

.ad-video-script-bottom .ad-script-swoosh {
  margin-right: auto;
}

/* Big Center Play/Pause Button */
.ad-video-center-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease, background 0.2s ease;
}

.ad-video-center-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(0, 0, 0, 0.58);
}

.ad-center-icon-play {
  margin-left: 3px;
}

.ad-video-center-btn .ad-center-icon-pause {
  display: none;
}

.ad-delivered-video-card.is-playing .ad-video-center-btn {
  opacity: 0;
  pointer-events: none;
}

.ad-delivered-video-card.is-playing:hover .ad-video-center-btn {
  opacity: 0.88;
  pointer-events: auto;
}

.ad-delivered-video-card.is-playing .ad-center-icon-play {
  display: none;
}

.ad-delivered-video-card.is-playing .ad-center-icon-pause {
  display: block;
}

/* Custom Bottom Controls Bar */
.ad-video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 6;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.5) 65%, transparent 100%);
  padding: 24px 16px 12px;
}

.ad-video-controls-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 8px;
}

.ad-video-ctrl-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ad-ctrl-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 3px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: opacity 0.15s ease, transform 0.15s ease;
  border-radius: 4px;
}

.ad-ctrl-btn:hover {
  opacity: 0.85;
  transform: scale(1.1);
}

.ad-ctrl-btn .ad-icon-pause {
  display: none;
}

.ad-delivered-video-card.is-playing .ad-ctrl-btn .ad-icon-play {
  display: none;
}

.ad-delivered-video-card.is-playing .ad-ctrl-btn .ad-icon-pause {
  display: block;
}

.ad-video-time {
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.4px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.ad-video-ctrl-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ad-ctrl-btn .ad-icon-unmuted {
  display: none;
}

.ad-delivered-video-card.is-unmuted .ad-ctrl-btn .ad-icon-muted {
  display: none;
}

.ad-delivered-video-card.is-unmuted .ad-ctrl-btn .ad-icon-unmuted {
  display: block;
}

/* Full-width Progress Bar Scrubber */
.ad-video-progress-container {
  width: 100%;
  height: 12px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.ad-video-progress-container::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3.5px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 2px;
}

.ad-video-progress-bar {
  height: 3.5px;
  background: #ffffff;
  border-radius: 2px;
  width: 0%;
  position: relative;
  z-index: 1;
  transition: width 0.1s linear;
}

/* Right Content Column */
.ad-delivered-content-col {
  padding-left: 8px;
  max-width: 480px;
  width: 100%;
}

/* Header Elements */
.ad-delivered-header {
  margin-bottom: 22px;
}

.ad-delivered-kicker-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.ad-kicker-line {
  width: 38px;
  height: 1.5px;
  background: #c5a684;
  display: inline-block;
}

.ad-delivered-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #93562a;
}

.ad-delivered-title {
  margin: 0 0 8px;
  font-size: clamp(30px, 2.7vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  color: #111111;
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  letter-spacing: -0.02em;
}

.ad-text-brown {
  color: #93562a;
}

.ad-delivered-subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: #666666;
  font-weight: 500;
}

/* Stats Card */
.ad-delivered-stats-card {
  background: #ffffff;
  border: 1px solid #e7ded3;
  border-radius: 14px;
  padding: 16px 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 26px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.ad-stat-item {
  text-align: center;
  padding: 2px 6px;
  border-right: 1px solid #eee5da;
}

.ad-stat-item:last-child {
  border-right: none;
}

.ad-stat-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1.5px solid #d4b595;
  background: #fdfaf6;
  color: #93562a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.ad-stat-symbol {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #93562a;
}

.ad-stat-val {
  font-size: 15.5px;
  font-weight: 800;
  color: #111111;
  line-height: 1.2;
}

.ad-stat-lbl {
  font-size: 9px;
  font-weight: 700;
  color: #78716c;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Secondary Details Section */
.ad-delivered-details {
  margin-top: 2px;
}

.ad-delivered-promise {
  margin: 0 0 6px;
  font-size: 26px;
  font-weight: 800;
  color: #111111;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.ad-delivered-story {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.45;
  color: #666666;
}

.ad-delivered-accent-line {
  width: 44px;
  height: 3.5px;
  background: #93562a;
  border-radius: 2px;
  margin-bottom: 16px;
}

.ad-delivered-spec {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
  color: #111111;
}

.ad-delivered-action-row {
  margin-bottom: 22px;
}

.ad-delivered-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #93562a;
  font-size: 15px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
  transition: gap 0.2s ease, color 0.2s ease;
}

.ad-delivered-link:hover {
  color: #78421b;
  gap: 9px;
}

.ad-delivered-cta-wrap {
  margin-top: 6px;
}

.ad-delivered-cta-btn {
  background: #93562a;
  color: #ffffff;
  font-size: 15.5px;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(147, 86, 42, 0.28);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.ad-delivered-cta-btn:hover {
  background: #7a431c;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(147, 86, 42, 0.38);
  color: #ffffff;
}

.ad-btn-arrow {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.ad-delivered-cta-btn:hover .ad-btn-arrow {
  transform: translateX(3px);
}

/* Responsive Breakpoints */
@media (min-width: 992px) {
  .ad-kicker-mobile,
  .ad-title-mobile {
    display: none !important;
  }
  .ad-kicker-desktop,
  .ad-title-desktop {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1140px) {
  .ad-delivered-grid {
    grid-template-columns: 380px 1fr;
    gap: 36px;
  }
  .ad-delivered-video-card {
    max-width: 380px;
  }
}

/* Mobile Layout (< 992px) */
@media (max-width: 991px) {
  .ad-delivered-section {
    padding: 38px 0 34px;
  }

  .ad-delivered-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .ad-delivered-content-col {
    display: contents;
    padding-left: 0;
  }

  /* 1. Header is first */
  .ad-delivered-header {
    order: 1;
    text-align: center;
    margin-bottom: 20px;
  }

  .ad-kicker-desktop,
  .ad-title-desktop {
    display: none !important;
  }

  .ad-kicker-mobile,
  .ad-title-mobile {
    display: inline !important;
  }

  .ad-delivered-title {
    font-size: clamp(26px, 6vw, 34px);
  }

  /* 2. Video Card is second */
  .ad-delivered-video-col {
    order: 2;
    margin-bottom: 22px;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .ad-delivered-video-card {
    max-width: 340px;
    border-radius: 18px;
  }

  /* 3. Details Container is third */
  .ad-delivered-details {
    order: 3;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 0;
  }

  .ad-delivered-promise {
    order: 1;
    text-align: center;
    font-size: 22px;
    margin: 0 0 16px;
  }

  .ad-delivered-stats-card {
    order: 2;
    margin-bottom: 20px;
    padding: 12px 6px;
    border-radius: 14px;
  }

  .ad-stat-icon-wrap {
    width: 32px;
    height: 32px;
    margin-bottom: 6px;
  }

  .ad-stat-val {
    font-size: 13px;
  }

  .ad-stat-lbl {
    font-size: 8px;
    letter-spacing: 0.3px;
  }

  .ad-delivered-story {
    order: 3;
    text-align: center;
    margin-bottom: 12px;
  }

  .ad-delivered-accent-line {
    order: 4;
    margin: 0 auto 14px;
  }

  .ad-delivered-spec {
    order: 5;
    text-align: center;
    margin-bottom: 12px;
  }

  .ad-delivered-action-row {
    order: 6;
    text-align: center;
    margin-bottom: 18px;
  }

  .ad-delivered-cta-wrap {
    order: 7;
    width: 100%;
  }

  .ad-delivered-cta-btn {
    width: 100%;
    text-align: center;
    padding: 15px 24px;
    font-size: 16px;
  }
}

.ad-services { padding: 100px 0 40px; }
.ad-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ad-service-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: var(--plaster);
  display: flex;
  align-items: flex-end;
}
.ad-service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.ad-service-card::after {
  content: "";
  position: absolute;
  inset: 30% 0 0;
  background: linear-gradient(180deg, transparent, rgba(17, 17, 17, .72));
}
.ad-service-card div {
  position: relative;
  z-index: 1;
  padding: 32px 28px 28px;
}
.ad-service-card h3 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--plaster);
}
.ad-service-card p {
  margin: 0 0 16px;
  max-width: 420px;
  color: rgba(242, 235, 217, .88);
}
.ad-service-card span {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: var(--weight-bold);
  color: var(--sandstone);
}
.ad-service-card:hover img { transform: scale(1.05); }
.ad-service-card:hover span { color: var(--plaster); }

/* What You Get - Everything You Need to Build Your Home */
.ad-what-you-get-section {
  padding: 64px 0 54px;
  background: #faf8f5;
  border-bottom: 1px solid #efe8de;
  position: relative;
  overflow: hidden;
}

.ad-wyg-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 36px;
}

.ad-wyg-kicker-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.ad-wyg-kicker-line {
  width: 32px;
  height: 1.5px;
  background: #c8a882;
  display: inline-block;
}

.ad-wyg-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8d5427;
}

.ad-wyg-title {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: #161616;
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  letter-spacing: -0.02em;
}

.ad-wyg-title .ad-text-brown {
  color: #8d5427;
}

.ad-wyg-wrapper {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}

/* Decorative Desktop Connected Wave Track */
.ad-wyg-timeline-track {
  display: none;
}

@media (min-width: 1025px) {
  .ad-wyg-timeline-track {
    display: block;
    position: relative;
    width: 100%;
    height: 48px;
    margin-bottom: -18px;
    z-index: 2;
    pointer-events: none;
  }

  .ad-wyg-track-svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
  }
}

/* 6 Items Grid */
.ad-wyg-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: stretch;
}

.ad-wyg-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform 0.25s ease;
}

.ad-wyg-card:hover {
  transform: translateY(-4px);
}

.ad-wyg-media-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.ad-wyg-pedestal-bg {
  position: absolute;
  inset: 0;
  border-radius: 999px 999px 20px 20px;
  background: radial-gradient(ellipse at 50% 35%, #fff5e6 0%, #f6ebe0 55%, #ece0d0 100%);
  border: 1px solid rgba(210, 185, 155, 0.45);
  box-shadow: 0 10px 24px rgba(60, 40, 20, 0.06);
  z-index: 1;
}

.ad-wyg-img {
  position: relative;
  z-index: 2;
  width: 96%;
  height: 96%;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  filter: drop-shadow(0 4px 12px rgba(40, 25, 10, 0.08));
}

.ad-wyg-card:hover .ad-wyg-img {
  transform: translateY(-3px) scale(1.04);
}

.ad-wyg-placeholder {
  position: relative;
  z-index: 2;
  width: 70%;
  height: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #8d5427;
}

.ad-wyg-placeholder svg {
  width: 44px;
  height: 44px;
  opacity: 0.8;
}

.ad-wyg-item-title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  color: #1a1a1a;
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Footer / Disclaimer */
.ad-wyg-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  text-align: center;
}

.ad-wyg-footer-line {
  width: 44px;
  height: 1px;
  background: #d8c7b4;
  display: inline-block;
}

.ad-wyg-disclaimer {
  margin: 0;
  font-size: 13px;
  color: #7a736a;
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* Responsive: Tablet (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 768px) {
  .ad-wyg-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 18px;
  }
}

/* Responsive: Mobile (< 768px) - Matches Mobile Reference */
@media (max-width: 767px) {
  .ad-what-you-get-section {
    padding: 42px 0 36px;
  }

  .ad-wyg-head {
    margin-bottom: 24px;
  }

  .ad-wyg-title {
    font-size: clamp(26px, 6.8vw, 32px);
  }

  .ad-wyg-title-break {
    display: block;
  }

  .ad-wyg-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .ad-wyg-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 14px 10px 16px;
    border: 1px solid #f1ece4;
    box-shadow: 0 4px 16px rgba(50, 30, 10, 0.05);
  }

  .ad-wyg-media-wrap {
    margin-bottom: 10px;
    aspect-ratio: 1 / 0.95;
  }

  .ad-wyg-pedestal-bg {
    border-radius: 50%;
    inset: 6px;
    background: radial-gradient(circle, #fbf4ea 0%, #f5ece0 70%, transparent 100%);
    border: none;
    box-shadow: none;
  }

  .ad-wyg-item-title {
    font-size: 13.5px;
    font-weight: 700;
  }

  .ad-wyg-footer {
    margin-top: 26px;
    gap: 10px;
    padding: 0 10px;
  }

  .ad-wyg-footer-line {
    width: 20px;
  }

  .ad-wyg-disclaimer {
    font-size: 11.5px;
    line-height: 1.35;
  }
}

.ad-why { padding: 80px 0 100px; }
.ad-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 48px 56px;
  align-items: center;
}
.ad-why-media {
  margin: 0;
  overflow: hidden;
  min-height: 560px;
}
.ad-why-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
}
.ad-why-copy { margin-bottom: 12px; }
.ad-why-copy h2 { margin: 0 0 16px; font-size: clamp(32px, 4vw, 52px); }
.ad-why-copy p { margin: 0; max-width: 420px; }
.ad-why-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ad-why-list li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.ad-why-list li:last-child { border-bottom: 1px solid var(--line); }
.ad-why-list span {
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--terracotta);
  font-weight: var(--weight-bold);
  padding-top: 6px;
}
.ad-why-list h3 { margin: 0 0 6px; font-size: 22px; }
.ad-why-list p { margin: 0; }

.ad-projects { padding: 20px 0 100px; scroll-margin-top: 90px; }
.ad-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.ad-project {
  position: relative;
  display: block;
  min-height: 280px;
  overflow: hidden;
  color: var(--plaster);
}
.ad-project-lg {
  grid-column: 1 / -1;
  min-height: 460px;
}
.ad-project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform .8s ease;
}
.ad-project::after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(180deg, transparent, rgba(17, 17, 17, .7));
}
.ad-project div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
}
.ad-project strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
}
.ad-project span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sandstone);
}
.ad-project:hover img { transform: scale(1.04); }
.ad-projects-more {
  margin: 28px 0 0;
  text-align: center;
}
.ad-projects-more a {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: var(--weight-bold);
  color: var(--forest);
}
.ad-projects-more a:hover { color: var(--terracotta); }

.ad-process { padding: 40px 0 100px; }
.ad-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  counter-reset: none;
}
.ad-steps li {
  position: relative;
  padding-right: 16px;
}
.ad-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 44px;
  right: 8px;
  height: 1px;
  background: var(--line);
}
.ad-steps span {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-serif);
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--terracotta);
  font-weight: 400;
}
.ad-steps li:not(:last-child)::after {
  top: 22px;
  left: 56px;
}
.ad-steps h3 { margin: 0 0 8px; font-size: 22px; }
.ad-steps p { margin: 0; font-size: 15px; }

.ad-vision { padding: 20px 0 100px; }
.ad-vision-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}
.ad-vision-grid figure { margin: 0; overflow: hidden; }
.ad-vision-grid > figure > img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}
.ad-vision-done > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  overflow: hidden;
}
.ad-vision-done img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}
.ad-vision-grid figcaption {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.ad-vision-arrow {
  font-size: 28px;
  color: var(--terracotta);
}
.ad-vision-grid figure:hover > img,
.ad-vision-done:hover img { transform: scale(1.03); }

.ad-quotes {
  padding: 80px 0 24px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .ad-quotes { padding: 64px 0 16px; }
}
.ad-quotes .review-video-swiper,
.social-presence-section .ig-feed-embed {
  margin-top: 40px;
}
.ig-feed-embed {
  width: 100%;
  max-width: 100%;
  min-height: 120px;
  overflow: hidden;
}

/* Native Instagram Feed Slider */
.ig-slider-wrap {
  position: relative;
  width: 100%;
}
.ig-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 8px 2px 14px;
}
.ig-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.ig-swiper .swiper-slide {
  height: auto;
  display: flex;
  flex-shrink: 0;
}
.ig-swiper .ig-card {
  width: 100%;
}

.ig-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: #111111;
  transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.ig-nav-btn.ig-prev {
  left: 12px;
}
.ig-nav-btn.ig-next {
  right: 12px;
}
.ig-nav-btn:hover {
  background: #AB5830;
  color: #ffffff;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 20px rgba(171, 88, 48, 0.35);
}
.ig-nav-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
@media (max-width: 640px) {
  .ig-nav-btn {
    width: 36px;
    height: 36px;
  }
  .ig-nav-btn.ig-prev {
    left: 6px;
  }
  .ig-nav-btn.ig-next {
    right: 6px;
  }
  .ig-nav-btn svg {
    width: 18px;
    height: 18px;
  }
}

.ig-feed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: 100%;
}
@media (max-width: 991px) {
  .ig-feed-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}
@media (max-width: 640px) {
  .ig-feed-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.ig-card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background-color: #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-decoration: none;
}
.ig-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}
.ig-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.ig-card:hover .ig-card-img {
  transform: scale(1.06);
}
.ig-reel-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffffff;
  border-radius: 16px;
  padding: 4px 9px 4px 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: opacity 0.25s ease;
}
.ig-card:hover .ig-reel-badge {
  opacity: 0.92;
}
.ig-reel-badge svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}
.ig-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.78) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  color: #ffffff;
}
.ig-card:hover .ig-card-overlay {
  opacity: 1;
}
.ig-card-icon {
  align-self: flex-end;
  width: 22px;
  height: 22px;
  fill: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}
.ig-card-caption {
  font-size: 13px;
  line-height: 1.4;
  color: #ffffff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}
.ig-follow-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
}
.ig-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 9999px;
  background: #111111;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.ig-follow-btn:hover {
  background: #AB5830;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(171, 88, 48, 0.35);
}
.ig-follow-btn svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}


.ad-area {
  position: relative;
  min-height: 68vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--plaster);
  padding: 0;
}
.ad-area-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ad-area-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(47, 58, 28, .15) 0%, rgba(47, 58, 28, .72) 100%);
}
.ad-area-copy {
  position: relative;
  z-index: 1;
  padding: 80px 0 72px;
  max-width: 620px;
}
.ad-area-copy .ad-kicker { color: var(--sandstone); }
.ad-area h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--plaster);
}
.ad-area p { margin: 0 0 16px; max-width: 480px; color: rgba(242, 235, 217, .9); }
.ad-area-address { font-size: 15px; }
.ad-area-address a { color: var(--sandstone); }
.ad-area-maplink {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: var(--weight-bold);
  color: var(--plaster);
}
.ad-area-maplink:hover { color: var(--sandstone); }

.ad-enquiry {
  padding: 0;
  background: #fff;
  scroll-margin-top: 90px;
}
.ad-enquiry-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 640px);
  min-height: 720px;
}
.ad-enquiry-photo {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
.ad-enquiry-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.ad-enquiry-panel {
  padding: 64px 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--plaster);
}
.ad-enquiry-panel h2 { margin: 0 0 12px; font-size: clamp(32px, 4vw, 48px); }
.ad-enquiry-panel > p { margin: 0 0 28px; max-width: 440px; }
.ad-enquiry-panel .contact-form {
  border: 0;
  padding: 0;
  background: transparent;
}

.ad-cities {
  padding: 72px 0 80px;
  background: #fff;
}
.ad-cities h2 {
  margin: 0 0 28px;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  color: var(--heading);
}
.ad-city-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.ad-city-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 12px 16px;
  background: var(--plaster);
  border-radius: 10px;
  color: var(--heading);
  font-weight: var(--weight-medium);
  font-size: 15px;
}
.ad-city-card em {
  font-style: normal;
  margin-left: 6px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: var(--weight-bold);
}
.ad-city-icon {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 50%;
  background: var(--plaster);
  border: 1px solid var(--sandstone);
  display: grid;
  place-items: center;
  color: var(--terracotta);
}
.ad-city-icon svg { width: 20px; height: 20px; }

.ad-final {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--plaster);
  overflow: hidden;
}
.ad-final img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ad-final::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(47, 58, 28, .58);
}
.ad-final-copy {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  max-width: 720px;
}
.ad-final h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  color: var(--plaster);
}
.ad-final p {
  margin: 0 0 28px;
  font-size: 20px;
  color: rgba(242, 235, 217, .9);
}

@media (max-width: 1024px) {
  .ad-hero-stage { width: calc(100% - 48px); margin-bottom: 36px; }
  .ad-trust-grid,
  .ad-service-grid,
  .ad-why-grid,
  .ad-enquiry-split { grid-template-columns: 1fr; }
  .ad-city-grid { grid-template-columns: 1fr 1fr; }
  .ad-project-grid { grid-template-columns: 1fr 1fr; }
  .ad-project-lg { grid-column: 1 / -1; min-height: 360px; }
  .ad-steps { grid-template-columns: 1fr; gap: 0; }
  .ad-steps li { padding: 18px 0 18px 0; border-top: 1px solid var(--line); }
  .ad-steps li:last-child { border-bottom: 1px solid var(--line); }
  .ad-steps li::after { display: none; }
  .ad-vision-grid { grid-template-columns: 1fr; }
  .ad-vision-arrow { display: none; }
  .ad-vision-grid > figure > img,
  .ad-vision-done img { height: 340px; }
  .ad-service-card { min-height: 420px; }
  .ad-why-media,
  .ad-why-media img { min-height: 380px; }
  .ad-enquiry-photo { min-height: 360px; }
  .ad-enquiry-panel { padding: 48px 28px; }
  .ad-area { min-height: 56vh; }
  .ad-area-copy { padding: 64px 0 56px; }
}
@media (max-width: 767px) {
  .ad-hero { min-height: 100vh; min-height: 100svh; }
  .ad-hero-stage { width: calc(100% - 32px); margin-bottom: 24px; }
  .ad-hero-copy h1 {
    font-size: clamp(26px, 8vw, 32px);
    line-height: 1.12;
    max-width: none;
    margin: 0 0 14px;
  }
  .ad-hero-copy h1 br { display: none; }
  .ad-hero-lead {
    display: block;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 16px;
  }
  .ad-hero-trust {
    font-size: 10px;
    letter-spacing: .07em;
    line-height: 1.5;
  }
  .ad-hero-actions {
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 14px;
  }
  .ad-hero-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    height: auto;
    min-height: 40px;
    padding: 8px 8px;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }
  .ad-section-head h2,
  .ad-cities h2,
  .ad-final h2 {
    font-size: clamp(24px, 7.2vw, 32px);
    line-height: 1.15;
  }
  .ad-final p { font-size: 16px; }
  .ad-kicker { letter-spacing: .12em; }
  .ad-trust { padding: 40px 0; }
  .ad-trust-grid { gap: 28px 16px; }
  .ad-services,
  .ad-why,
  .ad-projects,
  .ad-process,
  .ad-vision,
  .ad-area,
  .ad-cities { padding-top: 64px; padding-bottom: 64px; }
  .ad-city-grid { grid-template-columns: 1fr; }
  .ad-project-grid { grid-template-columns: 1fr; }
  .ad-project,
  .ad-project-lg { min-height: 300px; }
  .ad-enquiry { padding: 56px 0; }
}

/* Customer review videos */
.review-videos {
  padding: 28px 0 80px;
  background: var(--plaster);
  overflow: hidden;
}
.review-video-swiper {
  overflow: hidden;
  padding: 0 20px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.review-video-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
  align-items: stretch;
}
.review-video-swiper .swiper-slide {
  height: auto;
}
.review-video-card {
  cursor: pointer;
}
.review-video-caption {
  margin-top: 16px;
}
.review-video-who {
  font-family: var(--font-primary);
  font-weight: var(--weight-medium);
  color: var(--heading);
  font-size: 16px;
}
.review-video-where {
  margin-top: 4px;
  font-size: 13px;
  color: var(--concrete);
}
.review-video-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
  border-radius: 0;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}
.yt-frame,
.ig-frame {
  width: 100%;
  height: 300px;
  aspect-ratio: auto;
  border-radius: 14px;
}
.review-platform {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 3;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, .5);
  padding: 5px 8px;
  pointer-events: none;
}
.ig-reel-swiper {
  overflow: hidden;
  padding: 0 20px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.ig-reel-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
  align-items: stretch;
}
.ig-reel-swiper .swiper-slide {
  height: auto;
}
@media (min-width: 1025px) {
  .review-video-swiper,
  .ig-reel-swiper { padding: 0 56px; }
}
.review-video-still,
.review-video-frame video,
.review-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.review-video-frame video { z-index: 1; }
.review-video-frame iframe {
  z-index: 4;
  border: 0;
  object-fit: unset;
}
.review-video-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #fff;
}
.review-video-play span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .2);
  border: 1.5px solid rgba(255, 255, 255, .85);
  backdrop-filter: blur(8px);
  transition: transform .2s ease, background .2s ease;
}
.review-video-play:hover span,
.review-video-card:hover .review-video-play span {
  transform: scale(1.06);
  background: rgba(255, 255, 255, .32);
}
.yt-play span {
  width: 54px;
  height: 38px;
  border-radius: 10px;
  background: #ff0000;
  border: 0;
  backdrop-filter: none;
}
.yt-play:hover span,
.review-video-card:hover .yt-play span {
  background: #e00000;
}
.review-video-play svg { width: 16px; height: 16px; margin-left: 2px; }
.review-video-card.is-playing:not(.is-loading) .review-video-play {
  opacity: 0;
  pointer-events: none;
}
.review-video-card.is-loading .review-video-play {
  opacity: 1;
  pointer-events: none;
}
.review-video-card.is-loading .yt-play span {
  animation: yt-wait .7s ease infinite;
}
@keyframes yt-wait {
  50% { transform: scale(.9); opacity: .65; }
}
.clients-section .review-video-swiper,
.ad-quotes .review-video-swiper {
  overflow: hidden;
}

/* WhatsApp + lead popup */
.whatsapp-fab {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 72;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-fab:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
}
.whatsapp-fab svg { width: 30px; height: 30px; }
.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 99999 !important;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}
.lead-popup.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  z-index: 99999 !important;
}
.lead-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(47, 58, 28, .55);
}
.lead-popup-panel {
  position: relative;
  z-index: 100000 !important;
  width: min(480px, 100%);
  max-height: min(90vh, 760px);
  overflow: auto;
  background: var(--plaster);
  padding: 40px 32px 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}
.lead-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.lead-popup-close svg { pointer-events: none; }
.lead-popup-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.lead-popup-panel h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 32px);
  line-height: 1.15;
  color: var(--heading);
}
.lead-popup-copy {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--concrete);
}
.lead-popup-panel .contact-form {
  border: 0;
  padding: 0;
  background: transparent;
}
.lead-card {
  display: grid;
  gap: 14px;
  background: #fff;
  border: 1px solid #d8d2c6;
  padding: 28px 24px 22px;
  box-shadow: 0 18px 50px rgba(47, 58, 28, .16);
}
.lead-card-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--heading);
}
.lead-card-sub {
  margin: -4px 0 6px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--body);
}
.lead-card-input,
.lead-card-phone {
  width: 100%;
  border: 1px solid #d8d2c6;
  background: #fff;
  border-radius: 8px;
}
.lead-card-input {
  height: 48px;
  padding: 0 14px;
  font: inherit;
  color: var(--heading);
}
.lead-card-input::placeholder,
.lead-card-phone input::placeholder { color: #b5afa3; }
.lead-card-phone {
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.lead-card-cc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 8px 0 14px;
  font-size: 13px;
  font-weight: var(--weight-medium);
  color: var(--heading);
  border-right: 0;
  background: transparent;
  white-space: nowrap;
}
.lead-card-flag { width: 22px; height: 14px; display: block; flex: none; }
.lead-card-phone input {
  flex: 1 1 0;
  width: 0;
  min-width: 0;
  height: 48px;
  border: 0;
  background: transparent;
  padding: 0 14px 0 4px;
  font: inherit;
  color: var(--heading);
}
select.lead-card-input {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 36px;
  background-color: #fff;
  background-image: linear-gradient(45deg, transparent 50%, #8a8478 50%), linear-gradient(135deg, #8a8478 50%, transparent 50%);
  background-position: calc(100% - 16px) calc(50% - 2px), calc(100% - 11px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
select.lead-card-input:invalid {
  color: #b5afa3;
}
select.lead-card-input option {
  color: var(--heading);
}
.lead-card-input:focus,
.lead-card-phone:focus-within { border-color: var(--forest); outline: none; }
.lead-card-phone input:focus { outline: none; }
.lead-card-legal {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #6f6a60;
}
.lead-card-legal a { color: var(--terracotta); text-decoration: none; font-weight: var(--weight-bold); }
.lead-card-legal a:hover { text-decoration: underline; }
.lead-card .contact-form-status { text-align: left; }
.lead-popup-panel-card {
  width: min(440px, 100%);
  background: var(--plaster);
  padding: 36px 28px 22px;
}
.lead-popup-panel-card .lead-card {
  box-shadow: none;
  border: 0;
  padding: 0;
  background: transparent;
}
.lead-card-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(79, 76, 67, .18);
  text-align: center;
}
.lead-card-trust strong {
  display: block;
  font-size: 16px;
  color: var(--forest);
  line-height: 1.2;
}
.lead-card-trust span {
  display: block;
  font-size: 11px;
  color: var(--body);
}
.lead-card-trust-icon {
  width: 28px;
  height: 28px;
  margin: 0 auto 6px;
  color: var(--terracotta);
  display: grid;
  place-items: center;
}
.lead-card-trust-icon svg { width: 22px; height: 22px; }

@media (max-width: 767px) {
  .clients-section .review-video-swiper,
  .ad-quotes .review-video-swiper { margin-top: 36px; }
  .yt-frame,
  .ig-frame { height: 230px; }
  .lead-popup { padding: 16px; }
  .lead-popup-panel { padding: 36px 20px 22px; }
  .reveal img { transform: none; will-change: auto; }
  .service-track { will-change: auto; }
  .stat-circle.glass,
  .review-video-play span {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .services-stage::before { backdrop-filter: none; }
  .values-section,
  .ad-services,
  .ad-why,
  .ad-projects,
  .ad-process,
  .ad-quotes,
  .ad-cities,
  .ad-area,
  .ad-enquiry,
  .social-presence-section,
  .clients-section,
  .about-craft,
  .about-values {
    content-visibility: auto;
    contain-intrinsic-size: 1px 720px;
  }
}

/* ==========================================================================
   Mobile Bottom Bar (Fixed Quick Action Bar: Call Now, WhatsApp, Get Quote)
   ========================================================================== */
.mobile-bottom-bar {
  display: none;
}

@media (max-width: 1024px) {
  .mobile-bottom-bar {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 58px !important;
    background: #ffffff !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    align-items: stretch !important;
    border-top: 1px solid #eaeaea !important;
    box-shadow: 0 -3px 14px rgba(0, 0, 0, 0.1) !important;
    z-index: 1500 !important;
    padding-bottom: env(safe-area-inset-bottom, 0px) !important;
    box-sizing: content-box !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  body {
    padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px)) !important;
  }

  /* Hide floating WhatsApp button on mobile to avoid overlap */
  .whatsapp-fab {
    display: none !important;
  }
}

.mob-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 2px;
  text-decoration: none;
  position: relative;
  transition: background-color 0.16s ease, transform 0.16s ease;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.mob-bar-item:active {
  background-color: rgba(0, 0, 0, 0.05);
}

.mob-bar-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 16%;
  height: 68%;
  width: 1px;
  background: #ececec;
}

.mob-bar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-bottom: 3px;
  flex-shrink: 0;
}

.mob-bar-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.mob-bar-label {
  font-family: var(--font-primary, "Satoshi", sans-serif);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

/* Call Button (Warm terracotta / orange-red like reference image) */
.mob-bar-call {
  color: #e0441a;
}
.mob-bar-call .mob-bar-icon {
  color: #e0441a;
}
.mob-bar-call .mob-bar-label {
  color: #e0441a;
}

/* WhatsApp Button (WhatsApp Green like reference image) */
.mob-bar-wa {
  color: #25d366;
}
.mob-bar-wa .mob-bar-icon {
  color: #25d366;
}
.mob-bar-wa .mob-bar-label {
  color: #25d366;
}

/* Get Quote Button (Charcoal / Black like reference image) */
.mob-bar-quote {
  color: #1a1a1a;
}
.mob-bar-quote .mob-bar-icon {
  color: #1a1a1a;
}
.mob-bar-quote .mob-bar-label {
  color: #1a1a1a;
}

/* ====================================================
   REDESIGNED HERO SECTION (MOBILE & DESKTOP)
   ==================================================== */

/* 1. Fixed Top Wrap (Offer Bar + Header) */
.ad-sticky-top-wrap {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* 1. Top Offer Announcement Bar */
.ad-top-offer-bar {
  background: #ba4623;
  background: linear-gradient(90deg, #ba4623 0%, #a43818 100%);
  color: #ffffff;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 95;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  user-select: none;
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.ad-top-offer-bar:hover {
  filter: brightness(1.06);
}
.ad-top-offer-bar:active {
  filter: brightness(0.96);
}
.ad-top-offer-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

/* 2. Warm Cream Header */
.ad-hero-header {
  background: #f6efe5;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(171, 88, 48, 0.12);
  position: relative;
  z-index: 90;
}
.ad-hero-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ad-hero-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ab5830;
  margin: 0 auto;
  transition: opacity 0.2s ease;
}
.ad-hero-logo:hover {
  opacity: 0.9;
}
.ad-hero-logo-mark {
  width: 38px;
  height: auto;
  object-fit: contain;
  display: block;
}
.ad-hero-logo-word {
  height: 26px;
  width: auto;
  display: block;
}
.ad-hero-menu-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(171, 88, 48, 0.08);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a3b32;
  transition: background-color 0.2s ease, transform 0.15s ease;
}
.ad-hero-menu-btn:hover {
  background: rgba(171, 88, 48, 0.15);
}
.ad-hero-menu-btn:active {
  transform: translateY(-50%) scale(0.95);
}
@media (min-width: 1025px) {
  .ad-hero-header {
    padding: 16px 32px;
  }
  .ad-hero-menu-btn {
    display: none;
  }
}

/* 3. Hero Main Container */
.ad-hero-redesign {
  position: relative;
  min-height: calc(100vh - 120px);
  min-height: calc(100svh - 120px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
}
.ad-hero-bg-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.ad-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.ad-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    /* Left dark gradient behind headline, price, subtitle & buttons (fades out completely before the center house) */
    linear-gradient(90deg, rgba(6, 9, 8, 0.86) 0%, rgba(6, 9, 8, 0.65) 18%, rgba(6, 9, 8, 0.12) 28%, transparent 34%),
    /* Bottom dark gradient behind road, car wheels & location text */
    linear-gradient(0deg, rgba(6, 9, 8, 0.96) 0%, rgba(6, 9, 8, 0.45) 8%, transparent 16%),
    /* Subtle top edge gradient under header */
    linear-gradient(180deg, rgba(6, 9, 8, 0.20) 0%, transparent 6%),
    /* Right dark gradient behind estimate card & 4 icons (leaves center house clear) */
    linear-gradient(270deg, rgba(6, 9, 8, 0.60) 0%, rgba(6, 9, 8, 0.15) 16%, transparent 25%);
}
@media (max-width: 1024px) {
  .ad-hero-overlay {
    background:
      /* Soft shadow behind the top-left headline while keeping top-right sky completely clear */
      linear-gradient(110deg, rgba(6, 9, 8, 0.72) 0%, rgba(6, 9, 8, 0.28) 26%, transparent 42%),
      /* Diagonal downwards gradient: top-to-right (upwards) is completely clear, darkens downwards towards bottom-left */
      linear-gradient(215deg, transparent 0%, transparent 35%, rgba(6, 9, 8, 0.45) 52%, rgba(6, 9, 8, 0.90) 74%, rgba(6, 9, 8, 0.98) 100%),
      /* Bottom road & footer darkness */
      linear-gradient(0deg, rgba(6, 9, 8, 0.98) 0%, rgba(6, 9, 8, 0.85) 16%, transparent 28%);
  }
  .ad-hero-redesign {
    min-height: calc(100vh - 72px);
    min-height: calc(100svh - 72px);
    display: flex;
    align-items:center;
    padding-top: 3rem;
    justify-content: flex-start;
  }
  .ad-hero-container {
    padding: 8px 16px 10px !important;
    gap: 0 !important;
  }
  .ad-hero-left {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .ad-top-offer-bar {
    padding: 10px 16px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
  }
  .ad-offer-badge-wrap {
    margin-bottom: 4px !important;
    padding-left: 8px !important;
  }
  .ad-offer-badge-img {
    width: 120px !important;
    height: auto !important;
  }
  .ad-hero-title {
    font-family: "Satoshi", var(--font-primary), sans-serif !important;
    font-weight: 900 !important;
    font-size: 31px !important;
    line-height: 30.92px !important;
    letter-spacing: 0px !important;
    margin: 0 0 4px !important;
    padding-left: 8px !important;
  }
  .ad-title-desk {
    display: none !important;
  }
  .ad-title-mob {
    display: inline !important;
  }
  .ad-hero-price-row {
    margin-bottom: 3px !important;
    padding-left: 8px !important;
  }
  .ad-price-kicker {
    font-size: 10px !important;
    letter-spacing: 0.12em !important;
    margin-bottom: 0 !important;
  }
  .ad-hero-price-row .ad-price-main {
    width: 197.32334899902344px !important;
    height: 31px !important;
    transform: rotate(0deg) !important;
    opacity: 1 !important;
    gap: 6.2px !important;
    display: inline-flex !important;
    align-items: baseline !important;
  }
  .ad-price-value {
    font-size: 25px !important;
    line-height: 31px !important;
  }
  .ad-price-unit {
    font-size: 12.5px !important;
    line-height: 31px !important;
  }
  .ad-hero-sub {
    font-size: 11px !important;
    line-height: 1.32 !important;
    margin: 0 0 5px !important;
    max-width: 100% !important;
    padding-left: 8px !important;
  }
  .ad-features-mob {
    margin: 2px auto 4px !important;
    padding: 2px 0 !important;
    max-width: 350px !important;
    width: 100% !important;
  }
  .ad-features-mob .ad-feature-item {
    padding: 0 2px !important;
  }
  .ad-features-mob .ad-feature-icon {
    width: 34px !important;
    height: 34px !important;
    margin-bottom: 3px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .ad-features-mob .ad-feature-icon-img {
    width: 28px !important;
    height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
  }
  .ad-features-mob .ad-feature-label {
    font-size: 9.5px !important;
    line-height: 1.18 !important;
  }
  /* Buttons centered on mobile, aligned with icons in same line */
  .ad-hero-ctas {
    align-items: center !important;
    text-align: center !important;
    max-width: 350px !important;
    width: 100% !important;
    gap: 6px !important;
  }
  .ad-cta-btn {
    width: 100% !important;
    padding: 8.5px 16px !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    text-align: center !important;
    justify-content: center !important;
    border-radius: 7px !important;
  }
  .ad-location-skyline-row {
    margin: 0 auto 5px !important;
    padding: 4px 10px !important;
    max-width: 350px !important;
    width: 100% !important;
    gap: 8px !important;
    box-sizing: border-box !important;
  }
  .ad-location-icon {
    width: 16px !important;
    height: 16px !important;
  }
  .ad-location-text {
    font-size: 9px !important;
    line-height: 1.2 !important;
  }
  .ad-skyline-img {
    height: 30px !important;
    max-width: 120px !important;
  }
  .ad-hero-disclaimer {
    font-size: 7.5px !important;
    line-height: 1.2 !important;
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 320px !important;
  }
}
.ad-hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 32px 20px 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
@media (min-width: 1025px) {
  .ad-hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 32px 58px 24px;
    gap: 24px;
    box-sizing: border-box;
  }
  .ad-hero-left {
    max-width: 380px;
    width: 100%;
    flex-shrink: 0;
    z-index: 4;
  }
  .ad-offer-badge-img {
    width: 135px;
  }
  .ad-hero-title {
    font-size: clamp(26px, 2.2vw, 36px) !important;
    line-height: 1.15 !important;
    margin-bottom: 12px !important;
  }
  .ad-hero-price-row {
    margin-bottom: 12px;
  }
  .ad-price-value {
    font-size: clamp(32px, 2.6vw, 42px) !important;
  }
  .ad-hero-sub {
    font-size: 13.5px;
    line-height: 1.45;
    margin-bottom: 18px;
    max-width: 360px;
  }
  .ad-hero-ctas {
    max-width: 330px;
    gap: 10px;
    margin-bottom: 16px;
  }
  .ad-cta-btn {
    padding: 10.5px 20px;
    font-size: 14px;
  }
  .ad-location-skyline-row {
    max-width: 480px;
    margin-bottom: 12px;
    gap: 14px;
  }
  .ad-location-text {
    font-size: 11px;
  }
  .ad-skyline-img {
    height: 46px;
    max-width: 190px;
  }
  .ad-hero-disclaimer {
    font-size: 10px;
    max-width: 460px;
  }
}
@media (min-width: 1440px) {
  .ad-hero-container {
    padding: 36px 74px 28px;
  }
}

/* 4. September Offer Badge */
.ad-offer-badge-wrap {
  margin-bottom: 16px;
  display: inline-block;
  transform: rotate(0deg);
  opacity: 1;
}
.ad-offer-badge-img {
  width: 170.8px;
  height: 113.87px;
  display: block;
  opacity: 1;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
  transition: transform 0.25s ease;
}
.ad-offer-badge-img:hover {
  transform: scale(1.04);
}
@media (max-width: 768px) {
  .ad-offer-badge-img {
    width: 96px;
    height: auto;
  }
}

/* 5. Hero Typography, Price & Subtitle */
.ad-hero-title {
  font-family: "Satoshi", var(--font-primary), sans-serif !important;
  font-weight: 900 !important;
  font-size: 31px;
  line-height: 30.92px;
  color: #ffffff;
  margin: 0 0 16px;
  letter-spacing: 0px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.9);
}
.ad-title-desk {
  display: inline;
}
.ad-title-mob {
  display: none;
}
.ad-highlight-gold {
  color: #f6d59e;
  font-weight: 900 !important;
}
.ad-hero-price-row {
  margin-bottom: 16px;
}
.ad-price-kicker {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2px;
}
.ad-price-main {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.ad-price-value {
  font-size: clamp(36px, 5.5vw, 50px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.ad-price-unit {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.ad-hero-sub {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 24px;
  max-width: 480px;
}

/* 6. The 4 Features Row */
.ad-features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 0;
  padding: 8px 0;
  margin: 16px 0;
  border: none;
}
.ad-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 4px;
}
.ad-feature-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(255, 255, 255, 0.35);
}
.ad-feature-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ad-feature-icon-img {
  width: 22px;
  height: 22px;
  max-width: 24px;
  max-height: 24px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.85));
}
.ad-feature-label {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85);
}

.ad-features-desk {
  display: none;
}
.ad-features-mob {
  display: grid;
  margin-top: 12px;
  margin-bottom: 24px;
}
@media (min-width: 1025px) {
  .ad-features-mob {
    display: none;
  }
  .ad-features-desk {
    display: grid;
    margin: 10px 0 0;
    padding: 6px 0 0;
    border-top: none;
    width: 100%;
  }
  .ad-features-desk .ad-feature-icon {
    width: 28.863948822021484px !important;
    height: 28.863948822021484px !important;
    margin-bottom: 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .ad-features-desk .ad-feature-icon-img {
    width: 28.863948822021484px !important;
    height: 28.863948822021484px !important;
    max-width: 28.863948822021484px !important;
    max-height: 28.863948822021484px !important;
    transform: rotate(0deg) !important;
    opacity: 1 !important;
    object-fit: contain !important;
  }
  .ad-features-desk .ad-feature-label {
    font-size: 9.5px;
    line-height: 1.2;
  }
}

/* 7. CTA Buttons */
.ad-hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  width: 100%;
  max-width: 320px;
}
.ad-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 15.5px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}
.ad-cta-solid {
  background: #b84824;
  background: linear-gradient(135deg, #bf4c27 0%, #a63e1d 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(184, 72, 36, 0.35);
}
.ad-cta-solid:hover {
  background: linear-gradient(135deg, #cb522b 0%, #b24320 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(184, 72, 36, 0.45);
}
.ad-cta-solid:active {
  transform: translateY(0);
}
.ad-cta-outline {
  background: rgba(0, 0, 0, 0.2);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  color: #ffffff;
  backdrop-filter: blur(6px);
}
.ad-cta-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  transform: translateY(-1px);
}
.ad-cta-outline:active {
  transform: translateY(0);
}

/* 8. Location Row & Bangalore Skyline */
.ad-location-skyline-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  max-width: 500px;
}
.ad-location-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}
.ad-location-icon {
  width: 22px;
  height: 22px;
  color: #ffffff;
  flex-shrink: 0;
}
.ad-location-icon svg {
  width: 100%;
  height: 100%;
}
.ad-location-text {
  display: flex;
  flex-direction: column;
  font-size: 11px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}
.ad-location-text strong {
  font-weight: 700;
  color: #ffffff;
}
.ad-skyline-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.ad-skyline-img {
  height: 46px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  opacity: 1;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}

/* Disclaimer */
.ad-hero-disclaimer {
  font-size: 10.5px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* 9. Right Estimate Form Card (Desktop) */
.ad-estimate-card-wrap {
  display: none;
}
@media (min-width: 1025px) {
  .ad-estimate-card-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 335px;
    width: 100%;
    flex-shrink: 0;
    z-index: 4;
  }
}
.ad-estimate-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 20px 16px;
  width: 100%;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  color: #222222;
  position: relative;
}
.ad-card-head {
  margin-bottom: 12px;
}
.ad-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
  color: #1b2024;
  margin: 0 0 4px;
}
.ad-card-accent {
  color: #b84824;
  display: block;
}
.ad-card-sub {
  font-size: 11px;
  line-height: 1.35;
  color: #5d676e;
  margin: 0;
}
.ad-card-form {
  display: flex;
  flex-direction: column;
  gap: 9px;
  /* Override global .contact-form box — form sits inside the card already */
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  width: 100% !important;
}
.ad-input-group {
  position: relative;
  display: flex;
  align-items: center;
}
.ad-input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #7b8893;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  z-index: 2;
}
.ad-input-icon svg {
  width: 100%;
  height: 100%;
}
.ad-card-form .ad-card-input,
.ad-estimate-card .ad-card-input,
.ad-input-group .ad-card-input {
  width: 100%;
  height: 40px;
  border: 1px solid #d9e0e5;
  border-radius: 7px;
  background: #fafbfc;
  padding: 0 32px 0 38px !important;
  font-size: 13px;
  font-family: inherit;
  color: #202428;
  line-height: normal;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.ad-card-form .ad-card-input:focus,
.ad-estimate-card .ad-card-input:focus {
  outline: none;
  border-color: #b84824;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(184, 72, 36, 0.12);
}
.ad-card-form select.ad-card-input,
.ad-estimate-card select.ad-card-input,
.ad-card-select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: none !important;
  cursor: pointer;
  padding-right: 32px !important;
}
.ad-card-form select.ad-card-input:invalid,
.ad-card-form input.ad-card-input::placeholder {
  color: #8c969e !important;
}
.ad-card-form select.ad-card-input option {
  color: #1e2520;
}
.ad-phone-wrap {
  display: flex;
  width: 100%;
  height: 40px;
  border: 1px solid #d9e0e5;
  border-radius: 7px;
  background: #fafbfc;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.ad-phone-wrap:focus-within {
  border-color: #b84824;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(184, 72, 36, 0.12);
}
.ad-phone-prefix {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  background: #f1f4f6;
  border-right: 1px solid #d9e0e5;
  font-size: 12.5px;
  font-weight: 600;
  color: #3b4247;
  flex-shrink: 0;
}
.ad-flag-icon {
  width: 16px;
  height: 11px;
  border-radius: 1px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}
.ad-card-form .ad-phone-input {
  flex: 1;
  border: none !important;
  background: transparent !important;
  padding: 0 12px !important;
  font-size: 13px;
  font-family: inherit;
  color: #202428;
  height: 100% !important;
}
.ad-card-form .ad-phone-input:focus {
  outline: none;
}
.ad-card-form .ad-phone-input::placeholder {
  color: #8c969e !important;
}
.ad-select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #7b8893;
  pointer-events: none;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ad-card-submit-btn {
  width: 100%;
  height: 40px;
  background: #b84824;
  background: linear-gradient(135deg, #bf4c27 0%, #a63e1d 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 3px 10px rgba(184, 72, 36, 0.28);
  margin-top: 2px;
}
.ad-card-submit-btn:hover {
  background: linear-gradient(135deg, #cb522b 0%, #b24320 100%);
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(184, 72, 36, 0.38);
}
.ad-card-submit-btn:active {
  transform: translateY(0);
}
.ad-card-safe-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 10.5px;
  color: #7b8893;
  margin: 6px 0 0;
}
.ad-card-safe-notice svg {
  width: 13px;
  height: 13px;
}

/* ====================================================
   SUBMISSION LOADING MODAL (OFF-WHITE CARD & SPINNER)
   ==================================================== */
.ad-submit-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.ad-submit-modal.is-active {
  opacity: 1;
  visibility: visible;
}
.ad-submit-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 20, 18, 0.68);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.ad-submit-modal-card {
  position: relative;
  z-index: 2;
  background: #fbf7f2;
  border-radius: 16px;
  width: 90%;
  max-width: 320px;
  padding: 22px 24px 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(171, 88, 48, 0.12);
  transform: scale(0.92) translateY(10px);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}
.ad-submit-modal.is-active .ad-submit-modal-card {
  transform: scale(1) translateY(0);
}
.ad-submit-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.ad-submit-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}
.ad-submit-logo-mark {
  width: 26px;
  height: auto;
}
.ad-submit-brand-text {
  display: flex;
  flex-direction: column;
}
.ad-submit-brand-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #ab5830;
  letter-spacing: -0.01em;
}
.ad-submit-brand-sub {
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #ab5830;
  text-transform: uppercase;
  margin-top: 2px;
}
.ad-submit-modal-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.15s ease;
}
.ad-submit-modal-close:hover {
  opacity: 1;
  transform: scale(1.1);
}
.ad-submit-spinner-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0 22px;
}
.ad-submit-spinner {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 4.5px solid #e7ded3;
  border-top-color: #b84824;
  border-right-color: #b84824;
  animation: adSubmitSpin 0.85s linear infinite;
}
@keyframes adSubmitSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.ad-submit-modal-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a221d;
  margin: 0 0 6px;
}
.ad-submit-modal-sub {
  font-size: 13.5px;
  color: #647068;
  margin: 0;
}

/* ==========================================================================
   WHY HOMEOWNERS CHOOSE BUILDABO SECTION
   ========================================================================== */
.ad-why-choose-section {
  position: relative;
  background-color: #fbf9f5;
  padding: 76px 0 60px;
  overflow: hidden;
  border-bottom: 1px solid #ede5d8;
}

.ad-why-head {
  text-align: center;
  margin-bottom: 44px;
}

.ad-why-kicker-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.ad-why-kicker-line {
  width: 44px;
  height: 1px;
  background-color: #cbbeaf;
  opacity: 0.85;
}

.ad-why-kicker {
  font-family: 'DM Sans', var(--font-primary), sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #797166;
}

.ad-why-title {
  font-family: var(--font-primary), sans-serif;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  color: #171816;
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin: 0;
}

.ad-why-title .ad-text-brown {
  color: #93562a;
}

/* 4 Feature Cards Grid */
.ad-why-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 48px;
}

.ad-why-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 12px 12px 22px;
  box-shadow: 0 4px 20px rgba(50, 45, 38, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
  border: 1px solid #ede5d8;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.ad-why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(80, 60, 40, 0.1), 0 2px 6px rgba(0, 0, 0, 0.04);
  border-color: #dfd0bc;
}

.ad-why-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 14px;
  overflow: hidden;
  background: #f4eee4;
}

.ad-why-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.ad-why-card:hover .ad-why-card-img {
  transform: scale(1.04);
}

.ad-why-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f7f0e6 0%, #ece2d2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ad-why-card-placeholder::after {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 2px dashed #cfbeaa;
  opacity: 0.5;
}

.ad-why-card-body {
  padding: 16px 8px 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.ad-why-icon-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #93562a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(147, 86, 42, 0.28);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.ad-why-card:hover .ad-why-icon-badge {
  transform: scale(1.06);
  background: #844c23;
}

.ad-why-icon-badge svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
}

.ad-why-card-title {
  font-family: var(--font-primary), sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #171816;
  margin: 0 0 6px;
  line-height: 1.25;
}

.ad-why-card-desc {
  font-family: var(--font-primary), sans-serif;
  font-size: 13.5px;
  color: #6a645d;
  line-height: 1.45;
  margin: 0;
}

/* Trusted Partner Divider */
.ad-why-partner-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 12px 0 34px;
  font-family: 'DM Sans', var(--font-primary), sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #797166;
  text-align: center;
}

.ad-why-partner-line {
  flex: 1;
  max-width: 140px;
  height: 1px;
  background-color: #d8cebf;
}

/* 4 Pillars Row */
.ad-why-pillars-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 980px;
  margin: 0 auto 52px;
  padding: 10px 14px;
}

.ad-why-pillar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: center;
  text-align: left;
}

.ad-why-pillar-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #93562a;
  flex-shrink: 0;
}

.ad-why-pillar-icon svg {
  width: 32px;
  height: 32px;
  stroke: #93562a;
}

.ad-why-pillar-text {
  font-family: var(--font-primary), sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #211e1b;
  line-height: 1.25;
}

.ad-why-pillar-divider {
  width: 1px;
  height: 38px;
  background-color: #ded5c8;
  margin: 0 12px;
  flex-shrink: 0;
}

/* Bottom Signature / Villa Row */
.ad-why-signature-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-top: 10px;
  padding-top: 10px;
}

.ad-why-sig-left {
  padding-bottom: 24px;
  flex-shrink: 0;
}

.ad-why-script {
  font-family: 'Caveat', cursive;
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 700;
  color: #93562a;
  line-height: 1.12;
  margin: 0 0 8px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.ad-why-script-line {
  display: inline-block;
  width: 54px;
  height: 2px;
  background-color: #d1bbaa;
  margin-bottom: 12px;
}

.ad-why-brand-mark {
  font-family: var(--font-primary), sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  color: #312c27;
}

.ad-why-sig-media {
  flex: 1;
  max-width: 720px;
  display: flex;
  justify-content: flex-end;
}

.ad-why-villa-img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  object-position: bottom right;
  display: block;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
  .ad-why-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 38px;
  }

  .ad-why-partner-kicker {
    margin: 8px 0 26px;
    font-size: 11px;
  }

  .ad-why-partner-line {
    max-width: 80px;
  }

  .ad-why-pillars-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
    max-width: 520px;
    margin-bottom: 40px;
  }

  .ad-why-pillar-divider {
    display: none;
  }

  .ad-why-pillar-item {
    justify-content: flex-start;
  }

  .ad-why-signature-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .ad-why-sig-media {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .ad-why-villa-img {
    max-height: 260px;
  }
}

@media (max-width: 640px) {
  .ad-why-choose-section {
    padding: 50px 0 40px;
  }

  .ad-why-head {
    margin-bottom: 28px;
  }

  .ad-why-kicker-wrap {
    gap: 10px;
    margin-bottom: 8px;
  }

  .ad-why-kicker-line {
    width: 28px;
  }

  .ad-why-kicker {
    font-size: 10.5px;
    letter-spacing: 0.16em;
  }

  .ad-why-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 30px;
  }

  .ad-why-card {
    border-radius: 16px;
    padding: 10px 10px 16px;
  }

  .ad-why-card-media {
    border-radius: 10px;
  }

  .ad-why-card-body {
    padding: 12px 4px 2px;
  }

  .ad-why-icon-badge {
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
  }

  .ad-why-icon-badge svg {
    width: 16px;
    height: 16px;
  }

  .ad-why-card-title {
    font-size: 14.5px;
    margin-bottom: 4px;
  }

  .ad-why-card-desc {
    font-size: 12px;
    line-height: 1.4;
  }

  .ad-why-partner-kicker {
    font-size: 9.5px;
    letter-spacing: 0.12em;
    gap: 10px;
    margin: 6px 0 22px;
  }

  .ad-why-partner-line {
    max-width: 30px;
  }

  .ad-why-pillars-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 14px;
    margin-bottom: 30px;
    padding: 0 4px;
  }

  .ad-why-pillar-item {
    gap: 10px;
  }

  .ad-why-pillar-icon {
    width: 30px;
    height: 30px;
  }

  .ad-why-pillar-icon svg {
    width: 26px;
    height: 26px;
  }

  .ad-why-pillar-text {
    font-size: 12.5px;
    line-height: 1.25;
  }

  .ad-why-script {
    font-size: 28px;
    gap: 10px;
  }

  .ad-why-script-line {
    width: 38px;
    margin-bottom: 8px;
  }

  .ad-why-brand-mark {
    font-size: 11.5px;
  }
}

/* ==========================================================================
   HOMES BUILT ACROSS BANGALORE - SHOWCASE SECTION (top-construction-company)
   ========================================================================== */
.ad-proj-showcase-section {
  position: relative;
  background-color: #fbf9f5;
  padding: 76px 0 60px;
  overflow: hidden;
  border-bottom: 1px solid #ede5d8;
}

.ad-proj-head {
  text-align: center;
  margin-bottom: 40px;
}

.ad-proj-kicker-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.ad-proj-kicker-line {
  width: 44px;
  height: 1px;
  background-color: #cbbeaf;
  opacity: 0.85;
}

.ad-proj-kicker {
  font-family: 'DM Sans', var(--font-primary), sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #797166;
}

.ad-proj-title {
  font-family: var(--font-primary), sans-serif;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  color: #171816;
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin: 0 0 10px;
}

.ad-proj-title .ad-text-brown {
  color: #93562a;
}

.ad-proj-sub {
  font-family: var(--font-primary), sans-serif;
  font-size: clamp(14px, 1.6vw, 16.5px);
  color: #686259;
  line-height: 1.45;
  margin: 0;
}

/* 4 Projects Grid */
.ad-proj-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 38px;
}

.ad-proj-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 12px 12px 20px;
  box-shadow: 0 4px 20px rgba(50, 45, 38, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
  border: 1px solid #ede5d8;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.ad-proj-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(80, 60, 40, 0.1), 0 2px 6px rgba(0, 0, 0, 0.04);
  border-color: #dfd0bc;
}

/* Slider Gallery */
.ad-proj-slider-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: #eee7dc;
}

.ad-proj-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

.ad-proj-slide {
  width: 33.3333%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

.ad-proj-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  transition: transform 0.5s ease;
}

.ad-proj-card:hover .ad-proj-slide img {
  transform: scale(1.03);
}

.ad-proj-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 3;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.28);
  border-radius: 20px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.ad-proj-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.25s ease;
}

.ad-proj-dot.active {
  background: #ffffff;
  width: 14px;
  border-radius: 3px;
}

/* Card Info */
.ad-proj-info {
  padding: 16px 8px 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.ad-proj-name {
  font-family: var(--font-primary), sans-serif;
  font-size: 17.5px;
  font-weight: 700;
  color: #161816;
  margin: 0 0 2px;
  line-height: 1.25;
}

.ad-proj-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary), sans-serif;
  font-size: 13.5px;
  color: #6a645d;
  font-weight: 500;
  line-height: 1.35;
}

.ad-proj-meta-icon {
  width: 16px;
  height: 16px;
  stroke: #93562a;
  flex-shrink: 0;
}

/* View All Projects CTA */
.ad-proj-cta-wrap {
  display: flex;
  justify-content: center;
  margin: 10px 0 44px;
}

.ad-proj-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #93562a;
  color: #ffffff !important;
  padding: 14px 34px;
  border-radius: 50px;
  font-family: var(--font-primary), sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(147, 86, 42, 0.28);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ad-proj-cta-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.ad-proj-cta-btn:hover {
  background-color: #7f451d;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(147, 86, 42, 0.38);
}

.ad-proj-cta-btn:hover svg {
  transform: translateX(4px);
}

/* Bottom Signature & Skyline Row */
.ad-proj-footer-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 10px;
  position: relative;
}

.ad-proj-sig-left {
  flex-shrink: 0;
  z-index: 2;
  padding-bottom: 12px;
}

.ad-proj-script {
  font-family: 'Caveat', cursive;
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 700;
  color: #93562a;
  line-height: 1.12;
  margin: 0 0 6px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.ad-proj-script-line {
  display: inline-block;
  width: 54px;
  height: 2px;
  background-color: #d1bbaa;
  margin-bottom: 12px;
}

.ad-proj-brand-mark {
  font-family: var(--font-primary), sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  color: #312c27;
}

.ad-proj-skyline-wrap {
  flex: 1;
  max-width: 680px;
  display: flex;
  justify-content: flex-end;
  opacity: 0.88;
  pointer-events: none;
}

.ad-proj-skyline-img {
  width: 100%;
  height: auto;
  max-height: 150px;
  object-fit: contain;
  object-position: bottom right;
  display: block;
}

/* Responsive Rules for Projects Showcase */
@media (max-width: 991px) {
  .ad-proj-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
  }

  .ad-proj-footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .ad-proj-skyline-wrap {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .ad-proj-skyline-img {
    max-height: 120px;
  }
}

@media (max-width: 640px) {
  .ad-proj-showcase-section {
    padding: 50px 0 40px;
  }

  .ad-proj-head {
    margin-bottom: 28px;
  }

  .ad-proj-kicker-wrap {
    gap: 10px;
    margin-bottom: 8px;
  }

  .ad-proj-kicker-line {
    width: 28px;
  }

  .ad-proj-kicker {
    font-size: 10.5px;
    letter-spacing: 0.16em;
  }

  .ad-proj-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 26px;
  }

  .ad-proj-card {
    border-radius: 16px;
    padding: 10px 10px 16px;
  }

  .ad-proj-slider-wrap {
    border-radius: 10px;
  }

  .ad-proj-info {
    padding: 12px 4px 2px;
    gap: 6px;
  }

  .ad-proj-name {
    font-size: 14.5px;
  }

  .ad-proj-meta-item {
    font-size: 11.5px;
    gap: 6px;
  }

  .ad-proj-meta-icon {
    width: 14px;
    height: 14px;
  }

  .ad-proj-cta-wrap {
    margin: 6px 0 34px;
  }

  .ad-proj-cta-btn {
    padding: 12px 26px;
    font-size: 13.5px;
  }

  .ad-proj-script {
    font-size: 28px;
    gap: 10px;
  }

  .ad-proj-script-line {
    width: 38px;
    margin-bottom: 8px;
  }

  .ad-proj-brand-mark {
    font-size: 11.5px;
  }

  .ad-proj-skyline-img {
    max-height: 95px;
  }
}

/* ==========================================================================
   HOMEOWNERS SPEAK - REAL HOMES. REAL STORIES SECTION
   ========================================================================== */
.ad-speak-section {
  position: relative;
  background-color: #fbf9f5;
  padding: 76px 0 60px;
  overflow: hidden;
  border-bottom: 1px solid #ede5d8;
}

.ad-speak-head {
  text-align: center;
  margin-bottom: 40px;
}

.ad-speak-kicker-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.ad-speak-kicker-line {
  width: 44px;
  height: 1px;
  background-color: #cbbeaf;
  opacity: 0.85;
}

.ad-speak-kicker {
  font-family: 'DM Sans', var(--font-primary), sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #797166;
}

.ad-speak-title {
  font-family: var(--font-primary), sans-serif;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  color: #171816;
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin: 0 0 10px;
}

.ad-speak-title .ad-text-brown {
  color: #93562a;
}

.ad-speak-sub {
  font-family: var(--font-primary), sans-serif;
  font-size: clamp(14px, 1.6vw, 16.5px);
  color: #686259;
  line-height: 1.45;
  margin: 0 auto;
  max-width: 620px;
}

/* 3 Testimonial Cards Grid */
.ad-speak-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 38px;
}

.ad-speak-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(50, 45, 38, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
  border: 1px solid #ede5d8;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.ad-speak-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(80, 60, 40, 0.1), 0 2px 6px rgba(0, 0, 0, 0.04);
  border-color: #dfd0bc;
}

.ad-speak-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eee7dc;
}

.ad-speak-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.5s ease;
}

.ad-speak-card:hover .ad-speak-card-img {
  transform: scale(1.03);
}

.ad-speak-location-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(147, 86, 42, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffffff;
  font-family: var(--font-primary), sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4.5px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  z-index: 3;
  max-width: calc(100% - 24px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ad-speak-card-body {
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
}

.ad-speak-author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  position: relative;
}

.ad-speak-stars {
  color: #d49a37;
  font-size: 17px;
  letter-spacing: 2.5px;
  display: inline-flex;
  gap: 1px;
}

.ad-speak-quote-mark {
  font-family: Georgia, serif;
  font-size: 46px;
  color: #eeddc9;
  line-height: 1;
  font-weight: 700;
}

.ad-speak-quote-text {
  font-family: var(--font-primary), sans-serif;
  font-size: 14.5px;
  line-height: 1.65;
  color: #443e39;
  margin: 0 0 20px;
  flex: 1;
}

.ad-speak-author-info {
  border-top: 1px solid #f0eae1;
  padding-top: 14px;
}

.ad-speak-author-name {
  font-family: var(--font-primary), sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #1e1b18;
  margin-bottom: 2px;
}

.ad-speak-author-sub {
  font-family: var(--font-primary), sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #877f75;
}

/* Bottom Controls & Script Note */
.ad-speak-footer-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
  position: relative;
}

.ad-speak-nav-wrap {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.ad-speak-arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ede2d3;
  border: none;
  color: #6a5341;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.ad-speak-arrow-btn svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
}

.ad-speak-arrow-btn:hover {
  background: #93562a;
  color: #ffffff;
  transform: scale(1.06);
}

.ad-speak-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #93562a;
  color: #ffffff !important;
  padding: 13px 32px;
  border-radius: 40px;
  font-family: var(--font-primary), sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(147, 86, 42, 0.28);
  transition: all 0.25s ease;
}

.ad-speak-cta-btn svg {
  width: 17px;
  height: 17px;
  transition: transform 0.25s ease;
}

.ad-speak-cta-btn:hover {
  background-color: #7d441d;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(147, 86, 42, 0.35);
}

.ad-speak-cta-btn:hover svg {
  transform: translateX(4px);
}

.ad-speak-script-note {
  position: absolute;
  right: 0;
  bottom: 4px;
  font-family: 'Caveat', cursive;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  color: #93562a;
  white-space: nowrap;
}

/* Responsive Rules */
@media (max-width: 991px) {
  .ad-speak-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto 30px;
  }

  .ad-speak-footer-row {
    flex-direction: column;
    gap: 16px;
  }

  .ad-speak-script-note {
    position: static;
    margin-top: 8px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .ad-speak-section {
    padding: 50px 0 40px;
  }

  .ad-speak-head {
    margin-bottom: 28px;
  }

  .ad-speak-card-body {
    padding: 16px 16px 20px;
  }

  .ad-speak-quote-text {
    font-size: 12.5px;
  }

  .ad-speak-cta-btn {
    padding: 11px 24px;
    font-size: 13px;
  }

  .ad-speak-arrow-btn {
    width: 36px;
    height: 36px;
  }

  .ad-speak-script-note {
    font-size: 22px;
  }
}


/* ==========================================================================
   READY TO BUILD - ESTIMATION BANNER SECTION
   Desktop & Mobile Designs matching design mockups
   ========================================================================== */

.ad-estimate-banner-section {
  position: relative;
  background-color: #fbf6ee;
  background-image: url('../assets/estimate-banner-bg.png');
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: cover;
  padding: clamp(34px, 3.5vw, 48px) 0 clamp(40px, 4.5vw, 60px);
  min-height: clamp(660px, 48vw, 780px);
  overflow: hidden;
  font-family: inherit;
  color: #1a1a1a;
  display: flex;
  align-items: flex-start;
}

.ad-estimate-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: flex-start;
  gap: clamp(20px, 3vw, 48px);
  width: 100%;
  position: relative;
  z-index: 2;
  padding-left: clamp(32px, 4vw, 64px);
  padding-right: clamp(16px, 2vw, 28px);
  box-sizing: border-box;
}

/* --- Left Column (Desktop) --- */
.ad-estimate-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  max-width: 530px;
  padding-left: clamp(36px, 4.5vw, 68px);
}

/* Kicker Row */
.ad-estimate-kicker-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.ad-estimate-kicker-line {
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background-color: #a89f91;
}

.ad-estimate-kicker-text {
  font-family: var(--font-primary), sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #797166;
}

/* Headline: compact & crisp to sit well above house roofline */
.ad-estimate-title {
  font-family: var(--font-primary), sans-serif;
  font-size: clamp(28px, 2.7vw, 40px);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 0 8px;
}

.ad-estimate-title-accent {
  color: #8d532b;
}

/* Subtitle */
.ad-estimate-subtitle {
  font-family: var(--font-primary), sans-serif;
  font-size: clamp(14px, 1.2vw, 16px);
  color: #5c554e;
  line-height: 1.35;
  margin: 0 0 16px;
}

/* Badges Row */
.ad-estimate-badges-row {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

/* Brown Offer Badge */
.ad-estimate-offer-badge {
  background: #8d532b;
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 18px rgba(141, 83, 43, 0.25);
  flex-shrink: 0;
}

.ad-estimate-offer-price {
  font-family: var(--font-primary), sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.ad-estimate-offer-label {
  font-family: var(--font-primary), sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  color: #f5eae0;
  margin-top: 2px;
}

/* Divider */
.ad-estimate-badge-divider {
  width: 1px;
  height: 42px;
  background: #d8cec3;
  flex-shrink: 0;
}

/* Validity Badge */
.ad-estimate-validity-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.ad-estimate-validity-icon {
  width: 32px;
  height: 32px;
  color: #8d532b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ad-estimate-validity-icon svg {
  width: 28px;
  height: 28px;
}

.ad-estimate-validity-text {
  display: flex;
  flex-direction: column;
}

.ad-estimate-validity-label {
  font-family: var(--font-primary), sans-serif;
  font-size: 11.5px;
  color: #5c554e;
  line-height: 1.25;
}

.ad-estimate-validity-date {
  font-family: var(--font-primary), sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

/* --- Right Column: Estimate Card & Script Text --- */
.ad-estimate-right {
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding-right: clamp(24px, 3vw, 48px);
}

/* Desktop Script Text: positioned right next to the left side of the form on plain background */
.ad-estimate-script-desktop {
  position: absolute;
  right: calc(100% + 24px);
  top: clamp(148px, 16vw, 234px);
  z-index: 3;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.ad-estimate-script-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: 'Caveat', cursive, sans-serif;
  font-size: clamp(30px, 2.6vw, 38px);
  font-weight: 700;
  color: #8d532b;
  line-height: 1.08;
  transform: rotate(-6deg);
  transform-origin: left center;
}

.ad-estimate-script-underline {
  width: 135px;
  height: 10px;
  margin-top: 4px;
  display: block;
}

.ad-estimate-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 32px 28px;
  box-shadow: 0 16px 45px rgba(60, 40, 20, 0.08);
  border: 1px solid rgba(220, 210, 195, 0.55);
  width: 100%;
  max-width: 440px;
  box-sizing: border-box;
}

.ad-estimate-card-title {
  font-family: var(--font-primary), sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}

.ad-estimate-card-subtitle {
  font-family: var(--font-primary), sans-serif;
  font-size: 13px;
  color: #6c6660;
  text-align: center;
  margin: 0 0 20px;
  line-height: 1.45;
}

.ad-estimate-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* Override global .contact-form box look — form sits inside the card already */
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  width: 100% !important;
}

/* Precision-tuned input group container */
.ad-estimate-input-group {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  background: #fdfdfd !important;
  border: 1.2px solid #e7e3dc !important;
  border-radius: 12px !important;
  transition: all 0.2s ease !important;
  overflow: hidden !important;
  height: 48px !important;
  box-sizing: border-box !important;
}

.ad-estimate-input-group:focus-within {
  border-color: #8d532b !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(141, 83, 43, 0.12) !important;
}

/* Icon strictly on the left */
.ad-estimate-input-icon {
  position: absolute !important;
  left: 14px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 19px !important;
  height: 19px !important;
  color: #8c827a !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  pointer-events: none !important;
  z-index: 3 !important;
}

.ad-estimate-input-icon svg {
  width: 18px !important;
  height: 18px !important;
  display: block !important;
}

/* Input text with generous left padding so placeholder NEVER touches icon */
.contact-form .ad-estimate-form input.ad-estimate-input,
.contact-form input.ad-estimate-input,
.ad-estimate-form input.ad-estimate-input,
input.ad-estimate-input {
  width: 100% !important;
  height: 100% !important;
  box-sizing: border-box !important;
  padding: 0 14px 0 46px !important;
  font-size: 14.5px !important;
  font-family: inherit !important;
  color: #1a1a1a !important;
  border: none !important;
  background: transparent !important;
  outline: none !important;
  box-shadow: none !important;
  line-height: 48px !important;
}

.contact-form input.ad-estimate-input::placeholder,
.ad-estimate-form input.ad-estimate-input::placeholder,
input.ad-estimate-input::placeholder {
  color: #8c827a !important;
  font-size: 14px !important;
  opacity: 1 !important;
  line-height: normal !important;
}

/* Submit button: Title Case, NOT uppercase */
.contact-form .ad-estimate-submit-btn,
.ad-estimate-submit-btn {
  background: #8d532b !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 14px 22px !important;
  font-size: 15.5px !important;
  font-weight: 700 !important;
  font-family: inherit !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  cursor: pointer;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  box-shadow: 0 6px 18px rgba(141, 83, 43, 0.28) !important;
  transition: all 0.25s ease;
  width: 100% !important;
}

.ad-estimate-submit-btn:hover {
  background: #784420 !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(141, 83, 43, 0.35) !important;
}

.ad-estimate-submit-btn svg {
  width: 17px;
  height: 17px;
  transition: transform 0.2s ease;
}

.ad-estimate-submit-btn:hover svg {
  transform: translateX(4px);
}

/* WhatsApp CTA inside card */
.ad-estimate-wa-box {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #f0ebe4;
  display: flex;
  justify-content: center;
}

.ad-estimate-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.ad-estimate-wa-btn:hover {
  opacity: 0.88;
}

.ad-estimate-wa-icon {
  width: 34px;
  height: 34px;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ad-estimate-wa-icon svg {
  width: 19px;
  height: 19px;
}

.ad-estimate-wa-copy {
  display: flex;
  flex-direction: column;
}

.ad-estimate-wa-pre {
  font-size: 12px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
}

.ad-estimate-wa-action {
  font-size: 12.5px;
  font-weight: 700;
  color: #16a34a;
  line-height: 1.2;
}

/* Mobile Villa Wrapper: Hidden on desktop */
.ad-estimate-mobile-villa-wrap {
  display: none;
}

/* Responsive Styles for Mobile / Tablet (< 992px) */
@media (max-width: 991px) {
  .ad-estimate-banner-section {
    background-color: #fbf6ee;
    background-image: url('../assets/estimate-top-leaves.png');
    background-repeat: no-repeat;
    background-position: left top;
    background-size: clamp(85px, 24vw, 130px) auto;
    padding: clamp(36px, 7vw, 50px) 0 0;
    min-height: auto;
    display: block;
    overflow: hidden;
  }

  .ad-estimate-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 0 !important;
    margin: 0 auto !important;
  }

  .ad-estimate-left {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 auto 22px !important;
  }

  .ad-estimate-kicker-row {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px;
    margin: 0 auto 12px !important;
  }

  .ad-estimate-kicker-line {
    width: 26px;
    height: 1.5px;
    background-color: #a89f91;
  }

  .ad-estimate-kicker-text {
    font-size: 11px;
    letter-spacing: 0.22em;
    color: #797166;
  }

  .ad-estimate-title {
    text-align: center !important;
    font-size: clamp(26px, 7.2vw, 36px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 auto 10px !important;
    width: 100% !important;
  }

  .ad-estimate-subtitle {
    text-align: center !important;
    font-size: clamp(13.5px, 3.6vw, 15.5px);
    color: #615a53;
    line-height: 1.4;
    margin: 0 auto 18px !important;
    width: 100% !important;
  }

  /* Badges Row on Mobile: Always Side-by-Side in 1 Row, perfectly centered */
  .ad-estimate-badges-row {
    display: inline-flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(8px, 2.5vw, 16px);
    width: auto !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .ad-estimate-offer-badge {
    background: #8d532b;
    color: #ffffff;
    padding: 8px clamp(12px, 3vw, 18px);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(141, 83, 43, 0.22);
  }

  .ad-estimate-offer-price {
    font-size: clamp(18px, 4.8vw, 22px);
    font-weight: 800;
    line-height: 1.1;
  }

  .ad-estimate-offer-label {
    font-size: clamp(10.5px, 2.7vw, 12px);
    font-weight: 500;
    color: #f3e8df;
    margin-top: 1px;
    white-space: nowrap;
  }

  .ad-estimate-badge-divider {
    width: 1px;
    height: 38px;
    background: #dcd3c8;
    flex-shrink: 0;
    display: block !important;
  }

  .ad-estimate-validity-badge {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(6px, 2vw, 10px);
    flex-shrink: 0;
  }

  .ad-estimate-validity-icon {
    width: clamp(24px, 6.5vw, 32px);
    height: clamp(24px, 6.5vw, 32px);
    color: #8d532b;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ad-estimate-validity-icon svg {
    width: 100%;
    height: 100%;
  }

  .ad-estimate-validity-text {
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  .ad-estimate-validity-label {
    font-size: clamp(10px, 2.6vw, 11.5px);
    color: #615a53;
    line-height: 1.25;
    white-space: nowrap;
  }

  .ad-estimate-validity-date {
    font-size: clamp(11.5px, 3vw, 13.5px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.25;
    white-space: nowrap;
  }

  /* Hide desktop script text */
  .ad-estimate-script-desktop {
    display: none;
  }

  /* Right / Card column on mobile - perfectly centered */
  .ad-estimate-right {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 auto !important;
  }

  .ad-estimate-card {
    width: 100% !important;
    max-width: 420px !important;
    margin: 0 auto !important;
    padding: clamp(22px, 5.5vw, 32px) clamp(16px, 4.5vw, 24px) !important;
    border-radius: 20px !important;
    box-sizing: border-box !important;
    box-shadow: 0 10px 32px rgba(45, 30, 15, 0.07) !important;
    border: 1px solid rgba(220, 210, 195, 0.6) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .ad-estimate-card-title {
    font-size: clamp(20px, 5vw, 23px);
    font-weight: 800;
    margin: 0 auto 6px !important;
    text-align: center !important;
    width: 100% !important;
  }

  .ad-estimate-card-subtitle {
    font-size: clamp(12px, 3vw, 13px);
    margin: 0 auto 18px !important;
    line-height: 1.4;
    text-align: center !important;
    width: 100% !important;
  }

  .ad-estimate-form {
    gap: 10px !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
  }

  .ad-estimate-input-group {
    border-radius: 10px;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .contact-form input.ad-estimate-input,
  .ad-estimate-input {
    padding: 0 14px 0 44px !important;
    height: 46px !important;
    line-height: 46px !important;
    font-size: 13.5px !important;
  }

  .ad-estimate-input-icon {
    left: 12px;
    width: 18px;
    height: 18px;
  }

  .ad-estimate-input-icon svg {
    width: 17px;
    height: 17px;
  }

  .ad-estimate-submit-btn {
    padding: 13px 20px !important;
    font-size: 14.5px !important;
    border-radius: 10px !important;
    margin: 4px auto 0 !important;
    width: 100% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .ad-estimate-wa-box {
    margin: 14px auto 0 !important;
    padding-top: 12px !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .ad-estimate-wa-btn {
    gap: 10px;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .ad-estimate-wa-icon {
    width: 32px;
    height: 32px;
  }

  .ad-estimate-wa-icon svg {
    width: 18px;
    height: 18px;
  }

  .ad-estimate-wa-copy {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .ad-estimate-wa-pre {
    font-size: 11.5px;
    text-align: center !important;
  }

  .ad-estimate-wa-action {
    font-size: 12.5px;
    text-align: center !important;
  }

  /* Show mobile villa wrap below the card */
  .ad-estimate-mobile-villa-wrap {
    display: block;
    position: relative;
    width: 100%;
    margin-top: clamp(18px, 5vw, 30px);
    line-height: 0;
    overflow: hidden;
  }

  .ad-estimate-mobile-villa-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
  }

  .ad-estimate-script-mobile {
    position: absolute;
    top: 8%;
    right: 5%;
    z-index: 3;
    pointer-events: none;
  }

  .ad-estimate-script-mobile .ad-estimate-script-text {
    font-family: 'Caveat', cursive;
    font-size: clamp(20px, 5.2vw, 30px);
    font-weight: 700;
    color: #8d532b;
    line-height: 1.05;
    transform: rotate(-6deg);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .ad-estimate-script-mobile .ad-estimate-script-underline {
    width: clamp(80px, 20vw, 110px);
    height: 10px;
    margin-top: -2px;
  }
}

/* Ad landing page: Remove navigation bar (sticky nav, desktop nav, mobile menu) */
body.ad-page .sticky-header,
body.ad-page .sticky-nav,
body.ad-page .mobile-menu,
body.ad-page .hero-nav,
body.ad-page .site-header,
body.ad-page .ad-proj-cta-wrap,
body.ad-page .ad-speak-cta-btn {
  display: none !important;
}

/* ====================================================
   PROJECT GALLERY LIGHTBOX MODAL OVERLAY
   ==================================================== */
body.ad-proj-modal-open {
  overflow: hidden !important;
  touch-action: none;
}

.ad-proj-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  color: #ffffff;
  font-family: var(--font-primary), -apple-system, BlinkMacSystemFont, sans-serif;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.ad-proj-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.ad-proj-modal-backdrop {
  position: absolute;
  inset: 0;
  background: #000000;
  z-index: 1;
}

.ad-proj-modal-panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100vh;
  box-sizing: border-box;
}

/* Top bar */
.ad-proj-modal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 5;
  flex: none;
}

.ad-proj-modal-back-btn,
.ad-proj-modal-close-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.ad-proj-modal-back-btn:hover,
.ad-proj-modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.ad-proj-modal-back-btn:active,
.ad-proj-modal-close-btn:active {
  transform: scale(0.92);
}

.ad-proj-modal-counter-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ad-proj-modal-counter {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.ad-proj-modal-proj-name {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
  max-width: 260px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Stage & Track */
.ad-proj-modal-stage {
  flex: 1 1 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 0;
}

.ad-proj-modal-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.ad-proj-modal-track::-webkit-scrollbar {
  display: none;
}

.ad-proj-modal-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  box-sizing: border-box;
}

.ad-proj-modal-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
  user-select: none;
}

/* Desktop navigation arrows */
.ad-proj-modal-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(30, 30, 30, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  transition: all 0.2s ease;
}

.ad-proj-modal-prev {
  left: 18px;
}

.ad-proj-modal-next {
  right: 18px;
}

.ad-proj-modal-nav-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.08);
}

.ad-proj-modal-nav-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

/* Bottom Actions Bar (matches user screenshot) */
.ad-proj-modal-bottombar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px 24px;
  background: #000000;
  flex: none;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.ad-proj-modal-action-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff;
  color: #111111 !important;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, background-color 0.2s ease;
}

.ad-proj-modal-action-btn:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}

.ad-proj-modal-action-btn:active {
  transform: scale(0.97);
}

/* Project Card Click Cue */
.ad-proj-card {
  cursor: pointer;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ad-proj-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.ad-proj-view-badge {
  display: none !important;
}

@media (max-width: 640px) {
  .ad-proj-modal-nav-arrow {
    display: none;
  }
  .ad-proj-modal-bottombar {
    padding: 10px 14px 20px;
    gap: 10px;
  }
  .ad-proj-modal-action-btn {
    padding: 12px 14px;
    font-size: 14px;
  }
}


