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

    :root {
      --black:      #111318;
      --black-mid:  #1A1D24;
      --black-card: #1E2128;
      --red:        #E8322A;
      --gold:       #C9A84C;
      --gold-light: #E2C06A;
      --gold-dim:   #B8963E;
      --white:      #FFFFFF;
      --white-dim:  #C0C4CC;
      --border:     rgba(255,255,255,0.07);
      --border-gold:rgba(201,168,76,0.2);
    }

    html { scroll-behavior: smooth; }

    body {
      background:
        radial-gradient(ellipse 900px 600px at 15% 0%, rgba(201,168,76,0.05), transparent 60%),
        radial-gradient(ellipse 800px 700px at 100% 40%, rgba(201,168,76,0.04), transparent 55%),
        radial-gradient(ellipse 1000px 800px at 0% 100%, rgba(255,255,255,0.025), transparent 60%),
        var(--black);
      color: var(--white);
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 1rem;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* ── NAV ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(17,19,24,0.97);
      border-bottom: 1px solid var(--border);
      padding: 0.6rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      backdrop-filter: blur(8px);
    }

    .nav-logo img { height: 56px; width: auto; display: block; }

    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 101;
      position: relative;
    }
    .nav-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--gold);
      transition: transform 0.25s ease, opacity 0.2s ease;
    }
    .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav-toggle:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

    .nav-links { display: flex; gap: 1.8rem; list-style: none; }
    .nav-links a {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--white-dim);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a[aria-current="page"] { color: var(--gold); }
    .nav-links a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

    .nav-scrim {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.6);
      z-index: 99;
      opacity: 0;
      transition: opacity 0.25s ease;
    }
    .nav-scrim.open { display: block; opacity: 1; }

    /* ── Quote form (Contact page) ── */
    .quote-form { max-width: 560px; margin-top: 1rem; }
    .quote-field { margin-bottom: 1.4rem; }
    .quote-field label {
      display: block;
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--white-dim);
      margin-bottom: 0.5rem;
    }
    .quote-field input,
    .quote-field textarea {
      width: 100%;
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      color: var(--white);
      background: var(--black-card);
      border: 1px solid var(--border);
      padding: 0.7rem 0.9rem;
      border-radius: 2px;
    }
    .quote-field input:focus, .quote-field textarea:focus {
      outline: none;
      border-color: var(--border-gold);
    }
    .quote-field textarea { resize: vertical; min-height: 110px; }
    .quote-note { font-size: 0.82rem; color: var(--white-dim); margin-top: 1rem; }

    /* ── About page ── */
    .about-photo-row { display: flex; gap: 2rem; align-items: flex-start; flex-wrap: wrap; margin-bottom: 2rem; }
    .about-photo {
      width: 160px; height: 160px; border-radius: 4px; flex-shrink: 0;
      background: var(--black-card); border: 1px solid var(--border-gold);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; color: var(--gold);
    }
    .about-values { display: grid; gap: 1.2rem; margin-top: 2rem; }
    .about-value { border-left: 2px solid var(--gold); padding-left: 1.2rem; }
    .about-value strong { color: var(--white); display: block; margin-bottom: 0.3rem; }
    .about-value p { color: var(--white-dim); font-size: 0.92rem; margin: 0; }

    /* ── Page-teaser links (Home page closing section) ── */
    .page-teasers {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1rem;
      margin-top: 2rem;
    }
    .page-teaser {
      display: block;
      position: relative;
      background: linear-gradient(155deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01));
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 1.5rem 1.5rem 1.6rem;
      text-decoration: none;
      transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s, background 0.25s;
    }
    .page-teaser:hover {
      border-color: var(--border-gold);
      background: linear-gradient(155deg, rgba(201,168,76,0.08), rgba(255,255,255,0.015));
      transform: translateY(-3px);
      box-shadow: 0 12px 28px rgba(0,0,0,0.35);
    }
    .page-teaser .pt-label {
      font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 0.7rem; display: flex; align-items: center; gap: 0.5rem;
    }
    .page-teaser .pt-label::before {
      content: '';
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--gold);
      display: inline-block;
      box-shadow: 0 0 8px rgba(201,168,76,0.6);
    }
    .page-teaser strong { color: var(--white); font-size: 1rem; }
    .page-teaser p { color: var(--white-dim); font-size: 0.85rem; margin-top: 0.4rem; margin-bottom: 0; }

    /* ── HERO ── */
    .hero {
      position: relative;
      overflow: hidden;
      min-height: 92vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 6rem 1.5rem 4rem;
      max-width: 1000px;
      margin: 0 auto;
    }

    .hero-slideshow {
      position: absolute;
      inset: 0;
      z-index: 1;
      overflow: hidden;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center center;
      opacity: 0;
      animation: heroFade 54s infinite;
    }
    .hero-slide:nth-child(1) { animation-delay: 0s; }
    .hero-slide:nth-child(2) { animation-delay: 6s; }
    .hero-slide:nth-child(3) { animation-delay: 12s; }
    .hero-slide:nth-child(4) { animation-delay: 18s; }
    .hero-slide:nth-child(5) { animation-delay: 24s; }
    .hero-slide:nth-child(6) { animation-delay: 30s; }
    .hero-slide:nth-child(7) { animation-delay: 36s; }
    .hero-slide:nth-child(8) { animation-delay: 42s; }
    .hero-slide:nth-child(9) { animation-delay: 48s; }

    @keyframes heroFade {
      0%   { opacity: 0; }
      2%   { opacity: 1; }
      9%   { opacity: 1; }
      11%  { opacity: 0; }
      100% { opacity: 0; }
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 2;
      background: linear-gradient(180deg, rgba(17,19,24,0.72) 0%, rgba(17,19,24,0.50) 42%, rgba(17,19,24,0.80) 100%);
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-slide { animation: none; opacity: 0; }
      .hero-slide:first-child { opacity: 1; }
    }

    .hero-content {
      position: relative;
      z-index: 3;
    }

    .hero-eyebrow {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.6rem;
      display: flex;
      align-items: center;
      gap: 0.7rem;
    }
    .hero-eyebrow::before {
      content: '';
      display: inline-block;
      width: 28px; height: 1px;
      background: var(--gold);
    }

    .hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.8rem, 10vw, 6.5rem);
      line-height: 0.92;
      letter-spacing: 0.02em;
      color: var(--white);
      margin-bottom: 0;
      text-shadow: 0 2px 24px rgba(0,0,0,0.55);
    }
    .hero h1 em { font-style: normal; color: var(--gold); }

    .hero-rule {
      width: clamp(60px, 12vw, 140px);
      height: 3px;
      background: var(--gold);
      margin: 1.4rem 0 2rem;
    }

    .hero-sub {
      font-size: clamp(1rem, 2.2vw, 1.2rem);
      font-weight: 300;
      color: var(--white-dim);
      max-width: 560px;
      margin-bottom: 2.8rem;
      line-height: 1.85;
      text-shadow: 0 1px 16px rgba(0,0,0,0.6);
    }
    .hero-sub strong { color: var(--white); font-weight: 500; }

    .hero-sub-logos {
      position: absolute;
      right: clamp(24px, 6vw, 90px);
      bottom: clamp(60px, 12vh, 140px);
      z-index: 3;
      width: clamp(220px, 26vw, 420px);
      height: clamp(220px, 26vw, 420px);
      pointer-events: none;
    }
    .hero-sub-logo-item {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: flex-end;
      gap: 0.6rem;
      opacity: 0;
      animation: heroFade 54s infinite;
    }
    .hero-sub-logo-item img {
      max-width: 100%;
      max-height: 82%;
      width: auto;
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 4px 18px rgba(0,0,0,0.75));
    }
    .hero-sub-caption {
      font-family: var(--font-mono, monospace);
      font-size: 0.7rem;
      letter-spacing: 0.03em;
      color: var(--gold);
      text-align: right;
      text-shadow: 0 1px 8px rgba(0,0,0,0.8);
      max-width: 220px;
      line-height: 1.4;
    }
    .hero-sub-logo-item:nth-child(1) { animation-delay: 0s; }
    .hero-sub-logo-item:nth-child(2) { animation-delay: 6s; }
    .hero-sub-logo-item:nth-child(3) { animation-delay: 12s; }
    .hero-sub-logo-item:nth-child(4) { animation-delay: 18s; }
    .hero-sub-logo-item:nth-child(5) { animation-delay: 24s; }
    .hero-sub-logo-item:nth-child(6) { animation-delay: 30s; }
    .hero-sub-logo-item:nth-child(7) { animation-delay: 36s; }
    .hero-sub-logo-item:nth-child(8) { animation-delay: 42s; }
    .hero-sub-logo-item:nth-child(9) { animation-delay: 48s; }

    @media (prefers-reduced-motion: reduce) {
      .hero-sub-logo-item { animation: none; opacity: 0; }
      .hero-sub-logo-item:first-child { opacity: 1; }
    }

    @media (max-width: 780px) {
      .hero {
        justify-content: flex-start;
        overflow: visible;
        min-height: 0;
        padding-top: 3rem;
      }
      .hero-content { order: 1; }
      .hero-sub-logos {
        order: 2;
        position: relative;
        right: auto;
        bottom: auto;
        margin: 1.5rem 0 0 auto;
        width: clamp(110px, 30vw, 160px);
        height: clamp(110px, 30vw, 160px);
      }
      .hero-sub-caption { font-size: 0.58rem; max-width: 140px; }
      .hero-ctas { order: 3; margin-top: 1.5rem; }
    }

    .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; position: relative; z-index: 3; }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--gold);
      color: var(--black);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 0.9rem 2rem;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      border: 1px solid var(--border-gold);
      color: var(--white-dim);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 0.9rem 1.8rem;
      transition: border-color 0.2s, color 0.2s;
    }
    .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

    /* ── SECTION BASE ── */
    .section-wrap {
      max-width: 1000px;
      margin: 0 auto;
      padding: 5.5rem 1.5rem;
      position: relative;
    }

    .section-label {
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.8rem;
      display: flex;
      align-items: center;
      gap: 0.7rem;
    }
    .section-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border-gold);
      max-width: 60px;
    }

    h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 5.5vw, 3.6rem);
      letter-spacing: 0.04em;
      line-height: 1.0;
      color: var(--white);
      margin-bottom: 1rem;
    }
    h2 em { font-style: normal; color: var(--gold); }

    .section-intro {
      font-size: 0.97rem;
      font-weight: 300;
      color: var(--white-dim);
      max-width: 580px;
      margin-bottom: 2.8rem;
      line-height: 1.85;
    }

    /* ── PROBLEMS SECTION ── */
    #problems {
      background: var(--black-mid);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .problems-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1px;
      background: var(--border-gold);
      border: 1px solid var(--border-gold);
      margin-bottom: 3rem;
    }

    .problem-card {
      background: var(--black-card);
      padding: 1.8rem;
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
    }

    .problem-icon { display: inline-block; width: 2rem; height: 2rem; color: var(--gold); }
    .problem-icon svg { width: 100%; height: 100%; }

    .problem-card h3 {
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--white);
      line-height: 1.3;
    }

    .problem-card p {
      font-size: 0.84rem;
      font-weight: 300;
      color: var(--white-dim);
      line-height: 1.7;
    }

    .problem-card .solution {
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-top: 0.3rem;
      padding-top: 0.8rem;
      border-top: 1px solid var(--border-gold);
    }

    /* ── HOW WE WORK ── */
    #how {
      background: var(--black);
      border-bottom: 1px solid var(--border);
    }

    .steps-list {
      display: flex;
      flex-direction: column;
      border: 1px solid var(--border-gold);
    }

    .step-row {
      display: flex;
      align-items: flex-start;
      gap: 1.4rem;
      padding: 1.5rem 1.6rem;
      border-bottom: 1px solid var(--border-gold);
    }
    .step-row:last-child { border-bottom: none; }

    .step-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      color: var(--gold);
      opacity: 0.4;
      line-height: 1;
      min-width: 2.5rem;
      padding-top: 0.1rem;
    }

    .step-content strong {
      display: block;
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 0.3rem;
    }

    .step-content p {
      font-size: 0.87rem;
      font-weight: 300;
      color: var(--white-dim);
      line-height: 1.7;
    }

    /* ── SYSTEMS SEVEN ── */
    #systems-seven {
      background: var(--black-mid);
      border-top: 1px solid var(--border-gold);
      border-bottom: 1px solid var(--border-gold);
    }

    .ss-description {
      font-size: 0.97rem;
      font-weight: 300;
      color: var(--white-dim);
      max-width: 720px;
      margin-bottom: 2rem;
      line-height: 1.9;
    }
    .ss-description strong { color: var(--white); font-weight: 500; }

    .ss-feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1px;
      background: var(--border-gold);
      border: 1px solid var(--border-gold);
      margin-bottom: 2.5rem;
    }

    .ss-feature {
      background: var(--black-card);
      padding: 1.2rem 1.4rem;
    }

    .ss-feature-name {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 0.3rem;
    }

    .ss-feature-desc {
      font-size: 0.78rem;
      font-weight: 300;
      color: var(--white-dim);
      line-height: 1.6;
    }

    .ss-tech-row {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      margin-bottom: 2.5rem;
    }

    .ss-tech-badge {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.32rem 0.8rem;
      border: 1px solid var(--border-gold);
      color: var(--gold);
      background: rgba(201,168,76,0.05);
    }

    .ss-previews {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
    }

    .ss-hero-shot {
      margin: 2rem 0 2.5rem;
      background: var(--black-card);
      border: 1px solid var(--border-gold);
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(0,0,0,0.45);
      position: relative;
    }
    .ss-hero-shot::before {
      content: '';
      display: block;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    .ss-hero-shot img {
      display: block;
      width: 100%;
      height: auto;
    }

    .ss-preview-card {
      background: var(--black-card);
      border: 1px solid var(--border-gold);
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,0.4);
      position: relative;
    }

    .ss-preview-card::before {
      content: '';
      display: block;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .ss-preview-card .img-mat {
      background: transparent;
      padding: 0;
    }

    .ss-preview-card .img-mat img {
      display: block;
      width: 100%;
      border: none;
    }

    .ss-preview-label {
      padding: 0.9rem 1.2rem;
      border-top: 1px solid var(--border-gold);
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(201,168,76,0.04);
    }

    .ss-preview-label::before {
      content: '';
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
    }

    .ss-brand-img { width: 100%; display: block; }


    /* ── LOGO SHOWCASE ── */
    #logos {
      background: var(--black);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 1px;
      background: var(--border-gold);
      border: 1px solid var(--border-gold);
      margin-bottom: 2rem;
    }

    .logo-cell {
      background: var(--black-card);
      padding: 1.8rem 1.2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.9rem;
      transition: background 0.2s;
    }

    .logo-cell:hover { background: #252830; }

    .logo-cell img {
      width: 100%;
      max-width: 120px;
      height: 120px;
      object-fit: contain;
      display: block;
    }

    .logo-cell-name {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--white-dim);
      text-align: center;
      line-height: 1.4;
    }

    .logo-cell-type {
      font-size: 0.65rem;
      color: var(--gold);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-align: center;
    }

    /* ── PROJECTS ── */
    #work {
      background: var(--black);
      border-bottom: 1px solid var(--border);
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
    }

    .project-card {
      background: var(--black-card);
      padding: 1.8rem;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      transition: background 0.2s;
      text-decoration: none;
      color: inherit;
    }
    .project-card:hover { background: #252830; }
    .project-card:hover .project-arrow { color: var(--gold); transform: translateX(3px); }

    .project-tag {
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .project-card h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.4rem;
      letter-spacing: 0.06em;
      color: var(--white);
      line-height: 1.1;
    }

    .project-card p {
      font-size: 0.85rem;
      font-weight: 300;
      color: var(--white-dim);
      line-height: 1.65;
      flex: 1;
    }

    .project-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 1rem;
      border-top: 1px solid var(--border);
      margin-top: 0.4rem;
    }

    .project-stack {
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(192,196,204,0.4);
    }

    .project-arrow {
      font-size: 1rem;
      color: var(--white-dim);
      transition: color 0.2s, transform 0.2s;
    }

    /* ── SERVICES ── */
    #services {
      background: var(--black-mid);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .services-list { border: 1px solid var(--border-gold); }

    .service-row {
      display: flex;
      align-items: flex-start;
      gap: 1.5rem;
      padding: 1.5rem 1.6rem;
      border-bottom: 1px solid var(--border-gold);
    }
    .service-row:last-child { border-bottom: none; }

.service-info strong {
      display: block;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 0.25rem;
    }
    .service-info p {
      font-size: 0.83rem;
      font-weight: 300;
      color: var(--white-dim);
      line-height: 1.65;
    }

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

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-top: 0.5rem;
    }

    .contact-block {
      background: var(--black-card);
      border: 1px solid var(--border-gold);
      padding: 1.8rem;
    }

    .contact-block h3 {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.8rem;
    }

    .contact-block p {
      font-size: 0.87rem;
      font-weight: 300;
      color: var(--white-dim);
      margin-bottom: 1.2rem;
      line-height: 1.65;
    }

    .contact-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--white);
      text-decoration: none;
      border-bottom: 1px solid var(--gold);
      padding-bottom: 0.15rem;
      transition: color 0.2s;
    }
    .contact-link:hover { color: var(--gold); }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid var(--border);
      padding: 3rem 1.5rem 1.5rem;
      overflow-wrap: break-word;
    }
    .footer-inner {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 2rem;
      padding-bottom: 2rem;
    }
    .footer-logo { height: 42px; width: auto; margin-bottom: 0.9rem; }
    .footer-tagline { font-size: 0.82rem; color: var(--white-dim); max-width: 280px; line-height: 1.6; }
    .footer-nav { display: flex; flex-direction: column; gap: 0.6rem; }
    .footer-nav a {
      font-size: 0.75rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--white-dim);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-nav a:hover { color: var(--gold); }
    .footer-contact { display: flex; flex-direction: column; gap: 0.7rem; }
    .footer-contact a {
      font-size: 0.82rem;
      color: var(--white-dim);
      text-decoration: none;
      transition: color 0.2s;
      word-break: break-word;
      overflow-wrap: break-word;
    }
    .footer-contact a:hover { color: var(--gold); }
    .footer-area { font-size: 0.72rem; color: rgba(201,168,76,0.75); margin-top: 0.3rem; }
    .footer-bottom {
      max-width: 1000px;
      margin: 0 auto;
      border-top: 1px solid var(--border);
      padding-top: 1.2rem;
      font-size: 0.68rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(201,168,76,0.65);
      text-align: center;
    }
    @media (max-width: 700px) {
      .footer-inner { grid-template-columns: 1fr; gap: 1.8rem; text-align: left; }
      .footer-tagline { max-width: none; }
      footer { padding: 2.5rem 1.25rem 1.25rem; }
    }

    /* ── REVEAL ── */
    .reveal {
      opacity: 1;
      transform: none;
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }

    /* ── RESPONSIVE ── */
    @media (max-width: 640px) {
      .nav-toggle { display: flex; }
      .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(78vw, 320px);
        background: var(--black);
        border-left: 1px solid var(--border-gold);
        flex-direction: column;
        gap: 0;
        padding: 6rem 2rem 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 100;
        overflow-y: auto;
      }
      .nav-links.open { transform: translateX(0); }
      .nav-links li { border-bottom: 1px solid var(--border); }
      .nav-links a { display: block; padding: 1.1rem 0; font-size: 0.85rem; }
      body.nav-open { overflow: hidden; }
      .contact-grid { grid-template-columns: 1fr; }
    }

    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
      html { scroll-behavior: auto; }
    }
  
/* ── PAGE PAGER (prev/next navigation) ── */
.page-pager {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--border);
}
.pager-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--black);
  padding: 0.9rem 1.1rem;
  background: linear-gradient(155deg, var(--gold-light), var(--gold));
  border: 1px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(201,168,76,0.18);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  flex: 1;
  max-width: 280px;
}
.pager-link:hover {
  background: linear-gradient(155deg, var(--gold-light), var(--gold-light));
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201,168,76,0.28);
}
.pager-prev { justify-content: flex-start; }
.pager-next { justify-content: flex-end; text-align: right; margin-left: auto; }
.pager-arrow { color: var(--black); font-size: 1.15rem; flex-shrink: 0; }
.pager-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.25rem;
  opacity: 0.75;
}
.pager-text strong { display: block; font-size: 0.92rem; font-weight: 500; color: var(--black); }

@media (max-width: 560px) {
  .page-pager { flex-direction: column; }
  .pager-link { max-width: none; }
  .pager-next { margin-left: 0; justify-content: flex-start; text-align: left; }
}
