/* =========================================================
   AKN PROJECTS — COMMON (base, header, footer)
   ========================================================= */

/* =========================================================
   AKN PROJECTS — LUXURY TILING & RENOVATION HOMEPAGE
   ========================================================= */

:root {
  --dark: #0c1f25;
  --dark-soft: #12262d;
  --gold: #b28657;
  --gold-light: #d9b48a;
  --white: #ffffff;
  --cream: #f4f1ea;

  --white-15: rgba(255, 255, 255, 0.15);

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container-w: 1360px;
  --header-h: 84px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 48px;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 0px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.25s var(--ease);
    white-space: nowrap;
}

.btn .arrow { transition: transform 0.3s var(--ease); font-size: 14px; }

.btn:hover .arrow { transform: translateX(4px); }

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

.btn-gold:hover { background: #9c7148; border-color: #9c7148; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: var(--white); }

.btn-nav { margin-left: 28px; }

/* =========================================================
   HEADER / NAVBAR
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: var(--white);
  height: var(--header-h);
  box-shadow: 0 4px 24px rgba(12,31,37,0.08);
}

.header-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; align-items: center; height: 100%; }

.logo img { height: 80px; width: auto; }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-link {
  position: relative;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--dark);
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-link:hover { color: var(--gold); }

.nav-link:hover::after { width: 100%; }

.nav-link.active { color: var(--gold); }

.nav-link.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--dark);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle.open span:nth-of-type(1) { transform: translateY(7px) rotate(45deg); }

.nav-toggle.open span:nth-of-type(2) { opacity: 0; }

.nav-toggle.open span:nth-of-type(3) { transform: translateY(-7px) rotate(-45deg); }

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 18px;
}

.eyebrow-rule {
  display: inline-block;
  width: 34px;
  height: 1px;
  background: var(--gold);
  font-style: normal;
}

@keyframes aboutPlayPulse {
  0%   { transform: scale(0.82); opacity: 0.9; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { opacity: 0; }
}

/* =========================================================
   VIDEO MODAL — smooth fullscreen play
   ========================================================= */
body.video-modal-open { overflow: hidden; }

.footer-bg {
  position: absolute;
  top: -8%;
  left: 0;
  right: 0;
  height: 116%;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(6,16,20,0.55) 0%, rgba(6,16,20,0.82) 40%, rgba(6,16,20,0.94) 100%),
    url('../images/bg-footer.png') center / cover no-repeat;
  will-change: transform;
}

.footer-container { position: relative; }

/* ---- Columns ---- */
.footer-columns {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 1fr 1fr 1.1fr;
  gap: 32px;
  padding-bottom: 44px;
}

.footer-col { border-right: 1px solid rgba(255,255,255,0.1); padding-right: 32px; }

.footer-col:last-child { border-right: none; padding-right: 0; }

.footer-col-heading {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}

.footer-link-list li { margin-bottom: 13px; }

.footer-link-list li:last-child { margin-bottom: 0; }

.footer-link-list a {
  font-size: 14.5px;
  color: rgba(255,255,255,0.68);
  transition: color 0.25s var(--ease), padding-left 0.25s var(--ease);
}

.footer-link-list a:hover { color: var(--gold-light); padding-left: 3px; }

/* Brand column */
.footer-logo-row { display: inline-flex; margin-bottom: 18px; }

.footer-logo {
   /* height: 56px;  */
   width: auto; 
  }

.footer-brand-copy {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.62);
  max-width: 240px;
  margin-bottom: 22px;
}

.footer-social { display: flex; gap: 10px; margin-bottom: 24px; }

.footer-social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(217,180,138,0.4);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.footer-social svg{
  width:20px;

}

.footer-social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-tagline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* Contact column */
.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(217,180,138,0.4);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
}

.footer-contact-rule {
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin: 16px 0 14px;
}

.footer-contact-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--gold-light);
}

/* ---- Bottom bar ---- */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); }

.footer-legal { display: flex; align-items: center; gap: 10px; }

.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.25s var(--ease); }

.footer-legal a:hover { color: var(--gold-light); }

.footer-legal span { color: rgba(255,255,255,0.25); font-size: 12px; }

/* Mobile-only footer pieces (CTA / centered brand / accordion nav / call-email
   cards) stay hidden until the mobile breakpoint below swaps the layout in */
.footer-mobile-cta,
.footer-mobile-brand,
.footer-mobile-nav,
.footer-mobile-contact { display: none; }

@media (max-width: 1100px) {
  .footer-columns { grid-template-columns: 1fr 1fr 1fr; row-gap: 36px; }
  .footer-col:nth-child(3) { border-right: none; padding-right: 0; }
}

@media (max-width: 640px) {
  /* Swap the photographic footer background for the dedicated mobile
       texture supplied for this design. background-size is set to the
       image's own width/height ratio (not "cover") so it is never cropped
       or stretched — it renders edge-to-edge at its true proportions.
       A matching dark fallback colour carries the rest of the footer,
       which is taller than the single background image. */
    .footer-bg {
      background-color: #0a1418;
      background-image:
        linear-gradient(180deg, rgba(6,16,20,0.45) 0%, rgba(6,16,20,0.82) 55%, #0a1418 100%),
        url('../images/footer-mobile-bg.webp');
      background-repeat: no-repeat;
      background-position: top center;
      background-size: 100% auto;
    }
  /* Hide the desktop grid footer entirely on mobile */
    .footer-columns { display: none; }
  .footer-bottom { padding: 22px 0 calc(22px + env(safe-area-inset-bottom)); }
  /* ---- CTA block ---- */
    .footer-mobile-cta {
      display: block;
      text-align: center;
      padding: 56px 0 34px;
    }
  .footer-mobile-cta-eyebrow {
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 16px;
    }
  .footer-mobile-cta-heading {
      font-family: var(--font-display);
      font-size: clamp(30px, 9vw, 40px);
      font-weight: 600;
      line-height: 1.16;
      color: var(--white);
      margin-bottom: 18px;
    }
  .footer-mobile-cta-heading .accent { color: var(--gold-light); font-style: italic; font-weight: 500; }
  .footer-mobile-cta-copy {
      font-size: 14.5px;
      line-height: 1.7;
      color: rgba(255,255,255,0.75);
      max-width: 320px;
      margin: 0 auto 28px;
    }
  .footer-mobile-cta-btn { width: 100%; justify-content: center; padding: 16px 20px; }
  .footer-mobile-badges {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      gap: 0;
      margin-top: 34px;
    }
  .footer-mobile-badge {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      padding: 0 8px;
      border-right: 1px solid rgba(255,255,255,0.16);
    }
  .footer-mobile-badge:last-child { border-right: none; }
  .footer-mobile-badge-icon {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      border: 1px solid rgba(217,180,138,0.5);
      color: var(--gold-light);
      display: flex;
      align-items: center;
      justify-content: center;
    }
  .footer-mobile-badge-text {
      font-size: 12.5px;
      line-height: 1.4;
      color: var(--white);
    }
  /* ---- Brand block ---- */
    .footer-mobile-brand {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 34px 0;
      border-top: 1px solid rgba(255,255,255,0.12);
    }
  .footer-mobile-brand .footer-logo-row { margin-bottom: 16px; }
  .footer-mobile-brand .footer-logo { height: 46px; }
  .footer-mobile-brand .footer-brand-copy { max-width: 300px; text-align: center; margin: 0 auto 22px; }
  .footer-mobile-social { justify-content: center; margin-bottom: 20px; }
  .footer-mobile-social .footer-social-btn { width: 44px; height: 44px; }
  /* ---- Accordion nav ---- */
    .footer-mobile-nav {
      display: block;
      padding: 6px 0 8px;
      border-top: 1px solid rgba(255,255,255,0.12);
    }
  .footer-acc { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .footer-acc-summary {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 17px 2px;
      list-style: none;
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }
  .footer-acc-summary::-webkit-details-marker { display: none; }
  .footer-acc-ico {
      flex: 0 0 20px;
      display: flex;
      color: var(--gold-light);
    }
  .footer-acc-ico svg { width: 20px; height: 20px; }
  .footer-acc-text {
      flex: 1;
      font-family: var(--font-display);
      font-size: 15.5px;
      font-weight: 600;
      color: var(--white);
    }
  .footer-acc-chev {
      flex: 0 0 16px;
      display: flex;
      color: var(--gold);
      transition: transform 0.3s var(--ease);
    }
  .footer-acc-chev svg { width: 16px; height: 16px; }
  .footer-acc[open] .footer-acc-chev { transform: rotate(180deg); }
  .footer-acc-list {
      padding: 0 2px 18px 34px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6px 16px;
    }
  .footer-acc-list--contact { display: block; }
  .footer-acc-list li { margin-bottom: 0; font-size: 13.5px; }
  .footer-acc-list--contact li { margin-bottom: 8px; color: rgba(255,255,255,0.68); }
  /* ---- Call / Email cards ---- */
    .footer-mobile-contact {
      display: flex;
      margin: 20px 0 26px;
      border: 1px solid rgba(217,180,138,0.3);
      border-radius: 14px;
      overflow: hidden;
    }
  .footer-mobile-contact-card {
      flex: 1;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 16px 14px;
      min-width: 0;
    }
  .footer-mobile-contact-card:first-child { border-right: 1px solid rgba(217,180,138,0.3); }
  .footer-mobile-contact-icon {
      flex: 0 0 34px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid rgba(217,180,138,0.4);
      color: var(--gold-light);
      display: flex;
      align-items: center;
      justify-content: center;
    }
  .footer-mobile-contact-text {
      font-size: 12.5px;
      line-height: 1.4;
      color: rgba(255,255,255,0.85);
      overflow-wrap: break-word;
    }
  .footer-mobile-contact-label {
      display: block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      margin-bottom: 2px;
    }
  /* ---- Bottom bar ---- */
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 10px;
      border-top: 1px solid rgba(255,255,255,0.12);
    }
}

/* =========================================================
   SCROLL TO TOP
   ========================================================= */
.scroll-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  z-index: 400;
  box-shadow: 0 10px 24px rgba(12,31,37,0.25);
}

.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

.scroll-top:hover { background: #9c7148; }

@media (max-width: 960px) {
  .main-nav { position: fixed; top: var(--header-h); left: 0; right: 0; background: var(--white); flex-direction: column; padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); box-shadow: 0 12px 24px rgba(12,31,37,0.08); }
  .main-nav.open { max-height: 400px; }
  .main-nav ul { flex-direction: column; padding: 24px 48px; gap: 20px; align-items: flex-start; }
  .btn-nav { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 640px) {
  /* Buttons pick up the soft rounded corners used throughout the mobile design */
    .btn { border-radius: 8px; }
  /* Mobile design shows the eyebrow without the rule, and moves "View All
       Services" below the tile stack instead of next to the heading */
    .eyebrow-rule { display: none; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
}

/* =========================================================
   MOBILE HERO + LUXURY MOBILE MENU  (added)
   ========================================================= */

/* Mobile-only pieces stay hidden on desktop */
.nav-intro,
.nav-foot,
.nav-quote,
.nav-ico,
.nav-chev { display: none; }

@media (max-width: 960px) {
  .main-nav {
      position: fixed;
      top: var(--header-h);
      left: 0;
      right: 0;
      bottom: 0;
      max-height: none;
      height: auto;
      padding: 0;
      overflow: hidden;
      box-shadow: none;
      background-color: #08181d;
      background-image:
        linear-gradient(115deg, rgba(8,24,29,0.97) 0%, rgba(8,24,29,0.95) 45%, rgba(8,24,29,0.9) 100%),
        url("../images/mobile-hero-bg.webp");
      background-position: center, center 30%;
      background-size: cover, cover;
      background-repeat: no-repeat, no-repeat;
      transform: translateX(100%);
      opacity: 0;
      visibility: hidden;
      transition: transform 0.42s var(--ease), opacity 0.3s var(--ease), visibility 0.42s var(--ease);
    }
  .main-nav.open {
      max-height: none;
      transform: translateX(0);
      opacity: 1;
      visibility: visible;
    }
  .nav-panel {
      height: 100%;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      display: flex;
      flex-direction: column;
      padding: 26px 22px calc(26px + env(safe-area-inset-bottom));
    }
  /* --- Intro block --- */
    .nav-intro { display: block; }
  .nav-eyebrow {
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold-light);
      line-height: 1.9;
      max-width: 260px;
    }
  .nav-rule {
      display: block;
      width: 54px;
      height: 2px;
      background: var(--gold);
      margin: 14px 0 18px;
    }
  .nav-intro-heading {
      font-family: var(--font-display);
      font-size: clamp(26px, 7.4vw, 34px);
      font-weight: 600;
      line-height: 1.22;
      color: var(--white);
    }
  .nav-intro-heading .accent {
      color: var(--gold-light);
      font-style: italic;
      font-weight: 500;
    }
  /* --- Nav list --- */
    .main-nav ul {
      display: block;
      padding: 0;
      margin: 26px 0 0;
    }
  .main-nav ul li { border-bottom: 1px solid rgba(217,180,138,0.26); }
  .main-nav ul li:last-child { border-bottom: none; }
  .nav-link {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 15px 2px;
      font-family: var(--font-display);
      font-size: 19px;
      font-weight: 500;
      color: var(--white);
    }
  .nav-link::after { display: none; }
  .nav-link:hover,
    .nav-link.active { color: var(--white); }
  .nav-link.active .nav-text { color: var(--gold-light); }
  .nav-ico {
      display: flex;
      flex: 0 0 26px;
      color: var(--gold-light);
    }
  .nav-ico svg { width: 26px; height: 26px; }
  .nav-text { flex: 1; }
  .nav-chev {
      display: flex;
      flex: 0 0 16px;
      color: var(--gold);
    }
  .nav-chev svg { width: 16px; height: 16px; }
  /* --- Quote button --- */
    .nav-quote {
      display: flex;
      width: 100%;
      justify-content: center;
      gap: 14px;
      margin: 26px 0 0;
      padding: 16px 18px;
      font-size: 13px;
      letter-spacing: 0.16em;
      border: 1px solid var(--gold-light);
      background: linear-gradient(180deg, #c89b68 0%, #b28657 100%);
      color: var(--white);
    }
  .nav-quote-ico { display: flex; }
  .nav-quote-ico svg { width: 20px; height: 20px; }
  /* --- Footer of the panel --- */
    .nav-foot {
      display: block;
      margin-top: auto;
      padding-top: 28px;
    }
  .nav-foot .nav-rule { margin: 0 0 18px; }
  .nav-tagline {
      font-family: "Dancing Script", cursive;
      font-size: 27px;
      line-height: 1.3;
      color: var(--gold-light);
    }
  .nav-foot-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-top: 20px;
    }
  .nav-socials { display: flex; gap: 12px; }
  .nav-socials a {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(217,180,138,0.55);
      border-radius: 50%;
      color: var(--gold-light);
      transition: background 0.25s var(--ease), color 0.25s var(--ease);
    }
  .nav-socials a:hover { background: var(--gold); color: var(--white); }
  .nav-socials svg { width: 18px; height: 18px; }
  .nav-badge {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.17em;
      text-transform: uppercase;
      line-height: 1.8;
      text-align: right;
      color: var(--gold-light);
    }
  /* Hamburger = uploaded menu.png, turns into a gold X when open */
    .nav-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      width: 38px;
      height: 38px;
      gap: 0;
      z-index: 3;
    }
  .nav-toggle-img { display: block; width: 30px; height: auto; }
  .nav-toggle span {
      display: none;
      position: absolute;
      left: 5px;
      right: 5px;
      top: 50%;
      width: auto;
      height: 2.5px;
      margin-top: -1.25px;
      border-radius: 2px;
      background: var(--gold);
    }
  .nav-toggle.open .nav-toggle-img { display: none; }
  .nav-toggle.open span { display: block; opacity: 1; }
  .nav-toggle.open span:nth-of-type(1) { transform: rotate(45deg); }
  .nav-toggle.open span:nth-of-type(2) { opacity: 0; transform: none; }
  .nav-toggle.open span:nth-of-type(3) { transform: rotate(-45deg); }
  /* Lock the page behind the open menu */
    body.nav-open { overflow: hidden; }
}

@media (max-width: 768px) {
  :root { --header-h: 74px; }
  .logo img { height: 56px; }
  .header-inner { padding: 0 20px; }
}

@media (max-width: 380px) {
  .nav-panel { padding: 20px 18px calc(20px + env(safe-area-inset-bottom)); }
  .nav-intro-heading { font-size: 25px; }
  .main-nav ul { margin-top: 18px; }
  .nav-link { font-size: 17.5px; padding: 13px 2px; }
  .nav-tagline { font-size: 24px; }
  .nav-socials a { width: 36px; height: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  .main-nav { transition: opacity 0.2s linear, visibility 0.2s linear; transform: none; }
  .main-nav:not(.open) { transform: none; }
}

/* ---------- Footer shell ---------- */
/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--dark);
  padding-top: 90px;
}

@media (max-width: 960px) {
  .site-footer { padding-top: 64px; }
}

@media (max-width: 640px) {
  .site-footer { padding-top: 0; }
}

/* =========================================================
   PAGE HERO — shared typography for inner-page banners
   (About, Services and any future page hero)
   ========================================================= */
.page-crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 16px;
}
.page-crumbs a { color: rgba(255,255,255,0.72); transition: color 0.3s var(--ease); }
.page-crumbs a:hover { color: var(--gold-light); }
.page-crumbs span { color: rgba(217,180,138,0.7); }

.page-hero-heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 600;
  line-height: 1.14;
  color: var(--white);
  margin: 0 0 16px;
  text-shadow: 0 2px 22px rgba(6,14,18,0.45);
}
.page-hero-heading .accent { font-weight: 600; color: var(--gold-light); }

.page-hero-copy {
  font-size: 14.2px;
  line-height: 1.75;
  color: rgba(255,255,255,0.74);
  margin: 0 0 24px;
  max-width: 400px;
}

@media (max-width: 720px) {
  .page-hero-copy { max-width: none; }
}

/* ---------- Container gutters (same on every page) ---------- */
@media (max-width: 960px) {
  .container { padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 640px) {
  .container { padding-left: 24px; padding-right: 24px; }
}

/* =========================================================
   SERVICE AREAS STRIP (shared: home + inner pages)
   ========================================================= */
/* =========================================================
   PROJECTS ACROSS PERTH — SERVICE AREAS
   ========================================================= */
.areas-strip {
  background: var(--white);
  padding: 76px 0;
  border-top: 1px solid rgba(12,31,37,0.06);
}

.areas-inner {
  display: grid;
  grid-template-columns: 1fr 0.85fr 1.3fr;
  align-items: center;
  gap: 40px;
}

.areas-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--dark);
  margin: 0;
}

.areas-rule {
  display: block;
  width: 46px;
  height: 2px;
  margin: 14px 0 16px;
  background: linear-gradient(90deg, var(--gold), rgba(178,134,87,0.15));
}

.areas-copy {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(12,31,37,0.72);
  margin: 0;
  max-width: 330px;
}

.areas-map {
  display: flex;
  justify-content: center;
}

.areas-map img {
  width: 100%;
  max-width: 260px;
  height: auto;
  filter: drop-shadow(0 16px 30px rgba(12,31,37,0.14));
  transition: transform 0.6s var(--ease);
}

.areas-map img:hover { transform: translateY(-4px) scale(1.02); }

.areas-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 34px;
}

.areas-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.areas-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: rgba(12,31,37,0.8);
  transition: color 0.3s var(--ease);
}

.areas-list li:hover { color: var(--dark); }

.area-pin {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s var(--ease);
}

.area-pin svg { width: 100%; height: 100%; }

.areas-list li:hover .area-pin { transform: translateY(-2px); }

@media (max-width: 1024px) {
  .areas-inner {
          grid-template-columns: 1fr 1fr;
          gap: 32px;
          align-items: start;
        }
  .areas-map { grid-row: span 2; align-items: center; }
  .areas-copy { max-width: none; }
}

@media (max-width: 640px) {
  .areas-strip { padding: 50px 0; }
  .areas-inner { grid-template-columns: 1fr; gap: 26px; text-align: left; }
  .areas-map { grid-row: auto; }
  .areas-map img { max-width: 210px; }
  .areas-title { font-size: 19px; }
  .areas-lists { gap: 14px 20px; }
  .areas-list { gap: 12px; }
  .areas-list li { font-size: 14px; }
}
