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

    :root {
      --black:     #0A0A0A;
      --black-mid: #111113;
      --black-card:#161618;
      --white:     #F0EDE7;
      --dim:       rgba(240,237,231,0.4);
      --dimmer:    rgba(240,237,231,0.22);
      --slate:     #7A8694;
      --rule:      rgba(255,255,255,0.08);
      --wa:        #25D366;
      --wa-dark:   #1da851;
      --font-head: 'Space Grotesk', system-ui, sans-serif;
      --font-body: 'DM Sans', system-ui, sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--black);
      color: var(--white);
      overflow-x: hidden;
    }

    h1, h2, h3 { font-family: var(--font-head); letter-spacing: -0.03em; line-height: 1.0; }
    p { line-height: 1.75; }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
    @media (max-width: 768px) { .container { padding: 0 24px; } }

    .fade-up {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 15px 28px;
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      border-radius: 2px;
      transition: all 0.2s ease;
      white-space: nowrap;
    }
    .btn-wa { background: var(--wa); color: #000; }
    .btn-wa:hover { background: var(--wa-dark); transform: translateY(-1px); }
    .btn-ghost {
      background: transparent;
      color: var(--white);
      border: 1px solid rgba(240,237,231,0.25);
    }
    .btn-ghost:hover { border-color: var(--white); transform: translateY(-1px); }
    .btn-ghost-dark {
      background: transparent;
      color: var(--black);
      border: 1px solid rgba(10,10,10,0.35);
    }
    .btn-ghost-dark:hover { background: var(--black); color: var(--white); }

    /* ═══ HEADER ═══ */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 28px 0;
      transition: background 0.4s, padding 0.3s, border-color 0.4s;
      border-bottom: 1px solid transparent;
    }
    header.scrolled {
      background: rgba(10,10,10,0.95);
      backdrop-filter: blur(16px);
      padding: 18px 0;
      border-color: var(--rule);
    }
    header .container { display: flex; align-items: center; justify-content: space-between; }

    .logo-wrap { display: flex; align-items: center; gap: 11px; text-decoration: none; }
    .logo-mark { width: 32px; height: 32px; flex-shrink: 0; }
    .logo-name {
      font-family: var(--font-head);
      font-size: 15px; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--white);
    }
    .logo-sub {
      font-family: var(--font-body);
      font-size: 9px; font-weight: 400;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--slate); display: block; margin-top: 2px;
    }

    nav { display: flex; gap: 40px; }
    nav a {
      font-size: 12px; font-weight: 500;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--dim); text-decoration: none; transition: color 0.2s;
    }
    nav a:hover { color: var(--white); }

    .header-btn { flex-shrink: 0; }
    .header-btn .btn { padding: 11px 20px; font-size: 12px; }

    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; background: none; border: none;
    }
    .hamburger span { display: block; width: 22px; height: 1px; background: var(--white); transition: all 0.25s; }

    .mobile-menu {
      display: none; position: fixed; inset: 0;
      background: var(--black); z-index: 99;
      flex-direction: column; align-items: center; justify-content: center; gap: 36px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: var(--font-head); font-size: 40px; font-weight: 700;
      color: var(--white); text-decoration: none; letter-spacing: -0.03em;
    }
    .mobile-close { position: absolute; top: 24px; right: 28px; background: none; border: none; color: var(--slate); font-size: 24px; cursor: pointer; }
    .mobile-wa { margin-top: 8px; }

    @media (max-width: 900px) {
      nav, .header-btn { display: none; }
      .hamburger { display: flex; }
    }

    /* ═══ HERO ═══ */
    #inicio {
      min-height: 96vh;
      background: var(--black);
      display: flex; align-items: flex-end;
      padding-top: 120px; padding-bottom: 80px;
      position: relative; overflow: hidden;
    }
    .hero-rule {
      position: absolute; right: calc(50% - 200px);
      top: 0; bottom: 0; width: 1px; background: var(--rule);
    }
    .hero-inner {
      display: grid; grid-template-columns: 1fr 420px;
      gap: 0; align-items: end; width: 100%;
    }
    .hero-label {
      font-size: 11px; font-weight: 500; letter-spacing: 0.24em;
      text-transform: uppercase; color: var(--slate); margin-bottom: 36px;
      display: flex; align-items: center; gap: 14px;
    }
    .hero-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--slate); }

    h1.hero-h1 {
      font-size: clamp(60px, 7.5vw, 108px); font-weight: 700;
      color: var(--white); line-height: 0.95; letter-spacing: -0.04em; margin-bottom: 48px;
    }
    .hero-sub {
      font-size: 16px; font-weight: 300; color: var(--dim);
      max-width: 440px; margin-bottom: 52px; line-height: 1.8;
    }
    .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

    .hero-flag {
      display: inline-flex; align-items: center; gap: 9px;
      padding: 8px 15px 8px 13px; border: 1px solid var(--rule);
      background: var(--black-card); border-radius: 100px;
      font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--white); margin-bottom: 30px;
    }
    .hero-flag::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%;
      background: var(--wa); box-shadow: 0 0 0 3px rgba(37,211,102,0.16);
    }
    .hero-anchor { display: flex; align-items: center; gap: 16px; margin-top: 30px; flex-wrap: wrap; }
    .ha-price { font-family: var(--font-head); font-size: 14px; font-weight: 500; letter-spacing: 0.02em; color: var(--white); }
    .ha-price b { font-weight: 700; }
    .ha-sep { width: 1px; height: 14px; background: var(--rule); }
    .ha-note { font-size: 12px; color: var(--slate); letter-spacing: 0.03em; }
    @media (max-width: 960px) { .ha-sep { display: none; } }

    .hero-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0; padding-bottom: 4px; }
    .hero-img-block {
      width: 100%; border: 1px solid var(--rule); border-radius: 2px;
      overflow: hidden; margin-bottom: 24px;
    }
    .img-placeholder {
      background: var(--black-card);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 14px; position: relative; overflow: hidden;
    }
    .img-placeholder::before {
      content: ''; position: absolute; inset: 0;
      background: repeating-linear-gradient(-45deg, transparent, transparent 16px, rgba(255,255,255,0.018) 16px, rgba(255,255,255,0.018) 32px);
    }
    .ph-label {
      position: relative; font-family: monospace; font-size: 10px;
      color: var(--slate); letter-spacing: 0.08em; text-align: center; line-height: 1.8; padding: 0 24px;
    }
    .ph-icon { position: relative; width: 36px; height: 36px; opacity: 0.25; }
    .hero-img-block .img-placeholder { height: 380px; }

    .hero-stats {
      width: 100%; display: grid; grid-template-columns: 1fr 1fr;
      gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 2px;
    }
    .hero-stat { background: var(--black); padding: 20px 22px; }
    .hero-stat strong { font-family: var(--font-head); font-size: 28px; font-weight: 700; letter-spacing: -0.03em; display: block; color: var(--white); }
    .hero-stat span { font-size: 11px; color: var(--slate); letter-spacing: 0.06em; text-transform: uppercase; }

    @media (max-width: 960px) {
      .hero-inner { grid-template-columns: 1fr; gap: 56px; }
      .hero-right { align-items: flex-start; }
      .hero-img-block { max-width: 500px; }
      .hero-stats { max-width: 500px; }
      h1.hero-h1 { font-size: clamp(52px, 12vw, 88px); }
      .hero-ctas .btn { width: 100%; justify-content: center; }
    }

    /* ═══ VALUE ═══ */
    .value-section { background: #F0EDE7; padding: 128px 0; }
    .section-label {
      font-size: 11px; font-weight: 500; letter-spacing: 0.22em;
      text-transform: uppercase; color: #7A8694; margin-bottom: 14px;
      display: flex; align-items: center; gap: 14px;
    }
    .section-label::before { content: ''; display: block; width: 24px; height: 1px; background: #7A8694; }
    .section-label.light { color: var(--slate); }
    .section-label.light::before { background: var(--slate); }

    .section-h2 { font-size: clamp(30px, 3.5vw, 46px); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 72px; }
    .section-h2.on-dark { color: var(--white); }
    .section-h2.on-light { color: var(--black); }

    .value-cols {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1px; background: rgba(10,10,10,0.1); border: 1px solid rgba(10,10,10,0.1);
    }
    .value-col { background: #F0EDE7; padding: 44px 36px; transition: background 0.25s; }
    .value-col:hover { background: #E8E5DF; }
    .v-num { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: #7A8694; margin-bottom: 28px; }
    .v-icon { width: 36px; height: 36px; margin-bottom: 20px; }
    .v-icon svg { width: 100%; height: 100%; }
    .value-col h3 { font-family: var(--font-head); font-size: 19px; font-weight: 700; letter-spacing: -0.02em; color: var(--black); margin-bottom: 12px; }
    .value-col p { font-size: 14px; color: #556070; line-height: 1.75; }

    @media (max-width: 768px) {
      .value-cols { grid-template-columns: 1fr; }
      .value-section { padding: 80px 0; }
    }

    /* ═══ GALLERY PREVIEW ═══ */
    #galeria {
      background: var(--black-mid); padding: 128px 0;
      border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
    }
    .gallery-grid {
      display: grid; grid-template-columns: repeat(12, 1fr);
      gap: 6px; margin-bottom: 56px;
    }
    .g-item { position: relative; overflow: hidden; border-radius: 2px; cursor: pointer; }
    .g-item:nth-child(1) { grid-column: 1 / 6; }
    .g-item:nth-child(2) { grid-column: 6 / 13; }
    .g-item:nth-child(3) { grid-column: 1 / 5; }
    .g-item:nth-child(4) { grid-column: 5 / 9; }
    .g-item:nth-child(5) { grid-column: 9 / 13; }
    .g-item .img-placeholder { height: 300px; }
    .g-item:nth-child(1) .img-placeholder,
    .g-item:nth-child(2) .img-placeholder { height: 360px; }
    .g-inner { transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94); }
    .g-item:hover .g-inner { transform: scale(1.04); }
    .g-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(10,10,10,0.75) 0%, transparent 50%);
      opacity: 0; transition: opacity 0.3s ease;
      display: flex; align-items: flex-end; padding: 20px;
    }
    .g-item:hover .g-overlay { opacity: 1; }
    .g-label { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); transform: translateY(6px); transition: transform 0.3s ease; }
    .g-item:hover .g-label { transform: translateY(0); }
    .gallery-cta { text-align: center; }

    @media (max-width: 768px) {
      #galeria { padding: 80px 0; }
      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .g-item { grid-column: auto !important; }
      .g-item .img-placeholder,
      .g-item:nth-child(1) .img-placeholder,
      .g-item:nth-child(2) .img-placeholder { height: 180px; }
    }

    /* ═══ PROCESS ═══ */
    #processo { background: #F0EDE7; padding: 128px 0; }
    .process-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1px; background: rgba(10,10,10,0.1); border: 1px solid rgba(10,10,10,0.1); margin-top: 64px;
    }
    .p-step { background: #F0EDE7; padding: 44px 32px; }
    .p-num { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; color: #7A8694; margin-bottom: 32px; }
    .p-step h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; letter-spacing: -0.02em; color: var(--black); margin-bottom: 12px; }
    .p-step p { font-size: 14px; color: #556070; line-height: 1.75; }

    @media (max-width: 768px) {
      #processo { padding: 80px 0; }
      .process-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } }

    /* ═══ ATELIÊ / FABRICAÇÃO ═══ */
    #atelier { background: var(--black); padding: 128px 0; border-top: 1px solid var(--rule); }
    .atelier-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 56px; }
    .atelier-head .section-label { margin-bottom: 18px; }
    .atelier-lead { font-size: 16px; font-weight: 300; color: var(--dim); line-height: 1.85; max-width: 460px; }
    .atelier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
    .atelier-frame { margin: 0; }
    .atelier-frame .img-placeholder { height: 420px; border: 1px solid var(--rule); border-radius: 2px; }
    .atelier-frame figcaption { display: flex; align-items: center; gap: 12px; margin-top: 16px; font-family: var(--font-head); font-size: 13px; font-weight: 500; letter-spacing: 0.02em; color: var(--white); }
    .af-num { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: var(--slate); }
    .atelier-foot { margin-top: 48px; padding-top: 36px; border-top: 1px solid var(--rule); }
    .atelier-foot p { font-family: var(--font-head); font-size: clamp(18px, 2.2vw, 24px); font-weight: 400; color: var(--white); line-height: 1.5; max-width: 820px; letter-spacing: -0.01em; }

    @media (max-width: 900px) {
      .atelier-head { grid-template-columns: 1fr; gap: 22px; }
      .atelier-grid { grid-template-columns: 1fr; }
      .atelier-frame .img-placeholder { height: 300px; }
      #atelier { padding: 80px 0; }
    }

    /* ═══ PARA QUEM É ═══ */
    #para-quem { background: var(--black-mid); padding: 128px 0; border-top: 1px solid var(--rule); }
    .pq-dominant { display: grid; grid-template-columns: 1.15fr 1fr; gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 2px; overflow: hidden; margin-top: 56px; }
    .pq-img { background: var(--black-card); }
    .pq-img .img-placeholder { height: 100%; min-height: 440px; }
    .pq-dom-text { background: var(--black-card); padding: 60px 56px; display: flex; flex-direction: column; justify-content: center; }
    .pq-tag { display: inline-flex; align-self: flex-start; align-items: center; gap: 10px; font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--wa); margin-bottom: 24px; }
    .pq-tag::before { content: ''; width: 18px; height: 1px; background: var(--wa); }
    .pq-dom-text h3 { font-family: var(--font-head); font-size: clamp(28px, 3vw, 38px); font-weight: 700; letter-spacing: -0.03em; color: var(--white); line-height: 1.05; margin-bottom: 22px; }
    .pq-dom-text p { font-size: 16px; font-weight: 300; color: var(--dim); line-height: 1.8; margin-bottom: 32px; max-width: 460px; }
    .pq-link { font-family: var(--font-head); font-size: 14px; font-weight: 500; letter-spacing: 0.02em; color: var(--white); text-decoration: none; align-self: flex-start; border-bottom: 1px solid var(--wa); padding-bottom: 4px; transition: color 0.2s; }
    .pq-link:hover { color: var(--wa); }
    .pq-also { margin-top: 48px; margin-bottom: 18px; font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--slate); display: flex; align-items: center; gap: 14px; }
    .pq-also::before { content: ''; width: 24px; height: 1px; background: var(--slate); }
    .pq-secondary { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
    .pq-sec-card { background: var(--black-card); border: 1px solid var(--rule); border-radius: 2px; padding: 38px 36px; transition: background 0.2s; }
    .pq-sec-card:hover { background: #1a1a1c; }
    .pq-sec-card h4 { font-family: var(--font-head); font-size: 18px; font-weight: 700; letter-spacing: -0.02em; color: var(--white); margin-bottom: 12px; }
    .pq-sec-card p { font-size: 14px; color: var(--slate); line-height: 1.7; }

    @media (max-width: 900px) {
      .pq-dominant { grid-template-columns: 1fr; }
      .pq-img .img-placeholder { min-height: 280px; }
      .pq-dom-text { padding: 44px 32px; }
      .pq-secondary { grid-template-columns: 1fr; }
      #para-quem { padding: 80px 0; }
    }

    /* ═══ ABOUT ═══ */
    #sobre { background: #F0EDE7; padding: 128px 0; }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 1px; background: rgba(10,10,10,0.1); border: 1px solid rgba(10,10,10,0.1);
    }
    .about-img .img-placeholder { height: 520px; }
    .about-text { background: #F0EDE7; padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; }
    .about-text .section-label { margin-bottom: 14px; }
    .about-text h2 { font-size: clamp(28px, 3vw, 40px); font-weight: 700; letter-spacing: -0.03em; color: var(--black); margin-bottom: 28px; line-height: 1.1; }
    .about-text p { font-size: 16px; color: #4a5560; line-height: 1.8; margin-bottom: 18px; }
    .about-rule { margin-top: 40px; display: flex; align-items: center; gap: 14px; }
    .about-rule::before { content: ''; display: block; width: 28px; height: 1px; background: #7A8694; }
    .about-rule span { font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: #7A8694; }

    @media (max-width: 900px) {
      .about-grid { grid-template-columns: 1fr; }
      .about-img .img-placeholder { height: 280px; }
      .about-text { padding: 48px 32px; }
      #sobre { padding: 80px 0; }
    }

    /* ═══ CTA FINAL ═══ */
    #contato { background: var(--black); padding: 160px 0; border-top: 1px solid var(--rule); text-align: center; }
    .cta-h2 { font-size: clamp(36px, 5.5vw, 72px); font-weight: 700; letter-spacing: -0.04em; color: var(--white); line-height: 1.0; margin-bottom: 22px; max-width: 660px; margin-left: auto; margin-right: auto; }
    .cta-sub { font-size: 16px; font-weight: 300; color: var(--dim); margin-bottom: 52px; }
    .cta-btn-wrap { display: flex; justify-content: center; }
    .cta-btn-wrap .btn { padding: 20px 52px; font-size: 14px; gap: 12px; }
    .cta-note { margin-top: 24px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate); }

    /* ═══ FOOTER ═══ */
    footer { background: var(--black-mid); border-top: 1px solid var(--rule); padding: 72px 0 36px; }
    .footer-top { display: flex; align-items: center; justify-content: center; margin-bottom: 64px; }
    .f-logo { display: flex; align-items: center; gap: 12px; }
    .f-logo img { width: 34px; height: 34px; }
    .footer-cols {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 48px; padding-bottom: 56px; border-bottom: 1px solid var(--rule);
    }
    .f-col h4 { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--slate); margin-bottom: 22px; }
    .f-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .f-col ul li a { font-size: 13px; color: var(--dimmer); text-decoration: none; transition: color 0.2s; }
    .f-col ul li a:hover { color: var(--white); }
    .f-col address { font-style: normal; font-size: 13px; color: var(--dimmer); line-height: 1.85; }
    .footer-copy { text-align: center; padding-top: 32px; font-size: 11px; letter-spacing: 0.06em; color: rgba(122,134,148,0.45); }

    @media (max-width: 768px) {
      .footer-cols { grid-template-columns: 1fr; gap: 36px; }
      footer { padding: 56px 0 28px; }
    }

    /* ═══ FLOAT WA ═══ */
    .wa-float {
      position: fixed; bottom: 28px; right: 28px; z-index: 200;
      width: 56px; height: 56px; border-radius: 50%; background: var(--wa);
      display: flex; align-items: center; justify-content: center;
      text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.3);
      animation: pulse 3s infinite; transition: transform 0.2s, box-shadow 0.2s;
    }
    .wa-float:hover { transform: scale(1.08); animation: none; box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
    .wa-float svg { width: 26px; height: 26px; fill: #000; }

    @keyframes pulse {
      0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.3); }
      50% { box-shadow: 0 4px 28px rgba(37,211,102,0.55), 0 0 0 8px rgba(37,211,102,0.07); }
    }

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

    :root {
      --black:     #0A0A0A;
      --black-mid: #111113;
      --black-card:#161618;
      --white:     #F0EDE7;
      --dim:       rgba(240,237,231,0.4);
      --dimmer:    rgba(240,237,231,0.22);
      --slate:     #7A8694;
      --rule:      rgba(255,255,255,0.08);
      --wa:        #25D366;
      --wa-dark:   #1da851;
      --font-head: 'Space Grotesk', system-ui, sans-serif;
      --font-body: 'DM Sans', system-ui, sans-serif;
    }

    html { scroll-behavior: smooth; }
    body { font-family: var(--font-body); background: var(--black); color: var(--white); overflow-x: hidden; }
    h1, h2, h3 { font-family: var(--font-head); letter-spacing: -0.03em; line-height: 1.0; }
    p { line-height: 1.75; }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
    @media (max-width: 768px) { .container { padding: 0 24px; } }

    .fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 15px 28px; font-family: var(--font-body);
      font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
      text-transform: uppercase; text-decoration: none;
      border: none; cursor: pointer; border-radius: 2px;
      transition: all 0.2s ease; white-space: nowrap;
    }
    .btn-wa { background: var(--wa); color: #000; }
    .btn-wa:hover { background: var(--wa-dark); transform: translateY(-1px); }
    .btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(240,237,231,0.25); }
    .btn-ghost:hover { border-color: var(--white); transform: translateY(-1px); }

    /* ═══ HEADER ═══ */
    header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(10,10,10,0.95); backdrop-filter: blur(16px);
      padding: 18px 0; border-bottom: 1px solid var(--rule);
    }
    header .container { display: flex; align-items: center; justify-content: space-between; }

    .logo-wrap { display: flex; align-items: center; gap: 11px; text-decoration: none; }
    .logo-mark { width: 32px; height: 32px; flex-shrink: 0; }
    .logo-name { font-family: var(--font-head); font-size: 15px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); }
    .logo-sub { font-family: var(--font-body); font-size: 9px; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--slate); display: block; margin-top: 2px; }

    nav { display: flex; gap: 40px; }
    nav a { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim); text-decoration: none; transition: color 0.2s; }
    nav a:hover, nav a.active { color: var(--white); }

    .header-btn { flex-shrink: 0; }
    .header-btn .btn { padding: 11px 20px; font-size: 12px; }

    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
    .hamburger span { display: block; width: 22px; height: 1px; background: var(--white); }

    .mobile-menu { display: none; position: fixed; inset: 0; background: var(--black); z-index: 99; flex-direction: column; align-items: center; justify-content: center; gap: 36px; }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { font-family: var(--font-head); font-size: 40px; font-weight: 700; color: var(--white); text-decoration: none; letter-spacing: -0.03em; }
    .mobile-close { position: absolute; top: 24px; right: 28px; background: none; border: none; color: var(--slate); font-size: 24px; cursor: pointer; }
    .mobile-wa { margin-top: 8px; }

    @media (max-width: 900px) { nav, .header-btn { display: none; } .hamburger { display: flex; } }

    /* ═══ PAGE HERO ═══ */
    .page-hero { padding: 130px 0 72px; border-bottom: 1px solid var(--rule); }
    .page-hero-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; }
    .page-label { font-size: 11px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--slate); display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
    .page-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--slate); }
    .page-hero h1 { font-size: clamp(52px, 6.5vw, 88px); font-weight: 700; color: var(--white); line-height: 0.95; letter-spacing: -0.04em; }
    .page-hero-right { flex-shrink: 0; }
    .page-hero-right p { font-size: 15px; font-weight: 300; color: var(--dim); max-width: 340px; line-height: 1.8; margin-bottom: 20px; }
    .piece-count { font-family: var(--font-head); font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate); }
    @media (max-width: 768px) { .page-hero { padding: 110px 0 48px; } .page-hero-inner { flex-direction: column; gap: 28px; } }

    /* ═══ FILTER BAR — hidden ═══ */

    /* ═══ MASONRY GRID ═══ */
    .gallery-section { padding: 64px 0 120px; }

    .masonry { columns: 3; column-gap: 8px; }
    @media (max-width: 900px) { .masonry { columns: 2; } }
    @media (max-width: 480px) { .masonry { columns: 1; } }

    .masonry-item {
      break-inside: avoid; margin-bottom: 8px;
      position: relative; overflow: hidden; border-radius: 2px;
      cursor: pointer; display: block;
    }
    .masonry-item img { width: 100%; display: block; transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94); }
    .masonry-item:hover img { transform: scale(1.04); }

    .masonry-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.1) 45%, transparent 70%);
      opacity: 0; transition: opacity 0.3s ease;
      display: flex; flex-direction: column; justify-content: flex-end; padding: 20px 22px;
    }
    .masonry-item:hover .masonry-overlay { opacity: 1; }

    .m-title { font-family: var(--font-head); font-size: 15px; font-weight: 600; color: var(--white); letter-spacing: -0.01em; margin-bottom: 4px; transform: translateY(8px); transition: transform 0.3s ease; }
    .m-cat { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(240,237,231,0.55); transform: translateY(8px); transition: transform 0.3s ease 0.04s; }
    .masonry-item:hover .m-title, .masonry-item:hover .m-cat { transform: translateY(0); }

    /* Featured row */
    .featured-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 8px; }
    .featured-row .masonry-item { margin-bottom: 0; }
    .featured-row .masonry-item img { height: 480px; object-fit: cover; }
    @media (max-width: 768px) { .featured-row { grid-template-columns: 1fr; } .featured-row .masonry-item img { height: 260px; } }

    .masonry-item.hidden { display: none; }

    /* ── CATEGORY NAV + BLOCKS ── */
    .cat-nav { display: flex; flex-wrap: wrap; gap: 10px; padding: 8px 0 0; }
    .cat-nav a { font-family: var(--font-head); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim); text-decoration: none; padding: 9px 16px; border: 1px solid rgba(240,237,231,0.14); border-radius: 999px; transition: color 0.2s, border-color 0.2s; }
    .cat-nav a:hover { color: var(--white); border-color: var(--white); }

    .cat-block { padding-top: 76px; scroll-margin-top: 92px; }
    .cat-block:first-of-type { padding-top: 40px; }
    .cat-head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin-bottom: 30px; padding-bottom: 18px; border-bottom: 1px solid var(--rule); }
    .cat-head h2 { font-family: var(--font-head); font-size: clamp(26px, 3.4vw, 40px); font-weight: 700; color: var(--white); letter-spacing: -0.03em; }
    .cat-num { color: var(--slate); font-size: 0.46em; font-weight: 500; margin-right: 14px; vertical-align: middle; letter-spacing: 0.04em; }
    .cat-count { font-family: var(--font-head); font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--slate); white-space: nowrap; }
    @media (max-width: 768px) { .cat-block { padding-top: 56px; } .cat-head { flex-direction: column; gap: 8px; align-items: flex-start; } }

    /* ═══ CTA STRIP ═══ */
    .cta-strip { background: var(--black-mid); border-top: 1px solid var(--rule); padding: 80px 0; text-align: center; }
    .cta-strip .section-label { font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--slate); margin-bottom: 14px; display: flex; align-items: center; justify-content: center; gap: 14px; }
    .cta-strip .section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--slate); }
    .cta-strip h2 { font-family: var(--font-head); font-size: clamp(28px, 4vw, 52px); font-weight: 700; letter-spacing: -0.03em; color: var(--white); margin-bottom: 14px; line-height: 1.05; }
    .cta-strip p { font-size: 15px; font-weight: 300; color: var(--dim); margin-bottom: 40px; }

    /* ═══ FOOTER ═══ */
    footer { background: var(--black-mid); border-top: 1px solid var(--rule); padding: 72px 0 36px; }
    .footer-top { display: flex; align-items: center; justify-content: center; margin-bottom: 64px; }
    .f-logo { display: flex; align-items: center; gap: 12px; }
    .f-logo img { width: 34px; height: 34px; }
    .footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; padding-bottom: 56px; border-bottom: 1px solid var(--rule); }
    .f-col h4 { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--slate); margin-bottom: 22px; }
    .f-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .f-col ul li a { font-size: 13px; color: var(--dimmer); text-decoration: none; transition: color 0.2s; }
    .f-col ul li a:hover { color: var(--white); }
    .f-col address { font-style: normal; font-size: 13px; color: var(--dimmer); line-height: 1.85; }
    .footer-copy { text-align: center; padding-top: 32px; font-size: 11px; letter-spacing: 0.06em; color: rgba(122,134,148,0.45); }
    @media (max-width: 768px) { .footer-cols { grid-template-columns: 1fr; gap: 36px; } footer { padding: 56px 0 28px; } }

    /* ═══ FLOAT WA ═══ */
    .wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 200; width: 56px; height: 56px; border-radius: 50%; background: var(--wa); display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.3); animation: pulse 3s infinite; transition: transform 0.2s, box-shadow 0.2s; }
    .wa-float:hover { transform: scale(1.08); animation: none; }
    .wa-float svg { width: 26px; height: 26px; fill: #000; }
    @keyframes pulse { 0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.3); } 50% { box-shadow: 0 4px 28px rgba(37,211,102,0.55), 0 0 0 8px rgba(37,211,102,0.07); } }

    /* ═══ LIGHTBOX ═══ */
    .lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(10,10,10,0.96); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
    .lightbox.open { opacity: 1; pointer-events: all; }
    .lb-inner { position: relative; max-width: 90vw; max-height: 88vh; display: flex; flex-direction: column; align-items: center; }
    .lb-img { max-width: 90vw; max-height: 78vh; object-fit: contain; border-radius: 2px; display: block; }
    .lb-caption { margin-top: 18px; text-align: center; }
    .lb-caption strong { font-family: var(--font-head); font-size: 16px; color: var(--white); display: block; margin-bottom: 4px; }
    .lb-caption span { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); }
    .lb-close { position: fixed; top: 28px; right: 32px; background: none; border: none; color: var(--slate); font-size: 28px; cursor: pointer; transition: color 0.2s; }
    .lb-close:hover { color: var(--white); }
    .lb-nav { position: fixed; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--slate); font-size: 32px; cursor: pointer; padding: 16px; transition: color 0.2s; }
    .lb-nav:hover { color: var(--white); }
    .lb-prev { left: 20px; }
    .lb-next { right: 20px; }