/* ================================================================
   DESIGN TOKENS
   Central palette, fonts, and layout constants (Figma spec).
   Change a value here and it updates everywhere it's used via var().
   ================================================================ */
:root {
  --navy: #141D2C;        /* page background */
  --navy-card: #242E40;   /* elevated dark card/pill bg */
  --cream: #FFF9F4;       /* primary text on dark */
  --cream-card: #FFFCF9;  /* light card bg (testimonials, stat card) */
  --ink: #242E40;         /* text on light cards */
  --btn-ink: #020C17;     /* text on cream buttons */
  --footer-muted: rgba(255, 249, 244, 0.68);
  --line: rgba(255, 249, 244, 0.16);
  --muted: #dbd7d4; /* Muted Text */
  --location-why-opacity: 1; /* controls opacity of the "Why ACP" section image on suburb landing pages */

  --font-display: "Space Grotesk", sans-serif;  /* headings, labels, nav, buttons */
  --font-accent: "Cormorant Garamond", serif;    /* italic accent word within headings only */
  --font-body: "Inter", sans-serif;              /* paragraph copy */

  --container: 1400px; /* max width of centered page content */
  --gutter: 80px;      /* side padding on desktop; redefined to 24px on mobile (see mobile nav block below) */
}

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

html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
a, button { -webkit-tap-highlight-color: transparent; } 

body {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; }

em {
  font-style: italic;
  font-weight: 500;
  font-family: var(--font-accent);
}

.stars-icon { height: 14px; width: auto; }
.stars-icon.small { height: 13px; }
.google-icon { height: 24px; width: auto; }


:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 3px;
}

/* ================================================================
   PLACEHOLDER IMAGES
   ================================================================ */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: repeating-linear-gradient(135deg, #1b2536, #1b2536 12px, #202b40 12px, #202b40 24px);
  border: 1px dashed rgba(255,249,244,0.3);
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--footer-muted);
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.6;
  font-family: var(--font-body);
}
.img-placeholder span { display: block; font-size: 0.6rem; opacity: 0.7; text-transform: none; letter-spacing: 0; }

.media-frame {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.media-frame .img-placeholder { position: absolute; inset: 0; }
.real-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* individual sections override this to `cover` as needed */
  display: block;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 0 45px;
  border-radius: 35px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn-solid {
  background: var(--cream);
  color: var(--btn-ink);
}
.btn-solid:hover { transform: translateY(-2px) scale(1.05); }
.btn-outline {
  border: 1px solid var(--cream);
  color: var(--cream);
}

.header-inner .btn-solid:hover {
  transform: translateX(60px) translateY(-2px) scale(1.05);
}

.btn-outline:hover { background: rgba(255,249,244,0.08); transform: scale(1.05); }

/* ===== HEADER ===== */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 40px var(--gutter) 0;
  padding-left: max(var(--gutter), env(safe-area-inset-left));
  padding-right: max(var(--gutter), env(safe-area-inset-right));
  transition: background 0.3s ease;
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-inner .btn {
  transform: translateX(60px); 
}

.logo { display: flex; align-items: center; }
.logo-img { height: 100px; width: auto; }
.footer-logo .logo-img { height: 190px; transform: translateX(-25px) translateY(-25px);}

.main-nav {
  display: flex;
  gap: 40px;
  margin-left: auto;
  margin-right: 40px;
  align-items: center;
  transform: translateX(60px);
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--cream);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  display: inline-block;
  transition: border-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}
.main-nav > a:hover,
  .nav-item > a:hover {
    opacity: 0.75;
    transform: scale(1.08);
}

.main-nav a.active { font-weight: 700; }

.nav-item { position: relative; display: flex; align-items: center; }

.nav-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 20px; 
  z-index: 59;
}


.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px) scale(0.98);
  margin-top: 20px;
  min-width: 260px;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 249, 244, 0.12);
  border-radius: 16px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.3s ease;
  z-index: 60;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}


.nav-dropdown a {
  padding: 12px 16px;
  border-radius: 9px;
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 300;
  border-left: 2px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, padding-left 0.15s ease;
}

.nav-dropdown a:hover {
  background: rgba(255,249,244,0.06);
  font-weight: 500;
  padding-left: 20px;
}

.nav-dropdown-wide {
  min-width: 620px;
  padding: 20px;
}

.nav-dropdown-wide > a {
  border-bottom: 1px solid var(--line);
  margin-bottom: 10px;
  padding-bottom: 14px;
  font-weight: 700;
}

.nav-dropdown-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 24px;
}

.nav-dropdown-heading {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold, #c9a860);
  padding: 8px 16px 6px;
}

.nav-dropdown-cols a { font-size: 14px; padding: 8px 16px; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh; 
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-media-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(135deg, #1b2536, #1b2536 12px, #202b40 12px, #202b40 24px);
  color: var(--footer-muted);
  font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; text-align: center; line-height: 1.7;
  font-family: var(--font-body);
}
.hero-media-placeholder span { display: block; font-size: 0.65rem; opacity: 0.7; text-transform: none; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,29,44,0.7) 0%, rgba(20,29,44,0.7) 45%, rgba(20,29,44,0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter) 80px;
  transform: translateX(-180px);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 24px;
}
.eyebrow.center { justify-content: center; }

.hero-content h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 80px;
  line-height: 1.02;
  letter-spacing: -3px;
  margin-bottom: 24px;
}
.hero-subtext {
  max-width: 560px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 25px;
  font-weight: 400;
  margin-bottom: 60px;
}
.hero-cta-group { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-cta-group.center { justify-content: center; }
.about-hero-content .hero-cta-group { margin-top: 60px; }

.hero-trust-bar {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px var(--gutter);
  max-height: 110px;
  overflow: hidden;
}
.trust-inner {
  transform: translateX(-120px);
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
}
.trust-inner .divider { opacity: 0.4; }

.trust-inner > span {
  display: inline-flex;   
  gap: 6px;
  white-space: nowrap;
}

.trust-inner .stars-icon {
  transform: translateY(3px);
}

/* ================================================================
   WHY SECTION ("Why Adelaide chooses ACP")
   ================================================================ */
.why-section { padding: 80px var(--gutter); }
.why-inner {
  max-width: var(--container);
  transform: translateX(-120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 200px;
  align-items: stretch;
}
.why-copy h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 60px;
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -3px;
}
.why-lead {
  font-family: var(--font-body);
  color: var(--cream);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.35;
  max-width: none;
  margin-top: 40px;
  margin-bottom: 20px;
}
.why-list { border-top: 1px solid var(--line); }
.why-list li {
  display: grid;
  grid-template-columns: 320px 1fr;
  grid-template-areas:
    "num  desc"
    "title desc";
  column-gap: 24px;
  row-gap: 0px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.why-num { grid-area: num; }

.why-title {
  grid-area: title;
  white-space: nowrap;
}

.why-desc {
  grid-area: desc;
  align-self: center;
  max-width: 420px;
}
.why-list li > div {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}
.why-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--cream);
  flex-shrink: 0;
  width: 30px;
}
.why-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}
.why-desc {
  font-family: var(--font-body);
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  max-width: 420px;
}

.stat-cards { display: flex; gap: 24px; margin-top: 40px; }
.stat-card { flex: 1; padding: 32px 28px; border-radius: 10px; }
.stat-dark { background: var(--navy-card); color: var(--muted); }
.stat-light { background: var(--cream-card); color: var(--ink); }
.stat-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.star-icon { 
  height: 2.7rem; 
  width: auto; 
  display: inline-block; 
  flex-shrink: 0; 
  transform: translateY(-3px);
}
.stat-caption {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
}

.why-image {
  overflow: hidden;
  min-height: 560px;
}
.why-image .real-img { object-fit: cover; opacity: 0.8;}
.location-why-image {
  aspect-ratio: auto;
  min-height: 560px;
  opacity: var(--location-why-opacity, 1) !important;
}

/* ================================================================
   PROJECTS GALLERY (horizontal auto-scrolling carousel)
   ================================================================ */
.projects-section { 
  padding: 60px 0 60px; 
  border-top: 1px solid var(--line);
}
.projects-header {
  max-width: var(--container);
  margin: 0 auto 40px;
  padding: 0 var(--gutter);
  transform: translateX(-200px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.projects-header h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -3px;
  font-size: 60px;
}
.scroll-arrows { 
  display: flex; 
  gap: 12px; 
  transform: translateX(300px);
}
.arrow-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  transform: translateX(60px); 
}
.arrow-btn svg {
  width: 16px; height: 16px;
}
.arrow-btn:hover {
  border-color: var(--cream);
  background: rgba(255, 249, 244, 0.08);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.projects-scroll {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--gutter) 10px;
  scrollbar-width: none;
}
.projects-scroll::-webkit-scrollbar { display: none; }
.projects-scroll.paused,
.testimonials-scroll.paused { animation-play-state: paused !important; }

.project-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
}
.project-card .media-frame { aspect-ratio: 748/768; border-radius: 5px; }
.project-card .img-placeholder { min-height: 0; }

.project-card .real-img {
  object-fit: cover;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  border-radius: 6px;
}
.project-card:hover .real-img {
  opacity: 1;
}

.project-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 20px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(10,15,26,0.4) 30%, rgba(10,15,26,1) 100%);
  z-index: 2;
}

.project-tag {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 0;
}
.project-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  margin-top: 4px;
}

/* ================================================================
   TESTIMONIALS ("What our clients say")
   ================================================================ */
.testimonials-section { 
  padding: 60px 0 60px;
  border-top: 1px solid var(--line);
}
.testimonials-header {
  max-width: var(--container);
  margin: 0 auto 40px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.testimonials-header h2 {
  font-weight: 500;
  transform: translateX(-200px);
  letter-spacing: -3px;
  font-size: 60px;
}
.testimonials-meta { 
  text-align: right; font-family: var(--font-display); 
  transform: translateX(160px);
}
.testimonials-meta p {
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px; justify-content: flex-end;
  font-size: 14px; font-weight: 700;
}
.view-all-link { font-size: 14px; font-weight: 700; text-decoration: underline; color: var(--cream); }

.testimonials-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--gutter) 10px;
  scrollbar-width: none;
}
.testimonials-scroll::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 420px;
  scroll-snap-align: start;
  background: var(--cream-card);
  color: var(--ink);
  border-radius: 10px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.testimonial-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.testimonial-text {
  font-family: "Google Sans", var(--font-body);
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 24px;
  flex: 1;
}
.testimonial-author {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.testimonial-author .time-ago {
  font-weight: 400;
  opacity: 0.65;
  font-size: 12px;
}
.testimonial-author .role { font-weight: 500; }
.testimonial-author .dot { margin: 0 8px; opacity: 0.6; }

/* ================================================================
   SERVICES ("Services we Offer")
   ================================================================ */
.services-section {
  position: relative;
  padding: 0;
  border-top: 1px solid var(--line);
}
.services-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 80px;
  align-items: stretch;
}

.services-copy {
  padding: 80px 0;
  grid-column: 1;
}

.services-copy h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 60px;
  transform: translateX(-110px);
  letter-spacing: -3px;
  margin-bottom: 36px;
}
.services-list { border-top: 1px solid var(--line); transform: translateX(-110px);}
.services-list li {
  display: grid;
  grid-template-columns: 320px 1fr auto;
  column-gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.service-heading {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.services-list .why-num { line-height: 1; } 
.service-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}
.service-desc {
  font-family: var(--font-body);
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  max-width: 420px;
}
.service-arrow {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.service-arrow-icon { width: 12px; height: 12px; color: var(--cream); }
.service-arrow:hover {
  border-color: var(--cream);
  background: rgba(255, 249, 244, 0.08);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}
.services-image {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: calc(50vw - 304px); 
  max-width: 900px; 
  min-height: 600px;
}
.services-image .real-img { object-fit: cover; object-position: center 20%; }


/* ================================================================
   BRANDS WE TRUST (Dulux / Wattyl / Haymes logo strip)
   ================================================================ */
.brands-section {
  padding: 40px var(--gutter) 40px;
  text-align: center;
  border-top: 1px solid var(--line);
}
.brands-header h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -2px;
  font-size: 40px;
}
.brands-list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 80px;
  max-width: var(--container);
  margin: 10px auto 0;
}
.brand-item { display: flex; align-items: center; justify-content: center; }
.brand-logo {
  height: 120px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  animation: brandFloat 4.5s ease-in-out infinite;
}
.brand-logo-color { height: 80px; } 
.brands-list.in-view > li:nth-child(1) .brand-logo { animation-delay: 0s; }
.brands-list.in-view > li:nth-child(2) .brand-logo { animation-delay: 0.6s; }
.brands-list.in-view > li:nth-child(3) .brand-logo { animation-delay: 1.2s; }

@keyframes brandFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}


@media (prefers-reduced-motion: reduce) {
  .brand-logo { animation: none !important; }
}

@media (max-width: 1024px) {
  .brands-section { padding: 40px var(--gutter) 50px; }
  .brands-list { gap: 40px; margin-top: 20px; }
  .brand-logo { height: 76px; }
  .brand-logo-color { height: 42px; }
}

/* ================================================================
   CTA ("Get a free, no-obligation quote")
   ================================================================ */
.cta-section {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cta-media .real-img {
  object-fit: cover;
  opacity: 0.3;
}
.cta-media { position: absolute; inset: 0; z-index: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta-media .img-placeholder { min-height: 520px; }
.cta-content { position: relative; z-index: 2; text-align: center; max-width: 760px; padding: 60px var(--gutter); }
.cta-content h2 {
  font-family: var(--font-display);
  letter-spacing: -3px;
  font-weight: 500;
  font-size: 60px;
  line-height: 1;
  margin: 40px 0 40px;
}
.cta-subtext {
  font-family: var(--font-body);
  color: var(--muted);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 40px;
}

/* ================================================================
   FOOTER
   Same markup/classes on every single page.
   ================================================================ */
.site-footer { background: var(--navy); padding: 50px var(--gutter) 0; }
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 20px;
}
.footer-desc {
  font-family: var(--font-body);
  color: var(--footer-muted);
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  max-width: 340px;
  transform: translateY(-20px)
}
.footer-heading {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 10px;
}
.footer-links { display: flex; flex-direction: column; }
.footer-links a {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
}
.footer-links a:hover { opacity: 0.75; }
.footer-contact { display: flex; flex-direction: column; }
.contact-line {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 1.5;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 14px;
}
.contact-line:hover { opacity: 0.75; }
.contact-line .icon-img { height: 20px; width: auto; }
.footer-social { display: flex; gap: 16px; margin-top: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.footer-social a img { height: 18px; width: auto; }
.footer-social a:hover { border-color: var(--cream); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 15px var(--gutter);
  margin: 0 calc(var(--gutter) * -1);
  text-align: center;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 400;
  color: var(--muted);
}

.mobile-nav-cta { display: none !important; }

/* ================================================================
   MOBILE NAV — BURGER BUTTON
   ================================================================ */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  z-index: 100;
}
.burger-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger-btn.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ================================================================
   MOBILE / TABLET LAYOUT — MAIN BLOCK
   ================================================================ */
@media (max-width: 1024px) {
  :root { --gutter: 24px; } 
  .burger-btn { display: flex; }

  .main-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    position: fixed;
    top: 0;
    right: 0;
    width: min(340px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: rgba(20, 29, 44, 0.85);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border-left: 1px solid rgba(255, 249, 244, 0.12);
    padding: 100px 32px 40px;
    padding-top: max(100px, env(safe-area-inset-top) + 60px);
    padding-right: max(32px, env(safe-area-inset-right));
    padding-bottom: max(40px, env(safe-area-inset-bottom) + 20px);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 90;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }

  .main-nav > a,
  .nav-item > a {
    font-size: 18px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    width: 100%;
  }

  .nav-item { flex-direction: column; align-items: stretch; width: 100%; }
  .nav-item::after { display: none; } 
  .nav-dropdown,
  .nav-dropdown-wide {
    display: none;
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    min-width: 0 !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .nav-item.expanded .nav-dropdown,
  .nav-item.expanded .nav-dropdown-wide {
    display: flex !important;
    flex-direction: column !important;
    padding: 8px 0 16px !important;
  }

  .nav-dropdown-cols {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }
  .nav-dropdown a { font-size: 15px; padding: 10px 12px; }

  body.nav-open { overflow: hidden; } 
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 80;
  }
  .nav-overlay.open { display: block; }

  .mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 28px;
  }

  .why-inner, .services-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-image { min-height: 320px; order: -1; } /* photo above the copy on mobile; overridden back to below in "round 2" fixes */
  .residential-story-image .real-img { object-fit: cover !important; object-position: center !important; }
  .footer-inner { grid-template-columns: 1fr; }
  .stat-cards { flex-direction: column; }
  .why-lead, .hero-subtext, .cta-subtext { font-size: 18px; line-height: 1.6; }
  .hero-content,
  .trust-inner,
  .why-inner,
  .projects-header,
  .projects-header.reveal,
  .projects-header.reveal.in-view,
  .scroll-arrows,
  .arrow-btn,
  .testimonials-header h2,
  .testimonials-meta,
  .services-copy h2,
  .services-list,
  .header-inner .btn,
  .footer-logo .logo-img {
    transform: none;
  }

  .services-image {
    position: static;
    width: 100%;
    height: auto;
    min-height: 320px;
    max-width: none;
    order: -1;
  }

  .why-list li {
    grid-template-columns: 1fr;
    grid-template-areas:
      "num"
      "title"
      "desc";
    row-gap: 6px;
  }
  .why-desc { max-width: none; }

  .services-list li {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "heading arrow"
      "desc    arrow";
    column-gap: 16px;
  }
  .service-heading { grid-area: heading; }
  .service-desc { grid-area: desc; max-width: none; }
  .service-arrow { grid-area: arrow; align-self: center; }

  .hero-content h1 { font-size: 44px; letter-spacing: -1px; }
  .why-copy h2, .projects-header h2, .testimonials-header h2, .services-copy h2 {
    font-size: 36px;
  }

  .venue-projects-header h2 {
    font-size: clamp(20px, 6.5vw, 36px);
    white-space: nowrap;
  }
  .cta-content h2 { font-size: 36px; }
  .commercial-services-header h2,
  .location-specialise-header h2,
  .location-faq-header h2 {
    font-size: 32px !important;
    line-height: 1.15 !important;
  }
  .location-intro h1,
  .location-intro h2 {
    font-size: 32px !important;
    line-height: 1.15 !important;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px !important;
  }
  .hero-trust-bar { padding: 0; border-bottom: none; }
  .trust-inner { display: none; }

  .footer-logo .logo-img { height: 90px; }

  .testimonials-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .testimonials-meta { text-align: left; }
}

/* ================================================================
   SCROLL-TRIGGERED ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.projects-header.reveal {
  transform: translateX(-200px); 
}
.projects-header.reveal.in-view {
  transform: translateX(-200px); 
}

.reveal-stagger > li {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.in-view > li {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.in-view > li:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in-view > li:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in-view > li:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in-view > li:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.in-view > li:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.in-view > li:nth-child(6) { transition-delay: 0.55s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .projects-scroll, .testimonials-scroll { animation: none !important; }
  .reveal, .reveal-stagger > li {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================================
   MOBILE FIXES — round 2, based on real-device screenshots
   ============================================================ */
@media (max-width: 1024px) {
  html, body { overflow-x: hidden; width: 100%; }
  .projects-scroll, .testimonials-scroll {
    overscroll-behavior-x: contain;
  }

  .projects-header,
  .projects-header.reveal,
  .projects-header.reveal.in-view {
    transform: none !important;
  }

  .why-image { order: 0; }
  .services-image { order: 0; }

  .trust-inner { font-size: 11px; }
  .hero-subtext { font-size: 15px; line-height: 1.5; }

  .services-copy h2 { transform: none !important; font-size: 30px; }
  .services-list { transform: none !important; }

  .footer-logo .logo-img { height: 64px; }
  .footer-brand { display: flex; flex-direction: column; }
  .footer-desc { margin-top: 16px; transform: none !important; }

  .footer-bottom {
    margin: 0 calc(var(--gutter) * -1);
    width: calc(100% + var(--gutter) * 2);
  }
  .cta-section { width: 100vw; margin-left: calc(-50vw + 50%); }
}


/* ============================================================
   MOBILE FIXES — round 3, based on real-device screenshots
   ============================================================ */
@media (max-width: 1024px) {
  .header-inner .logo-img {
    transform: none !important;
  }

  .header-inner {
    justify-content: flex-start;
  }
  .header-inner .btn {
    order: 1;
    display: none;
  }
  .burger-btn {
    order: 2;
    margin-left: auto;
    width: 31px;
    height: 31px;
    position: relative;
  }
  .burger-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    transform: translate(-50%, -50%);
  }

  .trust-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
    padding-bottom: 4px;
  }
  .trust-inner::-webkit-scrollbar { display: none; }
  .trust-inner > * { flex-shrink: 0; }

  .services-copy {
    padding: 60px var(--gutter);
  }

  .hero-content h1 {
    font-size: 34px;
    margin-bottom: 18px;
  }
  .eyebrow { margin-bottom: 16px; }
  .hero-subtext { margin-bottom: 28px; }
  .hero-cta-group { gap: 14px; }

  .stat-cards { margin-top: 24px; margin-bottom: 24px; }
}

/* ============================================================
   ABOUT US PAGE
   ============================================================ */

/* ---- Hero ---- */
.about-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.about-hero-media { position: absolute; inset: 0; z-index: 0; }
.about-hero-media .real-img {
  object-fit: cover;
  object-position: 50% 0%;
}
.about-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,15,26,0.7) 0%, rgba(10,15,26,0.7) 20%, rgba(10,15,26,0.7) 40%, rgba(10,15,26,0.9) 100%);
}
.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 var(--gutter);
}
.about-hero-content h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 60px;
  line-height: 0.9;
  letter-spacing: -1.5px;
  margin: 50px 0 60px;
}
.about-hero-subtext {
  font-family: var(--font-body);
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
}
.scroll-chevron {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--cream);
  opacity: 0.7;
  animation: chevronBounce 2s ease-in-out infinite;
}
@keyframes chevronBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- Our Story ---- */
.our-story + .projects-section { border-top: none; }
.our-story { border-bottom: 1px solid var(--line); }
.our-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.our-story-image { min-height: 560px; opacity: 0.65; }
.our-story-image .real-img { object-fit: cover; object-position: center 15%; }
.residential-story-image .real-img { object-fit: none; object-position: 100% 50%; }
.residential-story-copy .story-para { max-width: 80%; }
.residential-hero-media .real-img { opacity: 0.65; }
.strata-hero-media .real-img { opacity: 0.65; }
.venue-hero-media .real-img { opacity: 0.65; object-fit: cover;}
.venue-story-image { opacity: 0.65 !important; }
.decorative-hero-media .real-img { opacity: 0.65; }
#projects .projects-header { transform: translateX(-260px); }

@media (min-width: 1025px) and (max-width: 1440px) {
  .projects-header,
  .projects-header.reveal,
  .projects-header.reveal.in-view,
  .why-copy.reveal,
  .why-copy.reveal.in-view {
    transform: none;
  }
  #projects.home-projects-section .projects-header { transform: none !important; }
}

@media (min-width: 1441px) {
  #projects.home-projects-section .projects-header { transform: translateX(-200px) !important; }
}
.commercial-story-image { opacity: 0.65 !important; }
.our-story-copy {
  padding: 80px var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.our-story-copy h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 60px;
  letter-spacing: -1.5px;
  line-height: 0.8;
  margin: 20px 0 60px;
}
.story-para {
  font-family: var(--font-body);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 18px;
}
.story-para:last-child { margin-bottom: 0; }

/* ---- Four Promises ---- */
.promises-section { padding: 120px var(--gutter); }
.promises-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.promises-header h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 60px;
  letter-spacing: -1.5px;
  margin-top: 16px;
}

.promises-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.promise-card {
  border-radius: 10px;
  padding: 32px 26px;
  text-align: center;
}
.promise-dark { background: var(--navy-card); color: var(--cream); }
.promise-dark .promise-num,
.promise-dark .promise-title {
  color: var(--cream);
}
.promise-light { background: var(--cream-card); color: var(--ink); }
.promise-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 14px;
  justify-content: center;
  display: flex;
  align-items: center;
}
.promise-title {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -1px;
  font-weight: 600;
  margin-bottom: 14px;
  justify-content: center;
  display: flex;
  align-items: center;
}
.promise-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.85;
}

.stat-strip {
  max-width: var(--container);
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.stat-strip-item {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat-strip-item:last-child { border-right: none; }
.stat-strip-value {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

}
.stat-strip-star { height: 35px; width: auto; transform: translateX(-8px) translateY(-1px)}
.stat-strip-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .our-story-inner { grid-template-columns: 1fr; }
  .our-story-image { min-height: 320px; }
  .our-story-copy { padding: 48px var(--gutter); }
  .promises-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(4, 1fr); }
  .stat-strip-item {
    padding: 14px 4px;
    border-bottom: none;
  }
  .stat-strip-item:nth-child(2n):not(:last-child) { border-right: 1px solid var(--line); }
  .stat-strip-value { font-size: 16px; gap: 3px; }
  .stat-strip-star { height: 14px; transform: translateX(-2px) translateY(0); }
  .stat-strip-label { font-size: 7px; letter-spacing: 0.3px; line-height: 1.25; }
  .promises-section { padding: 60px var(--gutter); }
  .about-hero-content h1 { font-size: 34px; }
  .about-hero-subtext { font-size: 12px; line-height: 1.6; }
  .about-hero-content:has(.hero-cta-group) { padding-top: 170px; }
  .about-hero:has(.commercial-hero-media) .about-hero-content h1,
  .about-hero:has(.residential-hero-media) .about-hero-content h1,
  .about-hero:has(.strata-hero-media) .about-hero-content h1,
  .about-hero:has(.venue-hero-media) .about-hero-content h1,
  .about-hero:has(.decorative-hero-media) .about-hero-content h1 { margin-bottom: 20px; }
}

@media (max-width: 1024px) {
  .aboutus-hero-media .real-img { object-position: 75% 15%; }
}

@media (hover: hover) and (pointer: fine) {
  .portfolio-card:hover { box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4); }
  .portfolio-card:hover .portfolio-img.is-active { transform: scale(1.08); }
}

/* ============================================================
   AWARDS PAGE
   ============================================================ */
:root { --gold: #C9A860; } 


.awards-story-btn { margin-top: 40px; align-self: flex-start; }

/* ---- Honour Roll ---- */
.honour-section { padding: 60px var(--gutter);  }
.honour-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.honour-header h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -1.5px;
  font-size: 44px;
  margin-top: 20px;
}
.honour-list {
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.honour-row {
  display: grid;
  grid-template-columns: 120px 1fr 130px;
  align-items: center;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.honour-row:hover { transform: translateX(6px); }
.honour-year {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--gold);
}
.honour-body { display: flex; flex-direction: column; gap: 6px; }
.honour-title {
  font-family: var(--font-accent);
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.5px;
}
.honour-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}
.honour-badge {
  justify-self: end;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  width: 116px;
  padding: 10px 0;
  text-align: center;
  border-radius: 30px;
  white-space: nowrap;
}
.honour-badge-winner { background: var(--gold); color: var(--btn-ink); }
.honour-badge-finalist { border: 1px solid var(--line); color: var(--cream); }

@media (max-width: 1024px) {
  .awards-hero-contacts { display: none; }
  .honour-section { padding: 60px var(--gutter); }
  .honour-row {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 10px;
    padding: 26px 0;
  }
  .honour-badge { justify-self: start; }
  .honour-title { font-size: 22px; }
}

/* ============================================================
   COMMERCIAL PAGE
   ============================================================ */
.commercial-hero-media .real-img { opacity: 0.65; }
.commercial-services-section {
  position: relative;
  padding: 80px var(--gutter);
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--line) !important; 
}
.commercial-services-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.strata-services-section .commercial-services-bg { opacity: 0.2; }
.commercial-services-header {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto 60px;
}
.commercial-services-header h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -1.5px;
  font-size: 44px;
  line-height: 1.1;
  margin-top: 14px;
}
.commercial-services-list {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  text-align: left;
}
.commercial-service-row {
  display: grid;
  grid-template-columns: 60px 320px 1fr;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.commercial-service-row:hover { transform: translateX(6px); }
.commercial-service-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--cream);
  opacity: 0.9;
}
.commercial-service-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.commercial-service-desc {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}
.commercial-services-cta {
  position: relative;
  z-index: 1;
  margin-top: 70px;
  display: flex;
  justify-content: center;
}

@media (max-width: 1024px) {
  .commercial-services-section { padding: 60px var(--gutter); }
  .commercial-service-row {
    grid-template-columns: 30px 1fr;
    grid-template-areas:
      "num title"
      "desc desc";
    gap: 8px 16px;
    padding: 22px 0;
  }
  .commercial-service-num { grid-area: num; }
  .commercial-service-title { grid-area: title; }
  .commercial-service-desc { grid-area: desc; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero { min-height: 100vh; min-height: 100dvh; }
.contact-hero-media .real-img { object-fit: cover; background: var(--navy); opacity: 0.65; }

@media (min-width: 1921px) {
  .contact-hero-media .real-img { object-position: center 20%; }
}
.contact-hero .about-hero-content h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 60px;
  line-height: 0.95;
  letter-spacing: -1.5px;
  margin: 30px 0 60px;
}

.contact-section { padding: 100px var(--gutter); border-bottom: 1px solid var(--line); }
.contact-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: start;
}

/* ---- Form card ---- */
.contact-form-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 56px;
}
.contact-form-card h2 {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  font-size: 34px;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.contact-form-lead {
  font-family: var(--font-body);
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 36px;
}

.enquiry-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 10px; }
.form-group label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--cream);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--cream);
  transition: border-color 0.2s ease;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--footer-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cream);
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dbd7d4' stroke-width='1.5'%3E%3Cpath d='M5 9l7 7 7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}
.form-group select:invalid { color: var(--footer-muted); }
.form-group select option { background: var(--navy); color: var(--cream); }

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  border-radius: 35px;
  background: var(--navy-card);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border: 1px solid var(--line);
  transition: background 0.2s ease, transform 0.2s ease;
}
.form-submit-btn:hover { background: #2c384e; transform: translateY(-2px); }
.form-submit-btn:disabled { opacity: 0.6; pointer-events: none; }
.form-submit-btn svg { transition: transform 0.2s ease; }
.form-submit-btn:hover svg { transform: translateX(3px); }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold, #C9A860);
}
.form-consent label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--muted);
  line-height: 1.5;
}

.privacy-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gold, #C9A860);
  margin-left: 26px;
  margin-top: -10px;
  transition: color 0.2s ease;
}
.privacy-toggle:hover { color: var(--cream); }
.privacy-toggle svg { transition: transform 0.2s ease; }
.privacy-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.privacy-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-left: 26px;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-bottom 0.4s ease;
}
.privacy-panel.is-open {
  max-height: 240px;
  opacity: 1;
  margin-bottom: 4px;
}
.privacy-panel p {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  background: var(--navy-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
}
.privacy-panel a {
  color: var(--gold, #C9A860);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.privacy-panel a:hover { color: var(--cream); }

.form-note {
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--footer-muted);
  margin-top: -6px;
}
.form-note.form-note-success { color: #8fd19e; }
.form-note.form-note-error { color: #e28a8a; }
.contact-info-col { padding-top: 8px; }
.contact-info-col h2 {
  font-family: var(--font-accent);
  font-weight: 500;
  font-size: 40px;
  letter-spacing: -1px;
  line-height: 1.05;
  margin: 14px 0 20px;
}
.contact-info-lead {
  font-family: var(--font-body);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}
.contact-info-list { border-top: 1px solid var(--line); }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}
.contact-info-body { display: flex; flex-direction: column; gap: 4px; }
.contact-info-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--cream);
}
.contact-info-value {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  transition: opacity 0.2s ease;
}
a.contact-info-value:hover { opacity: 0.75; }
.contact-info-static { color: var(--muted); font-size: 14px; }

@media (max-width: 1024px) {
  .contact-inner { grid-template-columns: 1fr; gap: 50px; }
  .contact-form-card { padding: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-hero .about-hero-content h1 { font-size: 34px; }
}

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */
.portfolio-section { padding: 90px var(--gutter) 120px; }

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: var(--container);
  margin: 0 auto 60px;
}
.filter-pill {
  padding: 14px 30px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.filter-pill:hover { border-color: var(--cream); }
.filter-pill.active {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}

.portfolio-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.reveal-stagger > .portfolio-card {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.in-view > .portfolio-card {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.in-view > .portfolio-card:nth-child(3n+1) { transition-delay: 0.05s; }
.reveal-stagger.in-view > .portfolio-card:nth-child(3n+2) { transition-delay: 0.15s; }
.reveal-stagger.in-view > .portfolio-card:nth-child(3n)   { transition-delay: 0.25s; }

.portfolio-card {
  position: relative;
  aspect-ratio: 4 / 3.3;
  border: 1px solid var(--ink);
  border-radius: 6px;
  overflow: hidden;
  background: var(--navy-card);
  cursor: pointer;
}
.portfolio-card:hover { box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4); }
.portfolio-card.is-hidden {
  opacity: 0;
  transform: scale(0.94);
  pointer-events: none;
}

.portfolio-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  border-radius: 6px;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.portfolio-img.is-active { opacity: 1; }
.portfolio-card:hover .portfolio-img.is-active { transform: scale(1.08); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 22px 20px;
  background: linear-gradient(180deg, rgba(10, 15, 26, 0.15) 0%, rgba(10, 15, 26, 0.3) 45%, rgba(10, 15, 26, 0.97) 100%);
}

.portfolio-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 4px;
}
.portfolio-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--cream);
  margin: 0;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.portfolio-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.portfolio-nav-arrows {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.portfolio-arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.portfolio-arrow svg { width: 10px; height: 10px; }
.portfolio-arrow:hover {
  border-color: var(--cream);
  background: rgba(255, 249, 244, 0.08);
}

.portfolio-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.portfolio-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 249, 244, 0.7);
  background: rgba(255, 249, 244, 0.25);
  padding: 0;
  cursor: pointer;
  position: relative;
  transition: background 0.25s ease, transform 0.2s ease;
}
.portfolio-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%);
}
.portfolio-dot:hover { transform: scale(1.2); }
.portfolio-dot.is-active { background: var(--cream); }

@media (max-width: 1024px) {
  .portfolio-section { padding: 60px var(--gutter) 80px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-filters { gap: 10px; }
  .filter-pill { padding: 10px 20px; font-size: 10px; }
}

/* ============================================================
   LOCATION / SUBURB LANDING PAGES
   ============================================================ */
.location-intro { padding: 100px var(--gutter) 60px; text-align: center; }
.location-intro-inner { max-width: 760px; margin: 0 auto; }
.location-intro h1,
.location-intro h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -1.5px;
  font-size: 40px;
  margin-bottom: 20px;
}
.location-intro p {
  font-family: var(--font-body);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

/* ---- Specialise (Interior / Exterior / Heritage) ---- */
.location-specialise-section { padding: 100px var(--gutter); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.location-specialise-header { text-align: center; max-width: 700px; margin: 0 auto 70px; }
.location-specialise-header h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 40px;
  letter-spacing: -1.5px;
  margin-top: 14px;
}
.location-specialise-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.location-specialise-block h3 {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.location-specialise-block p {
  font-family: var(--font-body);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 22px;
}
.location-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.location-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--cream);
  line-height: 1.5;
}
.location-checklist li::before {
  content: '✓';
  color: var(--gold, #C9A860);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- FAQ accordion ----*/
.location-faq-section { padding: 100px var(--gutter); border-top: 1px solid var(--line); }
.location-faq-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.location-faq-header h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 40px;
  letter-spacing: -1.5px;
  margin-top: 14px;
}
.location-faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 4px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--cream);
}
.faq-icon { position: relative; flex-shrink: 0; width: 20px; height: 20px; }
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--cream);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 14px; height: 1.5px; }
.faq-icon::after {
  width: 1.5px;
  height: 14px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer p {
  padding: 0 4px 26px;
  font-family: var(--font-body);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ---- Why-list / specialise reused on location pages ---- */
.location-why-section { border-top: 1px solid var(--line); }

@media (max-width: 1024px) {
  .location-specialise-grid { grid-template-columns: 1fr; gap: 40px; }
  .location-intro { padding: 60px var(--gutter) 40px; }
  .location-specialise-section,
  .location-faq-section { padding: 60px var(--gutter); }
}

/* ============================================================
   "AREAS WE SERVICE" PILL LIST
   ============================================================ */
.service-area-section {
  padding: 100px var(--gutter);
  border-top: 1px solid var(--line);
  text-align: center;
}
.service-area-header { max-width: 700px; margin: 0 auto 50px; }
.service-area-header h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 40px;
  letter-spacing: -1.5px;
  margin-top: 14px;
}
.service-area-list {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  list-style: none;
}
.service-area-pill {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 30px;
  border: 1px solid var(--line);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.service-area-pill:hover {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .service-area-section { padding: 60px var(--gutter); }
}

/* ================================================================
   WHY SECTION — DESKTOP/ULTRAWIDE EDGE-ALIGNED IMAGE SYSTEM
   ================================================================ */

/* Normal desktop: full-height image reaching the right edge */
@media (min-width: 1441px) and (max-width: 1920px) {
  .why-section {
    padding: 0 0 0 var(--gutter);
    overflow: hidden;
  }

  .why-inner {
    max-width: none;
    margin: 0;
    transform: none;
  }

  .why-copy {
    padding: 80px 0;
  }
  .why-copy.reveal {
    transform: translateX(calc(max(0px, (100vw - var(--container)) / 2) - 200px)) translateY(28px);
  }
  .why-copy.reveal.in-view {
    transform: translateX(calc(max(0px, (100vw - var(--container)) / 2) - 200px)) translateY(0);
  }

  .why-image {
    border-radius: 0;
  }
}

@media (min-width: 1921px) {
  .why-section {
    position: relative;
    padding: 0 var(--gutter);
    overflow: hidden;
  }

  .why-inner {
    max-width: var(--container);
    margin: 0 auto;
    transform: none;
  }

  .why-copy.reveal {
    padding: 80px 0;
    transform: translateX(-120px) translateY(28px);
  }

  .why-copy.reveal.in-view {
    transform: translateX(-120px) translateY(0);
  }
  
  .why-image.reveal,
  .why-image.reveal.in-view {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;

    width: clamp(360px, 30vw, 760px);
    height: auto;
    min-height: 0;

    transform: none;
    border-radius: 0;
  }

  .why-image .real-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 0;
  }
}