:root {
      --black: #050505;
      --dark: #0c0c0c;
      --gold: #d6ad5c;
      --gold2: #f0d08a;
      --cream: #f5ead2;
      --muted: #a8a8a8;
      --line: rgba(214,173,92,.28);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--black);
      color: white;
      overflow-x: hidden;
      padding-left: 72px;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background:
        radial-gradient(circle at 20% 10%, rgba(214,173,92,.16), transparent 28%),
        radial-gradient(circle at 85% 35%, rgba(214,173,92,.12), transparent 30%),
        linear-gradient(135deg, #030303 0%, #111 52%, #030303 100%);
      z-index: -4;
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(rgba(214,173,92,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(214,173,92,.08) 1px, transparent 1px);
      background-size: 80px 80px;
      opacity: .35;
      z-index: -3;
    }

    .noise {
      position: fixed;
      inset: 0;
      background: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
      background-size: 4px 4px;
      opacity: .12;
      pointer-events: none;
      z-index: -2;
    }

    .container {
      width: min(1180px, calc(100% - 40px));
      margin: auto;
    }

    .side-rail {
      position: fixed;
      left: 0;
      top: 0;
      height: 100vh;
      width: 72px;
      border-right: 1px solid rgba(214,173,92,.16);
      background: rgba(0,0,0,.25);
      backdrop-filter: blur(12px);
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 22px 0;
      gap: 34px;
      z-index: 10;
    }

    .side-rail img {
      width: 48px;
      height: 48px;
      object-fit: contain;
    }

    .rail-item {
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      color: var(--gold);
      font-size: 10px;
      letter-spacing: .18em;
      text-transform: uppercase;
      opacity: .8;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 9;
      background: rgba(5,5,5,.72);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(214,173,92,.12);
    }

    .nav {
      min-height: 88px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .brand img {
      width: 135px;
      height: auto;
      object-fit: contain;
    }

    .menu {
      display: flex;
      gap: 34px;
      align-items: center;
    }

    .menu a {
      color: #e8e8e8;
      text-decoration: none;
      font-size: 12px;
      letter-spacing: .12em;
      text-transform: uppercase;
      transition: .25s;
    }

    .menu a:hover {
      color: var(--gold);
    }

    /* Hamburger button — hidden on desktop, shown via media query */
    .nav-toggle {
      display: none;
      width: 44px;
      height: 44px;
      padding: 0;
      background: transparent;
      border: 1px solid rgba(214,173,92,.35);
      border-radius: 10px;
      cursor: pointer;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
    }

    .nav-toggle span {
      display: block;
      width: 20px;
      height: 1.5px;
      background: var(--gold);
      transition: transform .25s ease, opacity .2s ease;
      transform-origin: center;
    }

    body.nav-open .nav-toggle span:nth-child(1) {
      transform: translateY(6.5px) rotate(45deg);
    }
    body.nav-open .nav-toggle span:nth-child(2) {
      opacity: 0;
    }
    body.nav-open .nav-toggle span:nth-child(3) {
      transform: translateY(-6.5px) rotate(-45deg);
    }

    .btn {
      border: 1px solid var(--gold);
      color: var(--gold2);
      background: transparent;
      padding: 14px 26px;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: .12em;
      font-size: 12px;
      transition: .3s;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .btn:hover {
      background: var(--gold);
      color: black;
      box-shadow: 0 0 35px rgba(214,173,92,.35);
    }

    .hero {
      min-height: calc(100vh - 88px);
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 50px;
      padding: 70px 0 40px;
      position: relative;
    }

    .hero::before {
      content: "";
      position: absolute;
      right: 0;
      top: 10%;
      width: 48%;
      height: 72%;
      background:
        linear-gradient(to left, rgba(0,0,0,.12), rgba(0,0,0,.95)),
        url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?q=80&w=1800&auto=format&fit=crop');
      background-size: cover;
      background-position: center;
      opacity: .32;
      border-left: 1px solid rgba(214,173,92,.16);
      z-index: -1;
    }

    .tagline {
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: .22em;
      font-size: 13px;
      margin-bottom: 28px;
    }

    h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(48px, 6vw, 92px);
      line-height: .96;
      font-weight: 600;
      letter-spacing: -.04em;
      max-width: 670px;
    }

    h1 span {
      color: var(--gold);
    }

    .hero p {
      color: #c7c7c7;
      margin: 28px 0 34px;
      font-size: 17px;
      line-height: 1.8;
      max-width: 560px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }

    .play {
      color: var(--gold2);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: .12em;
    }

    .play span {
      width: 42px;
      height: 42px;
      border: 1px solid var(--gold);
      border-radius: 50%;
      display: grid;
      place-items: center;
    }

    .logo-card {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 560px;
    }

    .logo-frame {
      position: relative;
      width: min(500px, 100%);
      padding: 35px;
      border: 1px solid var(--line);
      background:
        radial-gradient(circle at 50% 30%, rgba(214,173,92,.22), transparent 45%),
        rgba(0,0,0,.35);
      box-shadow:
        0 0 80px rgba(214,173,92,.12),
        inset 0 0 40px rgba(214,173,92,.04);
    }

    .logo-frame::before,
    .logo-frame::after {
      content: "";
      position: absolute;
      width: 84px;
      height: 84px;
      border-color: var(--gold);
      border-style: solid;
    }

    .logo-frame::before {
      top: -1px;
      left: -1px;
      border-width: 2px 0 0 2px;
    }

    .logo-frame::after {
      right: -1px;
      bottom: -1px;
      border-width: 0 2px 2px 0;
    }

    .logo-frame img {
      width: 100%;
      display: block;
      filter: drop-shadow(0 16px 35px rgba(214,173,92,.22));
    }

    .orbit {
      position: absolute;
      width: 520px;
      height: 520px;
      border: 1px solid rgba(214,173,92,.12);
      border-radius: 50%;
      animation: spin 28s linear infinite;
    }

    .orbit::before {
      content: "";
      position: absolute;
      top: 48px;
      left: 86px;
      width: 10px;
      height: 10px;
      background: var(--gold);
      border-radius: 50%;
      box-shadow: 0 0 22px var(--gold);
    }

    @keyframes spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    .stats {
      padding: 0 0 70px;
    }

    .stats-box {
      border: 1px solid var(--line);
      border-radius: 22px;
      background: rgba(0,0,0,.46);
      box-shadow: 0 0 45px rgba(214,173,92,.1);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      overflow: hidden;
    }

    .stat {
      padding: 30px;
      border-right: 1px solid rgba(214,173,92,.18);
    }

    .stat:last-child {
      border-right: 0;
    }

    .stat strong {
      display: block;
      color: var(--gold2);
      font-family: 'Cormorant Garamond', serif;
      font-size: 38px;
      margin-bottom: 8px;
    }

    .stat span {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
    }

    section {
      padding: 80px 0;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      gap: 30px;
      align-items: end;
      margin-bottom: 42px;
    }

    .eyebrow {
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: .22em;
      font-size: 12px;
      margin-bottom: 12px;
    }

    h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(36px, 4vw, 62px);
      line-height: 1;
      font-weight: 600;
    }

    h2 span {
      color: var(--gold);
    }

    .services-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 50px;
      align-items: center;
    }

    .service-list {
      list-style: none;
      margin-top: 28px;
      display: grid;
      gap: 18px;
    }

    .service-list li {
      color: #d6d6d6;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 15px;
    }

    .service-list li::before {
      content: "⌂";
      color: var(--gold);
    }

    .gold-device {
      min-height: 430px;
      border: 1px solid var(--line);
      border-radius: 28px;
      background:
        radial-gradient(circle at 50% 55%, rgba(214,173,92,.28), transparent 30%),
        linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.01));
      position: relative;
      overflow: hidden;
      display: grid;
      place-items: center;
    }

    .gold-device::before {
      content: "";
      position: absolute;
      width: 330px;
      height: 330px;
      border: 1px solid rgba(214,173,92,.22);
      border-radius: 50%;
      animation: spin 22s linear infinite;
    }

    .gold-device .badge {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      background: rgba(214,173,92,.1);
      border: 1px solid var(--gold);
      display: grid;
      place-items: center;
      color: var(--gold);
      font-family: 'Cormorant Garamond', serif;
      font-size: 44px;
      position: relative;
      z-index: 2;
      box-shadow: 0 0 70px rgba(214,173,92,.22);
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .project-card {
      min-height: 360px;
      border: 1px solid rgba(214,173,92,.22);
      border-radius: 22px;
      overflow: hidden;
      background: #111;
      position: relative;
    }

    .project-card img {
      width: 100%;
      height: 230px;
      object-fit: cover;
      opacity: .78;
      transition: .35s;
    }

    .project-card:hover img {
      transform: scale(1.04);
      opacity: 1;
    }

    .project-info {
      padding: 22px;
    }

    .project-info small {
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: .12em;
      font-size: 10px;
    }

    .project-info h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 27px;
      margin: 8px 0 6px;
    }

    .project-info p {
      color: var(--muted);
      font-size: 14px;
    }

    .process {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .step {
      border: 1px solid rgba(214,173,92,.18);
      padding: 26px;
      border-radius: 22px;
      background: rgba(255,255,255,.035);
      list-style: none;
    }

    .step strong {
      color: var(--gold);
      font-family: 'Cormorant Garamond', serif;
      font-size: 38px;
    }

    .step h3 {
      margin: 14px 0 10px;
      font-size: 18px;
    }

    .step p {
      color: var(--muted);
      line-height: 1.7;
      font-size: 14px;
    }

    .contact-box {
      border: 1px solid var(--line);
      border-radius: 30px;
      padding: 44px;
      background:
        linear-gradient(135deg, rgba(214,173,92,.1), rgba(255,255,255,.02)),
        rgba(0,0,0,.42);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    form {
      display: grid;
      gap: 14px;
    }

    input, textarea {
      width: 100%;
      border: 1px solid rgba(214,173,92,.18);
      background: rgba(255,255,255,.055);
      color: white;
      padding: 16px;
      border-radius: 14px;
      outline: none;
      font-family: inherit;
    }

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

    /* ---------- FAQ ---------- */
    .faq-list {
      display: grid;
      gap: 14px;
      max-width: 920px;
      margin: 0 auto;
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: 18px;
      background: rgba(255,255,255,.035);
      overflow: hidden;
      transition: border-color .25s ease, background .25s ease;
    }

    .faq-item[open] {
      border-color: rgba(214,173,92,.5);
      background: rgba(214,173,92,.05);
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 22px 26px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 600;
      color: #f0f0f0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .faq-item summary::-webkit-details-marker { display: none; }

    .faq-item summary::after {
      content: "+";
      color: var(--gold);
      font-family: 'Inter', sans-serif;
      font-size: 28px;
      font-weight: 300;
      line-height: 1;
      transition: transform .3s ease;
      flex-shrink: 0;
    }

    .faq-item[open] summary::after {
      transform: rotate(45deg);
    }

    .faq-answer {
      padding: 0 26px 24px;
      color: #c7c7c7;
      line-height: 1.8;
      font-size: 15px;
    }

    .faq-answer a {
      color: var(--gold);
      text-decoration: underline;
      text-decoration-color: rgba(214,173,92,.4);
      text-underline-offset: 3px;
    }

    .faq-answer strong {
      color: var(--gold2);
      font-weight: 600;
    }

    /* ---------- Content pages (services / projects detail) ---------- */
    .page-hero {
      padding: 80px 0 50px;
      text-align: center;
    }

    .page-hero h1 {
      max-width: 900px;
      margin: 16px auto 0;
      font-size: clamp(40px, 5.5vw, 76px);
    }

    .page-hero .lede {
      max-width: 700px;
      margin: 26px auto 0;
      color: #c7c7c7;
      font-size: 18px;
      line-height: 1.7;
    }

    .breadcrumbs {
      max-width: 920px;
      margin: 0 auto 36px;
      font-size: 12px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .breadcrumbs a {
      color: var(--gold);
      text-decoration: none;
    }

    .breadcrumbs a:hover { text-decoration: underline; }

    .breadcrumbs .sep {
      margin: 0 10px;
      color: rgba(214,173,92,.4);
    }

    .prose {
      max-width: 760px;
      margin: 0 auto;
      color: #d0d0d0;
      line-height: 1.85;
      font-size: 17px;
    }

    .prose h2 {
      margin: 56px 0 18px;
      font-size: clamp(28px, 3.4vw, 44px);
    }

    .prose h3 {
      margin: 38px 0 14px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      color: var(--gold2);
    }

    .prose p { margin: 0 0 18px; }

    .prose ul, .prose ol {
      margin: 0 0 22px 22px;
      padding: 0;
    }

    .prose li { margin: 8px 0; }

    .prose a {
      color: var(--gold);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .prose strong { color: var(--gold2); }

    .cta-band {
      margin: 60px auto;
      padding: 44px;
      max-width: 920px;
      border: 1px solid var(--line);
      border-radius: 24px;
      background:
        linear-gradient(135deg, rgba(214,173,92,.12), rgba(255,255,255,.02)),
        rgba(0,0,0,.42);
      text-align: center;
    }

    .cta-band h2 {
      font-size: clamp(28px, 3.6vw, 44px);
      margin-bottom: 14px;
    }

    .cta-band p {
      color: #c7c7c7;
      max-width: 540px;
      margin: 0 auto 24px;
      line-height: 1.7;
    }

    .service-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      max-width: 1180px;
      margin: 40px auto 0;
    }

    .service-card {
      display: block;
      padding: 32px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: rgba(255,255,255,.035);
      color: inherit;
      text-decoration: none;
      transition: border-color .25s ease, transform .25s ease, background .25s ease;
    }

    .service-card:hover {
      border-color: rgba(214,173,92,.55);
      transform: translateY(-4px);
      background: rgba(214,173,92,.06);
    }

    .service-card .eyebrow { margin-bottom: 10px; }

    .service-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      margin-bottom: 12px;
    }

    .service-card p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
      margin-bottom: 18px;
    }

    .service-card .arrow {
      color: var(--gold);
      font-size: 13px;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    footer {
      border-top: 1px solid rgba(214,173,92,.14);
      padding: 30px 0;
      color: var(--muted);
      font-size: 13px;
      text-align: center;
    }

    /* WhatsApp — inline link inside the contact form */
    .contact-or {
      margin: 22px 0 12px;
      text-align: center;
      color: var(--muted);
      font-size: 12px;
      letter-spacing: .18em;
      text-transform: uppercase;
      position: relative;
    }

    .contact-or::before,
    .contact-or::after {
      content: "";
      display: inline-block;
      width: 30px;
      height: 1px;
      background: rgba(214,173,92,.28);
      vertical-align: middle;
      margin: 0 12px;
    }

    .whatsapp-inline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      width: 100%;
      padding: 14px 22px;
      border: 1px solid rgba(37,211,102,.55);
      background: rgba(37,211,102,.08);
      color: #25D366;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: .12em;
      font-size: 12px;
      font-weight: 500;
      transition: .3s;
    }

    .whatsapp-inline:hover {
      background: #25D366;
      color: #050505;
      box-shadow: 0 0 30px rgba(37,211,102,.35);
    }

    .whatsapp-inline .wa-icon {
      width: 20px;
      height: 20px;
    }

    /* WhatsApp — floating action button */
    .whatsapp-fab {
      position: fixed;
      right: 24px;
      bottom: calc(24px + env(safe-area-inset-bottom, 0px));
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #25D366;
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.55);
      z-index: 50;
      transition: transform .25s ease, box-shadow .25s ease;
      animation: wa-pulse 2.4s ease-out infinite;
    }

    .whatsapp-fab svg {
      width: 32px;
      height: 32px;
    }

    .whatsapp-fab:hover,
    .whatsapp-fab:focus-visible {
      transform: scale(1.08);
      box-shadow: 0 14px 40px rgba(37,211,102,.55);
      outline: none;
    }

    @keyframes wa-pulse {
      0%   { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.55); }
      70%  { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 18px rgba(37,211,102,0); }
      100% { box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
    }

    @media (prefers-reduced-motion: reduce) {
      .whatsapp-fab { animation: none; }
    }

    /* ------- TABLET / MOBILE (≤ 980px) ------- */
    @media (max-width: 980px) {
      body {
        padding-left: 0;
        padding-bottom: calc(90px + env(safe-area-inset-bottom, 0px));
      }

      .side-rail {
        display: none;
      }

      /* Header: show hamburger, hide desktop nav and "Let's Talk" pill */
      .nav-toggle {
        display: inline-flex;
      }

      .btn-talk {
        display: none;
      }

      /* Off-canvas / overlay nav */
      .menu {
        position: fixed;
        inset: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        background: rgba(5,5,5,.96);
        backdrop-filter: blur(20px);
        z-index: 8;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity .25s ease, transform .25s ease;
        padding: 100px 24px 60px;
      }

      .menu a {
        font-size: 22px;
        letter-spacing: .14em;
        padding: 18px 0;
        width: 100%;
        max-width: 320px;
        text-align: center;
        border-bottom: 1px solid rgba(214,173,92,.12);
      }

      .menu a:last-child {
        border-bottom: 0;
      }

      body.nav-open .menu {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      body.nav-open {
        overflow: hidden;
      }

      /* Hero stacks; remove the side image (it sits awkwardly behind text) */
      .hero {
        grid-template-columns: 1fr;
        padding: 50px 0 30px;
        min-height: auto;
        gap: 30px;
      }

      .hero::before {
        display: none;
      }

      .hero p {
        font-size: 16px;
        margin: 22px 0 28px;
      }

      .hero-actions {
        gap: 16px;
      }

      /* Grids collapse to single column */
      .stats-box,
      .projects-grid,
      .process,
      .contact-box,
      .services-grid {
        grid-template-columns: 1fr;
      }

      .stat {
        border-right: 0;
        border-bottom: 1px solid rgba(214,173,92,.18);
      }

      .stat:last-child {
        border-bottom: 0;
      }

      .stat strong {
        font-size: 32px;
      }

      /* Section padding tightens */
      section {
        padding: 56px 0;
      }

      .section-head {
        display: block;
        margin-bottom: 28px;
      }

      .section-head .btn {
        margin-top: 22px;
      }

      /* Logo card and decorative elements */
      .logo-card {
        min-height: 420px;
      }

      .orbit {
        width: min(360px, 80vw);
        height: min(360px, 80vw);
      }

      .logo-frame {
        padding: 24px;
        width: min(420px, 100%);
      }

      .gold-device {
        min-height: 320px;
      }

      .gold-device::before {
        width: min(260px, 70vw);
        height: min(260px, 70vw);
      }

      /* Project cards a touch tighter */
      .project-card {
        min-height: auto;
      }

      .project-card img {
        height: 220px;
      }

      /* Contact box: roomier on a single column */
      .contact-box {
        padding: 28px;
        border-radius: 22px;
        gap: 24px;
      }

      .contact-box h2 {
        font-size: clamp(30px, 7vw, 44px);
      }

      form button.btn {
        width: 100%;
        justify-content: center;
      }

      /* Footer: stack and center */
      footer .container {
        flex-direction: column !important;
        text-align: center;
        gap: 8px !important;
      }

      /* FAQ + content pages */
      .faq-item summary {
        padding: 18px 20px;
        font-size: 18px;
      }

      .faq-answer {
        padding: 0 20px 20px;
        font-size: 14px;
      }

      .service-cards {
        grid-template-columns: 1fr;
      }

      .page-hero {
        padding: 50px 0 30px;
      }

      .prose {
        font-size: 16px;
      }

      .cta-band {
        padding: 28px 22px;
        margin: 40px auto;
      }
    }

    /* ------- TABLET-ONLY: keep 2-column grids where they read better (561–980px) ------- */
    @media (min-width: 561px) and (max-width: 980px) {
      .projects-grid,
      .process {
        grid-template-columns: repeat(2, 1fr);
      }

      .stats-box {
        grid-template-columns: repeat(2, 1fr);
      }

      .stats-box .stat:nth-child(odd) {
        border-right: 1px solid rgba(214,173,92,.18);
      }

      .stats-box .stat:nth-child(-n+2) {
        border-bottom: 1px solid rgba(214,173,92,.18);
      }

      .stats-box .stat:last-child,
      .stats-box .stat:nth-last-child(2) {
        border-bottom: 0;
      }
    }

    /* ------- MOBILE (≤ 560px) ------- */
    @media (max-width: 560px) {
      h1 {
        font-size: clamp(38px, 11vw, 56px);
      }

      h2 {
        font-size: clamp(30px, 8vw, 44px);
      }

      .brand img {
        width: 105px;
      }

      .nav {
        min-height: 72px;
      }

      .tagline {
        font-size: 11px;
        margin-bottom: 18px;
      }

      .logo-card {
        min-height: 360px;
      }

      .logo-frame {
        padding: 18px;
      }

      .logo-frame::before,
      .logo-frame::after {
        width: 56px;
        height: 56px;
      }

      .stat {
        padding: 22px;
      }

      .stat strong {
        font-size: 28px;
      }

      .contact-box {
        padding: 22px;
      }

      .project-info {
        padding: 18px;
      }

      .project-info h3 {
        font-size: 22px;
      }

      .step {
        padding: 22px;
      }

      .step strong {
        font-size: 32px;
      }

      .whatsapp-fab {
        right: 16px;
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
        width: 54px;
        height: 54px;
      }

      .whatsapp-fab svg {
        width: 28px;
        height: 28px;
      }

      .contact-or::before,
      .contact-or::after {
        width: 18px;
        margin: 0 8px;
      }
    }

    /* ------- VERY SMALL PHONES (≤ 380px) ------- */
    @media (max-width: 380px) {
      .container {
        width: calc(100% - 24px);
      }

      h1 {
        font-size: 36px;
      }

      .hero p {
        font-size: 15px;
      }

      .brand img {
        width: 95px;
      }

      .logo-card {
        min-height: 300px;
      }

      .logo-frame {
        padding: 14px;
      }

      .orbit {
        width: 75vw;
        height: 75vw;
      }

      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .hero-actions .btn,
      .hero-actions .play {
        justify-content: center;
      }

      .play {
        gap: 10px;
      }
    }