
  :root {
    --orange:       #FF6B1A;
    --orange-deep:  #E8550A;
    --orange-light: #FF8C4A;
    --orange-pale:  #FFF3EC;
    --white:        #FFFFFF;
    --off-white:    #FAFAF8;
    --ink:          #1A1410;
    --ink-mid:      #4A3728;
    --ink-soft:     #9A8070;
    --border:       rgba(255,107,26,0.15);

    --serif: 'Playfair Display', Georgia, serif;
    --sans:  'DM Sans', system-ui, sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.87, 0, 0.13, 1);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans);
    background: var(--white);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  img { display: block; width: 100%; height: 100%; object-fit: cover; }
  a { text-decoration: none; color: inherit; }

  /* CURSOR */
  .cursor {
    display: none;
    position: fixed; top: 0; left: 0; z-index: 9999;
    width: 12px; height: 12px;
    background: var(--orange);
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.15s var(--ease-out), opacity 0.2s;
    mix-blend-mode: multiply;
  }
  .cursor-ring {
    display: none;
    position: fixed; top: 0; left: 0; z-index: 9998;
    width: 40px; height: 40px;
    border: 1.5px solid var(--orange);
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.35s var(--ease-out), opacity 0.2s, width 0.3s, height 0.3s;
    transform: translate(-50%, -50%);
  }
  @media (hover: hover) {
    .cursor, .cursor-ring { display: block; }
    body { cursor: none; }
    a, button { cursor: none; }
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px;
    transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
  }
  nav.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    padding: 14px 24px;
    box-shadow: 0 1px 0 var(--border);
  }
  .nav-logo {
    font-family: var(--serif);
    font-size: 1.3rem; font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--white);
    transition: color 0.4s;
    display: flex; align-items: center; gap: 8px;
  }
  nav.scrolled .nav-logo { color: var(--ink); }
  .nav-logo span {
    display: inline-block;
    background: var(--orange); color: var(--white);
    border-radius: 4px; padding: 2px 7px;
    font-size: 0.75rem; font-family: var(--sans);
    font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  }
  .nav-cta {
    font-family: var(--sans); font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--white); border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 100px; padding: 9px 20px;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
  }
  nav.scrolled .nav-cta { color: var(--orange); border-color: var(--orange); }
  .nav-cta:hover { background: var(--orange); color: var(--white) !important; border-color: var(--orange) !important; }

  /* HERO */
  #hero {
    position: relative; height: 100svh; min-height: 560px;
    display: flex; flex-direction: column; justify-content: flex-end;
    overflow: hidden;
  }
  .hero-bg { position: absolute; inset: 0; background: var(--ink); }
  .hero-bg img {
    opacity: 0.72;
    transition: transform 8s ease-out; transform: scale(1.05);
  }
  .hero-bg img.loaded { transform: scale(1); }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,20,16,0.92) 0%, rgba(26,20,16,0.35) 50%, rgba(26,20,16,0.08) 100%);
  }
  .hero-content {
    position: relative; z-index: 2;
    padding: 0 24px 48px; max-width: 680px;
  }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--orange-light); margin-bottom: 20px;
    opacity: 0; transform: translateY(16px);
    animation: fadeUp 0.8s 0.3s var(--ease-out) forwards;
  }
  .hero-tag::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--orange); }
  .hero-h1 {
    font-family: var(--serif);
    font-size: clamp(2.6rem, 9vw, 5.2rem); font-weight: 900;
    line-height: 1.04; letter-spacing: -0.03em; color: var(--white);
    margin-bottom: 20px; opacity: 0; transform: translateY(24px);
    animation: fadeUp 0.9s 0.5s var(--ease-out) forwards;
  }
  .hero-h1 em { color: var(--orange-light); font-style: italic; }
  .hero-sub {
    font-size: 1rem; font-weight: 300; line-height: 1.7;
    color: rgba(255,255,255,0.72); margin-bottom: 36px;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.8s 0.7s var(--ease-out) forwards;
  }
  .hero-actions {
    display: flex; gap: 12px; flex-wrap: wrap;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.8s 0.9s var(--ease-out) forwards;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--orange); color: var(--white);
    font-family: var(--sans); font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    padding: 14px 28px; border-radius: 100px; border: none; cursor: pointer;
    transition: background 0.25s, transform 0.2s;
  }
  .btn-primary:hover { background: var(--orange-deep); transform: translateY(-1px); }
  .btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--white);
    font-family: var(--sans); font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    padding: 14px 28px; border-radius: 100px; border: 1.5px solid rgba(255,255,255,0.4);
    cursor: pointer; transition: border-color 0.25s, background 0.25s, transform 0.2s;
  }
  .btn-ghost:hover { border-color: var(--orange); background: rgba(255,107,26,0.1); transform: translateY(-1px); }
  .scroll-hint {
    position: absolute; bottom: 20px; right: 24px; z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    opacity: 0; animation: fadeIn 1s 1.4s ease forwards;
  }
  .scroll-hint span {
    font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,0.5); writing-mode: vertical-rl;
  }
  .scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, rgba(255,107,26,0.8), transparent);
    animation: scrollDrop 2s 2s ease-in-out infinite;
  }

  /* BRAND STRIP */
  .brand-strip { background: var(--orange); padding: 14px 24px; overflow: hidden; white-space: nowrap; }
  .brand-strip-inner { display: inline-flex; gap: 0; animation: marquee 28s linear infinite; }
  .brand-strip-item {
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--white); padding: 0 28px; display: inline-flex; align-items: center; gap: 12px;
  }
  .brand-strip-item::after { content: '✦'; opacity: 0.6; font-size: 0.5rem; }

  /* INTRO */
  #intro { padding: 72px 24px 64px; max-width: 760px; margin: 0 auto; text-align: center; }
  .section-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--orange); margin-bottom: 20px;
  }
  .section-eyebrow::before, .section-eyebrow::after {
    content: ''; display: block; width: 20px; height: 1px; background: var(--orange);
  }
  .section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 6vw, 3.4rem); font-weight: 900;
    line-height: 1.1; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 20px;
  }
  .section-title em { color: var(--orange); font-style: italic; }
  .section-body { font-size: 1.05rem; font-weight: 300; line-height: 1.78; color: var(--ink-mid); max-width: 560px; margin: 0 auto; }
  .stats {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1px; background: var(--border); border: 1px solid var(--border);
    border-radius: 16px; overflow: hidden; margin-top: 48px;
  }
  .stat { background: var(--white); padding: 28px 20px; text-align: center; }
  .stat-num { font-family: var(--serif); font-size: 2.4rem; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 6px; }
  .stat-label { font-size: 0.75rem; font-weight: 500; color: var(--ink-soft); letter-spacing: 0.04em; }

  /* ═══════════════════════════════════════════════
     PORTALS — full screen-filling cards
  ═══════════════════════════════════════════════ */
  #portals {
    padding: 0 20px 72px;
  }
  .portal-grid {
    display: grid;
    grid-template-columns: 2fr;
    gap: 20px;
    max-width: 100%;
    /* No max-width cap — fills the full viewport width minus padding */
  }

  @media (min-width: 768px) {
    #portals { padding: 0 32px 96px; }
    .portal-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (min-width: 1200px) {
    #portals { padding: 0 48px 120px; }
    .portal-grid { gap: 28px; }
  }
  @media (min-width: 1600px) {
    #portals { padding: 0 56px 140px; }
    .portal-grid { gap: 32px; }
  }

  .portal-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    display: flex; flex-direction: column; justify-content: flex-end;
    cursor: pointer;
    min-height: 520px;

    /* On mobile: aspect ratio */
    aspect-ratio: 4/5;
  }

  @media (min-width: 768px) {
    .portal-card {
      aspect-ratio: unset;
      /* Fill vertical space generously on wide screens */
      min-height: clamp(520px, 70vh, 860px);
    }
  }
  @media (min-width: 1200px) {
    .portal-card { min-height: clamp(600px, 75vh, 960px); }
  }

  .portal-img {
    position: absolute; inset: 0;
    transition: transform 0.7s var(--ease-out);
  }
  .portal-card:hover .portal-img { transform: scale(1.06); }
  .portal-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
      to top,
      rgba(26,20,16,0.93) 0%,
      rgba(26,20,16,0.45) 45%,
      rgba(26,20,16,0.12) 75%,
      transparent 100%
    );
    transition: opacity 0.4s;
  }
  .portal-card:hover .portal-overlay { opacity: 1.1; }
  .portal-accent {
    position: absolute; top: 24px; left: 24px;
    width: 48px; height: 48px;
    background: var(--orange); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 24px rgba(255,107,26,0.4);
  }
  .portal-content {
    position: relative; z-index: 2;
    padding: 36px 36px 40px;
  }
  @media (min-width: 768px) { .portal-content { padding: 40px 44px 48px; } }
  @media (min-width: 1200px) { .portal-content { padding: 48px 56px 60px; } }

  .portal-tag {
    font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--orange-light); margin-bottom: 12px;
    display: flex; align-items: center; gap: 8px;
  }
  .portal-tag::before { content: ''; display: block; width: 16px; height: 1.5px; background: var(--orange); }
  .portal-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 900; line-height: 1.06;
    color: var(--white); margin-bottom: 16px;
  }
  .portal-desc {
    font-size: clamp(0.88rem, 1.1vw, 1rem); line-height: 1.72;
    color: rgba(255,255,255,0.75); margin-bottom: 28px;
    max-width: 460px;
  }
  .portal-services { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
  .service-pill {
    font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
    color: rgba(255,255,255,0.92);
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
    border-radius: 100px; padding: 6px 14px;
    transition: background 0.25s, border-color 0.25s;
  }
  .portal-card:hover .service-pill { background: rgba(255,107,26,0.18); border-color: rgba(255,107,26,0.4); }
  .portal-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--orange); color: var(--white);
    font-family: var(--sans); font-size: 0.85rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 14px 28px; border-radius: 100px;
    transition: background 0.25s, gap 0.2s;
    box-shadow: 0 4px 20px rgba(255,107,26,0.4);
  }
  .portal-btn:hover { background: var(--orange-deep); gap: 14px; }
  .portal-btn svg { transition: transform 0.2s; }
  .portal-btn:hover svg { transform: translateX(3px); }

  /* ═══════════════════════════════════════════════
     GALLERY — grid masonry format
  ═══════════════════════════════════════════════ */
  #work {
    background: var(--ink);
    padding: 80px 0 96px;
  }
  .work-header {
    padding: 0 24px 56px;
    text-align: center;
  }
  @media (min-width: 900px) {
    .work-header { padding: 0 56px 64px; text-align: left; }
    #work .section-eyebrow { justify-content: flex-start; }
  }
  #work .section-title { color: var(--white); }
  #work .section-eyebrow { color: var(--orange-light); }
  #work .section-eyebrow::before, #work .section-eyebrow::after { background: var(--orange); }

  /* Filter tabs */
  .gallery-filters {
    display: flex; flex-wrap: wrap; gap: 8px;
    padding: 0 24px; margin-bottom: 40px;
    justify-content: center;
  }
  @media (min-width: 900px) {
    .gallery-filters { padding: 0 56px; justify-content: flex-start; }
  }
  .filter-btn {
    font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px; padding: 8px 18px;
    cursor: pointer; transition: all 0.25s;
  }
  .filter-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }
  .filter-btn.active {
    background: var(--orange); color: var(--white);
    border-color: var(--orange);
  }

  /* Masonry gallery grid */
  .gallery-grid {
    columns: 2;
    column-gap: 12px;
    padding: 0 16px;
  }
  @media (min-width: 640px) {
    .gallery-grid { columns: 3; column-gap: 14px; padding: 0 24px; }
  }
  @media (min-width: 900px) {
    .gallery-grid { columns: 4; column-gap: 16px; padding: 0 56px; }
  }
  @media (min-width: 1400px) {
    .gallery-grid { columns: 5; column-gap: 18px; }
  }

  .gallery-item {
    break-inside: avoid;
    margin-bottom: 12px;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    display: block;
    cursor: zoom-in;
  }
  @media (min-width: 900px) { .gallery-item { margin-bottom: 16px; } }

  .gallery-item img {
    width: 100%; height: auto;
    display: block;
    transition: transform 0.6s var(--ease-out);
    border-radius: 14px;
  }
  .gallery-item:hover img { transform: scale(1.04); }

  .gallery-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 28px 16px 14px;
    background: linear-gradient(to top, rgba(26,20,16,0.88) 0%, transparent 100%);
    color: var(--white);
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    transform: translateY(4px);
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
  }
  .gallery-item:hover .gallery-label { opacity: 1; transform: translateY(0); }

  .gallery-label-cat {
    font-size: 0.6rem; color: var(--orange-light);
    letter-spacing: 0.12em; display: block; margin-bottom: 3px;
  }

  /* Category badge overlaid top-left */
  .gallery-badge {
    position: absolute; top: 10px; left: 10px;
    background: var(--orange);
    color: var(--white);
    font-size: 0.58rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 100px;
    opacity: 0; transform: translateY(-4px);
    transition: opacity 0.3s, transform 0.3s;
  }
  .gallery-item:hover .gallery-badge { opacity: 1; transform: translateY(0); }

  /* Lightbox */
  .lightbox {
    position: fixed; inset: 0; z-index: 999;
    background: rgba(12,8,5,0.96);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s;
    backdrop-filter: blur(8px);
  }
  .lightbox.open { opacity: 1; pointer-events: all; }
  .lightbox-img {
    max-width: 92vw; max-height: 88vh;
    border-radius: 12px;
    object-fit: contain;
    transform: scale(0.95);
    transition: transform 0.4s var(--ease-out);
    box-shadow: 0 40px 80px rgba(0,0,0,0.7);
  }
  .lightbox.open .lightbox-img { transform: scale(1); }
  .lightbox-close {
    position: absolute; top: 20px; right: 24px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    color: var(--white); font-size: 1.3rem;
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 0.2s;
  }
  .lightbox-close:hover { background: var(--orange); border-color: var(--orange); }
  .lightbox-caption {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px; padding: 8px 20px;
  }
  .lightbox-caption span { color: var(--orange-light); margin-right: 8px; }

  /* Gallery load more */
  .gallery-more {
    text-align: center; padding: 48px 24px 0;
  }
  .btn-load {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: var(--white);
    font-family: var(--sans); font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 14px 32px; border-radius: 100px;
    border: 1.5px solid rgba(255,255,255,0.2);
    cursor: pointer; transition: all 0.3s;
  }
  .btn-load:hover { background: var(--orange); border-color: var(--orange); }

  /* WHY CLASS 7 */
  #why { padding: 72px 24px; max-width: 900px; margin: 0 auto; }
  .why-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 48px; }
  @media (min-width: 560px) { .why-grid { grid-template-columns: 1fr 1fr; } }
  .why-card {
    background: var(--off-white); border: 1px solid var(--border);
    border-radius: 16px; padding: 28px 24px;
    transition: border-color 0.3s, transform 0.3s;
  }
  .why-card:hover { border-color: var(--orange); transform: translateY(-3px); }
  .why-icon { width: 44px; height: 44px; background: var(--orange-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 16px; }
  .why-title { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
  .why-body { font-size: 0.88rem; line-height: 1.72; color: var(--ink-soft); }

  /* TESTIMONIALS */
  #testimonials { background: var(--ink); padding: 72px 24px; overflow: hidden; }
  #testimonials .section-eyebrow { color: var(--orange-light); }
  #testimonials .section-eyebrow::before, #testimonials .section-eyebrow::after { background: var(--orange); }
  #testimonials .section-title { color: var(--white); }
  .testimonials-track {
    display: flex; gap: 16px; margin-top: 40px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px;
  }
  .testimonials-track::-webkit-scrollbar { display: none; }
  .tcard {
    flex: 0 0 min(300px, 82vw);
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; padding: 28px 24px; scroll-snap-align: start;
    transition: border-color 0.3s;
  }
  .tcard:hover { border-color: var(--orange); }
  .stars { color: var(--orange); font-size: 0.8rem; margin-bottom: 16px; letter-spacing: 2px; }
  .tcard-text { font-family: var(--serif); font-size: 1rem; font-style: italic; line-height: 1.7; color: rgba(255,255,255,0.85); margin-bottom: 20px; }
  .tcard-author { display: flex; align-items: center; gap: 12px; }
  .tcard-avatar { width: 38px; height: 38px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--white); flex-shrink: 0; }
  .tcard-name { font-size: 0.82rem; font-weight: 600; color: var(--white); }
  .tcard-role { font-size: 0.72rem; color: var(--orange-light); margin-top: 2px; }

  /* PROCESS */
  #process { padding: 72px 24px; background: var(--orange-pale); }
  #process .section-title { text-align: center; }
  .process-steps { display: flex; flex-direction: column; gap: 0; margin-top: 48px; max-width: 640px; margin-left: auto; margin-right: auto; }
  .pstep { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid rgba(255,107,26,0.15); }
  .pstep:last-child { border-bottom: none; }
  .pstep-num { font-family: var(--serif); font-size: 2rem; font-weight: 900; color: var(--orange); opacity: 0.35; line-height: 1; }
  .pstep-title { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
  .pstep-body { font-size: 0.88rem; line-height: 1.72; color: var(--ink-mid); }

  /* CTA */
  #cta { position: relative; background: var(--orange); padding: 72px 24px; text-align: center; overflow: hidden; }
  #cta::before { content: 'C7'; position: absolute; right: -20px; top: -30px; font-family: var(--serif); font-size: 14rem; font-weight: 900; color: rgba(255,255,255,0.07); line-height: 1; pointer-events: none; }
  #cta .section-title { color: var(--white); }
  #cta .section-title em { color: rgba(255,255,255,0.65); }
  #cta .section-eyebrow { color: rgba(255,255,255,0.7); }
  #cta .section-eyebrow::before, #cta .section-eyebrow::after { background: rgba(255,255,255,0.5); }
  .cta-sub { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; margin-top: 16px; }
  .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
  .btn-white { display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--orange); font-family: var(--sans); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 14px 28px; border-radius: 100px; transition: transform 0.2s, background 0.25s; }
  .btn-white:hover { transform: translateY(-2px); background: var(--off-white); }
  .btn-outline-white { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--white); font-family: var(--sans); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 13px 28px; border-radius: 100px; border: 1.5px solid rgba(255,255,255,0.5); transition: transform 0.2s, border-color 0.25s; }
  .btn-outline-white:hover { border-color: var(--white); transform: translateY(-2px); }
  .whatsapp-btn { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); color: var(--white); font-family: var(--sans); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 13px 28px; border-radius: 100px; border: 1.5px solid rgba(255,255,255,0.3); transition: background 0.25s, transform 0.2s; }
  .whatsapp-btn:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }

  /* FOOTER */
  footer { background: var(--ink); padding: 48px 24px 32px; color: rgba(255,255,255,0.6); }
  .footer-top { display: grid; grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  @media (min-width: 600px) { .footer-top { grid-template-columns: 1fr 1fr; } }
  .footer-brand { font-family: var(--serif); font-size: 1.5rem; font-weight: 900; color: var(--white); margin-bottom: 12px; }
  .footer-brand span { display: inline-block; background: var(--orange); color: var(--white); border-radius: 4px; padding: 1px 6px; font-size: 0.7rem; font-family: var(--sans); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; vertical-align: middle; margin-left: 6px; }
  .footer-tagline { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.45); max-width: 280px; }
  .footer-col-title { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
  .footer-links { display: flex; flex-direction: column; gap: 10px; list-style: none; }
  .footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
  .footer-links a:hover { color: var(--orange); }
  .footer-social { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
  .social-link { width: 38px; height: 38px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; transition: background 0.25s, border-color 0.25s; }
  .social-link:hover { background: var(--orange); border-color: var(--orange); }
  .footer-bottom { display: flex; flex-direction: column; gap: 8px; padding-top: 28px; }
  @media (min-width: 600px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
  .footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.28); }
  .footer-legal { display: flex; gap: 16px; }
  .footer-legal a { font-size: 0.72rem; color: rgba(255,255,255,0.3); transition: color 0.2s; }
  .footer-legal a:hover { color: var(--orange); }

  /* ANIMATIONS */
  @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeIn { to { opacity: 1; } }
  @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
  @keyframes scrollDrop {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
    40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
    60%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
  }
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* Gallery item hidden state */
  .gallery-item { transition: opacity 0.4s, transform 0.4s; }
  .gallery-item.hidden { opacity: 0; pointer-events: none; height: 0; overflow: hidden; margin: 0; }

  /* DESKTOP OVERRIDES */
  @media (min-width: 900px) {
    nav { padding: 24px 56px; }
    nav.scrolled { padding: 16px 56px; }
    .hero-content { padding: 0 56px 72px; }
    .scroll-hint { right: 56px; }
    #intro { padding: 96px 24px 80px; }
    .stats { grid-template-columns: repeat(4, 1fr); }
    #why { padding-left: 56px; padding-right: 56px; }
    #process { padding-left: 56px; padding-right: 56px; }
    #testimonials { padding-left: 56px; padding-right: 56px; }
    #cta { padding-left: 56px; padding-right: 56px; }
    footer { padding: 64px 56px 40px; }
    .testimonials-track { padding-left: 0; }
    .why-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; }
  }
