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

    :root {
      --rose: #D4878E;
      --rose-light: #FBEAEC;
      --blush: #E8B4B8;
      --mauve: #C9A0A5;
      --cream: #FAF6F2;
      --linen: #F2EAE4;
      --sand: #E8DDD5;
      --warm: #BBA99F;
      --muted: #9C8880;
      --text: #3D2F2F;
      --dark: #2A1F1F;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Outfit', sans-serif;
      font-weight: 300;
      background: var(--cream);
      color: var(--text);
      line-height: 1.6;
    }

    /* ── NAV ── */
    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 60px;
      background: var(--cream);
      border-bottom: 1px solid var(--sand);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      color: var(--text);
      letter-spacing: 0.03em;
      text-decoration: none;
      white-space: nowrap;
    }
    .logo span { color: var(--rose); font-style: italic; }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      font-size: 13px;
      color: var(--muted);
      text-decoration: none;
      letter-spacing: 0.06em;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--text); }

    .nav-cta {
      font-size: 12px;
      background: var(--rose);
      color: var(--cream);
      padding: 10px 22px;
      border-radius: 40px;
      text-decoration: none;
      letter-spacing: 0.06em;
      transition: background 0.2s, transform 0.15s;
    }
    .nav-cta:hover { background: #C4777E; transform: translateY(-1px); }

    .nav-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 22px; color: var(--text); }

    /* ── HERO / DEFINITION ── */
    .hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      padding: 80px 60px 72px;
      border-bottom: 1px solid var(--sand);
    }

    .def-word {
      font-family: 'Playfair Display', serif;
      font-size: 64px;
      color: var(--text);
      line-height: 1;
      margin-bottom: 6px;
    }
    .def-word em { font-style: italic; color: var(--rose); }

    .def-phonetic {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 15px;
      color: var(--warm);
      letter-spacing: 0.08em;
      margin-bottom: 28px;
    }

    .def-entry { margin-bottom: 18px; }

    .def-pos {
      display: inline-block;
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--rose);
      border: 1px solid #E8C4C8;
      background: var(--rose-light);
      padding: 3px 10px;
      border-radius: 20px;
      margin-bottom: 10px;
    }

    .def-text {
      font-size: 14px;
      color: #6B5A5A;
      line-height: 1.85;
    }
    .def-text strong { color: var(--text); font-weight: 500; }

    .def-divider {
      height: 1px;
      background: var(--sand);
      margin: 20px 0;
    }

    .def-quote {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 14px;
      color: var(--warm);
      line-height: 1.75;
      padding-left: 18px;
      border-left: 2px solid var(--blush);
    }

    /* Brand statement card */
    .brand-card {
      background: var(--linen);
      border-radius: 16px;
      padding: 36px 34px;
      border: 1px solid var(--sand);
    }

    .brand-eyebrow {
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--rose);
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .brand-eyebrow::after {
      content: '';
      flex: 1;
      height: 1px;
      background: #E8C4C8;
    }

    .brand-title {
      font-family: 'Playfair Display', serif;
      font-size: 30px;
      color: var(--text);
      line-height: 1.25;
      margin-bottom: 16px;
    }
    .brand-title em { font-style: italic; color: var(--rose); }

    .brand-body {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.9;
      margin-bottom: 28px;
    }
    .brand-body .hl { color: var(--text); font-weight: 500; }

    .pill-row {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }
    .pill {
      font-size: 11px;
      padding: 5px 14px;
      background: var(--cream);
      border: 1px solid var(--sand);
      color: var(--muted);
      border-radius: 40px;
    }

    .btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

    .btn-rose {
      background: var(--rose);
      color: var(--cream);
      font-size: 12px;
      letter-spacing: 0.08em;
      padding: 12px 26px;
      border-radius: 40px;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
      display: inline-block;
    }
    .btn-rose:hover { background: #C4777E; transform: translateY(-1px); }

    .btn-ghost {
      border: 1px solid var(--rose);
      color: var(--rose);
      font-size: 12px;
      letter-spacing: 0.08em;
      padding: 12px 26px;
      border-radius: 40px;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
      display: inline-block;
    }
    .btn-ghost:hover { background: var(--rose-light); transform: translateY(-1px); }

    /* ── STATS ── */
    .stats-bar {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-bottom: 1px solid var(--sand);
    }
    .stat {
      padding: 28px 20px;
      text-align: center;
      border-right: 1px solid var(--sand);
    }
    .stat:last-child { border-right: none; }
    .stat-n {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      color: var(--text);
    }
    .stat-l {
      font-size: 12px;
      color: var(--warm);
      margin-top: 4px;
      letter-spacing: 0.05em;
    }

    /* ── SECTION SHARED ── */
    section { padding: 72px 60px; border-bottom: 1px solid var(--sand); }
    .sec-ey {
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--rose);
      margin-bottom: 8px;
    }
    .sec-h {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      color: var(--text);
      margin-bottom: 36px;
    }

    /* ── SERVICES ── */
    .services { background: var(--cream); }
    .svc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .svc-card {
      background: var(--linen);
      border-radius: 14px;
      padding: 28px 24px;
      border: 1px solid var(--sand);
      transition: transform 0.2s;
    }
    .svc-card:hover { transform: translateY(-3px); }
    .svc-icon {
      font-size: 24px;
      margin-bottom: 16px;
    }
    .svc-n {
      font-size: 16px;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 10px;
    }
    .svc-d {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 16px;
    }
    .svc-link {
      font-size: 12px;
      color: var(--rose);
      text-decoration: none;
      letter-spacing: 0.04em;
    }
    .svc-link:hover { text-decoration: underline; }

    /* ── PORTFOLIO ── */
    .portfolio { background: var(--linen); }
    .port-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .port-card {
      background: var(--cream);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--sand);
      transition: transform 0.2s;
    }
    .port-card:hover { transform: translateY(-2px); }
    .port-img {
      height: 120px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 40px;
    }
    .port-body { padding: 18px 20px; }
    .port-type {
      font-size: 10px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--rose);
      margin-bottom: 6px;
    }
    .port-name {
      font-family: 'Playfair Display', serif;
      font-size: 17px;
      color: var(--text);
      margin-bottom: 6px;
    }
    .port-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.7;
    }
    /* Portfolio card with real photo + gallery trigger */
    .port-img.photo {
      height: 210px;
      background-size: cover;
      background-position: center;
      cursor: pointer;
      position: relative;
      font-size: 0;
    }
    .port-img.photo::after {
      content: '⤢  View gallery';
      position: absolute;
      inset: auto 0 0 0;
      padding: 30px 14px 11px;
      font-family: 'Outfit', sans-serif;
      font-size: 12px;
      letter-spacing: 0.05em;
      color: #fff;
      background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0));
      opacity: 0;
      transition: opacity 0.25s;
    }
    .port-card:hover .port-img.photo::after,
    .port-img.photo:focus-visible::after { opacity: 1; }

    /* ── LIGHTBOX GALLERY ── */
    .lb { position: fixed; inset: 0; background: rgba(24,16,16,0.95); z-index: 1000; display: none; }
    .lb.open { display: flex; flex-direction: column; }
    .lb-top { display: flex; justify-content: space-between; align-items: center; padding: 16px 22px; color: #f6efe9; }
    .lb-title { font-family: 'Playfair Display', serif; font-size: 16px; font-style: italic; }
    .lb-close { background: none; border: none; color: #f6efe9; font-size: 28px; line-height: 1; cursor: pointer; padding: 0 6px; }
    .lb-stage { flex: 1; display: flex; align-items: center; justify-content: center; position: relative; padding: 0 8px; min-height: 0; }
    .lb-img { max-width: 92vw; max-height: 72vh; border-radius: 8px; box-shadow: 0 14px 44px rgba(0,0,0,0.55); object-fit: contain; }
    .lb-cap { text-align: center; color: #e9ddd4; font-size: 13px; letter-spacing: 0.02em; padding: 12px 16px 2px; }
    .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12); border: none; color: #fff; width: 46px; height: 46px; border-radius: 50%; font-size: 22px; cursor: pointer; transition: background 0.2s; }
    .lb-nav:hover { background: rgba(255,255,255,0.26); }
    .lb-prev { left: 14px; } .lb-next { right: 14px; }
    .lb-strip { display: flex; gap: 8px; overflow-x: auto; padding: 12px 16px 18px; justify-content: center; }
    .lb-th { position: relative; height: 56px; width: 76px; padding: 0; border: 2px solid transparent; border-radius: 5px; overflow: hidden; opacity: 0.5; cursor: pointer; background: none; flex: 0 0 auto; transition: opacity 0.2s; }
    .lb-th img { height: 100%; width: 100%; object-fit: cover; display: block; }
    .lb-th.active { opacity: 1; border-color: var(--rose); }
    .lb-th-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 15px; text-shadow: 0 1px 5px rgba(0,0,0,0.7); }
    video.lb-img { background: #000; }
    /* Play badge on the film portfolio card */
    .port-img.video-card::before {
      content: '\25B6';
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 30px; text-shadow: 0 2px 12px rgba(0,0,0,0.55);
      pointer-events: none;
    }
    .port-img.video-card::after { content: '\25B6  Play film'; }
    @media (max-width: 640px) {
      .lb-img { max-height: 62vh; }
      .lb-th { height: 44px; width: 60px; }
    }

    /* ── PROCESS ── */
    .process { background: var(--cream); }
    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border: 1px solid var(--sand);
      border-radius: 14px;
      overflow: hidden;
    }
    .step {
      padding: 28px 22px;
      border-right: 1px solid var(--sand);
    }
    .step:last-child { border-right: none; }
    .step-num {
      font-family: 'Playfair Display', serif;
      font-size: 42px;
      color: var(--sand);
      line-height: 1;
      margin-bottom: 12px;
    }
    .step-title {
      font-size: 15px;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 8px;
    }
    .step-body {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.75;
    }

    /* ── TESTIMONIALS ── */
    .testimonials { background: var(--linen); }
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .testi-card {
      background: var(--cream);
      border-radius: 14px;
      padding: 28px;
      border: 1px solid var(--sand);
    }
    .quote-mark {
      font-family: 'Playfair Display', serif;
      font-size: 56px;
      color: var(--blush);
      line-height: 0.8;
      margin-bottom: 14px;
    }
    .quote-text {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 15px;
      color: var(--text);
      line-height: 1.75;
      margin-bottom: 16px;
    }
    .quote-by { font-size: 12px; color: var(--muted); }
    .quote-name { font-weight: 500; color: var(--text); }
    .testi-tag {
      display: inline-block;
      font-size: 10px;
      padding: 3px 10px;
      background: var(--rose-light);
      color: #C4777E;
      border-radius: 20px;
      margin-top: 10px;
      letter-spacing: 0.06em;
    }

    /* ── CONTACT ── */
    .contact { background: var(--cream); }
    .contact-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }
    .contact-title {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      color: var(--text);
      line-height: 1.2;
      margin-bottom: 14px;
    }
    .contact-title em { font-style: italic; color: var(--rose); }
    .contact-sub {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 28px;
    }
    .contact-detail {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 10px;
    }
    .contact-detail span { color: var(--rose); font-size: 16px; }

    .form { display: flex; flex-direction: column; gap: 12px; }
    .form input,
    .form textarea,
    .form select {
      background: var(--linen);
      border: 1px solid var(--sand);
      border-radius: 8px;
      padding: 13px 16px;
      font-size: 13px;
      color: var(--text);
      font-family: 'Outfit', sans-serif;
      width: 100%;
      outline: none;
      transition: border-color 0.2s;
    }
    .form input:focus,
    .form textarea:focus,
    .form select:focus { border-color: var(--blush); }
    .form input::placeholder,
    .form textarea::placeholder { color: var(--warm); }
    .form textarea { min-height: 110px; resize: vertical; }
    .form select { color: var(--warm); }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .form-btn {
      background: var(--rose);
      color: var(--cream);
      border: none;
      border-radius: 40px;
      padding: 14px;
      font-size: 13px;
      font-family: 'Outfit', sans-serif;
      letter-spacing: 0.08em;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      width: 100%;
    }
    .form-btn:hover { background: #C4777E; transform: translateY(-1px); }

    /* ── FOOTER ── */
    footer {
      background: var(--linen);
      border-top: 1px solid var(--sand);
      padding: 40px 60px;
    }
    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 40px;
      margin-bottom: 32px;
    }
    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      color: var(--text);
      margin-bottom: 8px;
    }
    .footer-logo span { color: var(--rose); font-style: italic; }
    .footer-tagline { font-size: 12px; color: var(--warm); max-width: 200px; line-height: 1.6; }
    .footer-col h4 {
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--rose);
      margin-bottom: 14px;
      font-weight: 500;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 8px; }
    .footer-col ul li a {
      font-size: 13px;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: var(--text); }
    .footer-bottom {
      padding-top: 24px;
      border-top: 1px solid var(--sand);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer-copy { font-size: 11px; color: var(--warm); }
    .footer-socials { display: flex; gap: 16px; }
    .footer-socials a {
      font-size: 11px;
      color: var(--warm);
      text-decoration: none;
      letter-spacing: 0.06em;
      transition: color 0.2s;
    }
    .footer-socials a:hover { color: var(--rose); }

    /* ── FAQ ── */
    .faq { background: var(--cream); }
    .faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 880px; }
    .faq-item {
      background: var(--linen);
      border: 1px solid var(--sand);
      border-radius: 12px;
      padding: 2px 26px;
      transition: background 0.2s, border-color 0.2s;
    }
    .faq-item[open] { background: var(--cream); border-color: var(--blush); }
    .faq-item summary {
      font-family: 'Playfair Display', serif;
      font-size: 17px;
      color: var(--text);
      padding: 20px 0;
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: '+';
      font-size: 26px;
      color: var(--rose);
      font-family: 'Outfit', sans-serif;
      font-weight: 300;
      line-height: 1;
      transition: transform 0.2s;
    }
    .faq-item[open] summary::after { content: '−'; }
    .faq-item p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.85;
      padding: 0 0 22px;
      max-width: 700px;
    }

    /* ── CONTACT LINKS ── */
    a.contact-link {
      text-decoration: none;
      transition: color 0.2s;
    }
    a.contact-link:hover { color: var(--text); }

    /* ── FORM STATUS + HONEYPOT ── */
    .honey {
      position: absolute !important;
      left: -9999px !important;
      width: 1px !important;
      height: 1px !important;
      opacity: 0;
    }
    .form-status {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.6;
      min-height: 1em;
      margin-top: 4px;
    }
    .form-status.success { color: #6F8E72; }
    .form-status.error { color: #B86B6B; }

    /* ── NAV SCROLL STATE ── */
    nav { transition: box-shadow 0.25s ease, background 0.25s ease; }
    nav.scrolled {
      background: rgba(250, 246, 242, 0.94);
      backdrop-filter: saturate(140%) blur(10px);
      -webkit-backdrop-filter: saturate(140%) blur(10px);
      box-shadow: 0 4px 24px rgba(61, 47, 47, 0.06);
    }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.7s ease, transform 0.7s ease;
      will-change: opacity, transform;
    }
    .reveal.is-visible {
      opacity: 1;
      transform: none;
    }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .reveal { opacity: 1; transform: none; transition: none; }
    }

    /* ── FOCUS STATES ── */
    a:focus-visible,
    button:focus-visible,
    summary:focus-visible,
    .form input:focus-visible,
    .form select:focus-visible,
    .form textarea:focus-visible {
      outline: 2px solid var(--rose);
      outline-offset: 3px;
      border-radius: 6px;
    }
    summary:focus-visible { border-radius: 4px; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 16px 24px; }
      .nav-links, .nav-cta { display: none; }
      .nav-toggle { display: block; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 61px;
        left: 0; right: 0;
        background: var(--cream);
        border-bottom: 1px solid var(--sand);
        padding: 20px 24px;
        gap: 18px;
        z-index: 99;
      }
      .hero, .contact-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px; }
      .svc-grid, .port-grid, .testi-grid { grid-template-columns: 1fr; }
      .process-grid { grid-template-columns: 1fr 1fr; }
      .step { border-right: none; border-bottom: 1px solid var(--sand); }
      .step:nth-child(odd) { border-right: 1px solid var(--sand); }
      section { padding: 48px 24px; }
      .stats-bar { grid-template-columns: 1fr; }
      .stat { border-right: none; border-bottom: 1px solid var(--sand); }
      .footer-inner { flex-direction: column; gap: 28px; }
      footer { padding: 36px 24px; }
      .form-row { grid-template-columns: 1fr; }
    }

    /* ── CLOSING CTA (index) ── */
    .cta-band { text-align: center; max-width: 640px; margin: 0 auto; }
    .cta-band .contact-sub { margin-left: auto; margin-right: auto; }
    .cta-band .btn-rose { display: inline-block; margin-top: 22px; }

