
  :root {
    --bg: #F5F4F0;
    --bg-2: #EAE8E0;
    --bg-3: #DEDDD5;
    --ink: #0A0A0A;
    --ink-2: #1A1A1A;
    --ink-3: #2A2A2A;
    --on-dark: #F5F4F0;
    --accent: #FF5A36;
    --accent-deep: #E84818;
    --line: rgba(10,10,10,0.10);
    --line-2: rgba(10,10,10,0.18);
    --muted: rgba(10,10,10,0.55);
    --on-dark-muted: rgba(245,244,240,0.6);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  img { display: block; max-width: 100%; }
  .container { max-width: 1480px; margin: 0 auto; padding: 0 40px; position: relative; }
  .display { font-family: 'Inter Tight', sans-serif; letter-spacing: -0.04em; font-weight: 500; }

  /* ======================== NAV ======================== */
  .nav-wrap {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
  }
  .nav-top {
    background: var(--ink);
    color: var(--on-dark);
    padding: 9px 0;
    font-size: 12px;
  }
  .nav-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-top a {
    color: var(--on-dark);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s, color 0.2s;
  }
  .nav-top a:hover { opacity: 1; color: var(--accent); }
  .nav-top .right { display: flex; gap: 28px; align-items: center; }
  .live-dot {
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
  }

  nav.main {
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
    position: relative;
    background: var(--bg);
  }
  nav.main .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 60px;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--ink);
  }
  .brand-mark {
    width: 40px; height: 40px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .brand-mark img { width: 100%; height: 100%; object-fit: cover; }
  .brand-text {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: -0.03em;
    line-height: 1;
  }
  .brand-text small {
    display: block;
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
    font-family: 'Inter', sans-serif;
  }

  .nav-links {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 2px;
  }
  .nav-links > li { position: static; }
  .nav-links > li > a, .nav-links > li > button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: var(--ink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.005em;
    border-radius: 4px;
    transition: all 0.25s;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
  }
  .nav-links > li > a:hover,
  .nav-links > li > button:hover,
  .nav-links > li.has-mega:hover > button {
    background: var(--bg-2);
  }
  .nav-links .chev {
    font-size: 9px;
    margin-top: 2px;
    transition: transform 0.3s;
    opacity: 0.5;
  }
  .nav-links li.has-mega:hover .chev { transform: rotate(180deg); opacity: 1; }

  /* Mega menu */
  .mega {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 36px 0 44px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
    pointer-events: none;
    z-index: 90;
    box-shadow: 0 16px 32px rgba(0,0,0,0.04);
  }
  .nav-links li.has-mega:hover .mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .mega-inner {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 60px;
  }
  .mega-side h4 {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
    font-weight: 600;
  }
  .mega-side ul { list-style: none; }
  .mega-side li { margin-bottom: 10px; }
  .mega-side a {
    color: var(--ink);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s, padding 0.2s;
    display: block;
    padding-left: 0;
  }
  .mega-side a:hover { color: var(--accent); padding-left: 6px; }

  .mega-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .mega-thumb {
    text-decoration: none;
    color: var(--ink);
    display: block;
  }
  .mega-thumb-img {
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--bg-2);
    margin-bottom: 10px;
    border-radius: 4px;
  }
  .mega-thumb-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s;
  }
  .mega-thumb:hover .mega-thumb-img img { transform: scale(1.05); }
  .mega-thumb-name {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -0.01em;
    margin-bottom: 2px;
  }
  .mega-thumb-meta {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .nav-cta { display: flex; gap: 10px; align-items: center; }
  .nav-phone {
    text-decoration: none;
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 4px;
  }

  /* ======================== BUTTONS ======================== */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: var(--ink);
    color: var(--bg);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.005em;
    border: 1px solid var(--ink);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    font-family: inherit;
    white-space: nowrap;
  }
  .btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-1px);
  }
  .btn .arr {
    display: inline-block;
    transition: transform 0.3s;
  }
  .btn:hover .arr { transform: translate(2px, -2px); }

  .btn-outline {
    background: transparent;
    color: var(--ink);
  }
  .btn-outline:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

  .btn-accent {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
  }
  .btn-accent:hover {
    background: var(--accent-deep);
    border-color: var(--accent-deep);
    color: #fff;
  }

  .btn-ghost-dark {
    background: transparent;
    color: var(--bg);
    border-color: rgba(245,244,240,0.3);
  }
  .btn-ghost-dark:hover {
    background: var(--bg);
    color: var(--ink);
    border-color: var(--bg);
  }

  /* ======================== HERO ======================== */
  .hero {
    padding: 80px 0 0;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 0;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
    font-weight: 600;
  }
  .hero-eyebrow::before {
    content: '';
    width: 32px; height: 1px;
    background: var(--accent);
  }
  h1.hero-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(52px, 8vw, 144px);
    line-height: 0.92;
    letter-spacing: -0.04em;
    font-weight: 500;
    margin-bottom: 0;
  }
  h1.hero-title .accent { color: var(--accent); }
  h1.hero-title .light { font-weight: 300; }

  .hero-side p {
    font-size: 18px;
    line-height: 1.55;
    color: var(--ink-2);
    margin-bottom: 32px;
    max-width: 460px;
  }
  .hero-side .actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .hero-quick {
    border-top: 1px solid var(--line);
    padding-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 32px;
    max-width: 460px;
  }
  .hero-quick-item .label {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
    font-weight: 600;
  }
  .hero-quick-item .val {
    font-size: 15px;
    color: var(--ink);
    font-weight: 500;
  }

  .hero-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/8;
    overflow: hidden;
    background: var(--bg-2);
  }
  .hero-image img { width: 100%; height: 100%; object-fit: cover; }
  .hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.45), transparent 45%);
  }

  /* ======================== HERO GALLERY ======================== */
  .hero-gallery {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 12px;
    margin-top: 60px;
    margin-bottom: 0;
  }
  .gallery-cell {
    position: relative;
    overflow: hidden;
    background: var(--bg-2);
    border-radius: 4px;
  }
  .gallery-cell.main { grid-row: 1 / span 2; }
  .gallery-cell img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .gallery-cell:hover img { transform: scale(1.06); }
  .gallery-cell::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.55), transparent 50%);
    pointer-events: none;
  }
  .gallery-tag {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(245,244,240,0.95);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 5px 11px;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
    color: var(--ink);
    z-index: 2;
  }
  .gallery-cap {
    position: absolute;
    bottom: 16px; left: 18px; right: 18px;
    color: var(--bg);
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 12px;
  }
  .gallery-cap .name {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.015em;
    line-height: 1.1;
  }
  .gallery-cell.main .gallery-cap .name { font-size: 24px; }
  .gallery-cap .meta {
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.85;
    font-weight: 500;
    text-align: right;
    white-space: nowrap;
  }

  .hero-caption {
    position: absolute;
    bottom: 32px; left: 40px; right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: var(--bg);
    z-index: 2;
  }
  .hero-caption .name {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 28px;
    letter-spacing: -0.02em;
  }
  .hero-caption .meta {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: right;
    line-height: 1.7;
    opacity: 0.85;
    font-weight: 500;
  }

  /* ======================== TRUST ======================== */
  .trust {
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
    margin-top: 0;
  }
  .trust .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  .trust-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
  }
  .trust-items {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    align-items: center;
  }
  .trust-item {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.01em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .trust-item::before {
    content: '';
    width: 5px; height: 5px;
    background: var(--accent);
    border-radius: 50%;
  }

  /* ======================== SECTION ======================== */
  section.sect { padding: 130px 0; }
  .sect-head {
    margin-bottom: 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
  }
  .sect-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 600;
  }
  .sect-eyebrow::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--accent);
  }
  h2.sect-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(40px, 5.5vw, 84px);
    line-height: 0.96;
    letter-spacing: -0.035em;
    font-weight: 500;
  }
  h2.sect-title .accent { color: var(--accent); }
  h2.sect-title .light { font-weight: 300; }
  .sect-head .right {
    color: var(--ink-2);
    font-size: 17px;
    line-height: 1.55;
    max-width: 460px;
    justify-self: end;
  }

  /* ======================== PROJECTS ======================== */
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 28px;
    row-gap: 70px;
  }
  .project { text-decoration: none; color: inherit; cursor: pointer; }
  .project.p1 { grid-column: 1 / span 8; }
  .project.p2 { grid-column: 9 / span 4; align-self: end; }
  .project.p3 { grid-column: 1 / span 4; }
  .project.p4 { grid-column: 5 / span 4; align-self: center; }
  .project.p5 { grid-column: 9 / span 4; }
  .project.p6 { grid-column: 1 / span 7; }
  .project.p7 { grid-column: 8 / span 5; align-self: end; }

  .project-img {
    position: relative;
    overflow: hidden;
    background: var(--bg-2);
    aspect-ratio: 4/3;
    margin-bottom: 22px;
    border-radius: 4px;
  }
  .project.p2 .project-img,
  .project.p3 .project-img,
  .project.p4 .project-img,
  .project.p5 .project-img { aspect-ratio: 4/5; }
  .project-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .project:hover .project-img img { transform: scale(1.04); }
  .project-tag {
    position: absolute;
    top: 16px; left: 16px;
    background: rgba(245,244,240,0.95);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 5px 11px;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
    color: var(--ink);
  }
  .project-num {
    position: absolute;
    top: 16px; right: 16px;
    color: var(--bg);
    font-size: 11px;
    letter-spacing: 0.08em;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    background: rgba(10,10,10,0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 5px 11px;
    border-radius: 4px;
  }
  .project-info {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
  }
  .project-info .left h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 26px;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 6px;
    font-weight: 600;
  }
  .project-info .left h3 .accent { color: var(--accent); font-weight: 500; }
  .project-info .meta {
    font-size: 13px;
    color: var(--muted);
  }
  .project-info .right {
    text-align: right;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .project-info .right strong {
    display: block;
    color: var(--accent);
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 4px;
  }

  .projects-foot {
    margin-top: 80px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .projects-foot .count {
    font-family: 'Inter Tight', sans-serif;
    font-size: 18px;
    color: var(--ink-2);
    font-weight: 500;
  }
  .projects-foot .count strong {
    color: var(--accent);
    font-weight: 600;
    margin-right: 6px;
  }

  /* ======================== ABOUT (DARK) ======================== */
  .about {
    background: var(--ink);
    color: var(--on-dark);
    padding: 130px 0;
  }
  .about .sect-title { color: var(--on-dark); }
  .about .sect-head .right { color: rgba(245,244,240,0.7); }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
  }
  .about-img {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--ink-2);
    border-radius: 4px;
  }
  .about-img img { width: 100%; height: 100%; object-fit: cover; }
  .about-img-tag {
    position: absolute;
    bottom: 20px; left: 20px;
    background: var(--accent);
    color: #fff;
    padding: 8px 14px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
  }

  .about-body { display: flex; flex-direction: column; justify-content: center; }
  .about-body .lead {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(24px, 2.6vw, 36px);
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-bottom: 36px;
    color: var(--on-dark);
    font-weight: 500;
  }
  .about-body .lead .accent { color: var(--accent); }
  .about-body p {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(245,244,240,0.7);
    margin-bottom: 22px;
    max-width: 540px;
  }
  .about-sig {
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid rgba(245,244,240,0.15);
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .about-sig-name {
    font-family: 'Inter Tight', sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--bg);
  }
  .about-sig-role {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245,244,240,0.5);
    border-left: 1px solid rgba(245,244,240,0.2);
    padding-left: 20px;
    font-weight: 500;
  }

  /* ======================== SERVICES ======================== */
  .services .sect-head { margin-bottom: 60px; }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
  }
  .service {
    padding: 44px 36px 44px 0;
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 32px;
    align-items: start;
    transition: padding 0.4s, background 0.4s;
    cursor: pointer;
  }
  .service:nth-child(even) {
    padding-left: 36px;
    border-right: none;
  }
  .service:hover { background: var(--bg-2); padding-left: 56px; }
  .service:nth-child(even):hover { padding-left: 56px; }
  .service-num {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: var(--accent);
  }
  .service-body h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 28px;
    letter-spacing: -0.025em;
    margin-bottom: 12px;
    font-weight: 500;
    line-height: 1.05;
  }
  .service-body p {
    color: var(--ink-2);
    font-size: 15px;
    line-height: 1.55;
    max-width: 420px;
  }
  .service-arr {
    font-size: 18px;
    color: var(--accent);
    transition: transform 0.4s;
  }
  .service:hover .service-arr { transform: translate(4px, -4px); }

  /* ======================== PROCESS ======================== */
  .process {
    background: var(--bg-2);
    padding: 130px 0;
  }
  .process-list { border-top: 1px solid var(--line-2); }
  .process-row {
    display: grid;
    grid-template-columns: 70px 1fr 1.4fr 110px;
    gap: 32px;
    padding: 30px 0;
    border-bottom: 1px solid var(--line-2);
    align-items: start;
    cursor: pointer;
    transition: padding 0.4s;
  }
  .process-row:hover { padding-left: 20px; }
  .process-num {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--accent);
    padding-top: 6px;
  }
  .process-row h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 24px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    font-weight: 500;
  }
  .process-row p {
    color: var(--ink-2);
    font-size: 15px;
    line-height: 1.6;
    max-width: 480px;
  }
  .process-time {
    text-align: right;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    padding-top: 10px;
    font-weight: 500;
  }

  /* ======================== TESTIMONIAL ======================== */
  .testi { padding: 130px 0; text-align: center; }
  .testi-quote {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(30px, 4vw, 56px);
    line-height: 1.18;
    letter-spacing: -0.03em;
    max-width: 1100px;
    margin: 0 auto 50px;
    font-weight: 400;
    color: var(--ink);
  }
  .testi-quote .accent { color: var(--accent); }
  .testi-quote::before {
    content: '"';
    font-family: 'Inter Tight', sans-serif;
    font-size: 1.2em;
    color: var(--accent);
    line-height: 0;
    vertical-align: -0.4em;
    margin-right: 4px;
    font-weight: 600;
  }
  .testi-author {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .testi-author small {
    display: block;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 8px;
  }
  .testi-pager {
    display: inline-flex;
    gap: 10px;
    margin-top: 40px;
  }
  .testi-pager .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--line-2);
    cursor: pointer;
    transition: all 0.3s;
  }
  .testi-pager .dot.on {
    background: var(--accent);
    width: 28px;
    border-radius: 4px;
  }

  /* ======================== CONTACT FORM ======================== */
  .contact {
    background: var(--ink);
    color: var(--on-dark);
    padding: 130px 0;
    position: relative;
    overflow: hidden;
  }
  .contact::before {
    content: '';
    position: absolute;
    top: 0; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,90,54,0.15), transparent 65%);
    pointer-events: none;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    position: relative;
  }
  .contact-left .sect-eyebrow { color: var(--accent); }
  .contact-left h2 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(40px, 5.5vw, 80px);
    line-height: 0.96;
    letter-spacing: -0.035em;
    font-weight: 500;
    color: var(--on-dark);
    margin-bottom: 28px;
  }
  .contact-left h2 .accent { color: var(--accent); }
  .contact-left h2 .light { font-weight: 300; }
  .contact-left p {
    font-size: 17px;
    line-height: 1.55;
    color: rgba(245,244,240,0.7);
    margin-bottom: 40px;
    max-width: 460px;
  }

  .contact-info {
    border-top: 1px solid rgba(245,244,240,0.15);
    padding-top: 32px;
    display: grid;
    gap: 22px;
  }
  .contact-info-item {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 16px;
    align-items: start;
  }
  .contact-info-item .icon {
    color: var(--accent);
    font-size: 18px;
    line-height: 1;
    margin-top: 2px;
  }
  .contact-info-item .label {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245,244,240,0.5);
    margin-bottom: 4px;
    font-weight: 600;
  }
  .contact-info-item .val {
    font-size: 16px;
    color: var(--bg);
    font-weight: 500;
  }
  .contact-info-item .val a {
    color: var(--bg);
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-info-item .val a:hover { color: var(--accent); }

  /* Replacement: contact visual image block */
  .contact-visual {
    position: relative;
    margin-top: 8px;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
  }
  .contact-visual img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .contact-visual:hover img { transform: scale(1.04); }
  .contact-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.55), transparent 50%);
    pointer-events: none;
  }
  .contact-visual-meta {
    position: absolute;
    bottom: 18px; left: 20px; right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    color: var(--bg);
    z-index: 2;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .contact-visual-meta span:first-child {
    background: var(--accent);
    padding: 5px 11px;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
  }

  /* The form */
  .contact-form {
    background: var(--ink-2);
    border: 1px solid rgba(245,244,240,0.1);
    border-radius: 8px;
    padding: 40px;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }
  .form-field { margin-bottom: 20px; }
  .form-field label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245,244,240,0.5);
    margin-bottom: 8px;
    font-weight: 600;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(245,244,240,0.2);
    color: var(--bg);
    font-family: inherit;
    font-size: 15px;
    padding: 10px 0;
    transition: border-color 0.3s;
    font-weight: 400;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    outline: none;
    border-bottom-color: var(--accent);
  }
  .form-field input::placeholder,
  .form-field textarea::placeholder {
    color: rgba(245,244,240,0.3);
  }
  .form-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F5F4F0' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 16px;
    padding-right: 30px;
    cursor: pointer;
  }
  .form-field select option {
    background: var(--ink-2);
    color: var(--bg);
  }
  .form-field textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
  }

  .project-type-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
  }
  .pill-radio {
    position: relative;
  }
  .pill-radio input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  .pill-radio label {
    display: inline-block;
    padding: 9px 14px;
    border: 1px solid rgba(245,244,240,0.2);
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 0;
    text-transform: none;
    color: var(--bg);
    cursor: pointer;
    transition: all 0.25s;
    font-weight: 500;
    margin: 0;
  }
  .pill-radio input:checked + label {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
  }
  .pill-radio label:hover {
    border-color: var(--accent);
  }

  .form-submit {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(245,244,240,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .form-submit .note {
    font-size: 12px;
    color: rgba(245,244,240,0.5);
    max-width: 280px;
    line-height: 1.5;
  }
  .form-submit .btn { padding: 16px 28px; font-size: 14px; }

  /* ======================== FOOTER ======================== */
  footer {
    background: var(--bg-2);
    color: var(--ink);
    padding: 90px 0 32px;
    position: relative;
  }
  .footer-mega {
    margin-bottom: 70px;
    line-height: 0.86;
  }
  .footer-mega .l1 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(64px, 12vw, 196px);
    letter-spacing: -0.05em;
    color: var(--ink);
    display: block;
    font-weight: 600;
  }
  .footer-mega .l2 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(64px, 12vw, 196px);
    letter-spacing: -0.05em;
    color: var(--accent);
    font-weight: 300;
    display: block;
    padding-left: 6vw;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--line-2);
  }
  .footer-brand-block p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-2);
    margin-bottom: 24px;
    max-width: 340px;
  }
  .footer-contact {
    color: var(--ink-2);
    font-size: 14px;
    line-height: 2;
  }
  .footer-contact a { color: var(--ink); text-decoration: none; font-weight: 500; }
  .footer-contact a:hover { color: var(--accent); }
  .footer-col h4 {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 22px;
    font-weight: 600;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 12px; }
  .footer-col a {
    color: var(--ink);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
  }
  .footer-col a:hover { color: var(--accent); }

  .footer-bottom {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--muted);
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-bottom a { color: var(--muted); text-decoration: none; transition: color 0.3s; }
  .footer-bottom a:hover { color: var(--accent); }
  .footer-socials { display: flex; gap: 18px; }

  /* ======================== RESPONSIVE ======================== */
  @media (max-width: 1100px) {
    .container { padding: 0 28px; }
    .nav-links { display: none; }
    nav.main .container { grid-template-columns: 1fr auto; }
    .nav-cta .nav-phone { display: none; }
  }
  @media (max-width: 880px) {
    .container { padding: 0 20px; }
    .nav-top .container > .left span:nth-child(2) { display: none; }
    .nav-top .right > a:nth-child(1) { display: none; }
    .hero { padding-top: 50px; }
    .hero-grid { grid-template-columns: 1fr; gap: 36px; margin-bottom: 50px; }
    h1.hero-title { font-size: clamp(48px, 12vw, 80px); }
    .hero-caption { left: 20px; right: 20px; bottom: 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
    .hero-caption .meta { text-align: left; }
    .hero-gallery {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 200px 200px 200px;
      gap: 8px;
      margin-top: 40px;
    }
    .gallery-cell.main { grid-column: 1 / span 2; grid-row: 1; }
    .gallery-cell.main .gallery-cap .name { font-size: 18px; }
    .trust .container { flex-direction: column; align-items: flex-start; gap: 18px; }
    section.sect, .about, .process, .testi, .contact { padding: 70px 0; }
    .sect-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px; }
    .sect-head .right { justify-self: start; }
    .projects-grid { grid-template-columns: 1fr; row-gap: 40px; }
    .project.p1, .project.p2, .project.p3, .project.p4, .project.p5, .project.p6, .project.p7 {
      grid-column: span 1; align-self: start;
    }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid { grid-template-columns: 1fr; }
    .service { padding: 32px 0 !important; border-right: none !important; grid-template-columns: 50px 1fr; }
    .service-arr { display: none; }
    .service:hover { padding-left: 12px !important; }
    .process-row { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
    .process-time { text-align: left; padding-top: 0; }
    .process-row:hover { padding-left: 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .contact-form { padding: 28px 22px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .footer-mega .l2 { padding-left: 3vw; }
  }


  /* ======================== FORM STATUS / HONEYPOT ======================== */
  .form-status {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    display: none;
  }
  .form-status.show { display: block; }
  .form-status.success {
    background: rgba(72, 187, 120, 0.10);
    border: 1px solid rgba(72, 187, 120, 0.35);
    color: #7DDA9D;
  }
  .form-status.error {
    background: rgba(255, 90, 54, 0.10);
    border: 1px solid rgba(255, 90, 54, 0.45);
    color: #FF9C84;
  }
  .form-submit button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none !important;
  }
  /* Honeypot — hidden from humans but visible to bots */
  .hp-wrap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }


  /* ============================================================
     CINEMATIC HERO — full-bleed image carousel / video at top
     ============================================================ */
  .cinema-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 640px;
    max-height: 900px;
    overflow: hidden;
    background: var(--ink);
    color: var(--bg);
  }

  /* Background stage — holds video or auto-cycling slides */
  .cinema-stage {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
  }
  .cinema-stage video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .cinema-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
    animation: kenBurns 12s ease-out infinite alternate;
    animation-play-state: paused;
  }
  .cinema-slide.is-active {
    opacity: 1;
    animation-play-state: running;
  }
  @keyframes kenBurns {
    from { transform: scale(1.0); }
    to   { transform: scale(1.12); }
  }

  /* Dark gradient overlay for text legibility */
  .cinema-stage::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.15) 35%, rgba(10,10,10,0.25) 65%, rgba(10,10,10,0.85) 100%),
      linear-gradient(to right, rgba(10,10,10,0.55), transparent 55%);
    z-index: 2;
    pointer-events: none;
  }

  /* Foreground content overlaid on the carousel */
  .cinema-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 48px 0 56px;
  }
  .cinema-content .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  /* Top: eyebrow */
  .cinema-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .cinema-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    color: var(--bg);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    background: rgba(10,10,10,0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(245,244,240,0.18);
  }
  .cinema-eyebrow .live-dot {
    margin-right: 0;
    background: var(--accent);
  }

  /* Middle: headline + sub + buttons */
  .cinema-mid { max-width: 1100px; }
  h1.cinema-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(56px, 9vw, 156px);
    line-height: 0.92;
    letter-spacing: -0.04em;
    font-weight: 500;
    color: var(--bg);
    margin-bottom: 28px;
    text-shadow: 0 4px 32px rgba(10,10,10,0.4);
  }
  h1.cinema-title .accent { color: var(--accent); }
  h1.cinema-title .light { font-weight: 300; }
  h1.cinema-title em {
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
  }

  .cinema-sub {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(17px, 1.5vw, 22px);
    color: rgba(245,244,240,0.92);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.45;
    font-weight: 400;
    text-shadow: 0 2px 16px rgba(10,10,10,0.3);
  }

  .cinema-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
  }
  .btn-on-dark {
    background: var(--bg);
    color: var(--ink);
    border-color: var(--bg);
  }
  .btn-on-dark:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
  }
  .btn-ghost-dark {
    background: transparent;
    color: var(--bg);
    border-color: rgba(245,244,240,0.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .btn-ghost-dark:hover {
    background: var(--bg);
    color: var(--ink);
    border-color: var(--bg);
  }

  /* Bottom info strip */
  .cinema-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(245,244,240,0.22);
  }
  .cinema-bottom-item .label {
    font-family: 'Geist Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245,244,240,0.65);
    margin-bottom: 8px;
    font-weight: 600;
  }
  .cinema-bottom-item .val {
    font-size: 15px;
    color: var(--bg);
    font-weight: 500;
  }

  /* Slide indicator dots */
  .cinema-dots {
    position: absolute;
    bottom: 28px;
    right: 48px;
    display: flex;
    gap: 8px;
    z-index: 4;
  }
  .cinema-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(245,244,240,0.35);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
  }
  .cinema-dot.is-active {
    background: var(--accent);
    width: 32px;
    border-radius: 6px;
  }
  .cinema-dot:hover { background: rgba(245,244,240,0.7); }

  /* ============================================================
     RESPONSIVE — CINEMATIC HERO
     ============================================================ */
  @media (max-width: 880px) {
    .cinema-hero {
      height: 88vh;
      min-height: 560px;
    }
    .cinema-content { padding: 32px 0 40px; }
    h1.cinema-title { font-size: clamp(44px, 11vw, 72px); }
    .cinema-bottom { grid-template-columns: 1fr 1fr; gap: 18px; padding-top: 22px; }
    .cinema-dots { right: 24px; bottom: 20px; }
    .cinema-eyebrow { padding: 8px 14px; font-size: 11px; }
  }

  /* Remove trust bar top border when sitting directly under the dark hero */
  .cinema-hero + .trust {
    border-top: none;
  }

  /* ============================================================
     WPFORMS STYLING — match dark contact section
     ============================================================ */
  .contact-form-wrap {
    background: rgba(245, 244, 240, 0.04);
    border: 1px solid rgba(245, 244, 240, 0.12);
    border-radius: 8px;
    padding: 40px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  /* Field labels */
  .contact-form-wrap .wpforms-field-label,
  .contact-form-wrap label,
  .contact-form-wrap legend {
    color: rgba(245, 244, 240, 0.95) !important;
    font-size: 13px !important;
    letter-spacing: 0.04em !important;
    text-transform: none !important;
    font-weight: 500 !important;
    margin-bottom: 10px !important;
    font-family: 'Inter', sans-serif !important;
    display: block !important;
  }

  /* Required asterisk */
  .contact-form-wrap .wpforms-required-label {
    color: var(--accent) !important;
  }

  /* Sub-labels (First / Last under name field) */
  .contact-form-wrap .wpforms-field-sublabel,
  .contact-form-wrap .wpforms-field-name-first label,
  .contact-form-wrap .wpforms-field-name-last label {
    color: rgba(245, 244, 240, 0.55) !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    margin-top: 6px !important;
    text-transform: none !important;
  }

  /* Input fields */
  .contact-form-wrap input[type="text"],
  .contact-form-wrap input[type="email"],
  .contact-form-wrap input[type="tel"],
  .contact-form-wrap input[type="url"],
  .contact-form-wrap input[type="number"],
  .contact-form-wrap input[type="password"],
  .contact-form-wrap select,
  .contact-form-wrap textarea {
    width: 100% !important;
    background: rgba(245, 244, 240, 0.06) !important;
    border: 1px solid rgba(245, 244, 240, 0.18) !important;
    border-radius: 6px !important;
    color: rgba(245, 244, 240, 0.98) !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    padding: 13px 16px !important;
    box-shadow: none !important;
    transition: border-color 0.25s, background 0.25s !important;
    line-height: 1.4 !important;
  }

  .contact-form-wrap input:focus,
  .contact-form-wrap select:focus,
  .contact-form-wrap textarea:focus {
    outline: none !important;
    border-color: var(--accent) !important;
    background: rgba(245, 244, 240, 0.10) !important;
  }

  .contact-form-wrap input::placeholder,
  .contact-form-wrap textarea::placeholder {
    color: rgba(245, 244, 240, 0.40) !important;
  }

  /* Select dropdown styling */
  .contact-form-wrap select {
    appearance: none !important;
    -webkit-appearance: none !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F5F4F0' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    background-size: 16px !important;
    padding-right: 40px !important;
    cursor: pointer !important;
  }
  .contact-form-wrap select option {
    background: var(--ink-2) !important;
    color: var(--bg) !important;
  }

  .contact-form-wrap textarea {
    min-height: 120px !important;
    resize: vertical !important;
  }

  /* Field spacing */
  .contact-form-wrap .wpforms-field {
    margin-bottom: 22px !important;
    padding: 0 !important;
  }

  /* Multi-input fields (first/last name on one row) */
  .contact-form-wrap .wpforms-field-row {
    display: flex !important;
    gap: 14px !important;
  }
  .contact-form-wrap .wpforms-field-row > div {
    flex: 1 !important;
  }

  /* Submit button */
  .contact-form-wrap .wpforms-submit-container {
    margin-top: 8px !important;
    padding: 0 !important;
  }
  .contact-form-wrap button[type="submit"],
  .contact-form-wrap input[type="submit"],
  .contact-form-wrap .wpforms-submit {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 16px 32px !important;
    background: var(--accent) !important;
    color: #fff !important;
    border: 1px solid var(--accent) !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.01em !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-family: 'Inter', sans-serif !important;
    width: auto !important;
  }
  .contact-form-wrap button[type="submit"]:hover,
  .contact-form-wrap input[type="submit"]:hover,
  .contact-form-wrap .wpforms-submit:hover {
    background: var(--accent-deep) !important;
    border-color: var(--accent-deep) !important;
    transform: translateY(-1px) !important;
  }

  /* Description text below fields */
  .contact-form-wrap .wpforms-field-description {
    color: rgba(245, 244, 240, 0.5) !important;
    font-size: 12px !important;
    margin-top: 6px !important;
  }

  /* Error messages */
  .contact-form-wrap .wpforms-error,
  .contact-form-wrap label.wpforms-error {
    color: #FF9C84 !important;
    font-size: 12px !important;
    margin-top: 6px !important;
    display: block !important;
  }
  .contact-form-wrap input.wpforms-error,
  .contact-form-wrap select.wpforms-error,
  .contact-form-wrap textarea.wpforms-error {
    border-color: #FF9C84 !important;
  }

  /* Success confirmation */
  .contact-form-wrap .wpforms-confirmation-container,
  .contact-form-wrap .wpforms-confirmation-container-full {
    background: rgba(72, 187, 120, 0.10) !important;
    border: 1px solid rgba(72, 187, 120, 0.40) !important;
    color: #7DDA9D !important;
    padding: 18px 22px !important;
    border-radius: 6px !important;
    margin: 0 !important;
  }

  /* Responsive form */
  @media (max-width: 880px) {
    .contact-form-wrap {
      padding: 24px 20px !important;
    }
    .contact-form-wrap .wpforms-field-row {
      flex-direction: column !important;
      gap: 22px !important;
    }
  }

  /* ============================================================
     LEGAL PAGES (Privacy, Terms)
     ============================================================ */
  .legal-page {
    padding: 100px 0 140px;
    max-width: 100%;
  }
  .legal-page .container {
    max-width: 900px;
  }
  .legal-header {
    padding-bottom: 50px;
    margin-bottom: 60px;
    border-bottom: 1px solid var(--line);
  }
  .legal-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    color: var(--accent);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 28px;
    font-weight: 600;
  }
  .legal-eyebrow::before {
    content: '';
    width: 28px; height: 1px;
    background: var(--accent);
  }
  .legal-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(40px, 5vw, 80px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 20px;
  }
  .legal-meta {
    font-size: 14px;
    color: var(--muted);
    letter-spacing: 0.04em;
  }
  .legal-body {
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink-2);
  }
  .legal-body h2 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(24px, 2.4vw, 32px);
    letter-spacing: -0.025em;
    font-weight: 500;
    color: var(--ink);
    margin-top: 56px;
    margin-bottom: 18px;
    line-height: 1.2;
  }
  .legal-body h2:first-child { margin-top: 0; }
  .legal-body h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--ink);
    margin-top: 32px;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  .legal-body p {
    margin-bottom: 18px;
    color: var(--ink-2);
  }
  .legal-body ul,
  .legal-body ol {
    margin: 0 0 22px 24px;
    color: var(--ink-2);
  }
  .legal-body li {
    margin-bottom: 8px;
    padding-left: 4px;
  }
  .legal-body strong {
    font-weight: 600;
    color: var(--ink);
  }
  .legal-body a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }
  .legal-body a:hover { color: var(--accent-deep); }
  .legal-body hr {
    margin: 48px 0;
    border: none;
    border-top: 1px solid var(--line);
  }
  .legal-foot {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }
