  /* ─── RESET & BASE ─────────────────────────────────────────── */
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  /* ─── ACCESSIBILITY: reduced motion ────────────────────────── */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }

  /* ─── ACCESSIBILITY: skip link ─────────────────────────────── */
  .skip-link {
    position: absolute; left: 1rem; top: -60px;
    background: var(--gold); color: var(--black);
    padding: 0.8rem 1.4rem; z-index: 200;
    font-family: var(--font-body); font-size: 0.8rem;
    font-weight: 500; text-decoration: none;
    transition: top 0.3s;
  }
  .skip-link:focus { top: 1rem; }

  /* ─── ACCESSIBILITY: visible keyboard focus ────────────────── */
  a:focus-visible, button:focus-visible,
  .qe-choice:focus-visible, .gallery-toggle:focus-visible,
  .work-item:focus-visible, .process-step:focus-visible {
    outline: 2px solid var(--gold); outline-offset: 3px;
  }
  .qe-input:focus-visible, .qe-textarea:focus-visible {
    outline: 2px solid var(--gold); outline-offset: 2px;
  }

  :root {
    --black:   #0b0a09;
    --charcoal:#161311;
    --surface: #1c1816;
    --surface2:#24201c;
    --border:  rgba(255,255,255,0.07);
    --gold:    #c8a273;
    --gold-lt: #e5cba0;
    --white:   #f6f1ea;
    --muted:   rgba(246,241,234,0.5);
    --font-display: 'Cormorant Garamond', serif;
    --font-body:    'Archivo', sans-serif;
    --ease-out-expo: cubic-bezier(0.16,1,0.3,1);
    --ease-in-out:   cubic-bezier(0.76,0,0.24,1);
  }

  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  ::selection { background: var(--gold); color: var(--black); }

  /* ─── SCROLLBAR ────────────────────────────────────────────── */
  ::-webkit-scrollbar { width: 3px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: var(--gold); }

  /* ─── NAV ──────────────────────────────────────────────────── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.5rem 4vw;
    display: flex; align-items: center; justify-content: space-between;
    transition: background 0.5s ease, backdrop-filter 0.5s ease, padding 0.4s ease;
  }
  nav.scrolled {
    background: rgba(11,10,9,0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    padding: 1rem 4vw;
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    display: flex; flex-direction: column; gap: 0.1rem;
    text-decoration: none;
  }
  .nav-logo-main {
    font-family: var(--font-display);
    font-size: 1.15rem; font-weight: 400;
    letter-spacing: 0.06em; color: var(--white);
    line-height: 1.1;
  }
  .nav-logo-sub {
    font-size: 0.58rem; letter-spacing: 0.22em;
    color: var(--gold); text-transform: uppercase;
    font-weight: 500;
  }

  .nav-links {
    display: flex; gap: 2.5rem; list-style: none;
    align-items: center;
  }
  .nav-links a {
    text-decoration: none; color: var(--muted);
    font-size: 0.72rem; letter-spacing: 0.18em;
    text-transform: uppercase; font-weight: 400;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--white); }

  .nav-cta {
    background: transparent; border: 1px solid var(--gold);
    color: var(--gold) !important; padding: 0.55rem 1.4rem !important;
    transition: background 0.3s, color 0.3s !important;
  }
  .nav-cta:hover { background: var(--gold) !important; color: var(--black) !important; }

  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; background: none; border: none; padding: 4px;
  }
  .hamburger span {
    display: block; width: 22px; height: 1px;
    background: var(--white); transition: transform 0.3s, opacity 0.3s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .mobile-menu {
    display: none; position: fixed; inset: 0; z-index: 99;
    background: rgba(11,10,9,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 2.5rem; opacity: 0; pointer-events: none;
    transition: opacity 0.4s;
  }
  .mobile-menu.open { opacity: 1; pointer-events: all; }
  .mobile-menu a {
    font-family: var(--font-display); font-size: 2.2rem;
    color: var(--white); text-decoration: none;
    letter-spacing: 0.04em; transition: color 0.3s;
  }
  .mobile-menu a:hover { color: var(--gold); }

  /* ─── HERO ─────────────────────────────────────────────────── */
  .hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(135deg, rgba(11,10,9,0.95) 0%, rgba(11,10,9,0.6) 50%, rgba(11,10,9,0.85) 100%),
      radial-gradient(ellipse 120% 80% at 70% 40%, rgba(200,162,115,0.12) 0%, transparent 60%);
    z-index: 1;
  }

  .hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(200,162,115,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200,162,115,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  }

  .hero-orb {
    position: absolute; width: 600px; height: 600px;
    border-radius: 50%; z-index: 0;
    background: radial-gradient(circle, rgba(200,162,115,0.08) 0%, transparent 70%);
    top: 10%; right: 5%;
    animation: orb-float 8s ease-in-out infinite;
  }
  @keyframes orb-float {
    0%,100% { transform: translate(0,0) scale(1); }
    50%      { transform: translate(-20px,30px) scale(1.05); }
  }

  .hero-line-v {
    position: absolute; right: 15%; top: 0; bottom: 0;
    width: 1px; background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
    opacity: 0.12; z-index: 2;
  }

  .hero-inner {
    position: relative; z-index: 3;
    padding: 0 4vw; max-width: 860px;
    padding-top: 8rem;
    opacity: 0; transform: translateY(40px);
    animation: hero-enter 1.2s var(--ease-out-expo) 0.3s forwards;
  }
  @keyframes hero-enter {
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0; animation: hero-enter 1s var(--ease-out-expo) 0.5s forwards;
  }
  .hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
  .hero-eyebrow-text {
    font-size: 0.65rem; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--gold); font-weight: 500;
  }

  .hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 300; line-height: 1.08;
    letter-spacing: -0.01em; color: var(--white);
    margin-bottom: 1.5rem;
    opacity: 0; animation: hero-enter 1s var(--ease-out-expo) 0.7s forwards;
  }
  .hero-h1 em { font-style: italic; color: var(--gold-lt); }

  .hero-sub {
    font-size: clamp(0.85rem, 1.5vw, 1.05rem);
    color: var(--muted); line-height: 1.8;
    max-width: 520px; font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0; animation: hero-enter 1s var(--ease-out-expo) 0.9s forwards;
  }

  .hero-actions {
    display: flex; gap: 1.2rem; flex-wrap: wrap;
    opacity: 0; animation: hero-enter 1s var(--ease-out-expo) 1.1s forwards;
  }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.7rem;
    background: var(--gold); color: var(--black);
    font-family: var(--font-body); font-size: 0.72rem;
    letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 500; text-decoration: none;
    padding: 1rem 2.2rem; border: none; cursor: pointer;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  }
  .btn-primary:hover {
    background: var(--gold-lt);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(200,162,115,0.25);
  }

  .btn-ghost {
    display: inline-flex; align-items: center; gap: 0.7rem;
    background: transparent; color: var(--white);
    font-family: var(--font-body); font-size: 0.72rem;
    letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 400; text-decoration: none;
    padding: 1rem 2.2rem;
    border: 1px solid rgba(246,241,234,0.2);
    cursor: pointer; transition: border-color 0.3s, color 0.3s, transform 0.3s;
  }
  .btn-ghost:hover {
    border-color: var(--gold); color: var(--gold);
    transform: translateY(-2px);
  }

  .hero-scroll {
    position: absolute; bottom: 3rem; right: 4vw; z-index: 3;
    display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
    opacity: 0; animation: hero-enter 1s ease 1.4s forwards;
  }
  .hero-scroll-text {
    font-size: 0.58rem; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--muted);
    writing-mode: vertical-rl;
  }
  .hero-scroll-bar {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scroll-bar 2s ease-in-out infinite;
  }
  @keyframes scroll-bar {
    0%   { transform: scaleY(1); transform-origin: top; }
    50%  { transform: scaleY(0.3); transform-origin: top; }
    51%  { transform: scaleY(0.3); transform-origin: bottom; }
    100% { transform: scaleY(1); transform-origin: bottom; }
  }

  /* ─── SECTION UTILITIES ────────────────────────────────────── */
  section { padding: 7rem 4vw; }

  .section-label {
    display: inline-flex; align-items: center; gap: 0.8rem;
    margin-bottom: 1rem;
  }
  .section-label-line { width: 30px; height: 1px; background: var(--gold); }
  .section-label-text {
    font-size: 0.62rem; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--gold); font-weight: 500;
  }

  .section-heading {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 300; line-height: 1.1;
    letter-spacing: -0.01em; color: var(--white);
  }
  .section-heading em { font-style: italic; color: var(--gold-lt); }

  .section-sub {
    font-size: 0.9rem; color: var(--muted);
    line-height: 1.8; max-width: 520px;
    margin-top: 1.2rem; font-weight: 300;
  }

  /* ─── GALLERY ──────────────────────────────────────────────── */
  #gallery { background: var(--charcoal); }

  .gallery-header {
    display: flex; justify-content: space-between;
    align-items: flex-end; margin-bottom: 4rem;
    flex-wrap: wrap; gap: 2rem;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
  }

  /* Manhattan — flagship, 7 of 12 cols, row 1 */
  .gallery-card:nth-child(1) { grid-column: 1 / 8; grid-row: 1; }
  /* Nordic — co-feature, 5 cols, row 1 */
  .gallery-card:nth-child(2) { grid-column: 8 / 13; grid-row: 1; }
  /* Three equal cards, row 2 */
  .gallery-card:nth-child(3) { grid-column: 1 / 5;  grid-row: 2; }
  .gallery-card:nth-child(4) { grid-column: 5 / 9;  grid-row: 2; }
  .gallery-card:nth-child(5) { grid-column: 9 / 13; grid-row: 2; }

  .gallery-card {
    position: relative;
    background: #0d0d0d;
    cursor: pointer;
    border: 1px solid var(--border);
    display: flex; flex-direction: column;
    transition: border-color 0.5s, box-shadow 0.6s;
  }
  .gallery-card:hover { border-color: rgba(200,162,115,0.25); }

  .gallery-visual {
    width: 100%; position: relative; overflow: hidden;
    flex-shrink: 0;
    height: 320px;
  }
  .gallery-card:nth-child(1) .gallery-visual { height: 420px; }
  .gallery-card:nth-child(2) .gallery-visual { height: 420px; }

  .gallery-img {
    position: absolute; inset: 0; overflow: hidden;
    transition: transform 0.9s var(--ease-out-expo);
  }
  .gallery-card:hover .gallery-img { transform: scale(1.06); }

  .gallery-img img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
  }

  .gallery-overlay {
    position: absolute; inset: 0; z-index: 4;
    background: linear-gradient(
      to top,
      rgba(8,8,8,0.93) 0%,
      rgba(8,8,8,0.3) 40%,
      transparent 68%
    );
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.6rem 1.8rem;
    pointer-events: none;
  }

  .gallery-tag {
    font-size: 0.56rem; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--gold);
    font-weight: 500; margin-bottom: 0.3rem;
    opacity: 0; transform: translateY(6px);
    transition: opacity 0.38s, transform 0.42s var(--ease-out-expo);
  }
  .gallery-card:hover .gallery-tag,
  .gallery-card.desc-open .gallery-tag { opacity: 1; transform: translateY(0); }

  .gallery-title {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.4vw, 1.45rem);
    font-weight: 400; color: var(--white); line-height: 1.18;
    opacity: 0; transform: translateY(8px);
    transition: opacity 0.42s 0.05s, transform 0.48s 0.05s var(--ease-out-expo);
  }
  .gallery-card:hover .gallery-title,
  .gallery-card.desc-open .gallery-title { opacity: 1; transform: translateY(0); }

  .gallery-card--flagship .gallery-overlay {
    background: linear-gradient(
      to top,
      rgba(6,6,6,0.96) 0%,
      rgba(6,6,6,0.38) 35%,
      transparent 62%
    );
    padding: 2rem 2.2rem;
  }
  .gallery-card--flagship .gallery-title {
    font-size: clamp(1.3rem, 2vw, 2.1rem);
  }

  .gallery-card--flagship {
    box-shadow: 0 0 0 0 rgba(200,162,115,0);
  }
  .gallery-card--flagship:hover,
  .gallery-card--flagship.desc-open {
    border-color: rgba(200,162,115,0.45);
    box-shadow: 0 0 70px -16px rgba(200,162,115,0.2);
  }

  .gallery-card--popular {
    box-shadow: 0 0 0 0 rgba(200,162,115,0);
  }
  .gallery-card--popular:hover,
  .gallery-card--popular.desc-open {
    border-color: rgba(200,162,115,0.35);
    box-shadow: 0 0 50px -16px rgba(200,162,115,0.15);
  }
  .gallery-card--popular .gallery-overlay {
    background: linear-gradient(
      to top,
      rgba(6,6,6,0.94) 0%,
      rgba(6,6,6,0.35) 38%,
      transparent 64%
    );
    padding: 2rem 2.2rem;
  }
  .gallery-card--popular .gallery-title {
    font-size: clamp(1.15rem, 1.7vw, 1.8rem);
  }
  .gallery-card--popular .gallery-style-name { font-size: 1.05rem; }

  .gallery-badge {
    position: absolute; top: 1.4rem; left: 1.4rem; z-index: 6;
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(8,8,8,0.75);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border: 1px solid rgba(200,162,115,0.38);
    padding: 0.38rem 0.95rem;
    font-size: 0.56rem; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--gold);
    font-weight: 500; font-family: var(--font-body);
    pointer-events: none;
  }
  .gallery-badge-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0;
    animation: badge-pulse 2.2s ease-in-out infinite;
  }
  @keyframes badge-pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50%     { opacity: 0.35; transform: scale(0.65); }
  }

  .gallery-meta {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 1.6rem;
    border-top: 1px solid var(--border);
    background: var(--charcoal);
    flex-shrink: 0;
    transition: background 0.35s;
    position: relative; z-index: 2;
  }
  .gallery-card:hover .gallery-meta,
  .gallery-card.desc-open .gallery-meta { background: #1d1d1d; }

  .gallery-meta-left { display: flex; flex-direction: column; gap: 0.15rem; }

  .gallery-style-name {
    font-family: var(--font-display); font-size: 1rem;
    font-weight: 400; color: var(--white); letter-spacing: 0.04em;
    line-height: 1;
  }
  .gallery-card--flagship .gallery-style-name {
    font-size: 1.08rem; color: var(--gold-lt);
  }

  .gallery-meta-hint {
    font-size: 0.56rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--muted);
    font-weight: 400; transition: color 0.3s;
  }
  .gallery-card:hover .gallery-meta-hint,
  .gallery-card.desc-open .gallery-meta-hint { color: rgba(200,162,115,0.6); }

  .gallery-toggle {
    width: 32px; height: 32px; flex-shrink: 0;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    background: transparent; cursor: pointer;
    transition: border-color 0.35s, background 0.35s, transform 0.35s;
    -webkit-tap-highlight-color: transparent;
  }
  .gallery-toggle svg {
    transition: stroke 0.3s, transform 0.45s var(--ease-out-expo);
  }
  .gallery-card:hover .gallery-toggle,
  .gallery-card.desc-open .gallery-toggle {
    border-color: var(--gold); background: var(--gold);
  }
  .gallery-card:hover .gallery-toggle svg,
  .gallery-card.desc-open .gallery-toggle svg { stroke: var(--black); }
  .gallery-card.desc-open .gallery-toggle svg { transform: rotate(45deg); }

  .gallery-desc {
    overflow: hidden; max-height: 0;
    background: #181818;
    border-top: 1px solid transparent;
    transition: max-height 0.55s var(--ease-out-expo), border-color 0.4s, padding 0.45s var(--ease-out-expo);
    padding: 0 1.6rem;
  }
  .gallery-card.desc-open .gallery-desc {
    max-height: 140px;
    border-top-color: rgba(200,162,115,0.12);
    padding: 1.2rem 1.6rem 1.4rem;
  }

  .gallery-desc-inner { display: flex; align-items: flex-start; gap: 0.9rem; }
  .gallery-desc-line {
    width: 2px; flex-shrink: 0; align-self: stretch;
    background: var(--gold); opacity: 0.45;
    border-radius: 1px;
    transform: scaleY(0); transform-origin: top;
    transition: transform 0.5s 0.1s var(--ease-out-expo);
  }
  .gallery-card.desc-open .gallery-desc-line { transform: scaleY(1); }

  .gallery-desc p {
    font-size: 0.78rem; color: rgba(246,241,234,0.62);
    line-height: 1.75; font-weight: 300; margin: 0;
    opacity: 0; transform: translateY(6px);
    transition: opacity 0.4s 0.15s, transform 0.45s 0.15s var(--ease-out-expo);
  }
  .gallery-card.desc-open .gallery-desc p { opacity: 1; transform: translateY(0); }

  .gallery-card--flagship .gallery-desc { background: #191919; }
  .gallery-card--flagship .gallery-desc p { color: rgba(246,241,234,0.72); }

  /* ─── PROCESS ──────────────────────────────────────────────── */
  #process { background: var(--black); }

  .process-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: center;
  }

  .process-steps { display: flex; flex-direction: column; }

  .process-step {
    display: grid; grid-template-columns: 56px 1fr;
    gap: 2rem; padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer; transition: border-color 0.3s;
    position: relative;
  }
  .process-step:first-child { border-top: 1px solid var(--border); }
  .process-step.active { border-bottom-color: var(--gold); }

  .step-number {
    font-family: var(--font-display); font-size: 3.5rem;
    font-weight: 300; color: var(--border);
    line-height: 1; transition: color 0.4s;
    display: flex; align-items: flex-start;
  }
  .process-step.active .step-number { color: var(--gold); }
  .process-step:hover .step-number { color: rgba(200,162,115,0.4); }

  .step-content { padding-top: 0.4rem; }
  .step-label {
    font-size: 0.6rem; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--gold);
    font-weight: 500; margin-bottom: 0.6rem;
    opacity: 0; transition: opacity 0.4s;
  }
  .process-step.active .step-label { opacity: 1; }

  .step-title {
    font-family: var(--font-display); font-size: 1.5rem;
    font-weight: 400; color: var(--white); margin-bottom: 0.8rem;
  }
  .step-desc {
    font-size: 0.85rem; color: var(--muted);
    line-height: 1.8; font-weight: 300;
    height: 0; overflow: hidden;
    transition: height 0.5s var(--ease-out-expo), opacity 0.4s;
    opacity: 0;
  }
  /* Fixed (not content-dependent) height — reserves space for the longest
     of the three step descriptions so the page never reflows as the
     process accordion cycles between steps of different text length. */
  .process-step.active .step-desc { height: 120px; opacity: 1; }

  /* The fixed height above reserves space for the longest of the three step
     descriptions at desktop width. On narrow screens the same text wraps to
     more lines, so the reserved height has to grow with it - still a fixed
     value per breakpoint, never content-dependent, so the 4-second auto-cycle
     still cannot reflow the page. */
  @media (max-width: 900px) {
    .process-step.active .step-desc { height: 140px; }
  }
  @media (max-width: 520px) {
    .process-step.active .step-desc { height: 190px; }
  }

  .process-visual { position: relative; height: 500px; }
  .process-card {
    position: absolute; inset: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; opacity: 0;
    transition: opacity 0.6s var(--ease-out-expo);
  }
  .process-card.visible { opacity: 1; }

  /* ─── SERVICES ─────────────────────────────────────────────── */
  #services { background: var(--charcoal); }

  .services-header {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: end; margin-bottom: 5rem;
  }

  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: var(--border); border: 1px solid var(--border);
  }

  .service-card {
    background: var(--charcoal); padding: 2.8rem 2.5rem;
    position: relative; overflow: hidden; transition: background 0.4s;
  }
  .service-card::before {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 100%; height: 2px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s var(--ease-out-expo);
  }
  .service-card:hover { background: var(--surface); }
  .service-card:hover::before { transform: scaleX(1); }

  .service-icon { width: 40px; height: 40px; margin-bottom: 1.8rem; }

  .service-num {
    font-family: var(--font-display); font-size: 0.75rem;
    color: var(--gold); letter-spacing: 0.1em;
    font-weight: 400; margin-bottom: 1.2rem; display: block;
  }

  .service-title {
    font-family: var(--font-display); font-size: 1.3rem;
    font-weight: 400; color: var(--white);
    margin-bottom: 0.8rem; line-height: 1.2;
  }

  .service-desc {
    font-size: 0.8rem; color: var(--muted);
    line-height: 1.8; font-weight: 300;
  }

  .service-link {
    display: inline-flex; align-items: center; gap: 0.5rem;
    margin-top: 1.2rem;
    color: var(--gold); text-decoration: none;
    font-size: 0.68rem; letter-spacing: 0.14em;
    text-transform: uppercase; font-weight: 500;
    transition: gap 0.3s;
  }
  .service-link:hover { gap: 0.9rem; }

  /* ─── WHY US ────────────────────────────────────────────────── */
  #why { background: var(--black); position: relative; overflow: hidden; }

  .why-bg-text {
    position: absolute; left: 1vw; top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: clamp(6rem, 14vw, 14rem);
    font-weight: 300; color: transparent;
    -webkit-text-stroke: 1px rgba(200,162,115,0.07);
    white-space: nowrap; pointer-events: none;
    user-select: none; z-index: 0; line-height: 1;
  }

  .why-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: center;
  }

  .why-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2px; background: var(--border);
  }

  .why-feat {
    background: var(--black); padding: 2.5rem;
    transition: background 0.3s;
  }
  .why-feat:hover { background: var(--surface); }

  .feat-icon { width: 36px; height: 36px; margin-bottom: 1.2rem; color: var(--gold); }

  .feat-title {
    font-family: var(--font-display); font-size: 1.15rem;
    font-weight: 400; color: var(--white); margin-bottom: 0.6rem;
  }

  .feat-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.8; font-weight: 300; }

  .why-quote {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-style: italic; font-weight: 300;
    color: var(--white); line-height: 1.4;
    margin: 2.5rem 0; padding-left: 2rem;
    border-left: 2px solid var(--gold);
  }

  .why-cta-link {
    display: inline-flex; align-items: center; gap: 0.8rem;
    color: var(--gold); text-decoration: none;
    font-size: 0.72rem; letter-spacing: 0.18em;
    text-transform: uppercase; font-weight: 500;
    margin-top: 1rem; transition: gap 0.3s;
  }
  .why-cta-link:hover { gap: 1.4rem; }
  .why-cta-link svg { flex-shrink: 0; }

  /* ─── OUR WORK ──────────────────────────────────────────────── */
  #our-work { background: var(--black); }

  .work-header {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: end; margin-bottom: 5rem;
  }

  .work-masonry {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
  }

  /* Layout — 9 items, 3 equal rows of 3 (4 cols each) */
  .work-item:nth-child(1)  { grid-column: 1 / 5;  grid-row: 1; }
  .work-item:nth-child(2)  { grid-column: 5 / 9;  grid-row: 1; }
  .work-item:nth-child(3)  { grid-column: 9 / 13; grid-row: 1; }
  .work-item:nth-child(4)  { grid-column: 1 / 5;  grid-row: 2; }
  .work-item:nth-child(5)  { grid-column: 5 / 9;  grid-row: 2; }
  .work-item:nth-child(6)  { grid-column: 9 / 13; grid-row: 2; }
  .work-item:nth-child(7)  { grid-column: 1 / 5;  grid-row: 3; }
  .work-item:nth-child(8)  { grid-column: 5 / 9;  grid-row: 3; }
  .work-item:nth-child(9)  { grid-column: 9 / 13; grid-row: 3; }

  .work-item {
    position: relative; overflow: hidden;
    background: var(--surface); cursor: pointer;
  }
  a.work-item { display: block; text-decoration: none; }

  .work-img-wrap {
    position: relative; width: 100%;
    height: 280px; overflow: hidden;
  }

  .work-img {
    position: absolute; inset: 0; overflow: hidden;
    transition: transform 0.9s var(--ease-out-expo);
  }
  .work-item:hover .work-img { transform: scale(1.05); }

  .work-img img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
  }

  .work-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 2rem 1.8rem 1.5rem;
    background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.45) 55%, transparent 100%);
    display: flex; flex-direction: column; gap: 0.25rem;
    transform: translateY(5px);
    transition: transform 0.45s var(--ease-out-expo);
  }
  .work-item:hover .work-caption { transform: translateY(0); }

  .work-caption-tag {
    font-size: 0.56rem; letter-spacing: 0.26em;
    text-transform: uppercase; color: var(--gold);
    font-weight: 500;
    opacity: 0; transform: translateY(5px);
    transition: opacity 0.35s, transform 0.4s var(--ease-out-expo);
  }
  .work-item:hover .work-caption-tag { opacity: 1; transform: translateY(0); }

  .work-caption-title {
    font-family: var(--font-display); font-size: clamp(1rem, 1.4vw, 1.3rem);
    font-weight: 400; color: var(--white); letter-spacing: 0.02em;
    opacity: 0; transform: translateY(6px);
    transition: opacity 0.4s 0.05s, transform 0.45s 0.05s var(--ease-out-expo);
  }
  .work-item:hover .work-caption-title { opacity: 1; transform: translateY(0); }

  .work-item::after {
    content: ''; position: absolute; inset: 0;
    border: 1px solid transparent; pointer-events: none;
    transition: border-color 0.4s;
  }
  .work-item:hover::after { border-color: rgba(200,162,115,0.2); }

  .work-footer {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 4rem; padding-top: 2.5rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap; gap: 1.5rem;
  }
  .work-footer-text {
    font-size: 0.82rem; color: var(--muted);
    font-style: italic; letter-spacing: 0.04em;
  }

  /* ─── TESTIMONIALS ─────────────────────────────────────────── */
  #testimonials { background: var(--charcoal); }

  .testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; margin-top: 4rem;
  }

  .testimonial-card {
    background: var(--surface); border: 1px solid var(--border);
    padding: 2.5rem; position: relative;
    transition: border-color 0.4s, transform 0.4s;
  }
  .testimonial-card:hover {
    border-color: rgba(200,162,115,0.3);
    transform: translateY(-4px);
  }

  .testimonial-stars { display: flex; gap: 3px; margin-bottom: 1.5rem; }
  .star { color: var(--gold); font-size: 0.8rem; }

  .testimonial-text {
    font-family: var(--font-display); font-size: 1.05rem;
    font-style: italic; font-weight: 300;
    color: var(--white); line-height: 1.7; margin-bottom: 2rem;
  }

  .testimonial-author { display: flex; align-items: center; gap: 1rem; }
  .author-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--surface2);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1rem;
    color: var(--gold); font-weight: 400;
    border: 1px solid var(--border);
  }
  .author-name { font-size: 0.78rem; font-weight: 500; color: var(--white); letter-spacing: 0.04em; }
  .author-loc { font-size: 0.68rem; color: var(--muted); letter-spacing: 0.1em; margin-top: 0.1rem; }

  /* ─── CTA SECTION ──────────────────────────────────────────── */
  #cta {
    background: var(--black); position: relative;
    overflow: hidden; text-align: center; padding: 9rem 4vw;
  }

  .cta-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200,162,115,0.09) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-bg::before {
    content: ''; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(200,162,115,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200,162,115,0.05) 1px, transparent 1px);
    background-size: 80px 80px;
  }

  .cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }

  .cta-eyebrow {
    font-size: 0.62rem; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--gold);
    font-weight: 500; margin-bottom: 1.5rem; display: block;
  }

  .cta-h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300; line-height: 1.1;
    color: var(--white); margin-bottom: 1.5rem;
  }
  .cta-h2 em { font-style: italic; color: var(--gold-lt); }

  .cta-sub { font-size: 0.9rem; color: var(--muted); line-height: 1.8; margin-bottom: 3rem; }

  .cta-actions { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }

  .cta-detail {
    margin-top: 3rem;
    display: flex; align-items: center; justify-content: center;
    gap: 2rem; flex-wrap: wrap;
  }
  .cta-detail-item {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.72rem; color: var(--muted); letter-spacing: 0.1em;
  }
  .cta-detail-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

  /* ─── QUICK ENQUIRY — STEP FLOW ────────────────────────────── */
  .quick-enquiry {
    margin-top: 3.5rem;
    text-align: left;
    max-width: 480px;
    margin-left: auto; margin-right: auto;
  }

  .qe-divider {
    display: flex; align-items: center; gap: 1.2rem;
    margin-bottom: 2.5rem;
  }
  .qe-divider-line { flex: 1; height: 1px; background: var(--border); }
  .qe-divider-text {
    font-size: 0.6rem; letter-spacing: 0.24em;
    text-transform: uppercase; color: var(--muted);
    white-space: nowrap;
  }

  .qe-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 2.6rem 2.4rem;
    position: relative;
    overflow: hidden;
  }

  /* Progress dots */
  .qe-progress {
    display: flex; justify-content: center;
    gap: 0.5rem; margin-bottom: 2.2rem;
  }
  .qe-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--border);
    transition: background 0.4s, transform 0.4s;
  }
  .qe-dot.active { background: var(--gold); transform: scale(1.3); }
  .qe-dot.done { background: rgba(200,162,115,0.5); }

  /* Steps */
  .qe-step {
    display: none;
    animation: qe-step-in 0.5s var(--ease-out-expo);
  }
  .qe-step.active { display: block; }
  @keyframes qe-step-in {
    from { opacity: 0; transform: translateX(12px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  .qe-question {
    font-family: var(--font-display);
    font-size: 1.35rem; font-weight: 400;
    color: var(--white); line-height: 1.3;
    margin-bottom: 1.6rem; text-align: center;
  }
  .qe-question em { font-style: italic; color: var(--gold-lt); }

  .qe-hint {
    font-size: 0.74rem; color: var(--muted);
    text-align: center; margin-top: -1rem; margin-bottom: 1.6rem;
  }

  .qe-input,
  .qe-textarea {
    background: var(--charcoal);
    border: 1px solid var(--border);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    padding: 0.95rem 1.1rem;
    outline: none;
    transition: border-color 0.3s;
    width: 100%;
    text-align: center;
  }
  .qe-input::placeholder,
  .qe-textarea::placeholder { color: rgba(246,241,234,0.28); }
  .qe-input:focus,
  .qe-textarea:focus { border-color: rgba(200,162,115,0.5); }
  .qe-textarea {
    resize: vertical; min-height: 90px;
    line-height: 1.6; text-align: left;
  }

  /* Design choice pills */
  .qe-choices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }
  .qe-choice {
    background: var(--charcoal);
    border: 1px solid var(--border);
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 0.76rem;
    letter-spacing: 0.04em;
    padding: 0.9rem 0.8rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
  }
  .qe-choice:hover { border-color: rgba(200,162,115,0.35); color: var(--white); }
  .qe-choice.selected {
    border-color: var(--gold); color: var(--gold-lt);
    background: rgba(200,162,115,0.08);
  }

  /* Nav buttons */
  .qe-nav {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 2.2rem;
  }
  .qe-back {
    background: none; border: none; cursor: pointer;
    color: var(--muted);
    font-family: var(--font-body); font-size: 0.7rem;
    letter-spacing: 0.14em; text-transform: uppercase;
    display: flex; align-items: center; gap: 0.5rem;
    transition: color 0.3s;
    visibility: hidden;
  }
  .qe-back.visible { visibility: visible; }
  .qe-back:hover { color: var(--white); }

  .qe-next {
    display: inline-flex; align-items: center; gap: 0.7rem;
    background: var(--gold); color: var(--black);
    font-family: var(--font-body); font-size: 0.72rem;
    letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 500; border: none; cursor: pointer;
    padding: 0.9rem 1.8rem;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    margin-left: auto;
  }
  .qe-next:hover {
    background: var(--gold-lt); transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(200,162,115,0.22);
  }
  .qe-next:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

  /* Review step */
  .qe-review {
    display: flex; flex-direction: column; gap: 0.9rem;
    margin-bottom: 1.8rem;
  }
  .qe-review-row {
    display: flex; justify-content: space-between; align-items: baseline;
    gap: 1rem; padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--border);
  }
  .qe-review-label {
    font-size: 0.6rem; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--muted);
    flex-shrink: 0;
  }
  .qe-review-value {
    font-size: 0.85rem; color: var(--white);
    text-align: right; word-break: break-word;
  }

  .qe-send-btn {
    display: flex; align-items: center; justify-content: center; gap: 0.8rem;
    background: var(--gold); color: var(--black);
    font-family: var(--font-body); font-size: 0.74rem;
    letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 500; border: none; cursor: pointer;
    padding: 1.05rem 2rem; width: 100%;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  }
  .qe-send-btn:hover {
    background: var(--gold-lt); transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(200,162,115,0.25);
  }

  .qe-fallback {
    display: flex; align-items: center; justify-content: center;
    gap: 1.5rem; margin-top: 1.2rem;
    flex-wrap: wrap;
  }
  .qe-fallback-link {
    background: none; border: none; cursor: pointer;
    color: var(--muted); font-size: 0.7rem;
    letter-spacing: 0.06em; text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s;
    font-family: var(--font-body);
  }
  .qe-fallback-link:hover { color: var(--gold); }

  /* Success state */
  .qe-success {
    text-align: center; padding: 1rem 0;
  }
  .qe-success-icon {
    width: 48px; height: 48px; margin: 0 auto 1.4rem;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .qe-success-title {
    font-family: var(--font-display);
    font-size: 1.3rem; color: var(--white);
    margin-bottom: 0.7rem;
  }
  .qe-success-text {
    font-size: 0.82rem; color: var(--muted); line-height: 1.7;
  }

  .qe-or-call {
    display: flex; align-items: center; justify-content: center;
    gap: 1.6rem; margin-top: 2rem; flex-wrap: wrap;
  }
  .qe-or-call-link {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: var(--muted); text-decoration: none;
    font-size: 0.74rem; letter-spacing: 0.02em;
    transition: color 0.3s;
  }
  .qe-or-call-link:hover { color: var(--gold); }

  @media (max-width: 640px) {
    .qe-card { padding: 2.2rem 1.6rem; }
    .qe-choices { grid-template-columns: 1fr; }
  }

  /* ─── FOOTER ────────────────────────────────────────────────── */
  footer {
    background: var(--charcoal);
    border-top: 1px solid var(--border);
    padding: 5rem 4vw 2.5rem;
  }

  .footer-top {
    display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
    gap: 3rem; margin-bottom: 4rem;
  }

  .footer-logo-text {
    font-family: var(--font-display); font-size: 1.3rem;
    font-weight: 400; color: var(--white);
    letter-spacing: 0.04em; margin-bottom: 0.3rem; display: block;
  }
  .footer-logo-sub {
    font-size: 0.6rem; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--gold);
    font-weight: 500; display: block; margin-bottom: 1.5rem;
  }
  .footer-brand-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.8; max-width: 260px; }

  .footer-col-title {
    font-size: 0.62rem; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--gold);
    font-weight: 500; margin-bottom: 1.5rem;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
  .footer-links a { text-decoration: none; color: var(--muted); font-size: 0.82rem; transition: color 0.3s; }
  .footer-links a:hover { color: var(--white); }

  .footer-contact { display: flex; flex-direction: column; gap: 0.7rem; }
  .footer-contact-item { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.82rem; color: var(--muted); }
  .footer-contact-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 2rem; border-top: 1px solid var(--border);
    flex-wrap: wrap; gap: 1rem;
  }
  .footer-copy { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.06em; }
  .footer-legal-links { display: flex; align-items: center; gap: 0.6rem; font-size: 0.72rem; }
  .footer-legal-links a { color: var(--muted); text-decoration: none; transition: color 0.3s; }
  .footer-legal-links a:hover { color: var(--gold); }
  .footer-legal-sep { color: var(--muted); opacity: 0.4; }
  .footer-social { display: flex; gap: 1rem; }
  .social-link {
    width: 36px; height: 36px; border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; color: var(--muted);
    transition: border-color 0.3s, color 0.3s;
  }
  .social-link:hover { border-color: var(--gold); color: var(--gold); }
  .footer-area { font-size: 0.7rem; color: var(--muted); display: flex; align-items: center; gap: 0.5rem; }
  .area-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

  /* ─── REVEAL ANIMATIONS ─────────────────────────────────────── */
  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }

  /* ─── SUBPAGE COMPONENTS (service / location pages) ────────────── */
  .breadcrumbs {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.68rem; letter-spacing: 0.08em;
    color: var(--muted); margin-bottom: 2rem;
    flex-wrap: wrap;
  }
  .breadcrumbs a { color: var(--muted); text-decoration: none; transition: color 0.3s; }
  .breadcrumbs a:hover { color: var(--gold); }
  .breadcrumbs .crumb-current { color: var(--gold-lt); }
  .breadcrumbs .crumb-sep { color: rgba(246,241,234,0.25); }

  .page-hero { position: relative; padding-top: 11rem; padding-bottom: 5rem; overflow: hidden; }
  .page-hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(135deg, rgba(11,10,9,0.95) 0%, rgba(11,10,9,0.6) 50%, rgba(11,10,9,0.85) 100%),
      radial-gradient(ellipse 120% 80% at 70% 20%, rgba(200,162,115,0.1) 0%, transparent 60%);
    z-index: 0;
  }
  .page-hero-inner { position: relative; z-index: 1; max-width: 780px; }

  .two-col { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center; }

  .feature-list { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 2rem; }
  .feature-item { display: flex; align-items: flex-start; gap: 1rem; }
  .feature-item-icon {
    width: 22px; height: 22px; flex-shrink: 0; margin-top: 0.15rem;
    border: 1px solid rgba(200,162,115,0.4); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .feature-item-text { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
  .feature-item-text strong { color: var(--white); font-weight: 500; }

  .local-areas { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.5rem; }
  .local-area-tag {
    display: inline-block;
    border: 1px solid var(--border); padding: 0.5rem 1.1rem;
    font-size: 0.72rem; letter-spacing: 0.04em; color: var(--muted);
    text-decoration: none; transition: border-color 0.3s, color 0.3s, background 0.3s;
  }
  a.local-area-tag:hover { border-color: var(--gold); color: var(--white); }
  .local-area-tag--hub {
    border-color: rgba(200,162,115,0.4); color: var(--gold-lt);
    font-weight: 500;
  }
  a.local-area-tag--hub:hover { background: var(--gold); color: var(--black); }
  .areas-region { margin-bottom: 3rem; }
  .areas-region:last-child { margin-bottom: 0; }
  .areas-region h2 {
    font-family: var(--font-display); font-size: 1.3rem; font-weight: 400;
    color: var(--white); margin-bottom: 0.5rem;
  }
  .areas-region-sub {
    font-size: 0.84rem; color: var(--muted); line-height: 1.7;
    max-width: 640px; margin-bottom: 0;
  }

  .page-photo { position: relative; width: 100%; height: 460px; overflow: hidden; border: 1px solid var(--border); }
  .page-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

  .testimonial-solo { max-width: 640px; margin: 3rem auto 0; }

  /* ─── FAQ ────────────────────────────────────────────────────── */
  .faq-list { max-width: 720px; margin: 2.5rem auto 0; }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-item:first-child { border-top: 1px solid var(--border); }
  .faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem; padding: 1.5rem 0; background: none; border: none; cursor: pointer;
    text-align: left; font-family: var(--font-display); font-size: 1.08rem;
    font-weight: 400; color: var(--white);
  }
  .faq-question-icon {
    flex-shrink: 0; width: 28px; height: 28px; border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    transition: border-color 0.35s, background 0.35s;
  }
  .faq-question-icon svg { transition: transform 0.45s var(--ease-out-expo), stroke 0.3s; }
  .faq-item.open .faq-question-icon { border-color: var(--gold); background: var(--gold); }
  .faq-item.open .faq-question-icon svg { transform: rotate(45deg); stroke: var(--black); }
  .faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.5s var(--ease-out-expo);
  }
  .faq-item.open .faq-answer { max-height: 260px; }
  .faq-answer p {
    font-size: 0.88rem; color: var(--muted); line-height: 1.8;
    padding-bottom: 1.6rem; max-width: none;
  }

  /* ─── LEGAL PAGES ───────────────────────────────────────────── */
  .legal-content { max-width: 760px; margin: 0 auto; }
  .legal-updated { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.06em; display: block; margin-bottom: 2.5rem; }
  .legal-content h2 {
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 400;
    color: var(--white); margin: 2.5rem 0 1rem;
  }
  .legal-content h2:first-of-type { margin-top: 0; }
  .legal-content p { font-size: 0.88rem; color: var(--muted); line-height: 1.85; margin-bottom: 1rem; }
  .legal-content ul { margin: 0 0 1.2rem 1.2rem; padding-left: 1rem; }
  .legal-content li { font-size: 0.88rem; color: var(--muted); line-height: 1.85; margin-bottom: 0.5rem; }
  .legal-content a { color: var(--gold); }
  .legal-content strong { color: var(--white); font-weight: 500; }

  /* ─── COOKIE CONSENT BANNER ─────────────────────────────────── */
  .cookie-banner {
    position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 150;
    max-width: 640px; margin: 0 auto;
    background: var(--surface); border: 1px solid var(--border);
    padding: 1.4rem 1.6rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem; flex-wrap: wrap;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transform: translateY(140%);
    transition: transform 0.5s var(--ease-out-expo);
  }
  .cookie-banner.visible { transform: translateY(0); }
  .cookie-banner-text { font-size: 0.8rem; color: var(--muted); line-height: 1.6; flex: 1; min-width: 200px; }
  .cookie-banner-text a { color: var(--gold); }
  .cookie-banner-actions { display: flex; gap: 0.8rem; flex-shrink: 0; }
  .cookie-btn {
    font-family: var(--font-body); font-size: 0.72rem;
    letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
    padding: 0.7rem 1.3rem; cursor: pointer; border: 1px solid var(--border);
    background: transparent; color: var(--muted); transition: all 0.3s;
  }
  .cookie-btn-accept { background: var(--gold); color: var(--black); border-color: var(--gold); }
  .cookie-btn-accept:hover { background: var(--gold-lt); }
  .cookie-btn-reject:hover { border-color: var(--gold); color: var(--white); }
  @media (max-width: 640px) {
    .cookie-banner { flex-direction: column; align-items: stretch; }
    .cookie-banner-actions { justify-content: flex-end; }
  }

  /* ─── RESPONSIVE ────────────────────────────────────────────── */
  @media (max-width: 1100px) {
    .gallery-card:nth-child(1) { grid-column: 1 / 13; grid-row: 1; }
    .gallery-card:nth-child(2) { grid-column: 1 / 13; grid-row: 2; }
    .gallery-card:nth-child(3) { grid-column: 1 / 7;  grid-row: 3; }
    .gallery-card:nth-child(4) { grid-column: 7 / 13; grid-row: 3; }
    .gallery-card:nth-child(5) { grid-column: 1 / 13; grid-row: 4; }

    .process-inner { grid-template-columns: 1fr; gap: 3rem; }
    .process-visual { height: 320px; }
    .services-header { grid-template-columns: 1fr; gap: 1.5rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-inner { grid-template-columns: 1fr; gap: 4rem; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .two-col { grid-template-columns: 1fr; gap: 3rem; }
    .page-photo { height: 360px; }

    .work-header { grid-template-columns: 1fr; gap: 1.5rem; }
    .work-masonry { grid-template-columns: repeat(2, 1fr); }
    .work-item:nth-child(1),.work-item:nth-child(2),.work-item:nth-child(3),
    .work-item:nth-child(4),.work-item:nth-child(5),.work-item:nth-child(6),
    .work-item:nth-child(7),.work-item:nth-child(8),.work-item:nth-child(9) { grid-column: unset; grid-row: unset; }
  }

  @media (max-width: 768px) {
    section { padding: 5rem 5vw; }
    nav { padding: 1.2rem 5vw; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: flex; }
    .gallery-grid { display: flex; flex-direction: column; }
    .gallery-card { width: 100%; }
    .gallery-card .gallery-visual { height: 260px !important; }
    .services-grid { grid-template-columns: 1fr; }
    .why-features { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .work-masonry { grid-template-columns: 1fr; }
    .work-item:nth-child(1),.work-item:nth-child(2),.work-item:nth-child(3),
    .work-item:nth-child(4),.work-item:nth-child(5),.work-item:nth-child(6),
    .work-item:nth-child(7),.work-item:nth-child(8),.work-item:nth-child(9) { grid-column: unset; grid-row: unset; }
    .work-footer { flex-direction: column; align-items: flex-start; }
    .page-hero { padding-top: 8rem; }
    .page-photo { height: 280px; }
  }
