/* =========================================================
       Variation O: LOFT — pure white, asymmetric hero
       ========================================================= */
    :root {
      --bg: #FFFFFF;
      --bg-soft: #F8F5EE;
      --ink: #B0697A;
      --ink-soft: #5B524A;
      --ink-muted: #7C7468;
      --rule: #ECE5D6;
      --plum: #963A50;
      --gold: #B8956A;
    }
    body { background: var(--bg); color: var(--ink); }

    /* HEADER — sits on white, very minimal */
    .vo-header {
      position: sticky; top: 0; z-index: 50;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--rule);
      padding: 20px 32px;
      display: flex; align-items: center; justify-content: space-between;
      gap: var(--s-4);
    }
    .vo-header__brand {
      font-family: var(--f-display); font-style: italic;
      font-size: 1.2rem; letter-spacing: 0.04em;
      color: var(--ink);
      display: inline-flex; align-items: baseline; gap: 8px;
    }
    .vo-header__brand small {
      font-family: var(--f-body); font-style: normal;
      font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase;
      color: var(--gold);
    }
    .vo-header__nav { display: none; gap: var(--s-6); }
    @media (min-width: 900px) { .vo-header__nav { display: flex; } }
    .vo-header__nav a {
      font-size: 0.7rem; letter-spacing: 0.32em; text-transform: uppercase;
      color: var(--ink-soft); border: 0;
    }
    .vo-header__nav a:hover { color: var(--ink); }
    .vo-header__right {
      font-size: 0.7rem; letter-spacing: 0.32em; text-transform: uppercase;
      display: flex; align-items: center; gap: var(--s-3); color: var(--ink-soft);
    }
    .vo-header__right a { color: inherit; border: 0; }

    /* HERO — asymmetric: 40% type panel left, 60% image right */
    .vo-hero {
      display: grid;
      grid-template-columns: 1fr;
      min-height: calc(100vh - 64px);
    }
    @media (min-width: 1000px) {
      .vo-hero { grid-template-columns: 5fr 7fr; }
    }
    .vo-hero__copy {
      padding: clamp(60px, 10vw, 140px) clamp(32px, 5vw, 80px);
      display: flex; flex-direction: column; justify-content: space-between;
      min-height: 60vh;
      background: var(--bg);
    }
    .vo-hero__copy header { max-width: 36ch; }
    .vo-hero__lbl {
      font-family: var(--f-body);
      font-size: 0.65rem; letter-spacing: 0.45em; text-transform: uppercase;
      color: var(--gold);
      margin: 0 0 var(--s-5);
      display: inline-flex; align-items: center; gap: var(--s-3);
    }
    .vo-hero__lbl::before {
      content: ''; display: inline-block; width: 36px; height: 1px; background: var(--gold);
    }
    .vo-hero__copy h1 {
      font-family: var(--f-display);
      font-weight: 300;
      font-size: clamp(2.5rem, 5.5vw, 5rem);
      line-height: 1.02;
      letter-spacing: -0.025em;
      margin: 0 0 var(--s-6);
      color: var(--ink);
    }
    .vo-hero__copy h1 em { font-style: italic; color: var(--plum); }
    .vo-hero__copy p {
      font-weight: 300;
      font-size: 1.05rem;
      line-height: 1.75;
      color: var(--ink-soft);
      max-width: 38ch;
    }
    .vo-hero__cta { display: flex; gap: var(--s-3); flex-wrap: wrap; margin-top: var(--s-7); }
    .vo-btn {
      display: inline-flex; align-items: center; gap: 10px;
      min-height: 52px; padding: 14px 28px;
      font-size: 0.7rem; letter-spacing: 0.32em; text-transform: uppercase;
      border-radius: 999px;
      background: var(--ink); color: var(--bg);
      border: 1px solid var(--ink);
      transition: background 240ms, color 240ms, transform 240ms;
    }
    .vo-btn:hover { transform: translateY(-2px); }
    .vo-btn--ghost { background: transparent; color: var(--ink); }
    .vo-btn--ghost:hover { background: var(--ink); color: var(--bg); }
    .vo-btn--wa { background: #25D366; border-color: #25D366; color: #fff; }
    .vo-btn--wa:hover { background: #1ea756; border-color: #1ea756; }
    .vo-btn svg { width: 14px; height: 14px; }

    .vo-hero__meta {
      margin-top: var(--s-8);
      padding-top: var(--s-5);
      border-top: 1px solid var(--rule);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--s-5);
      font-size: 0.65rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
    }
    .vo-hero__meta strong {
      display: block;
      font-family: var(--f-display);
      font-style: italic;
      font-weight: 400;
      font-size: 1.4rem;
      letter-spacing: 0;
      text-transform: none;
      color: var(--plum);
      margin-bottom: 4px;
    }

    .vo-hero__media {
      position: relative;
      overflow: hidden;
      background: var(--bg-soft);
      min-height: 60vh;
    }
    @media (min-width: 1000px) { .vo-hero__media { min-height: auto; } }
    .vo-hero__media img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center 25%;
      animation: vo-slowzoom 22s ease-in-out infinite alternate;
    }
    @keyframes vo-slowzoom {
      from { transform: scale(1); }
      to   { transform: scale(1.06); }
    }
    .vo-hero__caption {
      position: absolute;
      left: clamp(20px, 3vw, 32px); bottom: clamp(20px, 3vw, 32px);
      color: #fff;
      background: rgba(0,0,0,0.5);
      backdrop-filter: blur(6px);
      padding: 8px 14px;
      border-radius: 2px;
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      z-index: 2;
    }

    /* SECTION pattern */
    .vo-sec {
      padding: clamp(80px, 12vw, 160px) 32px;
      background: var(--bg);
    }
    .vo-sec--soft { background: var(--bg-soft); }
    .vo-sec__inner { max-width: 1400px; margin: 0 auto; }

    .vo-sec__head {
      display: grid;
      grid-template-columns: 1fr;
      gap: clamp(var(--s-5), 6vw, var(--s-8));
      margin-bottom: clamp(50px, 7vw, 100px);
    }
    @media (min-width: 900px) {
      .vo-sec__head { grid-template-columns: 1fr 2fr; align-items: start; }
    }
    .vo-sec__head h2 {
      font-family: var(--f-display);
      font-weight: 300;
      font-size: clamp(1.875rem, 4vw, 3.5rem);
      line-height: 1.04;
      letter-spacing: -0.02em;
      margin: 0;
      color: var(--ink);
      max-width: 22ch;
    }
    .vo-sec__head h2 em { font-style: italic; color: var(--plum); }
    .vo-sec__head .vo-hero__lbl { padding-top: 8px; }

    /* PORTFOLIO — large square grid, generous gaps */
    .vo-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }
    @media (min-width: 700px)  { .vo-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
    @media (min-width: 1100px) { .vo-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }

    .vo-card {
      position: relative;
      cursor: pointer;
      background: transparent;
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
    }
    .vo-card.in-view { opacity: 1; transform: translateY(0); }
    .vo-card__media {
      position: relative;
      aspect-ratio: 3 / 4;
      overflow: hidden;
      background: var(--bg-soft);
      margin-bottom: var(--s-4);
    }
    .vo-card__media img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center 25%;
      transition: transform 700ms var(--ease-out);
    }
    .vo-card:hover .vo-card__media img { transform: scale(1.04); }
    .vo-card__title {
      display: flex; align-items: baseline; justify-content: space-between;
      gap: var(--s-3);
    }
    .vo-card__title h3 {
      font-family: var(--f-display);
      font-weight: 400;
      font-size: 1.4rem;
      letter-spacing: -0.005em;
      margin: 0;
      color: var(--ink);
    }
    .vo-card__title h3 em { font-style: italic; color: var(--plum); }
    .vo-card__title small {
      font-family: var(--f-body);
      font-size: 0.6rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--ink-muted);
      white-space: nowrap;
    }
    .vo-card__sub {
      font-size: 0.85rem;
      color: var(--ink-soft);
      margin-top: 4px;
    }

    /* MARQUEE PRESS BAND */
    .vo-press {
      padding: clamp(60px, 8vw, 100px) 32px;
      background: var(--ink);
      color: var(--bg);
      overflow: hidden;
    }
    .vo-press__inner {
      max-width: 1400px; margin: 0 auto;
    }
    .vo-press__lbl {
      font-size: 0.65rem;
      letter-spacing: 0.45em;
      text-transform: uppercase;
      color: var(--gold);
      margin: 0 0 var(--s-6);
    }
    .vo-press__list {
      display: flex; flex-wrap: wrap;
      gap: clamp(var(--s-5), 4vw, var(--s-8));
      align-items: center;
    }
    .vo-press__list span {
      font-family: var(--f-display);
      font-style: italic;
      font-weight: 300;
      font-size: clamp(1.4rem, 2.2vw, 2rem);
      color: rgba(255,255,255,0.85);
    }
    .vo-press__list b {
      color: var(--gold); font-weight: 400; font-style: normal;
    }

    /* STUDIO BAND — image + intro paragraph */
    .vo-studio {
      display: grid;
      grid-template-columns: 1fr;
      gap: clamp(var(--s-6), 6vw, var(--s-8));
      align-items: center;
    }
    @media (min-width: 900px) {
      .vo-studio { grid-template-columns: 1.1fr 1fr; }
    }
    .vo-studio__media {
      position: relative;
      aspect-ratio: 4 / 5;
      overflow: hidden;
      background: var(--bg-soft);
    }
    .vo-studio__media img {
      width: 100%; height: 100%; object-fit: cover;
    }
    .vo-studio h2 {
      font-family: var(--f-display);
      font-weight: 300;
      font-size: clamp(1.875rem, 4vw, 3.5rem);
      line-height: 1.05;
      letter-spacing: -0.02em;
      margin: 0 0 var(--s-5);
      color: var(--ink);
      max-width: 18ch;
    }
    .vo-studio h2 em { font-style: italic; color: var(--plum); }
    .vo-studio p {
      font-weight: 300; font-size: 1.05rem; line-height: 1.75;
      color: var(--ink-soft);
      max-width: 52ch;
      margin-bottom: var(--s-3);
    }

    /* CTA */
    .vo-cta {
      padding: clamp(100px, 14vw, 200px) 32px;
      text-align: center;
      background: var(--bg);
    }
    .vo-cta h2 {
      font-family: var(--f-display);
      font-weight: 300;
      font-size: clamp(2.5rem, 6vw, 5.5rem);
      line-height: 1.02;
      letter-spacing: -0.025em;
      margin: 0 0 var(--s-6);
      max-width: 18ch;
      margin-left: auto; margin-right: auto;
      color: var(--ink);
    }
    .vo-cta h2 em { font-style: italic; color: var(--plum); }
    .vo-cta p {
      font-weight: 300; font-size: 1.1rem; color: var(--ink-soft);
      max-width: 50ch; margin: 0 auto var(--s-7); line-height: 1.7;
    }
    .vo-cta__buttons { display: flex; gap: var(--s-3); justify-content: center; flex-wrap: wrap; }

    .vo-foot {
      padding: 32px;
      border-top: 1px solid var(--rule);
      display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s-3);
      font-size: 0.65rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--ink-muted);
    }
    .vo-foot a { color: var(--ink-muted); border: 0; }

    .fab-wa {
      position: fixed;
      right: 24px; bottom: 24px;
      z-index: 60;
      width: 56px; height: 56px;
      background: #25D366; color: #fff;
      border-radius: 999px;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 10px 30px -8px rgba(37,211,102,0.5);
      transition: transform 240ms;
    }
    .fab-wa:hover { transform: scale(1.06); }
    .fab-wa svg { width: 26px; height: 26px; }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation: none !important; transition: none !important; }
      .vo-card { opacity: 1 !important; transform: none !important; }
    }
