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

    :root {
      --black: #000000;
      --black-soft: #0c0c0c;
      --white: #ffffff;
      --off-white: #f5f5f5;
      --light-grey: #e8e8e8;
      --mid-grey: #888888;
      --text-dark: #111111;
      --accent: #c04820;
      --font-display: 'Raleway', sans-serif;
      --font-body: 'Inter', sans-serif;
      /* Legacy aliases */
      --navy: #000000;
      --navy-mid: #0c0c0c;
      --terracotta: #c04820;
      --terracotta-light: #d85530;
    }

    html { scroll-behavior: smooth; }

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

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      height: 72px;
      background: rgba(8, 8, 8, 0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
    }

    .nav-logo-name {
      display: flex;
      align-items: center;
    }

    .nav-logo-name .nav-logo-mark {
      height: 28px;
      width: auto;
      margin-right: 9px;
      position: relative;
      top: -2px;
      flex-shrink: 0;
    }

    .nav-logo-text {
      display: flex;
      flex-direction: column;
      gap: 1px;
    }

    .nav-logo-name {
      font-family: var(--font-display);
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.3em;
      color: var(--white);
      text-transform: uppercase;
      line-height: 1;
    }

    .nav-logo-sub {
      font-family: var(--font-display);
      font-size: 0.55rem;
      font-weight: 400;
      letter-spacing: 0.28em;
      color: rgba(255,255,255,0.45);
      text-transform: uppercase;
      line-height: 1;
      display: flex;
      align-items: center;
      gap: 0.5em;
      margin-top: 3px;
    }

    .nav-logo-sub::before,
    .nav-logo-sub::after {
      content: "";
      height: 1px;
      flex: 1;
      background: rgba(255,255,255,0.3);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--white); }

    .nav-lang {
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 4px;
      padding: 0.3rem 0.6rem;
      color: var(--white) !important;
    }
    .nav-lang:hover { border-color: var(--terracotta); }

    .nav-cta {
      background: var(--terracotta);
      color: var(--white) !important;
      padding: 0.5rem 1.2rem;
      border-radius: 3px;
      font-weight: 600 !important;
      transition: background 0.2s !important;
    }

    .nav-cta:hover { background: var(--terracotta-light) !important; }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      transition: 0.3s;
    }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      background:
        linear-gradient(to bottom, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.90) 100%),
        url('photos/img_2827.jpg') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 5% 80px;
    }

    .hero-inner { max-width: 860px; }

    .hero-badge {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      border: 1px solid rgba(255,255,255,0.2);
      padding: 0.35rem 1.2rem;
      margin-bottom: 1.8rem;
    }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 6.5vw, 5.5rem);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 1.4rem;
    }

    .hero h1 em {
      font-style: normal;
      color: rgba(255,255,255,0.6);
    }

    .hero-sub {
      font-size: 1.1rem;
      font-weight: 300;
      color: rgba(255,255,255,0.78);
      max-width: 580px;
      margin: 0 auto 2.5rem;
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--terracotta);
      color: var(--white);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.04em;
      padding: 0.85rem 2rem;
      border-radius: 3px;
      transition: background 0.2s, transform 0.15s;
    }

    .btn-primary:hover {
      background: var(--terracotta-light);
      transform: translateY(-1px);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: transparent;
      color: var(--white);
      text-decoration: none;
      font-weight: 500;
      font-size: 0.9rem;
      letter-spacing: 0.04em;
      padding: 0.85rem 2rem;
      border-radius: 3px;
      border: 1px solid rgba(255,255,255,0.35);
      transition: border-color 0.2s, background 0.2s;
    }

    .btn-ghost:hover {
      border-color: rgba(255,255,255,0.7);
      background: rgba(255,255,255,0.06);
    }

    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 3rem;
      margin-top: 4rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.12);
      flex-wrap: wrap;
    }

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

    .stat-num {
      font-family: var(--font-display);
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--white);
      line-height: 1;
    }

    .stat-num span { color: rgba(255,255,255,0.5); }

    .stat-label {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-top: 0.3rem;
    }

    /* ─── SECTIONS ─── */
    section { padding: 90px 5%; }

    .section-label {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--mid-grey);
      margin-bottom: 0.8rem;
    }

    /* On dark backgrounds, section labels are white/subdued */
    #services .section-label,
    #why .section-label,
    #reviews .section-label,
    #contact .section-label { color: rgba(255,255,255,0.35); }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(1.9rem, 3.5vw, 2.8rem);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      line-height: 1.1;
      color: var(--navy);
      margin-bottom: 1.2rem;
    }

    .section-title.light { color: var(--white); }

    .section-intro {
      font-size: 1.05rem;
      color: #5a5550;
      max-width: 600px;
      line-height: 1.75;
    }

    /* ─── SERVICES ─── */
    #services { background: var(--black); border-top: 1px solid rgba(255,255,255,0.1); }

    .services-header {
      max-width: 1200px;
      margin: 0 auto 3.5rem;
    }

    .services-header .section-intro { color: rgba(255,255,255,0.55); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .service-card {
      background: #0d0d0d;
      padding: 3rem 2.5rem;
      position: relative;
      overflow: hidden;
      transition: background 0.3s;
      border: 1px solid rgba(255,255,255,0.06);
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--white);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s;
    }

    .service-card:hover { background: #161616; }
    .service-card:hover::before { transform: scaleX(1); }

    .service-num {
      font-family: var(--font-display);
      font-size: 4rem;
      font-weight: 800;
      color: rgba(255,255,255,0.06);
      line-height: 1;
      margin-bottom: 1.5rem;
    }

    .service-card h3 {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--white);
      margin-bottom: 0.5rem;
    }

    .service-price {
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.38);
      margin-bottom: 1.2rem;
    }

    .service-card p {
      font-size: 0.92rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.75;
      margin-bottom: 1.5rem;
    }

    .service-link {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      transition: gap 0.2s, color 0.2s;
    }

    .service-link:hover { color: rgba(255,255,255,0.9); }

    .service-link:hover { gap: 0.7rem; }

    /* ─── WHAT WE FIND ─── */
    #what-we-find { background: #ffffff; }

    .what-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .defects-list {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 2rem;
    }

    .defects-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      font-size: 0.9rem;
      color: #4a4540;
      font-weight: 500;
    }

    .defects-list li::before {
      content: '—';
      color: #999;
      font-weight: 400;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .quote-block {
      background: var(--navy);
      padding: 3rem;
      border-radius: 4px;
      position: relative;
    }

    .quote-block::before {
      content: '"';
      position: absolute;
      top: -0.5rem;
      left: 2rem;
      font-family: var(--font-display);
      font-size: 8rem;
      font-weight: 800;
      color: rgba(255,255,255,0.08);
      line-height: 1;
    }

    .quote-block blockquote {
      font-size: 1.25rem;
      font-weight: 300;
      color: var(--white);
      line-height: 1.65;
      margin-bottom: 1.5rem;
    }

    .quote-attribution {
      font-size: 0.75rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      font-weight: 500;
    }

    .cost-callout {
      margin-top: 2rem;
      padding: 1.5rem 2rem;
      background: #f0f0f0;
      border-left: 3px solid #000;
    }

    .cost-callout p {
      font-size: 0.9rem;
      color: #333;
      line-height: 1.7;
    }

    .cost-callout strong { color: #000; }

    /* ─── WHY ANTIPODEAN ─── */
    #why { background: #000000; }

    .why-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 5rem;
      align-items: start;
    }

    .why-points {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .why-point {
      display: flex;
      align-items: flex-start;
      gap: 1.2rem;
      padding: 1.6rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .why-point:last-child { border-bottom: none; }

    .why-icon {
      width: 36px;
      height: 36px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .why-icon svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.7); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

    .why-point-text h4 {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 0.2rem;
    }

    .why-point-text p {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.45);
      line-height: 1.6;
    }

    .languages-block {
      margin-top: 2rem;
      padding: 1.5rem;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 4px;
    }

    .languages-block p {
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      margin-bottom: 0.75rem;
    }

    .lang-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
    }

    .lang-chip {
      font-size: 0.78rem;
      font-weight: 600;
      padding: 0.3rem 0.75rem;
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 2px;
      color: rgba(255,255,255,0.6);
    }

    /* ─── ABOUT ─── */
    #about { background: #f4f4f4; }

    .about-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 5rem;
      align-items: center;
    }

    .about-img-wrap {
      position: relative;
    }

    .about-img-wrap::after {
      content: '25\AYEARS';
      white-space: pre;
      position: absolute;
      bottom: -1rem;
      right: -1rem;
      background: #000000;
      color: var(--white);
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      padding: 1rem 1.2rem;
      line-height: 1.2;
      text-align: center;
    }

    .about-photo {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      display: block;
      background: #c8c0b8;
      border-radius: 2px;
    }

    .about-placeholder {
      width: 100%;
      aspect-ratio: 4/5;
      background: linear-gradient(135deg, #c8c0b8, #a89880);
      border-radius: 2px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      color: rgba(255,255,255,0.6);
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .about-content h2 { margin-bottom: 1.4rem; }

    .about-content > p {
      font-size: 1rem;
      color: #4a4540;
      line-height: 1.8;
      margin-bottom: 1.4rem;
    }

    .about-names {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
      margin-top: 2rem;
    }

    .name-card {
      flex: 1;
      min-width: 160px;
      padding: 1.2rem 1.4rem;
      background: white;
      border-radius: 3px;
      border-left: 3px solid #000000;
    }

    .name-card strong {
      display: block;
      font-size: 0.95rem;
      color: var(--navy);
      margin-bottom: 0.2rem;
    }

    .name-card span {
      font-size: 0.78rem;
      color: var(--mid-grey);
      font-weight: 500;
    }

    /* ─── REVIEWS ─── */
    #reviews { background: #000000; }

    .reviews-header {
      max-width: 1200px;
      margin: 0 auto 3rem;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1px;
      max-width: 1200px;
      margin: 0 auto;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.08);
    }

    .review-card {
      background: #0a0a0a;
      padding: 2.5rem 2rem;
      position: relative;
    }

    .stars {
      display: flex;
      gap: 2px;
      margin-bottom: 1.2rem;
    }

    .stars span {
      color: rgba(255,255,255,0.9);
      font-size: 0.85rem;
    }

    .review-card p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.8;
      font-style: italic;
      margin-bottom: 1.4rem;
    }

    .reviewer {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--white);
      letter-spacing: 0.04em;
    }

    .reviewer-source {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.3);
      font-weight: 400;
      margin-top: 0.2rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    /* ─── CONTACT ─── */
    #contact { background: var(--navy); }

    .contact-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 5rem;
      align-items: start;
    }

    .contact-info .section-intro { color: rgba(255,255,255,0.5); margin-bottom: 2.5rem; }

    .contact-methods { display: flex; flex-direction: column; gap: 1.2rem; }

    .contact-method {
      display: flex;
      align-items: center;
      gap: 1rem;
      text-decoration: none;
      padding: 1rem 1.2rem;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 3px;
      transition: background 0.2s, border-color 0.2s;
    }

    .contact-method:hover {
      background: rgba(255,255,255,0.09);
      border-color: rgba(200,81,42,0.4);
    }

    .method-icon {
      width: 38px;
      height: 38px;
      background: rgba(200,81,42,0.15);
      border-radius: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .method-icon svg { width: 18px; height: 18px; stroke: rgba(255,255,255,0.7); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

    .method-text strong {
      display: block;
      font-size: 0.88rem;
      color: var(--white);
      font-weight: 600;
    }

    .method-text span {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.4);
    }

    .social-row {
      display: flex;
      gap: 0.8rem;
      margin-top: 2rem;
    }

    .social-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.6rem 1rem;
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 3px;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-size: 0.8rem;
      font-weight: 500;
      transition: border-color 0.2s, color 0.2s;
    }

    .social-btn:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }

    /* Contact form */
    .contact-form {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 4px;
      padding: 2.5rem;
    }

    .contact-form h3 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--white);
      margin-bottom: 1.8rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      margin-bottom: 1rem;
    }

    .form-group label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 3px;
      padding: 0.75rem 1rem;
      color: var(--white);
      font-family: var(--font-body);
      font-size: 0.9rem;
      outline: none;
      transition: border-color 0.2s;
      width: 100%;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder { color: rgba(255,255,255,0.2); }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus { border-color: rgba(200,81,42,0.6); }

    .form-group textarea { resize: vertical; min-height: 120px; }

    .form-group select option { background: var(--navy-mid); }

    .form-submit {
      width: 100%;
      padding: 0.9rem;
      background: var(--terracotta);
      color: var(--white);
      border: none;
      border-radius: 3px;
      font-family: var(--font-body);
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s;
      margin-top: 0.5rem;
    }

    .form-submit:hover { background: var(--terracotta-light); }

    /* ─── FOOTER ─── */
    footer {
      background: #030303;
      padding: 2rem 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .footer-logo-name {
      font-family: var(--font-display);
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--white);
    }

    .footer-logo-sub {
      font-family: var(--font-display);
      font-size: 0.5rem;
      font-weight: 400;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      display: block;
      margin-top: 2px;
    }

    .footer-copy {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.25);
    }

    .footer-links {
      display: flex;
      gap: 1.5rem;
    }

    .footer-links a {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.3);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: rgba(255,255,255,0.7); }

    /* ─── MOBILE NAV ─── */
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }

      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 72px; left: 0; right: 0;
        height: calc(100vh - 72px);
        height: calc(100dvh - 72px);
        overflow-y: auto;
        background: #050505;
        padding: 2.5rem 7%;
        gap: 2rem;
        align-items: flex-start;
        justify-content: flex-start;
        border-top: 1px solid rgba(255,255,255,0.1);
        z-index: 1000;
      }

      .nav-links.open a {
        font-size: 1.1rem;
        color: #ffffff !important;
        letter-spacing: 0.1em;
      }

      #navbar { z-index: 1001; }
      .hamburger { z-index: 1002; position: relative; }

      .nav-links.open .nav-cta {
        margin-top: 0.5rem;
        padding: 0.8rem 1.6rem;
      }

      .hero h1 { font-size: 3rem; }
      .hero-stats { gap: 2rem; }

      .what-grid,
      .about-inner,
      .why-inner,
      .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }

      .defects-list { grid-template-columns: 1fr; }

      .about-img-wrap::after { font-size: 1.2rem; padding: 0.8rem 1rem; }

      .form-row { grid-template-columns: 1fr; }

      section { padding: 60px 5%; }

      footer { flex-direction: column; align-items: flex-start; }
    }

    @media (max-width: 480px) {
      .hero-actions { flex-direction: column; align-items: center; }
      .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
    }

/* ─── SUBPAGE HERO ─── */
.page-hero { background: var(--black); padding: 150px 5% 70px; }
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.page-hero .section-label { color: rgba(255,255,255,0.35); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; line-height: 1.12; color: var(--white); margin-bottom: 1.2rem; }
.page-hero p { color: rgba(255,255,255,0.6); max-width: 660px; font-size: 1.05rem; line-height: 1.75; }

/* ─── PHOTOS / GALLERY ─── */
#photos { background: #ffffff; }
.photos-header { max-width: 1200px; margin: 0 auto 2.5rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; max-width: 1200px; margin: 0 auto; }
.gallery-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 3px; display: block; background: #e8e8e8; }

/* ─── BLOG ─── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
.blog-card { background: #fff; border-radius: 4px; padding: 2.2rem; border-top: 3px solid #000; display: flex; flex-direction: column; }
.blog-date { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid-grey); margin-bottom: 0.8rem; }
.blog-card h2 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.4; margin-bottom: 0.8rem; }
.blog-card h2 a { color: var(--text-dark); text-decoration: none; }
.blog-card p { font-size: 0.92rem; color: #5a5550; line-height: 1.7; margin-bottom: 1.2rem; }
.read-more { margin-top: auto; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #000; text-decoration: none; }

/* ─── ARTICLE ─── */
.article { background: #fff; }
.article-wrap { max-width: 760px; margin: 0 auto; }
.article-meta { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid-grey); margin-bottom: 2rem; }
.article-wrap h2 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin: 2.4rem 0 0.9rem; color: var(--text-dark); }
.article-wrap p { font-size: 1rem; color: #3d3833; line-height: 1.85; margin-bottom: 1.2rem; }
.article-wrap ul { margin: 0 0 1.2rem 1.4rem; color: #3d3833; line-height: 1.85; }
.article-wrap a { color: #000; }
.article-cta { margin-top: 3rem; padding: 2.2rem; background: var(--black); border-radius: 4px; }
.article-cta h3 { font-family: var(--font-display); color: #fff; text-transform: uppercase; letter-spacing: 0.1em; font-size: 1.05rem; margin-bottom: 0.8rem; }
.article-cta p { color: rgba(255,255,255,0.7); margin-bottom: 1.4rem; font-size: 0.95rem; }

/* ─── DARK SECTION UTILITY ─── */
.section-dark { background: var(--black); }
.section-dark .section-label { color: rgba(255,255,255,0.35); }
.section-dark .section-intro { color: rgba(255,255,255,0.55); }

/* ─── INLINE LOGO (footer) ─── */
.footer-logo-name { display: flex; align-items: center; }
.footer-logo-mark { height: 17px; width: auto; margin-right: 6px; position: relative; top: -1px; }
.footer-logo-sub { display: flex !important; align-items: center; gap: 0.5em; }
.footer-logo-sub::before, .footer-logo-sub::after { content: ""; height: 1px; flex: 1; background: rgba(255,255,255,0.25); }

/* ─── ABOUT TEAM PHOTOS ─── */
.about-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.about-photos .about-photo { aspect-ratio: 3/4; }

/* ─── WHERE WE WORK (coverage) ─── */
.coverage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px; max-width: 1200px; margin: 2.5rem auto 0; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08); }
.coverage-item { background: #0a0a0a; padding: 1.4rem 1.5rem; }
.coverage-item strong { display: block; font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); margin-bottom: 0.3rem; }
.coverage-item span { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.5; }

/* ─── FAQ ─── */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.1); padding: 1.6rem 0; }
.faq-item h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-dark); margin-bottom: 0.7rem; }
.faq-item p { font-size: 0.98rem; color: #3d3833; line-height: 1.8; }
.section-dark .faq-item { border-bottom-color: rgba(255,255,255,0.1); }
.section-dark .faq-item h3 { color: var(--white); }
.section-dark .faq-item p { color: rgba(255,255,255,0.6); }

/* ─── ARTICLE IMAGES / CASE STUDIES ─── */
.article-figure { margin: 1.8rem 0 2rem; }
.article-figure img { width: 100%; border-radius: 4px; display: block; background: #e8e8e8; }
.article-figure figcaption { font-size: 0.8rem; color: var(--mid-grey); margin-top: 0.6rem; letter-spacing: 0.02em; }
.article-lead { font-size: 1.08rem; color: #2c2925; line-height: 1.85; margin-bottom: 1.4rem; font-weight: 500; }
.case-tag { display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 1rem; }
.case-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px; background: rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.08); border-radius: 4px; overflow: hidden; margin: 2rem 0; }
.case-fact { background: #fff; padding: 1.2rem 1.3rem; }
.case-fact strong { display: block; font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.2rem; }
.case-fact span { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid-grey); }
