  /* =========================================================
     MJA CONSTRUCTION — Bold & Practical (Design 1)
     Charcoal, off-white, warm clay/amber accent. Builder-confident.
     ========================================================= */

  :root {
    --off-white: #f4f0e7;
    --paper: #fbfaf6;
    --white: #ffffff;
    --charcoal: #1a1d22;
    --charcoal-soft: #2b2f37;
    --steel: #5a5d63;
    --steel-light: #9095a0;
    --rule: rgba(26, 29, 34, 0.12);
    --rule-soft: rgba(26, 29, 34, 0.06);
    --amber: #c9622d;
    --amber-bright: #e07a3a;
    --amber-deep: #8b3e1c;
    --amber-tint: #f7e7d4;

    --font-display: "Bricolage Grotesque", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: "JetBrains Mono", ui-monospace, monospace;

    --container: 1360px;
    --gutter: clamp(1.25rem, 4vw, 3rem);
  }

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

  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

  body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--charcoal);
    background: var(--off-white);
    overflow-x: hidden;
  }

  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; }
  ::selection { background: var(--amber); color: var(--white); }

  .container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
  }

  /* Reusable tokens */
  .eyebrow {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
  }

  .display {
    font-family: var(--font-display);
    font-variation-settings: "wdth" 95, "opsz" 96;
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.025em;
  }

  /* =========================================================
     NAV
     ========================================================= */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.1rem 0;
    transition: background 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
    border-bottom: 1px solid transparent;
    --nav-fg: var(--white);
    --nav-fg-soft: rgba(255, 255, 255, 0.7);
  }
  .nav.scrolled {
    background: rgba(26, 29, 34, 0.94);
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    padding: 0.7rem 0;
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }

  .nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
  }
  .brand__mark {
    width: 44px;
    height: 44px;
    background: var(--amber);
    color: var(--white);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-variation-settings: "wdth" 80, "wght" 800;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    line-height: 1;
  }
  .brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 4px;
  }
  .brand__name {
    font-family: var(--font-display);
    font-variation-settings: "wdth" 85, "wght" 700;
    font-size: 1.1rem;
    color: var(--nav-fg);
    letter-spacing: -0.01em;
    transition: color 0.35s ease;
  }
  .brand__tag {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--nav-fg-soft);
    transition: color 0.35s ease;
  }

  .brand__logo {
    height: 44px;
    width: auto;
    display: block;
    color: var(--nav-fg);
  }

  .nav__menu {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    list-style: none;
  }
  .nav__menu a {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--nav-fg);
    transition: color 0.3s ease;
    position: relative;
  }
  .nav__menu a:hover { color: var(--amber-bright); }

  .nav__phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--nav-fg);
    transition: color 0.3s ease;
  }
  .nav__phone:hover { color: var(--amber-bright); }
  .nav__phone svg { width: 16px; height: 16px; opacity: 0.7; }

  .nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--amber);
    color: var(--white);
    padding: 0.7rem 1.3rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  .nav__cta:hover { background: var(--amber-bright); transform: translateY(-1px); }
  .nav__cta svg { width: 18px; height: 18px; }

  /* Mobile-only compact WhatsApp button */
  .nav__wa-mobile { display: none; }

  /* Mobile nav drawer */
  .nav__drawer { display: none; }

  .nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
  }
  .nav__toggle::before, .nav__toggle::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--nav-fg);
    transition: background 0.35s ease, transform 0.3s ease, top 0.3s ease;
  }
  .nav__toggle::before { top: 4px; }
  .nav__toggle::after { top: 14px; }
  .nav__toggle[aria-expanded="true"]::before { top: 9px; transform: rotate(45deg); }
  .nav__toggle[aria-expanded="true"]::after  { top: 9px; transform: rotate(-45deg); }

  /* =========================================================
     HERO
     ========================================================= */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 6rem 0 clamp(3rem, 8vh, 6rem);
    color: var(--white);
  }

  .hero__bg { position: absolute; inset: 0; z-index: 0; }
  .hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
    filter: contrast(1.05) brightness(0.88);
  }
  .hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(115deg, rgba(26, 29, 34, 0.78) 0%, rgba(26, 29, 34, 0.35) 45%, rgba(26, 29, 34, 0.15) 65%, rgba(26, 29, 34, 0.55) 100%),
      linear-gradient(to bottom, rgba(26, 29, 34, 0.35) 0%, rgba(26, 29, 34, 0.05) 30%, rgba(26, 29, 34, 0.75) 100%);
  }

  .hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.8rem;
    max-width: 920px;
  }

  .hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--amber-bright);
  }
  .hero__eyebrow::before {
    content: "";
    width: 32px;
    height: 2px;
    background: var(--amber);
  }

  .hero__title {
    font-family: var(--font-display);
    font-variation-settings: "wdth" 90, "opsz" 96, "wght" 700;
    font-weight: 700;
    font-size: clamp(2.6rem, 8vw, 6.4rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--white);
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
    max-width: 14ch;
  }
  .hero__title em {
    font-style: normal;
    color: var(--amber-bright);
  }

  .hero__lede {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    max-width: 50ch;
    text-shadow: 0 1px 24px rgba(0, 0, 0, 0.4);
  }

  .hero__ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.6rem;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 1rem 1.7rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
  }
  .btn svg { width: 18px; transition: transform 0.3s ease; }
  .btn:hover svg { transform: translateX(3px); }

  .btn--primary {
    background: var(--amber);
    color: var(--white);
    border-color: var(--amber);
  }
  .btn--primary:hover { background: var(--amber-bright); border-color: var(--amber-bright); }

  .btn--ghost-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
  }
  .btn--ghost-light:hover { background: var(--white); color: var(--charcoal); border-color: var(--white); }

  .btn--ghost-dark {
    background: transparent;
    color: var(--charcoal);
    border-color: rgba(26, 29, 34, 0.25);
  }
  .btn--ghost-dark:hover { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }

  .btn--dark {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
  }
  .btn--dark:hover { background: var(--amber); border-color: var(--amber); }

  /* Hero side meta: phone & WhatsApp at bottom-right of hero */
  .hero__side {
    position: absolute;
    right: var(--gutter);
    bottom: clamp(3rem, 8vh, 6rem);
    z-index: 2;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .hero__side .meta-line {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 1px 18px rgba(0, 0, 0, 0.5);
  }
  .hero__side .meta-line strong {
    color: var(--white);
    font-weight: 500;
  }

  /* =========================================================
     TRUST STRIP
     ========================================================= */
  .trust {
    background: var(--charcoal);
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .trust__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .trust__item {
    padding: 2.2rem var(--gutter);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .trust__item:last-child { border-right: none; }
  .trust__big {
    font-family: var(--font-display);
    font-variation-settings: "wdth" 85, "opsz" 96;
    font-weight: 700;
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    line-height: 1;
    color: var(--white);
    letter-spacing: -0.025em;
  }
  .trust__big sup {
    font-size: 0.5em;
    color: var(--amber);
    vertical-align: top;
    margin-left: 0.2em;
    font-weight: 700;
  }
  .trust__label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
  }

  /* =========================================================
     SECTION
     ========================================================= */
  section { position: relative; }

  .section-pad {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }

  .section-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 4rem;
  }
  .section-head__l { display: flex; flex-direction: column; gap: 1.2rem; }
  .section-head__r {
    color: var(--steel);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 50ch;
    justify-self: end;
  }

  .section-title {
    font-family: var(--font-display);
    font-variation-settings: "wdth" 90, "opsz" 96;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.8rem);
    line-height: 0.98;
    color: var(--charcoal);
    letter-spacing: -0.025em;
  }
  .section-title em {
    font-style: normal;
    color: var(--amber);
  }

  /* =========================================================
     SERVICES
     ========================================================= */
  .services {
    background: var(--paper);
  }

  .services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--rule);
    background: var(--paper);
  }

  .service {
    padding: 2.5rem 2.2rem;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--paper);
    transition: background 0.35s ease;
    position: relative;
    cursor: default;
  }
  .service:nth-child(3n) { border-right: none; }
  .service:nth-last-child(-n+3) { border-bottom: none; }
  .service:hover { background: var(--white); }

  .service__num {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--amber);
  }
  .service__title {
    font-family: var(--font-display);
    font-variation-settings: "wdth" 92, "opsz" 32;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.1;
    color: var(--charcoal);
    letter-spacing: -0.015em;
  }
  .service__desc {
    color: var(--steel);
    font-size: 0.98rem;
    line-height: 1.6;
  }
  .service__link {
    margin-top: auto;
    padding-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    transition: color 0.3s ease, gap 0.3s ease;
  }
  .service__link svg { width: 14px; }
  .service:hover .service__link { color: var(--amber); gap: 0.8rem; }

  /* =========================================================
     SHOWCASE — Before/After Slider
     ========================================================= */
  .showcase {
    background: var(--off-white);
  }

  .ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--charcoal);
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
    cursor: ew-resize;
    --pos: 50%;
  }
  .ba-slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
  }
  .ba-slider__after-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    clip-path: polygon(0 0, var(--pos) 0, var(--pos) 100%, 0 100%);
  }
  .ba-slider__divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--pos);
    width: 3px;
    background: var(--white);
    transform: translateX(-50%);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
    pointer-events: none;
  }
  .ba-slider__handle {
    position: absolute;
    top: 50%;
    left: var(--pos);
    width: 52px;
    height: 52px;
    background: var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
    color: var(--charcoal);
    pointer-events: none;
  }
  .ba-slider__handle svg { width: 22px; }
  .ba-slider__label {
    position: absolute;
    top: 1.5rem;
    padding: 0.5rem 0.9rem;
    background: rgba(26, 29, 34, 0.78);
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    pointer-events: none;
  }
  .ba-slider__label--before { left: 1.5rem; }
  .ba-slider__label--after { right: 1.5rem; background: var(--amber); }

  .showcase__caption {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: end;
  }
  .showcase__caption-title {
    font-family: var(--font-display);
    font-variation-settings: "wdth" 92;
    font-weight: 600;
    font-size: 1.45rem;
    color: var(--charcoal);
    margin-bottom: 0.3rem;
  }
  .showcase__caption-meta {
    color: var(--steel);
    font-size: 0.95rem;
  }
  .showcase__caption-tag {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber);
    padding: 0.45rem 0.85rem;
    border: 1px solid var(--amber);
    align-self: end;
  }

  /* =========================================================
     PROJECT GRID
     ========================================================= */
  .projects {
    background: var(--off-white);
    padding-top: 0;
  }

  .projects__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .project {
    background: var(--white);
    border: 1px solid var(--rule);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
  }
  @media (hover: hover) {
    .project:hover {
      transform: translateY(-4px);
      border-color: var(--charcoal);
      box-shadow: 0 30px 60px -30px rgba(26, 29, 34, 0.3);
    }
  }

  .project__media {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--steel);
  }
  .project__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: opacity 0.5s ease, transform 1.2s ease;
  }
  .project__media img:nth-child(2) { opacity: 0; }
  .project.is-flipped .project__media img:nth-child(1) { opacity: 0; }
  .project.is-flipped .project__media img:nth-child(2) { opacity: 1; transform: scale(1.03); }
  @media (hover: hover) {
    .project:hover .project__media img:nth-child(1) { opacity: 0; }
    .project:hover .project__media img:nth-child(2) { opacity: 1; transform: scale(1.03); }
  }

  .project__media-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--amber);
    color: var(--white);
    padding: 0.4rem 0.7rem;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    z-index: 2;
    transition: opacity 0.3s ease;
  }
  .project__media-tag--before {
    background: rgba(26, 29, 34, 0.85);
  }
  .project.is-flipped .project__media-tag--before { opacity: 0; }
  .project__media-tag--after { opacity: 0; }
  .project.is-flipped .project__media-tag--after { opacity: 1; }
  @media (hover: hover) {
    .project:hover .project__media-tag--before { opacity: 0; }
    .project:hover .project__media-tag--after { opacity: 1; }
  }

  /* Touch-only "tap to compare" hint badge */
  .project__compare-hint {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: none;
    align-items: center;
    gap: 0.4rem;
    background: rgba(26, 29, 34, 0.78);
    color: var(--white);
    padding: 0.4rem 0.6rem;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    z-index: 3;
    pointer-events: none;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .project__compare-hint svg { width: 13px; height: 13px; flex-shrink: 0; }
  @media (hover: none) {
    .project__compare-hint { display: inline-flex; }
  }
  .project.is-flipped .project__compare-hint,
  .project.is-hint-dismissed .project__compare-hint { opacity: 0; }

  .project__body {
    padding: 1.4rem 1.6rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .project__type {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber);
  }
  .project__title {
    font-family: var(--font-display);
    font-variation-settings: "wdth" 92;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--charcoal);
    letter-spacing: -0.01em;
  }

  /* Multi-photo case-study strip: scrollable, images in build order */
  .project-gallery__scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.9rem;
    -webkit-overflow-scrolling: touch;
  }
  .project-gallery__scroll::-webkit-scrollbar { height: 6px; }
  .project-gallery__scroll::-webkit-scrollbar-track { background: transparent; }
  .project-gallery__scroll::-webkit-scrollbar-thumb { background: var(--rule); }
  .project-gallery__item {
    flex: 0 0 auto;
    width: min(320px, 78vw);
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid var(--rule);
    margin: 0;
  }
  .project-gallery__item img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
  .project-gallery__item figcaption {
    padding: 0.65rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber);
    border-top: 1px solid var(--rule);
  }

  /* =========================================================
     OWNER-LED / ABOUT BLOCK
     ========================================================= */
  .owner {
    background: var(--charcoal);
    color: var(--white);
    overflow: hidden;
    position: relative;
  }
  .owner__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: clamp(5rem, 10vw, 8rem) 0;
  }

  .owner__quote {
    font-family: var(--font-display);
    font-variation-settings: "wdth" 92, "opsz" 96;
    font-weight: 600;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--white);
  }
  .owner__quote em {
    font-style: normal;
    color: var(--amber-bright);
  }
  .owner__quote-mark {
    font-family: var(--font-display);
    font-variation-settings: "wdth" 95, "wght" 800;
    font-size: 4rem;
    line-height: 0.8;
    color: var(--amber);
    display: block;
    margin-bottom: 0.5rem;
  }

  .owner__points {
    display: grid;
    gap: 1.6rem;
  }
  .owner__point {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 1rem;
    align-items: start;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .owner__point:last-child { border-bottom: none; padding-bottom: 0; }
  .owner__point-num {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--amber);
    padding-top: 0.1rem;
  }
  .owner__point-title {
    font-family: var(--font-display);
    font-variation-settings: "wdth" 92;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.3rem;
  }
  .owner__point-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.55;
  }

  /* =========================================================
     TESTIMONIALS
     ========================================================= */
  .testimonials {
    background: var(--off-white);
  }

  .reviews-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .reviews-track::-webkit-scrollbar { display: none; }

  .review {
    background: var(--white);
    padding: 2.2rem;
    border: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    transition: border-color 0.3s ease;
    scroll-snap-align: start;
    flex: 0 0 calc(33.333% - 1rem);
  }
  .review:hover { border-color: var(--amber); }

  .review__stars {
    display: flex;
    gap: 0.2rem;
    color: var(--amber);
  }
  .review__stars svg { width: 18px; height: 18px; }

  .review__quote {
    font-family: var(--font-display);
    font-variation-settings: "wdth" 95;
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.4;
    color: var(--charcoal);
    flex: 1;
  }

  .review__attr {
    display: grid;
    gap: 0.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--rule);
  }
  .review__name {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--charcoal);
    font-size: 0.95rem;
  }
  .review__meta {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--steel);
  }

  .reviews-head-r {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .reviews-nav {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }
  .reviews-nav__btn {
    width: 42px;
    height: 42px;
    border: 1px solid var(--rule);
    background: transparent;
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
  }
  .reviews-nav__btn:hover,
  .reviews-nav__btn:focus-visible {
    background: var(--amber);
    border-color: var(--amber);
    color: var(--white);
    outline: none;
  }
  .reviews-nav__btn svg { width: 16px; height: 16px; }

  .review__source {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--steel);
    text-decoration: none;
    margin-top: 0.6rem;
    transition: color 0.2s;
  }
  .review__source:hover { color: var(--amber); }
  .review__source svg { width: 13px; height: 13px; flex-shrink: 0; }

  /* =========================================================
     CTA SECTION
     ========================================================= */
  .cta {
    background: var(--charcoal);
    color: var(--white);
    padding: clamp(5rem, 10vw, 8rem) 0;
    position: relative;
    overflow: hidden;
  }
  .cta::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 98, 45, 0.18) 0%, transparent 65%);
    pointer-events: none;
  }
  .cta__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
  }
  .cta__title {
    font-family: var(--font-display);
    font-variation-settings: "wdth" 90, "opsz" 96;
    font-weight: 700;
    font-size: clamp(2.2rem, 5.5vw, 4.4rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
  }
  .cta__title em {
    font-style: normal;
    color: var(--amber-bright);
  }

  .cta__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .cta__methods {
    display: grid;
    gap: 1rem;
    width: 100%;
  }
  .cta__method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
  }
  .cta__method:hover {
    border-color: var(--amber);
    background: rgba(201, 98, 45, 0.08);
  }
  .cta__method svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--amber);
  }
  .cta__method-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    display: block;
    margin-bottom: 0.15rem;
  }
  .cta__method-value {
    font-family: var(--font-display);
    font-variation-settings: "wdth" 92;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--white);
  }

  /* Contact form (lives inside .cta) */
  .cta__form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 2rem;
    display: grid;
    gap: 1rem;
  }
  .cta__form .field { display: grid; gap: 0.45rem; }
  .cta__form .field--row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .cta__form label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
  }
  .cta__form label .req { color: var(--amber-bright); margin-left: 0.2rem; }
  .cta__form input,
  .cta__form select,
  .cta__form textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.75rem 0.85rem;
    border-radius: 2px;
    transition: border-color 0.2s ease, background 0.2s ease;
  }
  .cta__form input:focus,
  .cta__form select:focus,
  .cta__form textarea:focus {
    outline: 0;
    border-color: var(--amber);
    background: rgba(0, 0, 0, 0.35);
  }
  .cta__form input::placeholder,
  .cta__form textarea::placeholder { color: rgba(255, 255, 255, 0.35); }
  .cta__form textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
  .cta__form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9622d' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 11px;
    padding-right: 2.4rem;
  }
  .cta__form select option { background: var(--charcoal); color: var(--white); }
  .cta__form .botcheck { position: absolute; left: -10000px; }
  .cta__form .h-captcha { min-height: 78px; }
  .cta__form-status {
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
    background: rgba(224, 122, 58, 0.12);
    border: 1px solid rgba(224, 122, 58, 0.35);
    color: var(--amber-bright);
    border-radius: 2px;
  }
  .cta__form-status[hidden] { display: none; }
  .cta__form button[type="submit"] {
    justify-content: center;
    margin-top: 0.4rem;
  }
  .cta__form-success {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 2.4rem 2rem;
    text-align: center;
    display: grid;
    gap: 0.8rem;
    justify-items: center;
  }
  .cta__form-success[hidden] { display: none; }
  .cta__form-success svg { width: 48px; height: 48px; color: var(--amber-bright); }
  .cta__form-success h3 {
    font-family: var(--font-display);
    font-variation-settings: "wdth" 92;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--white);
  }
  .cta__form-success p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    max-width: 36ch;
    line-height: 1.5;
  }

  /* =========================================================
     FOOTER
     ========================================================= */
  .footer {
    background: #0f1115;
    color: var(--white);
    padding: 4rem 0 2rem;
  }
  .footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .footer__brand p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 28ch;
    line-height: 1.55;
    margin-top: 1.2rem;
    font-size: 0.95rem;
  }
  .footer__col h4 {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1.2rem;
  }
  .footer__col ul { list-style: none; display: grid; gap: 0.6rem; }
  .footer__col li {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
  }
  .footer__col a {
    color: inherit;
    transition: color 0.3s ease;
  }
  .footer__col a:hover { color: var(--amber-bright); }
  .footer__col a:hover svg { opacity: 1; }
  .footer__col .icon-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  .footer__col .icon-link svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
  .footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    font-family: var(--font-mono);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  /* =========================================================
     SCROLL REVEAL
     ========================================================= */
  [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  }
  [data-reveal].in { opacity: 1; transform: none; }
  [data-reveal-delay="1"] { transition-delay: 0.08s; }
  [data-reveal-delay="2"] { transition-delay: 0.18s; }
  [data-reveal-delay="3"] { transition-delay: 0.28s; }
  [data-reveal-delay="4"] { transition-delay: 0.38s; }

  /* =========================================================
     RESPONSIVE
     ========================================================= */
  @media (max-width: 1080px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .service:nth-child(3n) { border-right: 1px solid var(--rule); }
    .service:nth-child(2n) { border-right: none; }
    .service:nth-last-child(-n+3) { border-bottom: 1px solid var(--rule); }
    .service:nth-last-child(-n+2) { border-bottom: none; }

    .projects__grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 880px) {
    .nav__menu { display: none; }
    .nav__phone { display: none; }
    .nav__cta   { display: none; }
    .nav__toggle { display: block; }
    .nav__inner { gap: 0.75rem; }
    .nav__inner > nav { display: none; }
    .brand__text { display: none; }

    .nav__wa-mobile {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      background: var(--amber);
      color: var(--white);
      padding: 0.55rem 0.9rem;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.82rem;
      white-space: nowrap;
    }
    .nav__wa-mobile svg { width: 17px; height: 17px; flex-shrink: 0; }

    .nav--open .nav__drawer {
      display: block;
      background: rgba(26, 29, 34, 0.97);
      backdrop-filter: saturate(140%) blur(14px);
      -webkit-backdrop-filter: saturate(140%) blur(14px);
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .nav__drawer ul {
      list-style: none;
      display: flex;
      flex-direction: column;
    }
    .nav__drawer li a {
      display: block;
      padding: 1rem 1.5rem;
      font-family: var(--font-body);
      font-size: 1.05rem;
      font-weight: 500;
      color: var(--white);
      border-bottom: 1px solid rgba(255,255,255,0.07);
      transition: color 0.2s ease, padding-left 0.2s ease;
    }
    .nav__drawer li:last-child a { border-bottom: none; }
    .nav__drawer li a:hover,
    .nav__drawer li a:active { color: var(--amber-bright); padding-left: 2rem; }

    .hero__side { display: none; }

    .trust__inner { grid-template-columns: repeat(2, 1fr); }
    .trust__item { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
    .trust__item:nth-child(2n) { border-right: none; }

    .section-head { grid-template-columns: 1fr; gap: 1.5rem; }
    .section-head__r { justify-self: start; }

    .review { flex: 0 0 calc(50% - 0.75rem); }

    .owner__inner { grid-template-columns: 1fr; gap: 3rem; }
    .cta__inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .cta__form { padding: 1.5rem; }
    .cta__form .field--row { grid-template-columns: 1fr; gap: 1rem; }

    .showcase__caption { grid-template-columns: 1fr; gap: 1rem; align-items: start; }
    .showcase__caption-tag { justify-self: start; }

    .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer__bottom { flex-direction: column; gap: 1rem; align-items: flex-start; }
  }

  @media (max-width: 560px) {
    .review { flex: 0 0 82vw; }
    .services__grid { grid-template-columns: 1fr; }
    .service { border-right: none !important; }
    .projects__grid { grid-template-columns: 1fr; }
    .trust__inner { grid-template-columns: 1fr; }
    .trust__item { border-right: none !important; }
    .footer__inner { grid-template-columns: 1fr; }
  }

  /* FAQ */
  .faq { background: var(--paper); }
  .faq__list { margin-top: 3rem; border-top: 1px solid var(--rule); }
  .faq__item { border-bottom: 1px solid var(--rule); }
  .faq__q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 1.4rem 0;
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    user-select: none;
  }
  .faq__q::-webkit-details-marker { display: none; }
  .faq__q::after {
    content: '+';
    font-family: var(--font-mono);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--amber);
    flex-shrink: 0;
    transition: transform 0.2s;
    line-height: 1;
  }
  .faq__item[open] > .faq__q::after { content: '\2212'; }
  .faq__a {
    padding-bottom: 1.5rem;
    color: var(--steel);
    max-width: 68ch;
    line-height: 1.7;
  }

