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

    :root {
      --rose:      #c8a0a0;
      --rose-dk:   #a07070;
      --rose-text: #8a6228;
      --gold:      #c9a96e;
      --dark:      #1c1210;
      --dark2:     #2c1c18;
      --text:      #1a1a1a;
      --mid:       #6b5555;
      --light:     #fdf5f0;
      --border:    #edd8d8;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: #fff;
      line-height: 1.6;
    }

    img { display: block; max-width: 100%; height: auto; }
    a { color: inherit; text-decoration: none; }

    /* ── Skip link ── */
    .skip-link {
      position: absolute; top: -9999px; left: 0;
      background: var(--dark); color: #fff;
      padding: 12px 24px; font-weight: 700; font-size: .95rem;
      z-index: 9999; text-decoration: none; border-radius: 0 0 8px 0;
    }
    .skip-link:focus { top: 0; }

    /* ── Focus ── */
    :focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

    /* ═══════════════════════════════════════════
       NAV
    ═══════════════════════════════════════════ */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 48px;
      background: rgba(10,15,30,.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem; font-weight: 700; color: #fff;
    }
    .nav-logo span { color: var(--gold); }
    .nav-links { display: flex; align-items: center; gap: 28px; }
    .nav-link {
      color: rgba(255,255,255,.65); font-size: .88rem;
      font-weight: 500; transition: color .2s;
    }
    .nav-link:hover { color: #fff; }
    @media (max-width: 700px) { .nav-links { display: none; } }
    .nav-cta {
      background: var(--rose-text); color: #fff;
      padding: 9px 20px; border-radius: 40px;
      font-size: .85rem; font-weight: 700; transition: background .2s;
    }
    .nav-cta:hover { background: #5a3a0a; }

    /* ═══════════════════════════════════════════
       LAYOUT UTILITIES
    ═══════════════════════════════════════════ */
    .container      { max-width: 720px;  margin: 0 auto; padding: 0 24px; }
    .container-wide { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
    .container-mid  { max-width: 900px;  margin: 0 auto; padding: 0 48px; }
    @media (max-width: 900px) {
      .container-wide, .container-mid { padding: 0 24px; }
    }

    .section-label {
      display: inline-block; font-size: .72rem; font-weight: 700;
      letter-spacing: .14em; text-transform: uppercase;
      color: var(--rose-text); margin-bottom: 14px;
    }
    .section-label.light { color: var(--gold); }

    section { padding: 88px 0; }
    section.flush-top    { padding-top: 0; }
    section.flush-bottom { padding-bottom: 0; }
    @media (max-width: 900px) { section { padding: 64px 0; } }

    /* ═══════════════════════════════════════════
       BUTTONS
    ═══════════════════════════════════════════ */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 16px 32px; border-radius: 50px;
      font-family: inherit; font-size: 1rem; font-weight: 700;
      border: none; cursor: pointer; text-decoration: none;
      transition: background .2s, transform .15s, box-shadow .15s;
    }
    .btn:hover { transform: translateY(-2px); }

    .btn-primary { background: var(--rose-text); color: #fff; }
    .btn-primary:hover { background: #5a3a0a; }

    .btn-dark { background: var(--dark); color: #fff; }
    .btn-dark:hover { background: var(--dark2); }

    .btn-outline-white {
      background: transparent; color: #fff;
      border: 2px solid rgba(255,255,255,.4);
    }
    .btn-outline-white:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.8); }

    .btn-outline-dark {
      background: transparent; color: var(--dark);
      border: 2px solid var(--dark);
    }
    .btn-outline-dark:hover { background: var(--dark); color: #fff; }

    .btn-white {
      background: #fff; color: var(--rose-dk);
      box-shadow: 0 4px 20px rgba(0,0,0,.12);
    }
    .btn-white:hover { box-shadow: 0 8px 28px rgba(0,0,0,.2); }

    .btn-sm { padding: 11px 22px; font-size: .88rem; }

    /* ═══════════════════════════════════════════
       1. HERO
    ═══════════════════════════════════════════ */
    .hero {
      background: var(--dark);
      padding: 160px 24px 100px;
      text-align: center;
      position: relative; overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; top: -40%; left: 50%;
      transform: translateX(-50%);
      width: 860px; height: 860px;
      background: radial-gradient(circle, rgba(201,169,110,.13) 0%, transparent 68%);
      pointer-events: none;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(201,169,110,.14);
      border: 1px solid rgba(201,169,110,.35);
      color: var(--gold); font-size: .8rem; font-weight: 600;
      letter-spacing: .08em; text-transform: uppercase;
      padding: 7px 16px; border-radius: 50px; margin-bottom: 32px;
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 5vw, 4.2rem);
      line-height: 1.1; color: #fff; margin-bottom: 20px;
      max-width: 820px; margin-left: auto; margin-right: auto;
    }
    .hero h1 em { font-style: normal; color: var(--gold); }
    .hero-sub {
      font-size: clamp(1rem, 2vw, 1.15rem);
      color: rgba(255,255,255,.65);
      max-width: 600px; margin: 0 auto 40px; line-height: 1.75;
    }
    .hero-btns {
      display: flex; gap: 16px; justify-content: center;
      flex-wrap: wrap; margin-bottom: 52px;
    }

    /* social proof row */
    .hero-proof {
      display: flex; align-items: center; justify-content: center;
      gap: 32px; flex-wrap: wrap; margin-bottom: 20px;
    }
    .proof-badge {
      display: flex; align-items: center; gap: 8px;
      font-size: .82rem; color: rgba(255,255,255,.75);
    }
    .proof-badge .stars { color: #f5b400; letter-spacing: 1px; font-size: .85rem; }
    .proof-badge .source { font-weight: 600; color: #fff; }

    /* avatars */
    .hero-avatars {
      display: flex; align-items: center; justify-content: center; gap: 0;
      margin-bottom: 12px;
    }
    .avatar {
      width: 44px; height: 44px; border-radius: 50%;
      border: 2.5px solid var(--dark);
      background: var(--rose); margin-left: -10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; overflow: hidden;
    }
    .avatar:first-child { margin-left: 0; }
    .avatar-label {
      font-size: .8rem; color: rgba(255,255,255,.6); margin-left: 14px;
      text-align: left; line-height: 1.4;
    }
    .avatar-label strong { color: #fff; font-size: .85rem; }

    @media (max-width: 600px) {
      .hero-btns { flex-direction: column; align-items: center; }
      .hero-proof { flex-direction: column; gap: 16px; }
    }

    /* ═══════════════════════════════════════════
       2. TESTIMONIAL STRIP (early)
    ═══════════════════════════════════════════ */
    .testi-strip {
      background: var(--light); padding: 72px 0;
    }
    .testi-strip .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.4rem, 2.5vw, 1.8rem);
      text-align: center; margin-bottom: 40px;
      color: var(--dark);
    }
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    @media (max-width: 860px) {
      .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    }
    .testi-card {
      background: #fff; border-radius: 18px;
      padding: 28px 28px 24px;
      border: 1px solid var(--border);
      display: flex; flex-direction: column; gap: 12px;
    }
    .testi-stars { color: #f5b400; font-size: .95rem; letter-spacing: 2px; }
    .testi-quote {
      font-size: .95rem; color: var(--text);
      line-height: 1.7; flex: 1;
      font-style: italic;
    }
    .testi-meta {
      display: flex; align-items: center; gap: 12px;
      padding-top: 12px; border-top: 1px solid var(--border);
    }
    .testi-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--rose); display: flex; align-items: center;
      justify-content: center; font-size: 1rem; flex-shrink: 0;
    }
    .testi-name { font-size: .88rem; font-weight: 700; }
    .testi-role { font-size: .78rem; color: var(--mid); }

    /* ═══════════════════════════════════════════
       3–7. FEATURE SECTIONS (alternating)
    ═══════════════════════════════════════════ */
    .feature-section { padding: 88px 0; }
    .feature-section.bg-light { background: var(--light); }
    .feature-section.bg-dark  { background: var(--dark); }

    .feature-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }
    .feature-row.reverse .feature-text { order: 2; }
    .feature-row.reverse .feature-visual { order: 1; }

    @media (max-width: 860px) {
      .feature-row { grid-template-columns: 1fr; gap: 40px; }
      .feature-row.reverse .feature-text  { order: 1; }
      .feature-row.reverse .feature-visual { order: 2; }
    }

    .feature-text h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.7rem, 2.5vw, 2.3rem);
      line-height: 1.2; margin-bottom: 14px;
    }
    .feature-text h2.light { color: #fff; }
    .feature-text .feature-desc {
      font-size: 1.02rem; color: var(--mid);
      line-height: 1.8; margin-bottom: 24px;
    }
    .feature-text .feature-desc.light { color: rgba(255,255,255,.65); }

    .feature-bullets {
      list-style: none; display: flex; flex-direction: column; gap: 10px;
      margin-bottom: 32px;
    }
    .feature-bullets li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: .95rem; font-weight: 500;
    }
    .feature-bullets li .icon {
      width: 24px; height: 24px; border-radius: 50%;
      background: rgba(201,169,110,.18);
      display: flex; align-items: center; justify-content: center;
      font-size: .75rem; flex-shrink: 0; color: var(--rose-text);
      font-weight: 800; border: 1px solid rgba(201,169,110,.35);
    }
    .feature-bullets.light li { color: rgba(255,255,255,.85); }

    /* phone mockup */
    .feature-visual {
      display: flex; align-items: center; justify-content: center;
    }
    .phone-mockup {
      width: 260px; height: 480px;
      background: #f5f5f5;
      border-radius: 36px;
      border: 8px solid #222;
      box-shadow: 0 32px 80px rgba(0,0,0,.22), 0 0 0 1px rgba(0,0,0,.08);
      overflow: hidden;
      position: relative;
    }
    .phone-mockup::before {
      content: '';
      position: absolute; top: 14px; left: 50%;
      transform: translateX(-50%);
      width: 80px; height: 18px;
      background: #222; border-radius: 12px;
      z-index: 2;
    }
    .phone-screen {
      width: 100%; height: 100%;
      display: flex; flex-direction: column;
      overflow: hidden;
    }
    .phone-bar {
      height: 52px; background: var(--dark);
      display: flex; align-items: flex-end; padding: 0 16px 10px;
    }
    .phone-bar-logo {
      font-family: 'Playfair Display', serif;
      font-size: .75rem; font-weight: 700; color: #fff;
    }
    .phone-bar-logo span { color: var(--gold); }
    .phone-body { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 10px; background: #fff; }
    .phone-card {
      background: var(--light); border-radius: 10px;
      padding: 10px 12px; font-size: .72rem; color: var(--text);
      line-height: 1.5;
    }
    .phone-card strong { font-weight: 700; color: var(--dark); font-size: .78rem; }
    .phone-card .tag {
      display: inline-block; background: var(--gold);
      color: #fff; font-size: .6rem; font-weight: 700;
      padding: 2px 7px; border-radius: 20px; margin-bottom: 4px;
      letter-spacing: .06em; text-transform: uppercase;
    }
    .phone-btn {
      background: var(--rose-text); color: #fff;
      border-radius: 8px; padding: 9px 12px;
      text-align: center; font-size: .72rem; font-weight: 700;
      margin-top: auto;
    }

    /* laptop mockup */
    .laptop-mockup {
      width: 100%; max-width: 420px;
      background: #1a1a1a; border-radius: 12px 12px 0 0;
      padding: 14px 14px 0;
      box-shadow: 0 24px 64px rgba(0,0,0,.22);
    }
    .laptop-screen {
      background: #fff; border-radius: 6px 6px 0 0;
      overflow: hidden; height: 220px;
    }
    .laptop-bar {
      height: 28px; background: var(--dark);
      display: flex; align-items: center; padding: 0 12px; gap: 6px;
    }
    .laptop-dot {
      width: 8px; height: 8px; border-radius: 50%;
    }
    .laptop-content { padding: 14px; display: flex; flex-direction: column; gap: 8px; }
    .laptop-row { display: flex; gap: 8px; }
    .laptop-block {
      background: var(--light); border-radius: 6px;
      height: 32px; flex: 1;
    }
    .laptop-block.accent { background: rgba(201,169,110,.3); }
    .laptop-block.tall { height: 56px; }
    .laptop-stand {
      width: 40%; margin: 0 auto;
      height: 10px; background: #1a1a1a; border-radius: 0 0 4px 4px;
    }
    .laptop-base {
      width: 60%; margin: 0 auto;
      height: 6px; background: #333; border-radius: 0 0 8px 8px;
    }

    /* review mockup */
    .review-mockup {
      background: #fff; border-radius: 18px;
      box-shadow: 0 16px 56px rgba(0,0,0,.12);
      padding: 24px; max-width: 340px;
      display: flex; flex-direction: column; gap: 14px;
    }
    .review-row {
      display: flex; align-items: flex-start; gap: 12px;
      padding-bottom: 14px; border-bottom: 1px solid var(--border);
    }
    .review-row:last-child { border-bottom: none; padding-bottom: 0; }
    .review-av {
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--rose); flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: .9rem;
    }
    .review-text .r-stars { color: #f5b400; font-size: .75rem; margin-bottom: 2px; }
    .review-text .r-name { font-size: .8rem; font-weight: 700; }
    .review-text .r-quote { font-size: .78rem; color: var(--mid); line-height: 1.4; margin-top: 3px; }

    /* ═══════════════════════════════════════════
       WHO WE SERVE
    ═══════════════════════════════════════════ */
    .serves { background: var(--dark); padding: 88px 0; }
    .serves-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      color: #fff; text-align: center; margin-bottom: 40px;
    }
    .studio-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 14px;
    }
    @media (max-width: 900px) { .studio-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 500px) { .studio-grid { grid-template-columns: repeat(2, 1fr); } }
    .studio-tile {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 14px; padding: 20px 12px;
      text-align: center; transition: background .2s, border-color .2s;
    }
    .studio-tile:hover { background: rgba(201,169,110,.12); border-color: rgba(201,169,110,.35); }
    .studio-icon { font-size: 1.8rem; margin-bottom: 8px; }
    .studio-name { font-size: .8rem; color: rgba(255,255,255,.75); font-weight: 600; line-height: 1.3; }
    .serves-cta { text-align: center; margin-top: 40px; }

    /* ═══════════════════════════════════════════
       PROCESS
    ═══════════════════════════════════════════ */
    .process { background: #fff; padding: 88px 0; }
    .process-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      margin-bottom: 56px;
    }
    .process-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 0; position: relative;
    }
    .process-grid::before {
      content: '';
      position: absolute; top: 28px;
      left: calc(16.67% + 16px);
      right: calc(16.67% + 16px);
      height: 2px;
      background: linear-gradient(90deg, var(--gold) 0%, rgba(201,169,110,.2) 100%);
    }
    @media (max-width: 700px) {
      .process-grid { grid-template-columns: 1fr; gap: 32px; }
      .process-grid::before { display: none; }
    }
    .process-step { text-align: center; padding: 0 24px; }
    .process-num {
      width: 56px; height: 56px; border-radius: 50%;
      background: var(--dark); color: var(--gold);
      font-weight: 800; font-size: 1.1rem;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px; border: 3px solid var(--gold);
      position: relative; z-index: 1;
    }
    .process-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
    .process-step p { font-size: .88rem; color: var(--mid); line-height: 1.6; }
    .process-step .duration {
      display: inline-block; background: var(--light);
      color: var(--rose-text); font-size: .72rem; font-weight: 700;
      padding: 4px 10px; border-radius: 20px; margin-bottom: 10px;
      letter-spacing: .06em; text-transform: uppercase;
    }
    .process-note {
      font-size: .82rem; color: var(--mid);
      font-style: italic; margin-top: 6px;
    }

    /* ═══════════════════════════════════════════
       WHY US
    ═══════════════════════════════════════════ */
    .why { background: var(--light); padding: 88px 0; }
    .why-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      margin-bottom: 48px;
    }
    .why-grid {
      display: flex; flex-direction: row; gap: 20px; flex-wrap: nowrap;
    }
    .why-grid .why-card { flex: 1 1 0; min-width: 0; }
    @media (max-width: 860px) { .why-grid { flex-wrap: wrap; } .why-grid .why-card { flex: 1 1 calc(50% - 10px); } }
    @media (max-width: 420px) { .why-grid .why-card { flex: 1 1 100%; } }
    .why-card {
      background: #fff; border-radius: 16px;
      padding: 28px 24px;
      border: 1px solid var(--border);
      transition: box-shadow .2s;
    }
    .why-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.07); }
    .why-icon { font-size: 2rem; margin-bottom: 12px; }
    .why-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
    .why-card p { font-size: .85rem; color: var(--mid); line-height: 1.6; }

    /* ═══════════════════════════════════════════
       SECOND TESTIMONIALS
    ═══════════════════════════════════════════ */
    .testi2 { background: #fff; padding: 88px 0; }
    .testi2-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.4rem, 2.5vw, 1.8rem);
      text-align: center; margin-bottom: 40px;
    }

    /* ═══════════════════════════════════════════
       FAQ
    ═══════════════════════════════════════════ */
    .faq { background: var(--light); padding: 88px 0; }
    .faq-layout {
      display: grid; grid-template-columns: 1fr 1.6fr;
      gap: 80px; align-items: start;
    }
    @media (max-width: 860px) {
      .faq-layout { grid-template-columns: 1fr; gap: 40px; }
      .faq-sidebar { position: static !important; }
    }
    .faq-sidebar { position: sticky; top: 100px; }
    .faq-sidebar h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 2.5vw, 2rem); margin-bottom: 12px;
    }
    .faq-sidebar p { font-size: .95rem; color: var(--mid); line-height: 1.7; }
    .faq-list { width: 100%; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-q {
      display: flex; justify-content: space-between; align-items: center;
      padding: 22px 0; cursor: pointer;
      background: none; border: none; width: 100%; text-align: left;
      font-family: inherit; font-size: 1rem; font-weight: 600;
      color: var(--text); gap: 16px;
    }
    .faq-chevron {
      flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
      background: #e5e7eb;
      display: flex; align-items: center; justify-content: center;
      transition: transform .3s, background .2s; font-size: .75rem;
    }
    .faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--rose-text); color: #fff; }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height .35s ease, padding .35s ease;
      font-size: .92rem; color: var(--mid); line-height: 1.7;
    }
    .faq-item.open .faq-a { max-height: 400px; padding-bottom: 20px; }

    /* ═══════════════════════════════════════════
       FINAL CTA SECTION
    ═══════════════════════════════════════════ */
    .final-cta-section {
      background: var(--dark); padding: 88px 24px;
    }
    .final-cta-inner {
      display: flex; align-items: center; justify-content: space-between;
      gap: 48px; max-width: 900px; margin: 0 auto;
    }
    @media (max-width: 700px) {
      .final-cta-inner { flex-direction: column; text-align: center; }
    }
    .final-cta-text h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      color: #fff; margin-bottom: 12px; line-height: 1.2;
    }
    .final-cta-text p {
      font-size: 1rem; color: rgba(255,255,255,.6);
      max-width: 420px; line-height: 1.7;
    }
    .final-cta-actions { flex-shrink: 0; text-align: center; }
    .final-cta-actions .btn { display: block; margin-bottom: 12px; white-space: nowrap; }
    .final-cta-note { font-size: .78rem; color: rgba(255,255,255,.4); }

    /* ═══════════════════════════════════════════
       MINI-CHECK FORM
    ═══════════════════════════════════════════ */
    #mini-check {
      background: #fff; border-top: 1px solid var(--border);
      padding: 88px 0; text-align: center;
    }
    #mini-check h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 2.5vw, 2rem); margin-bottom: 8px;
    }
    #mini-check .sub {
      color: var(--mid); font-size: .95rem;
      margin-bottom: 36px; line-height: 1.6;
    }
    .check-form { max-width: 560px; margin: 0 auto; text-align: left; }
    .check-form .field { margin-bottom: 20px; }
    .check-form label {
      display: block; font-size: .78rem; font-weight: 700;
      letter-spacing: .07em; text-transform: uppercase;
      margin-bottom: 8px; color: var(--text);
    }
    .check-form input, .check-form select {
      width: 100%; padding: 13px 16px;
      border: 1.5px solid var(--border); border-radius: 10px;
      font-family: inherit; font-size: .95rem;
      color: var(--text); background: var(--light);
      outline: none; transition: border-color .2s;
    }
    .check-form input:focus, .check-form select:focus { border-color: var(--gold); background: #fff; }
    .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    @media (max-width: 500px) { .form-row-2 { grid-template-columns: 1fr; } }
    .check-form .btn { margin-top: 8px; width: 100%; justify-content: center; }
    .form-note { font-size: .78rem; color: #aaa; margin-top: 12px; }

    /* ═══════════════════════════════════════════
       STICKY WHATSAPP
    ═══════════════════════════════════════════ */
    .whatsapp-sticky { display: none; }

    /* ═══════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════ */
    footer {
      background: var(--dark2);
      padding: 64px 0 32px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 40px; margin-bottom: 48px;
    }
    @media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
    .footer-brand .f-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem; font-weight: 700; color: #fff;
      margin-bottom: 12px; display: block;
    }
    .footer-brand .f-logo span { color: var(--gold); }
    .footer-brand p { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.6; margin-bottom: 20px; }
    .footer-col h4 {
      font-size: .72rem; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; color: rgba(255,255,255,.4);
      margin-bottom: 14px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .footer-col ul li a {
      font-size: .85rem; color: rgba(255,255,255,.55);
      transition: color .2s;
    }
    .footer-col ul li a:hover { color: #fff; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 24px;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.35); }
    .footer-bottom a { color: rgba(255,255,255,.45); text-decoration: underline; }
    .footer-bottom a:hover { color: #fff; }

    /* ── Nav responsive ── */
    @media (max-width: 900px) { nav { padding: 14px 24px; } }
