    /* ─── Custom Properties ─────────────────────────────────────────── */
    :root {
      --bg:        #F7F5F1;
      --text:      #1C1C1C;
      --text-sec:  #4A4A4A;
      --text-mid:  #4A4A4A;
      --text-faint:#9A9287;
      --gold:      #8B6F3E;
      --dark-bg:   #1A1814;
      --rule:      #D4C5A9;
      --proof-bg:  #EFEDE8;
      --bg-section:#F0EDE8;
      --foot-bg:   #111009;
      --font-serif:'Cormorant Garamond', Georgia, serif;
      --font-head: 'Cormorant Garamond', Georgia, serif;
      --font-body: 'Lato', sans-serif;
    }

    /* ─── Reset & Base ──────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      font-weight: 300;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      max-width: 100vw;
    }

    a { text-decoration: none; color: inherit; }

    .font-bold { font-weight: 600; }
    .font-semibold { font-weight: 500; }
    .font-medium { font-weight: 500 !important; }
    /* ─── Animations ────────────────────────────────────────────────── */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(10px); }
    }

    /* Hero items: visible by default, JS adds .anim to trigger animation */
    .hi { opacity: 1; }

    .hero-anim .hi {
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards;
    }
    .hero-anim .hi-1 { animation-delay: 0.1s; }
    .hero-anim .hi-2 { animation-delay: 0.25s; }
    .hero-anim .hi-3 { animation-delay: 0.4s; }
    .hero-anim .hi-4 { animation-delay: 0.55s; }
    .hero-anim .hi-5 { animation-delay: 0.7s; }
    .hero-anim .hi-6 { animation-delay: 0.85s; }

    /* Scroll-reveal items — visible by default, JS adds .fi-ready before observing */
    .fi { opacity: 1; }

    .fi.fi-ready {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .fi.fi-ready.on { opacity: 1; transform: translateY(0); }

    /* ─── Navigation ────────────────────────────────────────────────── */
    #nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 28px 56px;
      background: transparent;
      border-bottom: 1px solid transparent;
      transition: background 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
    }

    #nav.sc {
      background: var(--bg);
      border-bottom: 1px solid var(--rule);
      padding: 18px 56px;
    }

    .n-logo {
      display: block;
      line-height: 0;
    }

    .n-logo img {
      height: 26px;
      width: auto;
      filter: brightness(0) invert(1);
      transition: filter 0.4s ease;
    }

    #nav.sc .n-logo img { filter: brightness(0); }

    .n-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }

    .n-links a {
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(247,245,241,0.75);
      transition: color 0.3s ease;
    }
    .n-links a:hover    { color: #fff; }
    .n-links a.nc       { color: #fff; }

    #nav.sc .n-links a        { color: rgba(28,28,28,0.5); }
    #nav.sc .n-links a:hover  { color: var(--text); }
    #nav.sc .n-links a.nc     { color: var(--text); }

    /* Hamburger */
    #hbtn {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }
    #hbtn span {
      display: block;
      width: 22px;
      height: 1px;
      background: rgba(247,245,241,0.85);
      transition: background 0.4s ease;
    }

    #nav.sc #hbtn span { background: var(--text); }

    /* Mobile overlay */
    #novl {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--bg);
      z-index: 200;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 36px;
    }
    #novl.open { display: flex; }
    #novl a {
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 13px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text);
      transition: color 0.3s ease;
    }
    #novl a:hover { color: var(--gold); }
    #novl a.nc    { color: var(--gold); }
    #ncls {
      position: absolute;
      top: 28px; right: 32px;
      background: none;
      border: none;
      font-size: 30px;
      cursor: pointer;
      color: var(--text);
      line-height: 1;
    }

    /* ─── HERO ──────────────────────────────────────────────────────── */
    #hero {
      position: relative;
      margin-top: 0;
      height: 100vh;
      min-height: 560px;
      display: flex;
      align-items: flex-end;
      justify-content: flex-start;
      overflow: hidden;
    }

    /* Carousel slides */
    .hero-slides {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center center;
      opacity: 0;
      transition: opacity 1.2s ease;
    }

    .hero-slide.active { opacity: 1; }

    /* Dot indicators */
    .hero-dots {
      position: absolute;
      bottom: 28px;
      right: 56px;
      z-index: 2;
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .hero-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(247,245,241,0.35);
      border: 1px solid rgba(247,245,241,0.5);
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .hero-dot.active {
      background: rgba(247,245,241,0.9);
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      text-align: left;
      padding: 0 0 72px 0;
      width: 100%;
    }

    /* Dark block sits behind the label + headline */
    .h-block {
      display: inline-block;
      background: rgba(22, 18, 12, 0.60);
      padding: 32px 56px 36px 56px;
    }

    .h-label {
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 10px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgba(247,245,241,0.55);
      margin-bottom: 16px;
      display: block;
    }

    .h-line1 {
      font-family: 'Fraunces', var(--font-head);
      font-weight: 300;
      font-size: clamp(36px, 4.6vw, 66px);
      line-height: 1.08;
      color: #F7F5F1;
      display: block;
    }

    .h-line2 {
      font-family: 'Fraunces', var(--font-head);
      font-weight: 300;
      font-size: clamp(36px, 4.6vw, 66px);
      line-height: 1.08;
      color: rgba(247,245,241,0.7);
      display: block;
      white-space: nowrap;
    }

    .h-sub {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 15px;
      color: rgba(247,245,241,0.8);
      max-width: 475px;
      margin: 18px 0 0 0;
      padding: 0;
      line-height: 1.75;
    }

    .h-cta {
      display: none;
    }

    .h-note {
      display: block;
      margin-top: 22px;
      padding: 0 0 0 56px;
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 10px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: rgba(247,245,241,0.45);
    }

    .h-scroll {
      position: absolute;
      bottom: 28px;
      right: 56px;
      left: auto;
      transform: none;
      font-size: 20px;
      color: rgba(247,245,241,0.4);
      animation: bounce 2s ease infinite;
      z-index: 1;
      user-select: none;
    }

    /* ─── SECTION RULE ──────────────────────────────────────────────── */
    .rule {
      border: none;
      border-top: 1px solid var(--rule);
    }

    /* ─── PROOF BAR ─────────────────────────────────────────────────── */
    #proof {
      background: #ffffff;
      border-top: 1px solid var(--rule);
      border-bottom: 1px solid var(--rule);
      padding: 40px 24px;
      text-align: center;
    }

    .pr-label {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--text-sec);
      margin-bottom: 20px;
      opacity: 0.6;
    }

    .pr-logos {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: space-between;
      gap: 0;
      padding: 0 40px;
      width: 100%;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .pr-logo {
      width: auto;
      object-fit: contain;
      opacity: 0.5;
      filter: grayscale(100%);
      flex: 0 0 auto;
    }
    /* Per-logo height compensation for built-in whitespace */
    .pr-logo[data-logo="tatler"]       { height: 22px; }
    .pr-logo[data-logo="conde-nast"]   { height: 167px; }
    .pr-logo[data-logo="house-garden"] { height: 66px; }
    .pr-logo[data-logo="debretts"]     { height: 32px; }

    /* ─── MANIFESTO ─────────────────────────────────────────────────── */
    #manifesto {
      padding: 60px 24px 120px;
    }

    .mf-inner {
      max-width: 640px;
      margin: 0 auto;
    }

    .mf-p {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: clamp(16px, 1.6vw, 19px);
      color: var(--text);
      line-height: 1.9;
      margin-bottom: 28px;
    }
    .mf-p:last-child { margin-bottom: 0; }

    /* ─── WHAT WE DO ────────────────────────────────────────────────── */
    #wwd {
      padding: 100px 24px;
    }

    .s-label {
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 10px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--text-sec);
      opacity: 0.55;
      text-align: center;
      margin-bottom: 60px;
    }

    .tiles {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      max-width: 1140px;
      margin: 0 auto 48px;
      gap: 0;
    }

    .tile {
      padding: 44px 40px;
      border-top: 1px solid var(--rule);
      border-right: 1px solid var(--rule);
      position: relative;
    }
    .tile:last-child { border-right: none; }

    .tile-h {
      font-family: 'Fraunces', var(--font-head);
      font-weight: 400;
      font-size: 26px;
      color: var(--text);
      margin-bottom: 14px;
      line-height: 1.2;
    }

    .tile-p {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 14px;
      color: var(--text-sec);
      line-height: 1.75;
    }

    /* ─── SECTION LINK ──────────────────────────────────────────────── */
    .s-link {
      display: block;
      text-align: center;
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text);
      opacity: 0.45;
      transition: opacity 0.3s ease;
    }
    .s-link:hover { opacity: 0.9; }

    /* ─── PULL QUOTES ───────────────────────────────────────────────── */
    #q-rupert {
      background: #EFEDE8;
      padding: 120px 24px;
      text-align: left;
      border-top: 1px solid var(--rule);
      border-bottom: 1px solid var(--rule);
    }

    .qb {
      max-width: 700px;
      margin: 0 auto;
    }

    .qb-mark {
      display: none;
    }

    .qb-text {
      font-family: 'Fraunces', var(--font-head);
      font-weight: 300;
      font-style: italic;
      font-size: clamp(20px, 2.4vw, 32px);
      color: var(--text);
      line-height: 1.6;
    }

    .qb-attr {
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-sec);
      opacity: 0.55;
      margin-top: 28px;
    }

    /* Isabel – left-border style */
    #q-isabel {
      padding: 120px 24px;
      background: #EFEDE8;
    }

    .qi-inner {
      max-width: 660px;
      margin: 0 auto;
      border-left: 2px solid var(--rule);
      padding-left: 36px;
    }

    .qi-text {
      font-family: 'Fraunces', var(--font-head);
      font-weight: 300;
      font-style: italic;
      font-size: clamp(19px, 2.1vw, 27px);
      color: var(--text);
      line-height: 1.65;
    }

    /* Rebecca */
    #q-rebecca {
      padding: 120px 24px;
      text-align: left;
      background: #EFEDE8;
    }

    .qr-inner {
      max-width: 700px;
      margin: 0 auto;
    }

    .qr-sub {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 14px;
      color: var(--text-sec);
      max-width: 520px;
      margin: 28px 0 28px;
      line-height: 1.8;
    }

    /* ─── ABOUT LUCY ────────────────────────────────────────────────── */
    #about {
      padding: 120px 24px;
    }

    .ab-inner {
      max-width: 1140px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 420px 1fr;
      gap: 80px;
      align-items: start;
    }

    .ab-img {
      width: 100%;
      max-width: 420px;
      height: 560px;
      background: var(--rule);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 8px 8px 40px rgba(28,24,20,0.08);
    }
    .ab-img span {
      font-family: var(--font-body);
      font-weight: 300;
      font-style: italic;
      font-size: 13px;
      color: var(--gold);
      text-align: center;
      padding: 24px;
    }

    .ab-text .s-label { text-align: left; margin-bottom: 16px; }

    .ab-name {
      font-family: 'Fraunces', var(--font-head);
      font-weight: 300;
      font-size: clamp(34px, 3.5vw, 52px);
      color: var(--text);
      line-height: 1.1;
      margin-bottom: 16px;
    }

    .ab-sub {
      font-family: var(--font-head);
      font-weight: 300;
      font-style: italic;
      font-size: clamp(16px, 1.7vw, 22px);
      color: var(--text-sec);
      margin-bottom: 32px;
      line-height: 1.5;
    }

    .ab-body p {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 16px;
      color: var(--text);
      line-height: 1.8;
      margin-bottom: 20px;
    }

    /* ─── THE WORK ──────────────────────────────────────────────────── */
    #the-work {
      padding: 120px 24px;
    }

    .wk-intro {
      font-family: var(--font-head);
      font-weight: 300;
      font-style: italic;
      font-size: clamp(16px, 1.7vw, 22px);
      color: var(--text-sec);
      text-align: center;
      max-width: 560px;
      margin: 0 auto 52px;
      line-height: 1.7;
    }

    .wk-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      max-width: 1140px;
      margin: 0 auto 48px;
    }

    .wk-card { cursor: default; }

    .wk-img {
      width: 100%;
      height: 320px;
      overflow: hidden;
      margin-bottom: 20px;
      transition: box-shadow 0.4s ease;
    }

    .wk-img-inner {
      width: 100%;
      height: 100%;
      transition: transform 0.4s ease;
    }

    .wk-card:hover .wk-img { box-shadow: 0 16px 48px rgba(28,24,20,0.2); }
    .wk-card:hover .wk-img-inner { transform: scale(1.03); }

    .wk-title {
      font-family: 'Fraunces', var(--font-head);
      font-weight: 400;
      font-size: 20px;
      color: var(--text);
      margin-bottom: 8px;
    }

    .wk-desc {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 14px;
      color: var(--text-sec);
    }

    /* ─── CLOSING CTA ───────────────────────────────────────────────── */
    #cta {
      background: var(--dark-bg);
      padding: 140px 24px;
      text-align: center;
    }

    .cta-l1 {
      font-family: 'Fraunces', var(--font-head);
      font-weight: 300;
      font-size: clamp(34px, 4.5vw, 64px);
      color: rgba(247,245,241,0.9);
      line-height: 1.05;
    }
    .cta-l2 {
      font-family: 'Fraunces', var(--font-head);
      font-weight: 300;
      font-style: italic;
      font-size: clamp(34px, 4.5vw, 64px);
      color: rgba(247,245,241,0.42);
      line-height: 1.05;
      margin-bottom: 48px;
    }

    .cta-body {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 17px;
      color: rgba(247,245,241,0.75);
      max-width: 520px;
      margin: 0 auto 20px;
      line-height: 1.8;
    }

    .cta-btn {
      display: inline-block;
      margin-top: 36px;
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid var(--gold);
      padding: 14px 32px;
      background: transparent;
      transition: background 0.3s ease, color 0.3s ease;
    }
    .cta-btn:hover { background: var(--gold); color: var(--dark-bg); }

    .cta-contact {
      margin-top: 32px;
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 14px;
      color: rgba(247,245,241,0.5);
    }

    /* ─── FOOTER ────────────────────────────────────────────────────── */
    footer {
      background: var(--foot-bg);
      padding: 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 14px;
    }

    .ft {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 12px;
      color: #4A4A4A;
    }
    .ft-logo {
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
    }

    /* ─── RESPONSIVE ────────────────────────────────────────────────── */
    @media (max-width: 1024px) {
      #nav       { padding: 22px 36px; }
      #nav.sc    { padding: 14px 36px; }

      .tiles     { grid-template-columns: repeat(2, 1fr); }
      .wk-cards  { grid-template-columns: repeat(2, 1fr); }

      .ab-inner  { grid-template-columns: 1fr; gap: 44px; }
      .ab-img    { max-width: 100%; height: 420px; }
    }

    /* ── Mobile ─────────────────────────────────────── 768px and below */
    @media (max-width: 768px) {

      /* Navigation */
      #nav          { padding: 18px 20px; }
      #nav.sc       { padding: 12px 20px; }
      .n-links      { display: none; }
      #hbtn         { display: flex; }

      /* Hero */
      #hero {
        margin-top: 0;
        height: 100svh;
        min-height: 480px;
      }

      .h-block {
        display: block;
        padding: 22px 20px 26px 20px;
      }

      .h-line1,
      .h-line2 {
        font-size: clamp(26px, 7.5vw, 38px);
        white-space: normal;
        line-height: 1.12;
      }

      .h-label { margin-bottom: 10px; }

      .h-sub {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.7;
        margin-top: 14px;
      }

      .h-note  { padding: 0 0 0 20px; }

      .hero-inner { padding: 0 0 64px 0; }

      .hero-dots  { right: 20px; bottom: 20px; }

      .h-scroll   { display: none; }

      /* Proof bar */
      #proof      { padding: 28px 20px; }
      .pr-logo[data-logo="tatler"]       { height: 16px; }
      .pr-logo[data-logo="conde-nast"]   { height: 119px; }
      .pr-logo[data-logo="house-garden"] { height: 48px; }
      .pr-logo[data-logo="debretts"]     { height: 24px; }

      /* Manifesto */
      #manifesto  { padding: 64px 20px; }
      .mf-p       { font-size: 16px; }

      /* What We Do */
      #wwd        { padding: 72px 20px; }
      .s-label    { margin-bottom: 40px; }
      .tiles      { grid-template-columns: 1fr; }
      .tile       { padding: 28px 20px; border-right: none; border-top: 1px solid var(--rule); }
      .tile:last-child { border-bottom: 1px solid var(--rule); }

      /* Testimonials */
      #q-rupert   { padding: 64px 20px; }
      #q-isabel   { padding: 64px 20px; }
      #q-rebecca  { padding: 64px 20px; }

      .qi-inner   { padding-left: 20px; }

      .qb-text    { font-size: clamp(18px, 5vw, 22px); }
      .qi-text    { font-size: clamp(17px, 4.5vw, 20px); }
      .qb-attr,
      .qi-attr,
      .qr-attr    { margin-top: 20px; }

      /* About */
      #about      { padding: 72px 20px; }
      .ab-inner   { grid-template-columns: 1fr; gap: 32px; }
      .ab-img     { max-width: 100%; height: 300px; }
      .ab-img img { height: 300px !important; max-width: 100% !important; }

      /* The Work */
      #the-work   { padding: 72px 20px; }
      .wk-cards   { grid-template-columns: 1fr; gap: 40px; }
      .wk-img     { height: 240px; }

      /* CTA */
      #cta        { padding: 80px 20px; }

      /* Footer */
      footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 20px;
        gap: 10px;
      }
    }

    /* ── Small phones ───────────────────────────────── 480px and below */
    @media (max-width: 480px) {
      .h-line1,
      .h-line2 { font-size: clamp(24px, 7vw, 32px); }

      .h-sub   { font-size: 13px; }

      #hero    { min-height: 440px; }
    }

    /* ═══════════════════════════════════════════════════════════════════
       INNER PAGE STYLES
    ════════════════════════════════════════════════════════════════════ */

    /* ─── Inner page section wrapper ────────────────────────────────── */
    .pg-sec {
      padding: 96px 56px;
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto;
    }
    .pg-sec.pg-wide  { max-width: 100%; }
    .pg-sec.pg-dark  { background: var(--dark-bg); max-width: 100%; padding: 100px 56px; text-align: center; }
    .pg-sec.pg-alt   { background: var(--proof-bg); max-width: 100%; padding: 80px 56px; }
    .pg-sec.pg-sect  { background: var(--bg-section); max-width: 100%; padding: 60px 56px; }

    /* ─── Inner page typography ─────────────────────────────────────── */
    .pg-label {
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
      display: block;
    }

    .pg-h1 {
      font-family: var(--font-head);
      font-weight: 300;
      font-size: clamp(40px, 5vw, 68px);
      line-height: 1.1;
      margin-bottom: 20px;
    }

    .pg-h2 {
      font-family: var(--font-head);
      font-weight: 300;
      font-size: clamp(26px, 3.2vw, 42px);
      line-height: 1.15;
      margin-bottom: 24px;
    }

    .pg-h3 {
      font-family: var(--font-head);
      font-weight: 300;
      font-size: 22px;
      margin-bottom: 10px;
    }

    .pg-sub {
      font-family: var(--font-head);
      font-style: italic;
      font-weight: 300;
      font-size: clamp(18px, 2vw, 26px);
      color: var(--text-mid);
      margin-bottom: 28px;
      line-height: 1.45;
    }

    .pg-body {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 16px;
      line-height: 1.8;
      color: var(--text);
      margin-bottom: 20px;
      max-width: 700px;
    }
    .pg-body.pg-bwide { max-width: 100%; }

    .pg-glink {
      font-family: var(--font-body);
      font-size: 13px;
      letter-spacing: 0.08em;
      color: var(--gold);
      cursor: pointer;
      display: inline-block;
      margin-top: 8px;
    }
    .pg-glink:hover { text-decoration: underline; }

    /* ─── Sub-section with rule ─────────────────────────────────────── */
    .pg-subsec {
      border-top: 1px solid #EAE4D9;
      padding-top: 32px;
      margin-top: 40px;
    }

    /* ─── Pull-quote block ──────────────────────────────────────────── */
    .pg-quote {
      background: var(--proof-bg);
      padding: 80px 56px;
      border-top: 1px solid var(--rule);
      border-bottom: 1px solid var(--rule);
    }
    .pg-quote-inner {
      max-width: 700px;
      margin: 0 auto;
    }
    .pg-q-mark {
      font-family: var(--font-head);
      font-size: 100px;
      color: var(--rule);
      line-height: 0.5;
      display: block;
      margin-bottom: 36px;
    }
    .pg-q-text {
      font-family: var(--font-head);
      font-weight: 300;
      font-style: italic;
      font-size: clamp(17px, 1.9vw, 24px);
      color: var(--text);
      line-height: 1.75;
      margin-bottom: 28px;
    }
    .pg-q-attr {
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .pg-q-src {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 12px;
      color: var(--text-faint);
      font-style: italic;
      margin-top: 6px;
    }

    /* ─── Dark CTA closing section ──────────────────────────────────── */
    .pg-dark-cta {
      background: var(--dark-bg);
      padding: 100px 56px;
      text-align: center;
    }
    .pg-dark-cta .pg-h2  { color: #F7F5F1; max-width: 600px; margin: 0 auto 24px; }
    .pg-dark-cta .pg-body { color: rgba(247,245,241,0.75); margin: 0 auto 20px; }
    .pg-dark-cta .cta-btn { margin-top: 32px; }
    .pg-dark-cta .cta-contact { color: rgba(247,245,241,0.5); margin-top: 24px; }
    .pg-dark-cta .pg-signoff {
      font-family: var(--font-head);
      font-weight: 300;
      font-style: italic;
      font-size: 22px;
      color: rgba(247,245,241,0.7);
      margin-top: 28px;
    }

    /* ─── ABOUT PAGE ────────────────────────────────────────────────── */
    .abt-opener {
      display: grid;
      grid-template-columns: 400px 1fr;
      gap: 80px;
      align-items: start;
    }
    .abt-portrait {
      width: 400px;
      height: 520px;
      background: var(--rule);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 6px 6px 32px rgba(28,24,20,0.07);
      flex-shrink: 0;
    }
    .abt-portrait span {
      font-family: var(--font-body);
      font-weight: 300;
      font-style: italic;
      font-size: 12px;
      color: rgba(28,24,20,0.4);
      text-align: center;
      padding: 20px;
    }

    .stat-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      background: var(--bg-section);
      margin: 40px 0;
    }
    .stat-tile {
      padding: 36px 24px;
      text-align: center;
      border-right: 1px solid var(--rule);
    }
    .stat-tile:last-child { border-right: none; }
    .stat-num {
      font-family: var(--font-head);
      font-weight: 300;
      font-size: 52px;
      color: var(--gold);
      display: block;
      line-height: 1;
      margin-bottom: 8px;
    }
    .stat-lbl {
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 12px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-mid);
    }

    /* ─── WHAT WE DO PAGE ───────────────────────────────────────────── */
    .wwd-hero-ph {
      width: 100%;
      height: 320px;
      background: #2C2420;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .wwd-hero-ph span {
      font-family: var(--font-body);
      font-size: 11px;
      letter-spacing: 0.15em;
      color: rgba(247,245,241,0.2);
      text-transform: uppercase;
    }

    .svc-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border: 1px solid var(--rule);
      margin: 32px 0;
    }
    .svc-tile {
      padding: 28px 22px;
      border-right: 1px solid var(--rule);
      border-bottom: 1px solid var(--rule);
    }
    .svc-tile:nth-child(4n)         { border-right: none; }
    .svc-tile:nth-last-child(-n+4)  { border-bottom: none; }
    .svc-title {
      font-family: var(--font-head);
      font-weight: 300;
      font-size: 20px;
      color: var(--text);
      margin-bottom: 10px;
    }
    .svc-body {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.65;
    }

    /* ─── TESTIMONIALS PAGE ─────────────────────────────────────────── */
    .testi-block {
      padding: 64px 0;
      border-bottom: 1px solid #EAE4D9;
    }
    .testi-block:first-child { padding-top: 0; }
    .testi-block:last-child  { border-bottom: none; }
    .testi-mark {
      font-family: var(--font-head);
      font-size: 80px;
      color: var(--rule);
      line-height: 0.5;
      display: block;
      margin-bottom: 32px;
    }
    .testi-text {
      font-family: var(--font-head);
      font-weight: 300;
      font-style: italic;
      font-size: clamp(17px, 1.9vw, 22px);
      color: var(--text);
      line-height: 1.8;
      max-width: 780px;
      margin-bottom: 28px;
    }
    .testi-attr {
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .testi-role {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 12px;
      color: var(--text-faint);
      font-style: italic;
      margin-top: 4px;
    }
    .testi-obs {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 14px;
      color: var(--text-faint);
      font-style: italic;
      max-width: 680px;
      border-left: 3px solid var(--rule);
      padding-left: 24px;
      margin-top: 24px;
      line-height: 1.7;
    }

    .press-signal {
      padding: 60px 56px;
      text-align: center;
    }
    .press-signal-body {
      font-family: var(--font-head);
      font-weight: 300;
      font-style: italic;
      font-size: 20px;
      color: var(--text-mid);
      max-width: 660px;
      margin: 0 auto 32px;
      line-height: 1.6;
    }
    .press-signal-logos {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      margin-bottom: 28px;
    }
    .ps-link {
      font-family: var(--font-body);
      font-size: 12px;
      letter-spacing: 0.08em;
      color: var(--gold);
      cursor: pointer;
    }
    .ps-link:hover { text-decoration: underline; }

    /* ─── PRESS PAGE ────────────────────────────────────────────────── */
    .book-opener {
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: 60px;
      align-items: start;
    }
    .book-cover {
      width: 200px;
      height: 260px;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      overflow: visible;
      filter: drop-shadow(6px 8px 14px rgba(28,24,20,0.22));
    }
    .book-cover span {
      font-family: var(--font-body);
      font-size: 11px;
      font-style: italic;
      color: rgba(28,24,20,0.4);
      text-align: center;
      padding: 12px;
    }

    .press-entry {
      padding: 40px 0;
      border-bottom: 1px solid #EAE4D9;
    }
    .press-entry:first-child { padding-top: 0; }
    .press-entry:last-child  { border-bottom: none; }
    .press-pub {
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .press-type {
      font-family: var(--font-body);
      font-size: 12px;
      color: var(--text-faint);
      font-style: italic;
      margin-left: 8px;
    }
    .press-head {
      font-family: var(--font-head);
      font-weight: 300;
      font-size: 22px;
      color: var(--text);
      margin: 10px 0;
    }
    .press-pbody {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 15px;
      color: var(--text-mid);
      line-height: 1.65;
      max-width: 700px;
    }

    /* ─── CONTACT PAGE ──────────────────────────────────────────────── */
    .contact-form {
      max-width: 640px;
      margin: 32px 0 0;
    }
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
      width: 100%;
      background: var(--bg-section);
      border: 1px solid var(--rule);
      padding: 14px 16px;
      font-family: Georgia, serif;
      font-size: 16px;
      color: var(--text);
      margin-bottom: 16px;
      display: block;
      -webkit-appearance: none;
      appearance: none;
      outline: none;
      transition: border-color 0.3s ease;
    }
    .contact-form input:focus,
    .contact-form select:focus,
    .contact-form textarea:focus { border-color: var(--gold); }
    .contact-form textarea { resize: vertical; }
    .contact-submit {
      display: inline-block;
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid var(--gold);
      padding: 14px 40px;
      background: transparent;
      cursor: pointer;
      transition: background 0.3s ease, color 0.3s ease;
      margin-top: 8px;
    }
    .contact-submit:hover { background: var(--gold); color: var(--dark-bg); }
    .contact-gdpr {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 12px;
      color: var(--text-faint);
      font-style: italic;
      margin-top: 14px;
    }
    .contact-success {
      display: none;
      font-family: var(--font-head);
      font-style: italic;
      font-size: 24px;
      color: var(--gold);
      text-align: center;
      padding: 40px 0;
    }
    .contact-error {
      color: #993C1D;
      font-size: 13px;
      margin-top: -10px;
      margin-bottom: 10px;
      display: none;
    }

    .reassure-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      background: var(--bg-section);
      border-top: 1px solid var(--rule);
      border-bottom: 1px solid var(--rule);
    }
    .reassure-tile {
      padding: 40px 32px;
      text-align: center;
      border-right: 1px solid var(--rule);
    }
    .reassure-tile:last-child { border-right: none; }
    .reassure-title {
      font-family: var(--font-head);
      font-weight: 300;
      font-size: 20px;
      color: var(--gold);
      margin-bottom: 12px;
    }
    .reassure-body {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.6;
    }

    /* ─── FOOTER NAV ────────────────────────────────────────────────── */
    .ft-nav {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0;
    }
    .ft-nav a {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #666;
      transition: color 0.3s ease;
      padding: 0 10px;
      border-right: 1px solid #333;
    }
    .ft-nav a:first-child { padding-left: 0; }
    .ft-nav a:last-child  { border-right: none; }
    .ft-nav a:hover       { color: var(--gold); }
    .ft-nav a.fnc         { color: var(--gold); }

    /* ─── RESPONSIVE — INNER PAGES ──────────────────────────────────── */
    @media (max-width: 1024px) {
      .abt-opener    { grid-template-columns: 1fr; gap: 44px; }
      .abt-portrait  { width: 100%; max-width: 100%; height: 400px; }
      .svc-grid      { grid-template-columns: repeat(2, 1fr); }
      .svc-tile:nth-child(4n)            { border-right: 1px solid var(--rule); }
      .svc-tile:nth-child(2n)            { border-right: none; }
      .svc-tile:nth-last-child(-n+4)     { border-bottom: 1px solid var(--rule); }
      .svc-tile:nth-last-child(-n+2)     { border-bottom: none; }
      .book-opener   { grid-template-columns: 1fr; }
    }

    @media (max-width: 768px) {
      .pg-sec        { padding: 64px 20px; }
      .pg-sec.pg-dark  { padding: 80px 20px; }
      .pg-sec.pg-alt   { padding: 60px 20px; }
      .pg-sec.pg-sect  { padding: 48px 20px; }
      .pg-quote      { padding: 56px 20px; }
      .pg-dark-cta   { padding: 80px 20px; }
      .press-signal  { padding: 48px 20px; }
      .book-opener   { padding: 48px 20px; gap: 36px; }
      .stat-row      { grid-template-columns: 1fr; }
      .stat-tile     { border-right: none; border-bottom: 1px solid var(--rule); }
      .stat-tile:last-child { border-bottom: none; }
      .svc-grid      { grid-template-columns: 1fr; }
      .svc-tile      { border-right: none !important; }
      .svc-tile:nth-last-child(-n+4) { border-bottom: 1px solid var(--rule) !important; }
      .svc-tile:last-child { border-bottom: none !important; }
      .reassure-row  { grid-template-columns: 1fr; }
      .reassure-tile { border-right: none; border-bottom: 1px solid var(--rule); }
      .reassure-tile:last-child { border-bottom: none; }
      .ft-nav        { justify-content: center; flex-wrap: wrap; gap: 4px 0; }

      /* Inner page opening padding override (inline style) */
      [style*="padding-top: 140px"] { padding-top: 88px !important; }

      /* About page portrait */
      .abt-opener    { grid-template-columns: 1fr; gap: 32px; }
      .abt-portrait  { width: 100%; max-width: 100%; height: 300px; }

      /* Inner page headings */
      .pg-h1  { font-size: clamp(32px, 8vw, 48px); }
      .pg-h2  { font-size: clamp(22px, 5.5vw, 32px); margin-bottom: 16px; }
      .pg-h3  { font-size: 18px; }
      .pg-sub { font-size: clamp(16px, 4vw, 20px); }
      .pg-body { font-size: 15px; }

      /* Testimonials page */
      .testi-mark { font-size: 56px; margin-bottom: 20px; }
      .testi-text { font-size: clamp(15px, 4.2vw, 19px); }
      .testi-obs  { padding-left: 16px; font-size: 13px; }

      /* Stats row */
      .stat-num   { font-size: 40px; }

      /* Press page */
      .press-head  { font-size: 18px; }
      .press-signal-body { font-size: 16px; }
      .press-signal-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 28px;
      }

      /* Proof bar logos — allow wrap on mobile */
      .pr-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 28px;
        padding: 0 16px;
      }
      .pr-label { font-size: 10px; margin-bottom: 18px; }

      /* Contact page */
      .contact-submit { width: 100%; text-align: center; padding: 16px 20px; }
      .contact-form input,
      .contact-form select,
      .contact-form textarea { font-size: 16px; padding: 12px 14px; }

      /* What We Do service grid */
      .svc-title { font-size: 18px; }

      /* Footer nav */
      .ft-nav a { font-size: 11px; padding: 0 8px; border-right: none; }
      .ft-nav a:not(:last-child)::after { content: "·"; margin-left: 8px; color: var(--text-faint); }
    }

    @media (max-width: 480px) {
      .pg-h1  { font-size: clamp(28px, 7.5vw, 40px); }
      .pg-h2  { font-size: clamp(20px, 5.5vw, 28px); }
      .pg-sub { font-size: 16px; }
      .abt-portrait  { height: 240px; }
      .press-signal-logos { gap: 14px 20px; }

      /* Proof bar logos */
      .pr-logo[data-logo="tatler"]       { height: 13px; }
      .pr-logo[data-logo="conde-nast"]   { height: 80px; }
      .pr-logo[data-logo="house-garden"] { height: 36px; }
      .pr-logo[data-logo="debretts"]     { height: 18px; }
    }

    /* ── INLINE GALLERY (The Work page) ─────────────────────── */
    .work-gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-bottom: 8px;
      padding: 0 8px;
    }
    .wg-item {
      position: relative;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      background: #111;
      border-radius: 6px;
    }
    .wg-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }
    .wg-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,.25) 55%, rgba(0,0,0,.72) 100%);
      pointer-events: none;
    }
    .wg-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      z-index: 2;
      padding: 24px 24px 22px;
    }
    .wg-caption-title {
      font-family: var(--font-serif);
      font-size: clamp(1rem, 1.3vw, 1.25rem);
      font-weight: 300;
      line-height: 1.3;
      color: #fff;
      margin-bottom: 7px;
    }
    .wg-caption-meta {
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 300;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
    }
    @media (max-width: 768px) {
      .work-gallery { grid-template-columns: repeat(2, 1fr); gap: 6px; padding: 0 6px; }
      .wg-caption { padding: 14px 14px 12px; }
      .wg-caption-title { font-size: 0.85rem; margin-bottom: 4px; }
      .wg-caption-meta { font-size: 9px; letter-spacing: 0.14em; }
    }
    @media (max-width: 480px) {
      .work-gallery { grid-template-columns: 1fr; gap: 6px; padding: 0 6px; }
      .wg-caption { padding: 16px 16px 14px; }
      .wg-caption-title { font-size: 1rem; margin-bottom: 5px; }
      .wg-caption-meta { font-size: 10px; }
    }
