/* ============================================================
   SABCO MODULAR DWELLINGS — Static Site CSS
   Mirrors the Next.js / Tailwind design exactly
   ============================================================ */

/* ── Reset & Base ──────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #c59e55;
  --gold-light: rgba(227, 203, 159, 0.14);
  --cream: #f7f4ed;
  --bg: #FAFAFA;
  --text: #333333;
  --hero-inset: 30px;
  --content-max: 1600px;
  --page-max: 1920px;
  --radius-card: 20px;
  --radius-pill: 9999px;
  --radius-hero: 16px;
}

html {
  scroll-behavior: smooth;
  zoom: 0.8;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', system-ui, sans-serif;
  max-width: var(--page-max);
  margin-inline: auto;
  overflow-x: hidden;
}

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

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

/* cover image helper */
.cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Layout helpers ────────────────────────────────────────── */
.site-container {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width: 640px) {
  .site-container {
    padding-inline: 2rem;
  }
}

@media (min-width: 1280px) {
  .site-container {
    padding-inline: 1.5rem;
  }
}

.section {
  overflow: hidden;
}

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

/* ── Section label ─────────────────────────────────────────── */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}

.section-label.centered {
  display: block;
  text-align: center;
}

/* ── Gold Button ───────────────────────────────────────────── */
.gold-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--gold);
  cursor: pointer;
  border: none;
  flex-shrink: 0;
}

.gold-btn .btn-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #fff;
  transform: translateX(-4px);
}

.gold-btn .btn-arrow {
  position: absolute;
  right: 7px;
  top: 7px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gold-btn .btn-arrow img {
  width: 34px;
  height: 34px;
}

/* Sizes */
.header-btn {
  height: 48px;
  width: 180px;
  font-size: 0.875rem;
}

.hero-btn {
  position: absolute;
  bottom: 0px;
  height: 48px;
  width: 100%;
  max-width: 28%;
  font-size: 0.875rem;
}

.cta-btn {
  height: 48px;
  width: 100%;
  max-width: 247px;
  font-size: 0.875rem;
}

.submit-btn {
  height: 48px;
  width: 100%;
  max-width: 352px;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .gold-btn .btn-arrow {
    right: 9px;
    top: 9px;
    width: 38px;
    height: 38px;
  }

  .gold-btn .btn-arrow img {
    width: 38px;
    height: 38px;
  }

  .gold-btn .btn-label {
    font-size: 1rem;
  }

  .header-btn {
    height: 55px;
    width: 212px;
  }

  .hero-btn {
    height: 55px;
  }

  .cta-btn {
    height: 55px;
  }

  .submit-btn {
    height: 55px;
  }
}

/* ── Service Tag pill ──────────────────────────────────────── */
.service-tag {
  position: absolute;
  bottom: 0px !important;
  left: 0;
  height: 44px;
  /* width: 220px; */
  min-width: 48%;
  border-radius: var(--radius-pill);
  background: var(--gold);
  display: flex;
  align-items: center;
}

.tag-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding-right: 36px; */
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
}

.tag-arrow {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 32px;
  height: 32px;
}

.tag-arrow img {
  width: 32px;
  height: 32px;
}

@media (min-width: 640px) {
  .service-tag {
    height: 55px;
    /* width: 279px; */
    bottom: 20px;
  }

  .tag-label {
    font-size: 1rem;
    /* padding-right: 40px; */
  }

  .tag-arrow {
    right: 9px;
    top: 9px;
    width: 38px;
    height: 38px;
  }

  .tag-arrow img {
    width: 38px;
    height: 38px;
  }
}

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero-section {
  padding: var(--hero-inset);
  padding-bottom: 0;
}

.hero-inner {
  position: relative;
  height: 560px;
  /* overflow: hidden; */
  border-radius: var(--radius-hero);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  filter: brightness(75%);
  /* background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%); */

  --cut: 50px;
  /* 2. Set your smooth corner radius size */
  --c: 30px;

  /* Fallback for older browsers (straight chamfer cuts) */
  clip-path: polygon(0% var(--c),
      var(--c) 0%,
      10% 0%,
      calc(10% + var(--c)) var(--c),
      calc(10% + var(--c)) calc(var(--cut) - var(--c)),
      calc(10% + 2 * var(--c)) var(--cut),
      calc(10% + 2 * var(--cut)) var(--cut),
      calc(10% + 2 * var(--cut) + var(--c)) calc(var(--cut) - var(--c)),
      calc(10% + 2 * var(--cut) + var(--c)) var(--c),
      calc(10% + 2 * var(--cut) + 2 * var(--c)) 0%,
      calc(100% - var(--c)) 0%,
      100% var(--c),
      100% calc(100% - var(--c)),
      calc(100% - var(--c)) 100%,
      calc(28.5% + var(--c)) 100%,
      28.5% calc(100% - var(--c)),
      28.5% calc(92.5% + var(--c)),
      calc(28.5% - var(--c)) 92.5%,
      var(--c) 92.5%,
      0% calc(92.5% - var(--c)));

  /* The Modern Smooth Curve Version */
  clip-path: shape(
      /* Start on the top-left edge, just below the corner */
      from 0% var(--c),

      /* --- Top-Left Corner --- */
      arc to var(--c) 0% of var(--c) cw,

      /* --- Top Cutout (Starting at 10%) --- */
      /* Line to the 10% mark */
      line to 5% 0%,

      /* Outer curve dipping down */
      arc to calc(5% + var(--c)) var(--c) of var(--c) cw,

      /* Inner curve turning flat */
      line to calc(5% + var(--c)) calc(var(--cut) - var(--c)),
      arc to calc(5% + 2 * var(--c)) var(--cut) of var(--c) ccw,

      /* Inner curve turning back up */
      line to calc(5% + 2 * var(--cut)) var(--cut),
      arc to calc(5% + 2 * var(--cut) + var(--c)) calc(var(--cut) - var(--c)) of var(--c) ccw,

      /* Outer curve merging back to the top edge */
      line to calc(5% + 2 * var(--cut) + var(--c)) var(--c),
      arc to calc(5% + 2 * var(--cut) + 2 * var(--c)) 0% of var(--c) cw,

      /* --- Top-Right Corner --- */
      line to calc(100% - var(--c)) 0%,
      arc to 100% var(--c) of var(--c) cw,

      /* --- Bottom-Right Corner --- */
      line to 100% calc(100% - var(--c)),
      arc to calc(100% - var(--c)) 100% of var(--c) cw,

      /* --- Bottom-Left Cutout --- */
      line to calc(28.5% + var(--c)) 100%,
      /* Outer curve */
      arc to 28.5% calc(100% - var(--c)) of var(--c) cw,
      line to 28.5% calc(92.5% + var(--c)),
      /* Inner curve */
      arc to calc(28.5% - var(--c)) 92.5% of var(--c) ccw,
      line to var(--c) 92.5%,
      /* Outer curve */
      arc to 0% calc(92.5% - var(--c)) of var(--c) cw,

      /* Connect the final point back to the start */
      close);
      
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  inset-x: 0;
  top: 0;
  z-index: 10;
  padding: 12rem 1.5rem 1.5rem;
}

.hero-heading {
  max-width: 888px;
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.96px;
  color: #fff;
}

.hero-sub {
  margin-top: 1rem;
  max-width: 989px;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
  margin-top: 2rem;
}

@media (min-width: 320px) {
  .hero-section {
    padding: 15px;
    padding-bottom: 0;
  }
  .site-footer-outer{
    margin: 0 15px 15px !important;
  }
  .logo-img {
    width: 120px !important;
    height: 225% !important;
    margin-left: calc(5% + -4px) !important;
    margin-top: -35px !important;
  }

  .hero-bg {
    --cut: 50px;
    /* 2. Set your smooth corner radius size */
    --c: 30px;
    --depth: 85px;

    /* Fallback for older browsers (straight chamfer cuts) */
    clip-path: polygon(0% var(--c),
        var(--c) 0%,
        10% 0%,
        calc(10% + var(--c)) var(--c),
        calc(10% + var(--c)) calc(var(--cut) - var(--c)),
        calc(10% + 2 * var(--c)) var(--cut),
        calc(10% + 2 * var(--cut)) var(--cut),
        calc(10% + 2 * var(--cut) + var(--c)) calc(var(--cut) - var(--c)),
        calc(10% + 2 * var(--cut) + var(--c)) var(--c),
        calc(10% + 2 * var(--cut) + 2 * var(--c)) 0%,
        calc(100% - var(--c)) 0%,
        100% var(--c),
        100% calc(100% - var(--c)),
        calc(100% - var(--c)) 100%,
        calc(28.5% + var(--c)) 100%,
        28.5% calc(100% - var(--c)),
        28.5% calc(92.5% + var(--c)),
        calc(28.5% - var(--c)) 92.5%,
        var(--c) 92.5%,
        0% calc(92.5% - var(--c)));

    /* The Modern Smooth Curve Version */
    clip-path: shape(
        /* Start on the top-left edge, just below the corner */
        from 0% var(--c),

        /* --- Top-Left Corner --- */
        arc to var(--c) 0% of var(--c) cw,

        /* --- Top Cutout (Starting at 10%) --- */
        /* Line to the 10% mark */
        line to 5% 0%,

        /* Outer curve dipping down */
        arc to calc(5% + var(--c)) var(--c) of var(--c) cw,

        /* Inner curve turning flat */
        line to calc(5% + var(--c)) calc(var(--depth) - var(--c)),
        arc to calc(5% + 2 * var(--c)) var(--depth) of var(--c) ccw,

        /* Inner curve turning back up */
        line to calc(5% + 2 * var(--cut)) var(--depth),
        arc to calc(5% + 2 * var(--cut) + var(--c)) calc(var(--depth) - var(--c)) of var(--c) ccw,

        /* Outer curve merging back to the top edge */
        line to calc(5% + 2 * var(--cut) + var(--c)) var(--c),
        arc to calc(5% + 2 * var(--cut) + 2 * var(--c)) 0% of var(--c) cw,

        /* --- Top-Right Corner --- */
        line to calc(100% - var(--c)) 0%,
        arc to 100% var(--c) of var(--c) cw,

        /* --- Bottom-Right Corner --- */
        line to 100% calc(100% - var(--c)),
        arc to calc(100% - var(--c)) 100% of var(--c) cw,

        /* --- Bottom-Left Cutout --- */
        line to calc(50.5% + var(--c)) 100%,
        /* Outer curve */
        arc to 50.5% calc(100% - var(--c)) of var(--c) cw,
        line to 50.5% calc(90.5% + var(--c)),
        /* Inner curve */
        arc to calc(50.5% - var(--c)) 90.5% of var(--c) ccw,
        line to var(--c) 90.5%,
        /* Outer curve */
        arc to 0% calc(90.5% - var(--c)) of var(--c) cw,

        /* Connect the final point back to the start */
        close);
  }

  .hero-inner .hero-btn {
    max-width: 49% !important;
  }
}

@media (min-width: 640px) {
  .hero-section {
    padding: 30px;
  }
  .site-footer-outer{
    margin: 0 var(--hero-inset) var(--hero-inset) !important;
  }
  .hero-inner {
    height: 720px;
    border-radius: 24px;
  }

  .hero-content {
    padding: 15rem 2.5rem 2.5rem;
  }

  .hero-sub {
    font-size: 1.125rem;
    line-height: 2;
  }

  .hero-bg {
    --cut: 50px;
    /* 2. Set your smooth corner radius size */
    --c: 30px;
    --depth: 120px;

    /* Fallback for older browsers (straight chamfer cuts) */
    clip-path: polygon(0% var(--c),
        var(--c) 0%,
        10% 0%,
        calc(10% + var(--c)) var(--c),
        calc(10% + var(--c)) calc(var(--cut) - var(--c)),
        calc(10% + 2 * var(--c)) var(--cut),
        calc(10% + 2 * var(--cut)) var(--cut),
        calc(10% + 2 * var(--cut) + var(--c)) calc(var(--cut) - var(--c)),
        calc(10% + 2 * var(--cut) + var(--c)) var(--c),
        calc(10% + 2 * var(--cut) + 2 * var(--c)) 0%,
        calc(100% - var(--c)) 0%,
        100% var(--c),
        100% calc(100% - var(--c)),
        calc(100% - var(--c)) 100%,
        calc(28.5% + var(--c)) 100%,
        28.5% calc(100% - var(--c)),
        28.5% calc(92.5% + var(--c)),
        calc(28.5% - var(--c)) 92.5%,
        var(--c) 92.5%,
        0% calc(92.5% - var(--c)));

    /* The Modern Smooth Curve Version */
    clip-path: shape(
        /* Start on the top-left edge, just below the corner */
        from 0% var(--c),

        /* --- Top-Left Corner --- */
        arc to var(--c) 0% of var(--c) cw,

        /* --- Top Cutout (Starting at 10%) --- */
        /* Line to the 10% mark */
        line to 5% 0%,

        /* Outer curve dipping down */
        arc to calc(5% + var(--c)) var(--c) of var(--c) cw,

        /* Inner curve turning flat */
        line to calc(5% + var(--c)) calc(var(--depth) - var(--c)),
        arc to calc(5% + 2 * var(--c)) var(--depth) of var(--c) ccw,

        /* Inner curve turning back up */
        line to calc(5% + 3 * var(--cut)) var(--depth),
        arc to calc(5% + 3 * var(--cut) + var(--c)) calc(var(--depth) - var(--c)) of var(--c) ccw,

        /* Outer curve merging back to the top edge */
        line to calc(5% + 3 * var(--cut) + var(--c)) var(--c),
        arc to calc(5% + 3 * var(--cut) + 2 * var(--c)) 0% of var(--c) cw,

        /* --- Top-Right Corner --- */
        line to calc(100% - var(--c)) 0%,
        arc to 100% var(--c) of var(--c) cw,

        /* --- Bottom-Right Corner --- */
        line to 100% calc(100% - var(--c)),
        arc to calc(100% - var(--c)) 100% of var(--c) cw,

        /* --- Bottom-Left Cutout --- */
        line to calc(29.5% + var(--c)) 100%,
        /* Outer curve */
        arc to 29.5% calc(100% - var(--c)) of var(--c) cw,
        line to 29.5% calc(90.5% + var(--c)),
        /* Inner curve */
        arc to calc(29.5% - var(--c)) 90.5% of var(--c) ccw,
        line to var(--c) 90.5%,
        /* Outer curve */
        arc to 0% calc(90.5% - var(--c)) of var(--c) cw,

        /* Connect the final point back to the start */
        close);
  }

  .hero-inner .hero-btn {
    max-width: 28% !important;
  }
}

@media (min-width: 1024px) {
  .hero-inner {
    height: 850px;
    border-radius: 30px;
  }

  .hero-content {
    padding: 240px 130px 55px;
  }

  .hero-sub {
    font-size: 1.5rem;
    line-height: 34px;
  }

  .hero-bg {
    --cut: 50px;
    /* 2. Set your smooth corner radius size */
    --c: 30px;
    --depth: 120px;

    /* Fallback for older browsers (straight chamfer cuts) */
    clip-path: polygon(0% var(--c),
        var(--c) 0%,
        10% 0%,
        calc(10% + var(--c)) var(--c),
        calc(10% + var(--c)) calc(var(--cut) - var(--c)),
        calc(10% + 2 * var(--c)) var(--cut),
        calc(10% + 2 * var(--cut)) var(--cut),
        calc(10% + 2 * var(--cut) + var(--c)) calc(var(--cut) - var(--c)),
        calc(10% + 2 * var(--cut) + var(--c)) var(--c),
        calc(10% + 2 * var(--cut) + 2 * var(--c)) 0%,
        calc(100% - var(--c)) 0%,
        100% var(--c),
        100% calc(100% - var(--c)),
        calc(100% - var(--c)) 100%,
        calc(28.5% + var(--c)) 100%,
        28.5% calc(100% - var(--c)),
        28.5% calc(92.5% + var(--c)),
        calc(28.5% - var(--c)) 92.5%,
        var(--c) 92.5%,
        0% calc(92.5% - var(--c)));

    /* The Modern Smooth Curve Version */
    clip-path: shape(
        /* Start on the top-left edge, just below the corner */
        from 0% var(--c),

        /* --- Top-Left Corner --- */
        arc to var(--c) 0% of var(--c) cw,

        /* --- Top Cutout (Starting at 10%) --- */
        /* Line to the 10% mark */
        line to 5% 0%,

        /* Outer curve dipping down */
        arc to calc(5% + var(--c)) var(--c) of var(--c) cw,

        /* Inner curve turning flat */
        line to calc(5% + var(--c)) calc(var(--depth) - var(--c)),
        arc to calc(5% + 2 * var(--c)) var(--depth) of var(--c) ccw,

        /* Inner curve turning back up */
        line to calc(5% + 3 * var(--cut)) var(--depth),
        arc to calc(5% + 3 * var(--cut) + var(--c)) calc(var(--depth) - var(--c)) of var(--c) ccw,

        /* Outer curve merging back to the top edge */
        line to calc(5% + 3 * var(--cut) + var(--c)) var(--c),
        arc to calc(5% + 3 * var(--cut) + 2 * var(--c)) 0% of var(--c) cw,

        /* --- Top-Right Corner --- */
        line to calc(100% - var(--c)) 0%,
        arc to 100% var(--c) of var(--c) cw,

        /* --- Bottom-Right Corner --- */
        line to 100% calc(100% - var(--c)),
        arc to calc(100% - var(--c)) 100% of var(--c) cw,

        /* --- Bottom-Left Cutout --- */
        line to calc(19% + var(--c)) 100%,
        /* Outer curve */
        arc to 19% calc(100% - var(--c)) of var(--c) cw,
        line to 19% calc(91.5% + var(--c)),
        /* Inner curve */
        arc to calc(19% - var(--c)) 91.5% of var(--c) ccw,
        line to var(--c) 91.5%,
        /* Outer curve */
        arc to 0% calc(91.5% - var(--c)) of var(--c) cw,

        /* Connect the final point back to the start */
        close);
  }

  .hero-inner .hero-btn {
    max-width: 18% !important;
  }
}

/* ── Header (inside hero) ──────────────────────────────────── */
.site-header {
  width: 100%;
  position: absolute;
  inset-x: 0;
  top: 0;
  z-index: 50;
  padding: 0 1.5rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo-link {
  display: block;
  width: 90px;
  height: 64px;
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}

.logo-img {
  display: block;
  width: 10%;
  height: 185%;
  object-fit: contain;
  object-position: left;
  margin-left: 15px;
  position: absolute;
  margin-top: -35px;
}

@media (min-width: 640px) {
  .site-header {
    padding: 0 2.5rem 0;
  }

  .logo-link {
    width: 112px;
    height: 80px;
  }
  .logo-img {
    width: 164px !important;
    height: 225% !important;
    margin-left: calc(5% + -18px) !important;
    margin-top: -35px !important;
  }
}

@media (min-width: 1024px) {
  .site-header {
    padding: 0 114px 0;
    padding-right: 95px;
  }

  .logo-link {
    width: 130px;
    height: 103px;
  }

  .logo-img {
    width: 180px !important;
    height: 185% !important;
    margin-left: calc(5% + -98px) !important;
    margin-top: -35px !important;
  }
}

/* Desktop nav pill */
.desktop-nav {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 50px;
  width: 564px;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  padding: 0 10px;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  min-width: 74px;
  border-radius: var(--radius-pill);
  padding: 0 12px;
  font-size: 1rem;
  color: #000;
  z-index: 0;
}

.nav-link.active {
  color: #fff;
}

.nav-link.active::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: var(--radius-pill);
  background: var(--gold);
}

/* Desktop-only elements */
.desktop-only {
  display: none;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .desktop-only {
    display: inline-flex;
  }
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #C59E55;
  backdrop-filter: blur(4px);
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

/* Mobile nav */
.mobile-nav {
  display: none;
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 1rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.mobile-nav.open {
  display: block;
  z-index: 100;
  position: relative;
  margin-top: 0;
  top: 130px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 320px) {
  .mobile-nav.open {
    top: 100px !important;
  }
}
@media (min-width: 640px) {
  .mobile-nav.open {
    top: 130px !important;
  }
}

@media (min-width: 1024px) {
  .mobile-nav {
    display: none !important;
  }
}

.mobile-nav-link {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 1rem;
  color: #333;
}

.mobile-nav-link.active {
  background: var(--gold);
  color: #fff;
  font-weight: 500;
}

.mobile-nav-cta {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.mobile-full {
  width: 100%;
  max-width: 212px;
}

/* ══════════════════════════════════════════════════════════════
   WHO WE ARE
══════════════════════════════════════════════════════════════ */
.who-section {
  padding-block: 4rem;
}

@media (min-width: 1024px) {
  .who-section {
    padding-block: 72px;
  }
}

.who-heading {
  margin-top: 0.5rem;
  max-width: 1100px;
  margin-inline: auto;
  font-size: clamp(1.75rem, 4vw, 3.75rem);
  font-weight: 300;
  line-height: 1.13;
  color: #333;
}

.who-heading strong {
  font-weight: 600;
}

.who-grid {
  margin-top: 3rem;
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .who-grid {
    margin-top: 72px;
    grid-template-columns: 520px 1fr;
    gap: 70px;
  }
}

.who-image-wrap {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: var(--radius-card);
}

@media (min-width: 1024px) {
  .who-image-wrap {
    height: 566px;
  }
}

.who-content {
  min-width: 0;
}

.who-sub-heading {
  margin-top: 0.5rem;
  font-size: clamp(1.75rem, 3.5vw, 3.75rem);
  font-weight: 300;
  line-height: 1.13;
  color: #333;
}

.who-sub-heading strong {
  font-weight: 600;
}

.who-text {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.625;
  color: #333;
}

.stats-row {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 640px) {
  .stats-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .stats-row {
    gap: 4rem;
  }
}

.stat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.stat-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  object-fit: contain;
}

@media (min-width: 640px) {
  .stat-icon {
    width: 64px;
    height: 64px;
  }
}

@media (min-width: 1024px) {
  .stat-icon {
    width: 75px;
    height: 75px;
  }
}

.stat-number {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.96px;
  color: #131315;
}

.stat-label {
  margin-top: 4px;
  font-size: clamp(0.875rem, 1.5vw, 1.25rem);
  text-transform: capitalize;
  letter-spacing: 0.4px;
  color: #131315;
}

.who-cta {
  margin-top: 2.5rem;
}

/* ══════════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════════ */
/* Tinted band wrapper */
.band {
  width: 100%;
}

.tinted {
  background: var(--gold-light);
}

.band-inner {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  border-radius: 30px;
  padding-block: 4rem;
}

@media (min-width: 1024px) {
  .band-inner {
    padding-block: 120px;
  }
}

.section-heading {
  margin-top: 0.5rem;
  font-size: clamp(1.75rem, 4vw, 3.75rem);
  font-weight: 300;
  line-height: 1.13;
  color: #333;
}

.section-heading strong {
  font-weight: 600;
}

.services-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 3rem;
  }
}

@media (min-width: 1280px) {
  .services-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px 50px;
    margin-top: 82px;
  }
}

.service-card {}

.service-img-wrap {
  position: relative;
  height: 280px;
  /* overflow: hidden; */
  border-radius: var(--radius-card);
}

@media (min-width: 640px) {
  .service-img-wrap {
    height: 340px;
  }
}

@media (min-width: 1280px) {
  .service-img-wrap {
    height: 403px;
  }
}

.service-title {
  margin-top: 1.25rem;
  font-size: clamp(1.125rem, 2vw, 1.625rem);
  font-weight: 600;
  line-height: 1.4;
  color: #333;
}

.service-desc {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.625;
  color: #333;
}

/* ══════════════════════════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════════════════════════ */
.why-section {
  padding-block: 4rem;
}

@media (min-width: 1024px) {
  .why-section {
    padding-block: 6rem;
  }
}

.why-container {
  width: 100%;
  max-width: 1701px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width: 640px) {
  .why-container {
    padding-inline: 2rem;
  }
}

@media (min-width: 1280px) {
  .why-container {
    padding-inline: 0;
  }
}

.why-card {
  margin-top: 2.5rem;
  overflow: hidden;
  border-radius: 35px;
  background: var(--cream);
  display: grid;
}

@media (min-width: 1024px) {
  .why-card {
    grid-template-columns: 1fr 620px;
    margin-top: 3rem;
  }
}

.why-left {
  padding: 1.5rem;
}

@media (min-width: 1024px) {
  .why-left {
    padding: 50px 24px 50px 50px;
  }
}

.why-col-headers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0.8rem;
}

.why-col-title {
  font-size: clamp(1.125rem, 1.8vw, 1.625rem);
  font-weight: 600;
  text-transform: capitalize;
  color: #333;
}

@media (min-width: 1024px) {
  .why-col-title {
    line-height: 68px;
  }
}

.why-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (min-width: 320px) {
  .why-features-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 640px) {
  .why-features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.why-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 35px;
  background: #fafafa;
  padding: 1rem;
}

@media (min-width: 640px) {
  .feature-card {
    gap: 1rem;
    padding: 1rem 1.25rem;
  }
}

@media (min-width: 1024px) {
  .feature-card {
    min-height: 112px;
  }
}

.feature-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (min-width: 640px) {
  .feature-icon {
    width: 32px;
    height: 32px;
  }
}

@media (min-width: 1024px) {
  .feature-icon {
    width: 38px;
    height: 38px;
  }
}

.feature-title {
  font-size: clamp(0.875rem, 1.2vw, 1.125rem);
  font-weight: 500;
  letter-spacing: -0.28px;
  color: #333;
}

.feature-desc {
  font-size: clamp(0.8rem, 1vw, 1rem);
  font-weight: 300;
  line-height: 1.5;
  color: #333;
}

.why-right {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.why-right .cover-img {
  padding: 50px 24px 50px 50px;
  border-radius: 70px !important;
}

@media (min-width: 1024px) {
  .why-right {
    border-radius: 0 35px 35px 0;
    min-height: 0;
  }
}

/* ══════════════════════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════════════════════ */
.gallery-section {
  padding-block: 4rem;
}

@media (min-width: 1024px) {
  .gallery-section {
    padding-block: 6rem;
  }
}

.gallery-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .gallery-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.gallery-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: 1.05fr 0.52fr;
    grid-template-rows: 313px 250px 313px;
  }
}

.gallery-tile {
  position: relative;
  min-height: 200px;
  overflow: hidden;
  border-radius: 20px;
}

@media (min-width: 640px) {
  .gallery-tile {
    border-radius: 35px;
  }
}

.tile-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tile-gradient-b {
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
}

.tile-gradient-r {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 40%, transparent 100%);
}

.tile-label {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: #fff;
}

@media (min-width: 640px) {
  .tile-label {
    bottom: 1.5rem;
    left: 2rem;
    font-size: 1.375rem;
  }
}

@media (min-width: 1024px) {
  .tile-label {
    font-size: 1.625rem;
  }
}

@media (min-width: 1024px) {
  .tile-main {
    grid-row: 1 / 3;
    min-height: 0;
    height: 100%;
  }

  .tile-top-right {
    grid-column: 2;
    grid-row: 1;
    min-height: 0;
    height: 100%;
  }

  .tile-mid-right {
    grid-column: 2;
    grid-row: 2;
    min-height: 0;
    height: 100%;
  }

  .tile-bottom {
    grid-column: 1 / -1;
    grid-row: 3;
    min-height: 0;
    height: 100%;
  }
}

/* ══════════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════════ */
.faq-section .band-inner {
  padding-block: 4rem;
}

@media (min-width: 1024px) {
  .faq-section .band-inner {
    padding-block: 135px;
  }
}

.faq-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1280px) {
  .faq-grid {
    grid-template-columns: 574px 1fr;
    gap: 101px;
  }
}

.faq-label-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.faq-label-icon {
  width: 25px;
  height: 25px;
}

.faq-heading {
  font-size: clamp(1.75rem, 4vw, 3.75rem);
  font-weight: 300;
  line-height: 1.13;
  letter-spacing: -1.28px;
  color: #333;
}

.faq-heading strong {
  font-weight: 600;
}

/* Accordion */
.faq-item {
  border-bottom: 1px solid #d9d9d9;
  padding-block: 1.5rem;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-btn {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

.faq-question {
  font-size: clamp(1rem, 1.5vw, 1.625rem);
  font-weight: 600;
  line-height: 1.75;
  color: #333;
}

.faq-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 4px;
}

@media (min-width: 640px) {
  .faq-icon {
    width: 22px;
    height: 22px;
    margin-top: 6px;
  }
}

.faq-answer {
  margin-top: 0.5rem;
  max-width: 794px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.625;
  color: #333;
}

.faq-answer[hidden] {
  display: none;
}

/* ══════════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════════ */
.contact-section {
  padding-block: 4rem;
}

@media (min-width: 1024px) {
  .contact-section {
    padding-block: 6rem;
  }
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1280px) {
  .contact-grid {
    grid-template-columns: 550px 1fr;
    gap: 100px;
  }
}

.contact-heading {
  margin-top: 1rem;
  font-size: clamp(1.75rem, 4vw, 3.75rem);
  font-weight: 300;
  line-height: 1.13;
  letter-spacing: -0.4px;
  color: #333;
}

.contact-heading strong {
  font-weight: 600;
}

.contact-details {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 640px) {
  .contact-details {
    gap: 2.5rem;
  }
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 18px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
  margin-top: 4px;
  aspect-ratio: 1 / 1;
}

@media (min-width: 640px) {
  .contact-icon {
    width: 20px;
  }
}

@media (min-width: 1024px) {
  .contact-icon {
    width: 24px;
  }
}

.contact-type {
  font-size: clamp(0.8rem, 1vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.96px;
  color: #333;
}

.contact-value {
  margin-top: 6px;
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.625rem);
  line-height: 1.4;
  color: #333;
}

a.contact-value:hover {
  color: var(--gold);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.96px;
  color: #333;
}

.form-input {
  height: 56px;
  width: 100%;
  border-radius: var(--radius-pill);
  background: #f2f2f2;
  border: none;
  padding: 0 30px;
  font-size: 1rem;
  color: rgba(68, 71, 72, 0.6);
  font-family: 'Poppins', sans-serif;
  outline: none;
}

.form-input:focus {
  box-shadow: 0 0 0 2px rgba(197, 158, 85, 0.4);
}

.form-input::placeholder {
  color: rgba(68, 71, 72, 0.4);
}

.form-textarea {
  width: 100%;
  border-radius: 35px;
  background: #f2f2f2;
  border: none;
  padding: 1.5rem 30px;
  font-size: 1rem;
  color: rgba(68, 71, 72, 0.6);
  font-family: 'Poppins', sans-serif;
  outline: none;
  resize: none;
}

.form-textarea:focus {
  box-shadow: 0 0 0 2px rgba(197, 158, 85, 0.4);
}

.form-textarea::placeholder {
  color: rgba(68, 71, 72, 0.4);
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.site-footer-outer {
  margin: 0 var(--hero-inset) var(--hero-inset);
}

.site-footer-inner {
  overflow: hidden;
  border-radius: 35px;
  background: linear-gradient(to bottom, #0e1416 0%, #7d5c24 260%);
  padding: 3.5rem 1.5rem;
}

@media (min-width: 640px) {
  .site-footer-inner {
    /* border-radius: 24px; */
  }
}

@media (min-width: 1024px) {
  .site-footer-inner {
    /* border-radius: 30px; */
    padding: 80px 134px;
    padding-bottom: 20px;
  }
}

.footer-heading {
  font-size: clamp(1.75rem, 4vw, 3.75rem);
  font-weight: 300;
  letter-spacing: -0.96px;
  color: #e5e1e4;
}

.footer-heading strong {
  font-weight: 600;
}

.footer-sub {
  margin: 1rem auto 0;
  max-width: 900px;
  font-size: clamp(1rem, 1.8vw, 1.625rem);
  font-weight: 300;
  color: #b9cacb;
  line-height: 1.4;
}

/* Newsletter bar */
.newsletter-bar {
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 512px;
  height: 48px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #fff;
  padding: 6px 8px 6px 6px;
  backdrop-filter: blur(2px);
}

@media (min-width: 640px) {
  .newsletter-bar {
    height: 55px;
    gap: 12px;
    padding: 7px 10px 7px 7px;
  }
}

.newsletter-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  padding: 0 1rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.4);
  font-family: 'Poppins', sans-serif;
}

.newsletter-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

@media (min-width: 640px) {
  .newsletter-input {
    font-size: 1rem;
    padding: 0 1.5rem;
  }
}

.newsletter-btn {
  flex-shrink: 0;
  height: 36px;
  border-radius: var(--radius-pill);
  background: var(--gold);
  border: none;
  padding: 0 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #fff;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

@media (min-width: 640px) {
  .newsletter-btn {
    height: 42px;
    padding: 0 2rem;
    font-size: 1rem;
  }
}

.footer-divider {
  margin: 4rem auto 0;
  height: 1px;
  max-width: 1600px;
  background: rgba(217, 217, 217, 0.5);
}

.footer-bottom {
  margin: 2rem auto 0;
  max-width: 1600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 3rem;
  font-size: 1rem;
  color: #b9cacb;
}

.footer-links a:hover {
  color: #fff;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.service-img-wrap .cover-img {
  mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M 0 5 A 5 5 0 0 1 5 0 L 95 0 A 5 5 0 0 1 100 5 L 100 95 A 5 5 0 0 1 95 100 L 55 100 A 5 5 0 0 1 50 95 L 50 85.5 A 5 5 0 0 0 45 80.5 L 5 80.5 A 5 5 0 0 1 0 75.5 Z" fill="black" /></svg>');
  mask-size: 100% 100%;
  mask-repeat: no-repeat;

  /* Safari Support */
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M 0 5 A 5 5 0 0 1 5 0 L 95 0 A 5 5 0 0 1 100 5 L 100 95 A 5 5 0 0 1 95 100 L 55 100 A 5 5 0 0 1 50 95 L 50 88.5 A 5 5 0 0 0 45 83.5 L 5 83.5 A 5 5 0 0 1 0 78.5 Z" fill="black" /></svg>');
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  transition: transform 0.45s ease;
}

@media (min-width: 320px) {
  .service-img-wrap .cover-img {
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M 0 5 A 5 5 0 0 1 5 0 L 95 0 A 5 5 0 0 1 100 5 L 100 95 A 5 5 0 0 1 95 100 L 55 100 A 5 5 0 0 1 50 95 L 50 85.5 A 5 5 0 0 0 45 80.5 L 5 80.5 A 5 5 0 0 1 0 75.5 Z" fill="black" /></svg>');
    mask-size: 100% 100%;
    mask-repeat: no-repeat;

    /* Safari Support */
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M 0 5 A 5 5 0 0 1 5 0 L 95 0 A 5 5 0 0 1 100 5 L 100 95 A 5 5 0 0 1 95 100 L 55 100 A 5 5 0 0 1 50 95 L 50 85.5 A 5 5 0 0 0 45 80.5 L 5 80.5 A 5 5 0 0 1 0 75.5 Z" fill="black" /></svg>') !important;
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
  }
}

@media (min-width: 640px) {
  .footer-socials {
    gap: 19px;
  }

  .service-img-wrap .cover-img {
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M 0 5 A 5 5 0 0 1 5 0 L 95 0 A 5 5 0 0 1 100 5 L 100 95 A 5 5 0 0 1 95 100 L 55 100 A 5 5 0 0 1 50 95 L 50 85.5 A 5 5 0 0 0 45 80.5 L 5 80.5 A 5 5 0 0 1 0 75.5 Z" fill="black" /></svg>');
    mask-size: 100% 100%;
    mask-repeat: no-repeat;

    /* Safari Support */
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M 0 5 A 5 5 0 0 1 5 0 L 95 0 A 5 5 0 0 1 100 5 L 100 95 A 5 5 0 0 1 95 100 L 55 100 A 5 5 0 0 1 50 95 L 50 85.5 A 5 5 0 0 0 45 80.5 L 5 80.5 A 5 5 0 0 1 0 75.5 Z" fill="black" /></svg>') !important;
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
  }
}

.social-icon {
  width: 36px;
  height: 36px;
}

@media (min-width: 640px) {
  .social-icon {
    width: 42px;
    height: 42px;
  }
}

@media (min-width: 1024px) {
  .social-icon {
    width: 47px;
    height: 47px;
  }
}

@media (min-width: 1024px) {
  .service-img-wrap .cover-img {
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M 0 5 A 5 5 0 0 1 5 0 L 95 0 A 5 5 0 0 1 100 5 L 100 95 A 5 5 0 0 1 95 100 L 55 100 A 5 5 0 0 1 50 95 L 50 85.5 A 5 5 0 0 0 45 80.5 L 5 80.5 A 5 5 0 0 1 0 75.5 Z" fill="black" /></svg>');
    mask-size: 100% 100%;
    mask-repeat: no-repeat;

    /* Safari Support */
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M 0 5 A 5 5 0 0 1 5 0 L 95 0 A 5 5 0 0 1 100 5 L 100 95 A 5 5 0 0 1 95 100 L 55 100 A 5 5 0 0 1 50 95 L 50 85.5 A 5 5 0 0 0 45 80.5 L 5 80.5 A 5 5 0 0 1 0 75.5 Z" fill="black" /></svg>') !important;
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
  }
}

@media (min-width: 1280px) {
  .service-img-wrap .cover-img {
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M 0 5 A 5 5 0 0 1 5 0 L 95 0 A 5 5 0 0 1 100 5 L 100 95 A 5 5 0 0 1 95 100 L 55 100 A 5 5 0 0 1 50 95 L 50 85.5 A 5 5 0 0 0 45 80.5 L 5 80.5 A 5 5 0 0 1 0 75.5 Z" fill="black" /></svg>');
    mask-size: 100% 100%;
    mask-repeat: no-repeat;

    /* Safari Support */
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M 0 5 A 5 5 0 0 1 5 0 L 95 0 A 5 5 0 0 1 100 5 L 100 95 A 5 5 0 0 1 95 100 L 55 100 A 5 5 0 0 1 50 95 L 50 88.5 A 5 5 0 0 0 45 83.5 L 5 83.5 A 5 5 0 0 1 0 78.5 Z" fill="black" /></svg>') !important;
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    transition: transform 0.45s ease;
  }
}

.footer-copy {
  margin-top: 2.5rem;
  font-size: 1rem;
  color: rgba(185, 202, 203, 0.4);
}

/* ══════════════════════════════════════════════════════════════
   FLOATING BUTTONS
══════════════════════════════════════════════════════════════ */
.floating-btns {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: 12px; */
  pointer-events: none;
}

@media (min-width: 1024px) {
  .floating-btns {
    bottom: 2rem;
    right: 2rem;
  }
}

.float-btn {
  pointer-events: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}

.float-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.back-top {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-top: -18px;
}

.back-top img:first-child {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.back-top-arrow {
  position: absolute;
  width: 16px !important;
  height: 16px !important;
  inset: unset !important;
}


/* ================================================================
   HOVER ANIMATIONS
   ================================================================ */

/* ── 1. Gold Buttons (.gold-btn) ───────────────────────────────────
   • Pill scales up + brightens + casts a warm gold glow
   • Arrow circle slides right
   • Label nudges further left to keep visual balance
   • Active (pressed) state pushes back in
   ----------------------------------------------------------------- */
.gold-btn {
  transition:
    transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.22s ease,
    box-shadow 0.22s ease;
  will-change: transform;
}

.gold-btn .btn-label {
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gold-btn .btn-arrow {
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gold-btn:hover {
  /* transform: scale(1.05); */
  background: #d4aa60;
  /* box-shadow: 0 8px 28px rgba(197, 158, 85, 0.55); */
}

.gold-btn:hover .btn-label {
  transform: translateX(-10px);
}

.gold-btn:hover .btn-arrow {
  transform: rotate(40deg);
}

.gold-btn:active {
  transform: scale(0.97);
  box-shadow: 0 2px 8px rgba(197, 158, 85, 0.3);
}


/* ── 2. Service Tag pill ───────────────────────────────────────────
   Same glow + arrow slide (tag is display:flex, not a button)
   ----------------------------------------------------------------- */
.service-tag {
  transition:
    transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.22s ease,
    box-shadow 0.22s ease;
  cursor: default;
}

.tag-arrow {
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-tag:hover {
  /* transform: scale(1.04); */
  background: #d4aa60;
  box-shadow: 0 6px 20px rgba(197, 158, 85, 0.5);
}

.service-tag:hover .tag-arrow {
  transform: translateX(4px);
}


/* ── 3. Service cards — lift + image scale ─────────────────────────
   The whole card lifts up and the background photo scales in slightly
   ----------------------------------------------------------------- */
.service-card {
  transition: transform 0.3s ease;
}


/* 
.service-card:hover .cover-img {
} */

.service-card:hover .cover-img {
  transform: translateY(-6px);
  transform: scale(1.03);
}


/* ── 4. Desktop nav links (non-active) ─────────────────────────────
   Gold colour fade-in on hover; active state unchanged
   ----------------------------------------------------------------- */
.nav-link:not(.active) {
  transition: color 0.2s ease;
}

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


/* ── 5. Mobile nav links ───────────────────────────────────────────
   Soft gold background slide in from left
   ----------------------------------------------------------------- */
.mobile-nav-link:not(.active) {
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.mobile-nav-link:not(.active):hover {
  background: rgba(197, 158, 85, 0.12);
  color: var(--gold);
  padding-left: 22px;
}


/* ── 6. Hamburger button ───────────────────────────────────────────
   Subtle background brightens on hover
   ----------------------------------------------------------------- */
.hamburger {
  transition: background 0.2s ease, transform 0.2s ease;
}

.hamburger:hover {
  background: #C59E55;
  transform: scale(1.08);
}


/* ── 7. FAQ accordion buttons ──────────────────────────────────────
   Question text fades to gold; icon rotates slightly
   ----------------------------------------------------------------- */
.faq-btn {
  transition: color 0.2s ease;
}

.faq-question {
  transition: color 0.2s ease;
}

.faq-icon {
  transition: transform 0.25s ease;
}

.faq-btn:hover .faq-question {
  color: var(--gold);
}

.faq-btn:hover .faq-icon {
  transform: rotate(15deg) scale(1.15);
}


/* ── 8. Newsletter Join button ─────────────────────────────────────
   Scale up + brighten — no arrow so just the pill itself
   ----------------------------------------------------------------- */
.newsletter-btn {
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.newsletter-btn:hover {
  transform: scale(1.06);
  background: #d4aa60;
  box-shadow: 0 4px 16px rgba(197, 158, 85, 0.45);
}

.newsletter-btn:active {
  transform: scale(0.97);
}


/* ── 9. Footer nav links ───────────────────────────────────────────
   Gold colour + subtle underline
   ----------------------------------------------------------------- */
.footer-links a {
  position: relative;
  transition: color 0.2s ease;
}

.footer-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

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

.footer-links a:hover::after {
  width: 100%;
}


/* ── 10. Social icon links ─────────────────────────────────────────
   Scale + warm drop-shadow
   ----------------------------------------------------------------- */
.footer-socials a {
  display: inline-flex;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.footer-socials a:hover {
  transform: translateY(-3px) scale(1.12);
  filter: drop-shadow(0 4px 8px rgba(197, 158, 85, 0.5));
}


/* ── 11. Floating buttons ──────────────────────────────────────────
   Larger scale + gold glow ring
   ----------------------------------------------------------------- */
.float-btn {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.25s ease;
}

.float-btn:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 0 10px rgba(197, 158, 85, 0.6));
}

.float-btn:active {
  transform: scale(0.95);
}


/* ── 12. Logo — subtle lift ────────────────────────────────────────*/
.logo-link {
  transition: transform 0.25s ease, filter 0.25s ease;
}

.logo-link:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
}


/* ── 13. Gallery tiles — zoom on hover ─────────────────────────────*/
.gallery-tile .cover-img {
  transition: transform 0.5s ease;
}

.gallery-tile:hover .cover-img {
  transform: scale(1.06);
}

.gallery-tile {
  transition: box-shadow 0.3s ease;
}

.gallery-tile:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-down-scroll {
  opacity: 0;
  transform: translateY(-100px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-down-scroll.active {
  opacity: 1;
  transform: translateY(0);
}