/* ── RESET ───────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: #111;
      color: #f0ebe4;
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; height: auto; }
    a { color: inherit; text-decoration: none; }

    /* ── TOKENS ──────────────────────────────────────── */
    :root {
      --ink:    #0d0d0d;
      --paper:  #f0ebe4;
      --terra:  #c8763a;
      --terra2: #df976e;
      --stone:  #2a2a2a;
      --grey:   #888;
      --h: 'Inter Tight', sans-serif;
      --b: 'Inter', sans-serif;
    }

    /* ── UTILITY ─────────────────────────────────────── */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
    .sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

    /* ── NAV ─────────────────────────────────────────── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 48px; height: 64px;
      transition: background 0.4s, border-color 0.4s;
    }
    .nav--transparent { background: transparent; }
    .nav--solid { background: rgba(13,13,13,0.97); border-bottom: 1px solid var(--stone); }

    .nav__wordmark {
      font-family: var(--h);
      font-size: 1rem; font-weight: 800;
      letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--paper);
      line-height: 1;
    }
    .nav__wordmark .at { color: var(--terra); }
    .nav__wordmark small {
      display: block; font-size: 0.52rem;
      font-weight: 400; letter-spacing: 0.22em;
      color: rgba(240,235,228,0.82); margin-top: 3px;
    }

    .nav__links {
      display: flex; gap: 22px; list-style: none;
      font-size: 0.66rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: rgba(240,235,228,0.85);
      white-space: nowrap;
    }
    .nav__links a { transition: color 0.15s; }
    .nav__links a:hover { color: var(--terra2); }

    .nav__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

    .nav__cta {
      font-size: 0.68rem; font-weight: 800;
      letter-spacing: 0.18em; text-transform: uppercase;
      padding: 10px 24px;
      border: 1px solid rgba(240,235,228,0.3);
      color: var(--paper);
      white-space: nowrap; flex-shrink: 0;
      transition: border-color 0.2s, background 0.2s, color 0.2s;
    }
    .nav__cta:hover { background: var(--terra); border-color: var(--terra); }
    .nav__cta--play { display: inline-flex; align-items: center; gap: 6px; background: transparent; }
    .nav__cta--play:hover { background: rgba(240,235,228,0.1); border-color: rgba(240,235,228,0.5); }

    @media(max-width:768px) { .nav__links { display: none; } .nav { padding: 0 20px; } }

    /* ── HERO ────────────────────────────────────────── */
    .hero {
      position: relative;
      height: 100vh; min-height: 640px;
      display: flex; flex-direction: column;
      justify-content: flex-end;
      overflow: hidden;
    }

    .hero__img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center 20%;
      filter: brightness(0.45);
      transform: scale(1.04);
      transition: transform 7s ease;
    }
    .hero.loaded .hero__img { transform: scale(1); }

    /* Large faded wordmark behind content */
    .hero__bg-text {
      position: absolute;
      bottom: -0.1em; left: -0.02em;
      font-family: var(--h);
      font-size: clamp(8rem, 18vw, 18rem);
      font-weight: 900;
      letter-spacing: -0.03em;
      text-transform: uppercase;
      color: transparent;
      -webkit-text-stroke: 1px rgba(240,235,228,0.08);
      line-height: 1;
      pointer-events: none;
      user-select: none;
      white-space: nowrap;
    }

    .hero__content {
      position: relative; z-index: 2;
      padding: 0 48px 72px;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: flex-end;
      gap: 40px;
    }

    .hero__left {}

    .hero__eyebrow {
      display: inline-block;
      font-size: 0.62rem; font-weight: 800;
      letter-spacing: 0.24em; text-transform: uppercase;
      color: var(--terra2);
      border-bottom: 1px solid var(--terra);
      padding-bottom: 6px;
      margin-bottom: 24px;
    }

    .hero__title {
      font-family: var(--h);
      font-size: clamp(3.5rem, 8vw, 8.5rem);
      font-weight: 900;
      line-height: 0.92;
      letter-spacing: -0.03em;
      text-transform: uppercase;
      color: var(--paper);
      margin-bottom: 32px;
    }
    .hero__title .at { color: var(--terra); }
    .hero__title .line2 {
      display: block;
      font-weight: 300;
      font-style: italic;
      font-size: 0.65em;
      letter-spacing: 0;
      text-transform: none;
      color: rgba(240,235,228,0.7);
      margin-top: 8px;
    }

    .hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
    .btn-primary {
      display: inline-block;
      font-size: 0.72rem; font-weight: 800;
      letter-spacing: 0.16em; text-transform: uppercase;
      padding: 16px 40px;
      background: var(--terra); color: var(--paper);
      transition: background 0.2s, transform 0.15s;
    }
    .btn-primary:hover { background: var(--terra2); transform: translateY(-1px); }
    .btn-ghost {
      display: inline-block;
      font-size: 0.72rem; font-weight: 800;
      letter-spacing: 0.16em; text-transform: uppercase;
      padding: 15px 40px;
      border: 1px solid rgba(240,235,228,0.3); color: var(--paper);
      transition: border-color 0.2s, background 0.2s;
    }
    .btn-ghost:hover { border-color: var(--paper); background: rgba(240,235,228,0.05); }

    .hero__right {
      text-align: right;
      padding-bottom: 4px;
    }
    .hero__rating {
      font-family: var(--h);
      font-size: 3rem; font-weight: 900;
      color: var(--paper); line-height: 1;
    }
    .hero__rating-stars { color: var(--terra); font-size: 0.8rem; letter-spacing: 3px; }
    .hero__rating-label {
      font-size: 0.6rem; font-weight: 800;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: rgba(240,235,228,0.82); margin-top: 4px;
    }

    @media(max-width:768px) {
      .hero__content { grid-template-columns: 1fr; padding: 0 20px 48px; gap: 24px; }
      .hero__right { text-align: left; }
      .hero__bg-text { font-size: 22vw; }
    }

    /* ── TICKER ──────────────────────────────────────── */
    .ticker {
      background: var(--terra);
      padding: 12px 0;
      overflow: hidden; white-space: nowrap;
    }
    .ticker__track {
      display: inline-flex;
      animation: ticker 28s linear infinite;
    }
    .ticker__track:hover { animation-play-state: paused; }
    .ticker__item {
      font-size: 0.65rem; font-weight: 800;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--paper); padding: 0 28px;
    }
    .ticker__dot { opacity: 0.6; padding: 0 4px; }
    @keyframes ticker { to { transform: translateX(-50%); } }

    /* ── ABOUT · editorial split ─────────────────────── */
    .about {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 80vh;
    }

    .about__visual {
      position: relative; overflow: hidden;
      background: #1a1a1a;
    }
    .about__visual img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; object-position: center 30%;
      filter: brightness(0.75) saturate(0.9);
      transition: transform 0.6s ease;
    }
    .about__visual:hover img { transform: scale(1.03); }
    .about__visual-label {
      position: absolute; bottom: 32px; left: 32px;
      font-size: 0.6rem; font-weight: 800;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--paper);
      border-left: 2px solid var(--terra);
      padding-left: 12px;
    }

    .about__content {
      background: var(--ink);
      padding: 80px 72px;
      display: flex; flex-direction: column; justify-content: center;
      border-left: 1px solid var(--stone);
    }

    .label {
      font-size: 0.6rem; font-weight: 800;
      letter-spacing: 0.24em; text-transform: uppercase;
      color: var(--terra); margin-bottom: 20px;
      display: block;
    }
    .section-title {
      font-family: var(--h);
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      font-weight: 800; line-height: 1.1;
      color: var(--paper); margin-bottom: 28px;
    }
    .section-title em { font-style: italic; font-weight: 300; color: var(--terra2); }

    .body-copy {
      font-size: 0.95rem; line-height: 1.8;
      color: rgba(240,235,228,0.82);
      margin-bottom: 20px;
    }
    .body-copy strong { color: var(--paper); font-weight: 700; }

    .pull-quote {
      font-family: var(--h);
      font-size: 1.15rem; font-weight: 600;
      font-style: italic;
      color: var(--paper);
      border-left: 2px solid var(--terra);
      padding-left: 20px;
      margin: 32px 0;
      line-height: 1.5;
    }

    .about__founders {
      display: flex; gap: 0;
      margin-top: 36px;
      padding-top: 28px;
      border-top: 1px solid var(--stone);
    }
    .founder {
      flex: 1;
      padding-right: 24px;
    }
    .founder + .founder {
      padding-right: 0; padding-left: 24px;
      border-left: 1px solid var(--stone);
    }
    .founder__name {
      font-family: var(--h);
      font-size: 1rem; font-weight: 800;
      text-transform: uppercase; letter-spacing: 0.08em;
      color: var(--paper); margin-bottom: 4px;
    }
    .founder__role {
      font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--terra);
    }
    .founder__detail {
      font-size: 0.78rem; color: rgba(240,235,228,0.82);
      margin-top: 4px; line-height: 1.5;
    }

    @media(max-width:900px) {
      .about { grid-template-columns: 1fr; }
      .about__visual { min-height: 50vw; }
      .about__content { padding: 56px 24px; }
    }

    /* ── MANIFESTO ───────────────────────────────────── */
    .manifesto {
      background: var(--paper);
      padding: 100px 0;
    }
    .manifesto__inner {
      max-width: 900px; margin: 0 auto;
      padding: 0 48px;
    }
    .manifesto__line {
      font-family: var(--h);
      font-size: clamp(1.6rem, 3.5vw, 3rem);
      font-weight: 800; line-height: 1.1;
      color: var(--ink);
      padding: 32px 0;
      border-bottom: 1px solid rgba(13,13,13,0.12);
      display: flex; align-items: baseline;
      gap: 20px;
    }
    .manifesto__line:first-of-type { border-top: 1px solid rgba(13,13,13,0.12); }
    .manifesto__num {
      font-size: 0.7rem; font-weight: 800;
      letter-spacing: 0.2em; color: var(--terra);
      flex-shrink: 0; margin-top: 4px;
    }
    .manifesto__line em { font-style: italic; font-weight: 300; color: var(--terra); }
    .manifesto__cta { text-align: center; margin-top: 64px; }
    .btn-dark {
      display: inline-block;
      font-size: 0.72rem; font-weight: 800;
      letter-spacing: 0.18em; text-transform: uppercase;
      padding: 16px 40px;
      background: var(--ink); color: var(--paper);
      transition: background 0.2s;
    }
    .btn-dark:hover { background: var(--terra); }

    @media(max-width:600px) {
      .manifesto__inner { padding: 0 20px; }
      .manifesto__line { font-size: 1.4rem; }
    }

    /* ── SERVICES · colour block grid ────────────────── */
    .services { background: var(--ink); padding: 100px 0 0; }
    .services__header {
      padding: 0 48px 56px;
      display: flex; justify-content: space-between; align-items: flex-end;
      flex-wrap: wrap; gap: 24px;
    }
    .services__header .section-title { margin-bottom: 0; max-width: 500px; }
    .services__header-right {
      font-size: 1.45rem; color: rgba(240,235,228,0.88);
      max-width: 480px; line-height: 1.45;
      margin-right: 6vw;
    }

    /* The grid: 3 col on desktop, mix of tall + wide */
    .services__grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      grid-template-rows: 480px 280px;
      gap: 3px;
    }

    .svc {
      position: relative; overflow: hidden;
      cursor: pointer;
    }
    /* colour block backgrounds · each service gets its own colour */
    .svc--1 { grid-column:1; grid-row:1/3; background: #1a1208; }
    .svc--2 { grid-column:2; grid-row:1; background: #0d1a14; }
    .svc--3 { grid-column:3; grid-row:1; background: #1a0d0d; }
    .svc--4 { grid-column:2/4; grid-row:2; background: #0d1018; }

    .svc__photo {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(0.45) saturate(0.7);
      transition: filter 0.5s, transform 0.6s;
    }
    .svc:hover .svc__photo { filter: brightness(0.3) saturate(0.5); transform: scale(1.04); }

    /* Coloured corner accent */
    .svc__accent {
      position: absolute; top: 0; right: 0;
      width: 80px; height: 80px;
      transition: width 0.3s, height 0.3s;
    }
    .svc--1 .svc__accent { background: var(--terra); }
    .svc--2 .svc__accent { background: #2a6e4a; }
    .svc--3 .svc__accent { background: #6e2a2a; }
    .svc--4 .svc__accent { background: #2a3a6e; }
    .svc:hover .svc__accent { width: 120px; height: 120px; }

    .svc__body {
      position: absolute; inset: 0;
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 32px;
    }
    .svc__num { display: none; }
    .svc__title {
      font-family: var(--h);
      font-size: 1.5rem; font-weight: 800;
      text-transform: uppercase; letter-spacing: 0.02em;
      color: var(--paper); line-height: 1.1;
      margin-bottom: 10px;
    }
    .svc--1 .svc__title { font-size: 2rem; }
    .svc--1 .svc__body { justify-content: flex-start; align-items: flex-start; text-align: left; }
    .svc__copy {
      font-size: 0.8rem; color: rgba(240,235,228,0.7);
      line-height: 1.55; max-height: 0; overflow: hidden;
      transition: max-height 0.4s ease;
    }
    .svc:hover .svc__copy { max-height: 100px; }
    .svc__link {
      display: inline-block; margin-top: 14px;
      font-size: 0.66rem; font-weight: 800;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--terra2);
      opacity: 0; transform: translateY(6px);
      transition: opacity 0.3s 0.05s, transform 0.3s 0.05s;
    }
    .svc:hover .svc__link { opacity: 1; transform: translateY(0); }

    @media(max-width:900px) {
      .services__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 260px 260px 220px;
      }
      .svc--1 { grid-column:1/3; grid-row:1; }
      .svc--2 { grid-column:1; grid-row:2; }
      .svc--3 { grid-column:2; grid-row:2; }
      .svc--4 { grid-column:1/3; grid-row:3; }
    }
    @media(max-width:540px) {
      .services__grid { grid-template-columns:1fr; grid-template-rows:auto; }
      .svc--1,.svc--2,.svc--3,.svc--4 { grid-column:1; grid-row:auto; min-height:240px; }
    }

    /* ── TELEPHONE MOMENT ────────────────────────────── */
    .telephone {
      position: relative; overflow: hidden;
      height: 55vh; min-height: 360px;
      display: flex; align-items: flex-end;
    }
    .telephone img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; object-position: center 40%;
      filter: brightness(0.35) saturate(0.6);
    }
    .telephone__content {
      position: relative; z-index: 2;
      width: 100%; padding: 0 48px 52px;
      display: flex; justify-content: space-between; align-items: flex-end;
      flex-wrap: wrap; gap: 20px;
      row-gap: 32px;
    }
    .telephone__headline {
      font-family: var(--h);
      font-size: clamp(2rem, 6vw, 5.5rem);
      font-weight: 900; text-transform: uppercase;
      letter-spacing: -0.02em; line-height: 1;
      color: var(--paper);
    }
    .telephone__headline .accent { color: var(--terra); font-weight: 300; font-style: italic; text-transform: none; }
    .telephone__aside { text-align: right; }
    .telephone__aside p {
      font-size: 0.6rem; font-weight: 800;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: rgba(240,235,228,0.4); margin-bottom: 8px;
    }
    .telephone__aside a {
      font-family: var(--h); font-size: 2rem;
      font-weight: 900; color: var(--paper);
      transition: color 0.2s; letter-spacing: -0.01em;
    }
    .telephone__aside a:hover { color: var(--terra2); }
    @media(max-width:600px) {
      .telephone__content { padding: 0 20px 40px; }
      .telephone__aside { text-align: left; }
    }

    /* ── CREDENTIALS · numbered rows ─────────────────── */
    .creds { background: var(--ink); padding: 100px 0; }
    .creds__header { padding: 0 48px 64px; }
    .creds__rows { padding: 0 48px; max-width: 1100px; }

    .cred {
      display: grid;
      grid-template-columns: 64px 1fr 1fr auto;
      gap: 40px; align-items: center;
      padding: 36px 0;
      border-bottom: 1px solid var(--stone);
    }
    .cred:first-child { border-top: 1px solid var(--stone); }
    .cred__num {
      font-family: var(--h); font-size: 2.5rem;
      font-weight: 900; color: var(--stone); line-height: 1;
    }
    .cred__title {
      font-family: var(--h); font-size: 1.2rem;
      font-weight: 800; color: var(--paper); line-height: 1.2;
    }
    .cred__value {
      font-family: var(--h); font-size: 1.6rem;
      font-weight: 900; color: var(--terra);
    }
    .cred__body {
      font-size: 0.88rem; color: rgba(240,235,228,0.82);
      line-height: 1.7; grid-column: 3;
    }

    /* Funky per-row CTA — stacked terracotta link, top-aligned to the right */
    .cred__cta {
      position: relative;
      grid-column: 4;
      grid-row: 1;
      justify-self: end;
      align-self: start;
      display: inline-flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
      padding: 0;
      border: none;
      border-radius: 0;
      background: none;
      box-shadow: none;
      font-family: var(--h);
      font-size: 0.75rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #c8763a;
      white-space: nowrap;
      transition: color 0.2s, transform 0.2s;
    }
    .cred__cta__snip {
      display: inline-block;
      font-size: 1.05rem;
      color: #c8763a;
      transform: rotate(-8deg);
      transition: transform 0.25s ease;
    }
    .cred__cta__arrow { display: inline-block; color: #c8763a; transition: transform 0.25s ease; }
    .cred:hover .cred__cta,
    .cred__cta:hover,
    .cred__cta:focus-visible {
      color: var(--terra2);
    }
    .cred:hover .cred__cta .cred__cta__snip,
    .cred__cta:hover .cred__cta__snip,
    .cred:hover .cred__cta .cred__cta__arrow,
    .cred__cta:hover .cred__cta__arrow { color: var(--terra2); }
    .cred:active .cred__cta,
    .cred__cta:active { transform: translateY(1px); }
    .cred:hover .cred__cta .cred__cta__arrow,
    .cred__cta:hover .cred__cta__arrow { transform: translateX(5px) rotate(10deg); }
    .cred:hover .cred__cta .cred__cta__snip,
    .cred__cta:hover .cred__cta__snip { transform: rotate(18deg) scale(1.15); }

    @media(max-width:900px) {
      .cred { grid-template-columns: 64px 1fr 1fr; }
      .cred__cta { grid-column: 1/4; grid-row: auto; justify-self: start; align-self: auto; flex-direction: row; align-items: center; gap: 8px; margin-top: 8px; }
    }

    @media(max-width:760px) {
      .cred { grid-template-columns: 48px 1fr; gap: 16px; }
      .cred__body { grid-column: 1/3; }
      .cred__cta { grid-column: 1/3; justify-self: start; align-self: auto; flex-direction: row; align-items: center; gap: 8px; margin-top: 14px; }
      .creds__rows, .creds__header { padding-left: 20px; padding-right: 20px; }
    }

    /* ── GALLERY · masonry photo wall ────────────────── */
    .gallery { background: #0d0d0d; padding: 100px 0 110px; border-top: 1px solid var(--stone); }
    .gallery__grid {
      columns: 4 260px;
      column-gap: 14px;
      padding: 0 48px;
    }
    .gallery__item {
      position: relative;
      break-inside: avoid;
      margin-bottom: 14px;
      overflow: hidden;
      background: #1a1a1a;
    }
    .gallery__item img {
      display: block; width: 100%; height: auto;
      filter: brightness(0.92) saturate(0.96);
      transition: transform 0.45s ease, filter 0.3s ease;
    }
    .gallery__item:hover img { transform: scale(1.06); filter: brightness(0.6); }
    .gallery__tag {
      position: absolute; top: 12px; left: 12px;
      font-family: var(--h); font-size: 0.56rem; font-weight: 800;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--ink); background: var(--terra2);
      padding: 5px 10px; border-radius: 999px;
    }
    .gallery__caption {
      position: absolute; left: 0; right: 0; bottom: 0; padding: 16px;
      font-family: var(--h); font-size: 0.82rem; font-weight: 700; color: var(--paper);
      opacity: 0; transition: opacity 0.3s;
      background: linear-gradient(to top, rgba(0,0,0,0.88), transparent);
    }
    .gallery__item:hover .gallery__caption { opacity: 1; }

    @media(max-width:1100px) { .gallery__grid { columns: 3 220px; } }
    @media(max-width:760px) {
      .gallery { padding: 72px 0 80px; }
      .gallery__grid { columns: 2 160px; padding: 0 20px; column-gap: 10px; }
      .gallery__item { margin-bottom: 10px; }
    }
    @media(max-width:460px) { .gallery__grid { columns: 1; } }

    /* ── MOOD STRIP · candid personality gallery ───────── */
    .mood { background: #0d0d0d; padding: 88px 0; border-top: 1px solid var(--stone); }
    .mood__header { padding: 0 48px 40px; }
    .mood__grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 2px; padding: 0 2px;
    }
    .mood__cell { position: relative; aspect-ratio: 4/5; overflow: hidden; background: #1a1a1a; }
    .mood__cell img {
      position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
      filter: brightness(0.88) saturate(0.95); transition: transform 0.4s, filter 0.3s;
    }
    .mood__cell:hover img { transform: scale(1.06); filter: brightness(0.62); }
    .mood__caption {
      position: absolute; left: 0; right: 0; bottom: 0; padding: 16px;
      font-family: var(--h); font-size: 0.82rem; font-weight: 700; color: var(--paper);
      opacity: 0; transition: opacity 0.3s;
      background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    }
    .mood__cell:hover .mood__caption { opacity: 1; }

    @media(max-width:800px) {
      .mood__grid { grid-template-columns: repeat(2, 1fr); }
      .mood__header { padding: 0 24px 28px; }
    }

    /* ── TEAM ────────────────────────────────────────── */
    .team { background: #0d0d0d; padding: 100px 0; }
    .team__header { padding: 0 48px 56px; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; }
    .team__header .section-title { margin-bottom: 0; }

    .team__scroll-wrap { position: relative; }

    .team__scroll {
      display: flex; gap: 2px;
      overflow-x: auto; padding-bottom: 2px;
      scrollbar-width: none;
      cursor: grab;
    }
    .team__scroll:active { cursor: grabbing; }
    .team__scroll::-webkit-scrollbar { display: none; }

    .team__nav {
      position: absolute; top: 45%; transform: translateY(-50%);
      width: 44px; height: 44px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      background: rgba(13,13,13,0.72); border: 1px solid rgba(240,235,228,0.28);
      color: var(--paper); font-size: 1.2rem; line-height: 1;
      cursor: pointer; z-index: 5; padding: 0;
      transition: background 0.2s, border-color 0.2s, opacity 0.2s;
    }
    .team__nav:hover { background: var(--terra); border-color: var(--terra); }
    .team__nav--prev { left: 14px; }
    .team__nav--next { right: 14px; }
    .team__nav[disabled] { opacity: 0.3; cursor: default; pointer-events: none; }
    @media(max-width:700px) {
      .team__nav { width: 36px; height: 36px; font-size: 1rem; }
      .team__nav--prev { left: 8px; }
      .team__nav--next { right: 8px; }
    }

    .team-card {
      flex-shrink: 0; width: 260px;
      position: relative; overflow: hidden;
      aspect-ratio: 2/3;
    }
    .team-card__img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: top;
      filter: grayscale(60%) brightness(0.75);
      transition: filter 0.5s, transform 0.5s;
    }
    .team-card:hover .team-card__img {
      filter: grayscale(0%) brightness(0.55);
      transform: scale(1.04);
    }
    .team-card__overlay {
      position: absolute; inset: 0;
      background: linear-gradient(transparent 45%, rgba(13,13,13,0.95) 100%);
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 24px;
    }
    .team-card__tag {
      font-size: 0.58rem; font-weight: 800;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--terra); margin-bottom: 6px;
    }
    .team-card__name {
      font-family: var(--h); font-size: 1.3rem;
      font-weight: 900; text-transform: uppercase;
      color: var(--paper); line-height: 1; margin-bottom: 4px;
    }
    .team-card__role {
      font-size: 0.62rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: rgba(240,235,228,0.4); margin-bottom: 12px;
    }
    .team-card__bio {
      font-size: 0.76rem; color: rgba(240,235,228,0);
      line-height: 1.5; max-height: 0; overflow: hidden;
      transition: max-height 0.4s, color 0.3s;
    }
    .team-card:hover .team-card__bio { max-height: 90px; color: rgba(240,235,228,0.7); }

    .team-card__cta {
      display: inline-flex; align-items: center; gap: 6px;
      margin-top: 12px;
      font-size: 0.62rem; font-weight: 800;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--terra2);
    }
    .team-card__cta__arrow { transition: transform 0.2s; }
    .team-card:hover .team-card__cta__arrow { transform: translateX(3px); }

    .team__cta { text-align: center; margin-top: 48px; }
    .btn-outline {
      display: inline-block;
      font-size: 0.68rem; font-weight: 800;
      letter-spacing: 0.18em; text-transform: uppercase;
      padding: 14px 36px;
      border: 1px solid var(--stone); color: var(--paper);
      transition: border-color 0.2s, color 0.2s;
    }
    .btn-outline:hover { border-color: var(--terra); color: var(--terra); }

    @media(max-width:768px) { .team__header { padding: 0 20px 40px; } }

    /* ── PRODUCTS ────────────────────────────────────── */
    .products {
      display: grid; grid-template-columns: 1fr 1fr;
    }
    .products__visual {
      position: relative; overflow: hidden;
      min-height: 520px; background: #1a1207;
    }
    .products__visual img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.6s;
    }
    .products__visual:hover img { transform: scale(1.03); }
    .products__content {
      background: #0d0d0d;
      padding: 80px 64px;
      display: flex; flex-direction: column; justify-content: center;
      border-left: 1px solid var(--stone);
    }
    .products__content .section-title { margin-bottom: 24px; }
    .products__content .body-copy { margin-bottom: 16px; }
    .pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 36px; }
    .pill {
      font-size: 0.62rem; font-weight: 800;
      letter-spacing: 0.14em; text-transform: uppercase;
      border: 1px solid var(--stone); color: rgba(240,235,228,0.82);
      padding: 6px 14px;
      transition: border-color 0.2s, color 0.2s;
    }
    .pill:hover { border-color: var(--terra); color: var(--terra); }

    @media(max-width:900px) {
      .products { grid-template-columns: 1fr; }
      .products__visual { min-height: 50vw; }
      .products__content { padding: 56px 24px; }
    }

    /* ── REVIEWS ─────────────────────────────────────── */
    .reviews { background: var(--paper); padding: 100px 0; }
    .reviews__header { text-align: center; margin-bottom: 64px; padding: 0 48px; }
    .reviews__header .label { color: var(--terra); }
    .reviews__header .section-title { color: var(--ink); }
    .reviews__score {
      display: flex; align-items: baseline;
      justify-content: center; gap: 16px; margin-bottom: 6px;
    }
    .reviews__num {
      font-family: var(--h); font-size: 6rem;
      font-weight: 900; color: var(--ink); line-height: 1;
    }
    .reviews__stars { font-size: 1.4rem; color: var(--terra); letter-spacing: 4px; }
    .reviews__count { font-size: 0.78rem; color: #888; margin-top: 4px; }

    .reviews__grid {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 2px; margin-bottom: 56px;
    }
    .review {
      background: #fff;
      padding: 40px 36px;
      position: relative; overflow: hidden;
    }
    .review::before {
      content: '\201C';
      font-family: Georgia, serif; font-size: 8rem;
      line-height: 0.65; color: rgba(200,118,58,0.1);
      position: absolute; top: 20px; left: 20px;
      transition: color 0.3s;
    }
    .review:hover::before { color: rgba(200,118,58,0.2); }
    .review__stars { color: var(--terra); font-size: 0.8rem; margin-bottom: 20px; position: relative; z-index: 1; }
    .review__text {
      font-size: 0.9rem; line-height: 1.8; color: #333;
      position: relative; z-index: 1; padding-top: 24px;
      margin-bottom: 24px;
    }
    .review__author { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); }
    .review__service { font-size: 0.68rem; color: var(--terra); margin-top: 3px; }

    .reviews__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
    .btn-ink {
      display: inline-block; font-size: 0.68rem; font-weight: 800;
      letter-spacing: 0.18em; text-transform: uppercase;
      padding: 14px 36px; background: var(--ink); color: var(--paper);
      transition: background 0.2s;
    }
    .btn-ink:hover { background: var(--terra); }
    .btn-ink-outline {
      display: inline-block; font-size: 0.68rem; font-weight: 800;
      letter-spacing: 0.18em; text-transform: uppercase;
      padding: 13px 36px; border: 1px solid var(--ink); color: var(--ink);
      transition: background 0.2s, color 0.2s;
    }
    .btn-ink-outline:hover { background: var(--ink); color: var(--paper); }

    @media(max-width:900px) { .reviews__grid { grid-template-columns:1fr; } }

    /* ── INSTAGRAM STRIP ─────────────────────────────── */
    .insta { background: var(--ink); }
    .insta__header { padding: 64px 48px 32px; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 12px; }
    .insta__handle { font-family: var(--h); font-size: 1.5rem; font-weight: 900; color: var(--paper); }
    .insta__handle a { color: var(--terra2); transition: color 0.2s; }
    .insta__handle a:hover { color: var(--terra); }
    .insta__sub { font-size: 0.75rem; color: rgba(240,235,228,0.82); margin-top: 4px; }
    .insta__follow { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terra2); border-bottom: 1px solid var(--terra); padding-bottom: 2px; }

    .insta__grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 2px; }
    .insta__cell { position: relative; aspect-ratio: 1/1; overflow: hidden; background: #1a1a1a; }
    .insta__cell img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85) saturate(0.9); transition: transform 0.4s, filter 0.3s; }
    .insta__cell:hover img { transform: scale(1.07); filter: brightness(0.55); }
    .insta__cell-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; opacity: 0; transition: opacity 0.3s; }
    .insta__cell:hover .insta__cell-icon { opacity: 1; }
    @media(max-width:640px) { .insta__grid { grid-template-columns: repeat(3,1fr); } }

    /* ── FAQ ─────────────────────────────────────────── */
    /* Items are permanently expanded (no accordion toggle), laid out as a
       2-column grid. .faq__item is a plain div (not <details>) so there is
       no collapse interaction at all. */
    .faq { background: var(--ink); padding: 100px 0; border-top: 1px solid var(--stone); }
    .faq__inner { max-width: 1080px; margin: 0 auto; padding: 0 48px; }
    .faq__header { margin-bottom: 48px; }
    .faq__header .label { color: var(--terra); }
    .faq__header .section-title { margin-bottom: 0; }
    .faq__grid {
      display: grid; grid-template-columns: 1fr 1fr;
      column-gap: 56px;
    }
    .faq__item { border-bottom: 1px solid var(--stone); padding: 22px 0; }
    .faq__q {
      display: block; margin: 0 0 12px;
      font-family: var(--h); font-size: 1rem; font-weight: 700;
      color: var(--terra2);
    }
    .faq__item p { font-size: 0.9rem; line-height: 1.8; color: rgba(240,235,228,0.82); margin: 0; }
    .faq__cta { text-align: center; margin-top: 40px; }

    @media(max-width:800px) {
      .faq__grid { grid-template-columns: 1fr; grid-auto-flow: row; column-gap: 0; }
    }
    @media(max-width:600px) { .faq__inner { padding: 0 20px; } }

    /* ── FIND US ─────────────────────────────────────── */
    .findus { display: grid; grid-template-columns: 1fr 1fr; }
    .findus__info {
      background: var(--ink); padding: 80px 64px;
      border-top: 1px solid var(--stone);
    }
    .findus__info .label { color: var(--terra); }
    .findus__info .section-title { margin-bottom: 32px; }

    .findus__row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--stone); }
    .findus__row:first-of-type { border-top: 1px solid var(--stone); }
    .findus__icon { font-size: 0.95rem; flex-shrink: 0; margin-top: 3px; }
    .findus__label { font-size: 0.58rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terra); margin-bottom: 5px; }
    .findus__value { font-size: 0.9rem; color: rgba(240,235,228,0.7); line-height: 1.6; }
    .findus__value a { color: var(--terra2); font-weight: 700; }
    .findus__late { color: var(--terra) !important; font-weight: 700; }
    .findus__book { margin-top: 32px; }

    .findus__map { position: relative; min-height: 400px; background: #111; }
    .findus__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; filter: grayscale(40%) invert(88%) hue-rotate(180deg); }

    /* ── DIRECTIONS FINDER ───────────────────────────── */
    .directions { background: var(--paper); padding: 56px 48px; text-align: center; }
    .directions__inner { max-width: 560px; margin: 0 auto; }
    .directions__intro { font-family: var(--h); font-size: 1.3rem; font-weight: 800; color: var(--ink); margin-bottom: 24px; }
    .directions__form { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
    .directions__input {
      flex: 1 1 260px; min-width: 0;
      padding: 14px 18px; font-size: 0.95rem;
      border: 1px solid var(--stone); background: #fff; color: var(--ink);
      font-family: var(--b, inherit);
    }
    .directions__input::placeholder { color: rgba(13,13,13,0.4); }
    .directions__submit {
      flex: 0 0 auto;
      font-size: 0.68rem; font-weight: 800;
      letter-spacing: 0.18em; text-transform: uppercase;
      padding: 14px 28px; border: none; cursor: pointer;
      background: var(--terra); color: var(--paper);
      transition: background 0.2s;
    }
    .directions__submit:hover { background: var(--ink); }
    .directions__note { font-size: 0.8rem; color: rgba(13,13,13,0.5); margin-top: 16px; }
    @media(max-width:600px) {
      .directions { padding: 40px 20px; }
      .directions__form { flex-direction: column; }
      .directions__submit { width: 100%; }
    }

    @media(max-width:900px) {
      .findus { grid-template-columns: 1fr; }
      .findus__map { min-height: 50vw; }
      .findus__info { padding: 56px 24px; }
    }

    /* ── BOOKING CTA ─────────────────────────────────── */
    .booking {
      background: var(--terra);
      padding: 100px 48px;
      text-align: center;
      position: relative; overflow: hidden;
    }
    .booking__ghost {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      pointer-events: none;
      font-family: var(--h); font-size: 22vw; font-weight: 900;
      text-transform: uppercase; letter-spacing: -0.04em;
      color: rgba(0,0,0,0.08); white-space: nowrap;
    }
    .booking__eyebrow { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(13,13,13,0.5); margin-bottom: 16px; }
    .booking__title {
      font-family: var(--h);
      font-size: clamp(2rem, 5vw, 4.5rem);
      font-weight: 900; text-transform: uppercase;
      letter-spacing: -0.02em; line-height: 1.05;
      color: var(--ink); margin-bottom: 16px; position: relative;
    }
    .booking__sub { font-size: 0.95rem; color: rgba(13,13,13,0.6); margin-bottom: 40px; position: relative; }
    .booking__btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }
    .btn-white { display: inline-block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; padding: 16px 40px; background: var(--ink); color: var(--paper); transition: background 0.2s; }
    .btn-white:hover { background: #222; }
    .btn-white-outline { display: inline-block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; padding: 15px 40px; border: 1px solid rgba(13,13,13,0.4); color: var(--ink); transition: background 0.2s; }
    .btn-white-outline:hover { background: rgba(13,13,13,0.08); }

    /* ── FOOTER ──────────────────────────────────────── */
    .footer { background: #080808; padding: 72px 0 36px; }
    .footer__inner { width: 100%; margin: 0; padding: 0 48px; box-sizing: border-box; }
    .footer__grid {
      display: grid;
      grid-template-columns: 1.4fr 0.85fr 0.85fr 0.85fr 1.2fr;
      gap: 40px;
      align-items: stretch;
      margin-bottom: 56px;
    }

    .footer__wordmark { font-family: var(--h); font-size: 1.1rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.06em; color: var(--paper); margin-bottom: 6px; }
    .footer__wordmark .at { color: var(--terra); }
    .footer__sub { font-size: 0.58rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(240,235,228,0.82); margin-bottom: 16px; }
    .footer__tagline { font-size: 0.85rem; color: rgba(240,235,228,0.5); line-height: 1.7; margin-bottom: 20px; }
    .footer__social { display: flex; gap: 10px; }
    .footer__social a { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border: 1px solid #2a2a2a; font-size: 0.75rem; color: rgba(240,235,228,0.82); transition: border-color 0.2s, color 0.2s; }
    .footer__social a:hover { border-color: var(--terra); color: var(--terra); }

    .footer__col-head { font-size: 0.58rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--paper); margin-bottom: 16px; }
    .footer__col-head a { color: inherit; transition: color 0.15s; }
    .footer__col-head a:hover { color: var(--terra2); }
    .footer__links { list-style: none; }
    .footer__links li { margin-bottom: 9px; }
    .footer__links a { font-size: 0.82rem; color: rgba(240,235,228,0.5); transition: color 0.15s; }
    .footer__links a:hover { color: var(--terra2); }

    .footer__bottom { padding-top: 24px; border-top: 1px solid #1a1a1a; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.72rem; color: rgba(240,235,228,0.35); }
    .footer__bottom a { color: rgba(240,235,228,0.35); transition: color 0.15s; }
    .footer__bottom a:hover { color: var(--terra); }

    .footer__map {
      position: relative;
      width: 100%;
      height: 100%;
      min-height: 220px;
      border: 1px solid #1a1a1a;
      overflow: hidden;
      background: #111;
    }
    .footer__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; filter: grayscale(45%) invert(88%) hue-rotate(180deg); }
    .footer__map-link { position: absolute; inset: 0; z-index: 2; }

    @media(max-width:1100px) {
      .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .footer__grid > .footer__brand { grid-column: 1/3; }
      .footer__grid > .footer__map { grid-column: 1/3; height: 280px; margin-top: 8px; }
    }
    @media(max-width:900px) {
      .footer__grid { grid-template-columns: 1fr; gap: 32px; }
      .footer__grid > .footer__brand, .footer__grid > .footer__map { grid-column: 1; }
      .footer__inner { padding: 0 20px; }
    }
    @media(max-width:540px) {
      .footer__grid > .footer__map { height: 220px; }
    }

    /* ── SCROLL REVEAL ───────────────────────────────── */
    [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
    [data-reveal].on { opacity: 1; transform: none; }
    [data-reveal][data-d="1"] { transition-delay: 0.1s; }
    [data-reveal][data-d="2"] { transition-delay: 0.2s; }
    [data-reveal][data-d="3"] { transition-delay: 0.3s; }

    /* ══════════════════════════════════════════════════
       MOBILE NAV OVERLAY
    ══════════════════════════════════════════════════ */
    .nav__hamburger {
      display: none;
      flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer; padding: 4px;
    }
    .nav__hamburger span {
      display: block; width: 24px; height: 2px;
      background: var(--paper); transition: all 0.25s;
    }
    .nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav__hamburger.open span:nth-child(2) { opacity: 0; }
    .nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .nav__mobile-menu {
      display: none;
      position: fixed; inset: 0; z-index: 199;
      background: rgba(13,13,13,0.98);
      flex-direction: column; align-items: center; justify-content: center;
      gap: 8px;
    }
    .nav__mobile-menu.open { display: flex; }
    .nav__mobile-menu a {
      font-family: var(--h); font-size: 2rem; font-weight: 800;
      text-transform: uppercase; letter-spacing: 0.06em;
      color: var(--paper); padding: 12px 0;
      transition: color 0.15s;
    }
    .nav__mobile-menu a:hover { color: var(--terra); }
    .nav__mobile-menu .book-link {
      margin-top: 24px; font-size: 0.8rem; font-weight: 800;
      letter-spacing: 0.2em; text-transform: uppercase;
      padding: 16px 40px; background: var(--terra); color: var(--paper);
    }
    .nav__mobile-menu .book-link--play {
      margin-top: 12px; background: transparent;
      border: 1px solid rgba(240,235,228,0.4);
      display: inline-flex; align-items: center; gap: 8px;
    }

    /* ══════════════════════════════════════════════════
       FULL RESPONSIVE SYSTEM
    ══════════════════════════════════════════════════ */

    /* Large screens (1400px+) — let it breathe more */
    @media(min-width:1400px) {
      .container { max-width: 1400px; }
      .hero__content { padding: 0 80px 96px; }
      .about__content { padding: 100px 96px; }
      .services__header { padding: 0 80px 64px; }
      .creds__header, .creds__rows { padding-left: 80px; padding-right: 80px; }
      .team__header { padding: 0 80px 56px; }
      .products__content { padding: 100px 80px; }
      .manifesto__inner { max-width: 1100px; }
    }

    /* Tablet landscape + small laptop (900–1199px) */
    @media(max-width:1199px) and (min-width:901px) {
      .nav { padding: 0 24px; gap: 12px; }
      .nav__wordmark { font-size: 0.85rem; }
      .nav__links { gap: 10px; font-size: 0.54rem; }
      .nav__cta { padding: 9px 16px; font-size: 0.6rem; }
      .nav__actions { gap: 8px; }
      .hero__content { padding: 0 40px 64px; }
      .hero__title { font-size: clamp(3rem, 7vw, 7rem); }
      .about__content { padding: 64px 48px; }
      .services__header { padding: 0 40px 48px; }
      .creds__header, .creds__rows { padding-left: 40px; padding-right: 40px; }
      .team__header { padding: 0 40px 48px; }
      .products__content { padding: 64px 48px; }
      .telephone__content { padding: 0 40px 48px; }
      .findus__info { padding: 64px 48px; }
      .insta__header { padding: 48px 40px 24px; }
      .faq__inner { padding: 0 40px; }
      .booking { padding: 80px 40px; }
      .footer__inner { padding: 0 32px; }
    }

    /* Tablet portrait (601–900px) */
    @media(max-width:900px) {
      /* Nav */
      .nav { padding: 0 24px; height: 60px; }
      .nav__links { display: none; }
      .nav__cta { display: none; }
      .nav__actions { display: none; }
      .nav__hamburger { display: flex; }

      /* Utility */
      .container { padding: 0 24px; }

      /* Hero */
      .hero__content {
        padding: 0 24px 48px;
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .hero__title { font-size: clamp(2.8rem, 9vw, 5rem); }
      .hero__bg-text { font-size: 28vw; }
      .hero__right { display: flex; gap: 20px; align-items: center; }
      .hero__rating { font-size: 2rem; }
      .hero__rating-label { font-size: 0.56rem; }

      /* About */
      .about { grid-template-columns: 1fr; }
      .about__visual { min-height: 55vw; }
      .about__content { padding: 52px 24px; }

      /* Manifesto */
      .manifesto { padding: 64px 0; }
      .manifesto__inner { padding: 0 24px; }
      .manifesto__line { font-size: clamp(1.2rem, 3.5vw, 1.8rem); padding: 24px 0; gap: 12px; }

      /* Services */
      .services { padding: 72px 0 0; }
      .services__header { padding: 0 24px 40px; flex-direction: column; align-items: flex-start; gap: 12px; }
      .services__header-right { max-width: 100%; margin-right: 0; font-size: 0.95rem; }
      .services__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 240px 240px 200px;
      }
      .svc--1 { grid-column: 1/3; grid-row: 1; }
      .svc--2 { grid-column: 1; grid-row: 2; }
      .svc--3 { grid-column: 2; grid-row: 2; }
      .svc--4 { grid-column: 1/3; grid-row: 3; }
      .svc--1 .svc__title { font-size: 1.6rem; }

      /* Telephone */
      .telephone { height: 45vw; min-height: 260px; }
      .telephone__content { padding: 0 24px 32px; flex-direction: column; align-items: flex-start; gap: 12px; }
      .telephone__headline { font-size: clamp(1.6rem, 5vw, 3rem); }
      .telephone__aside { text-align: left; }
      .telephone__aside a { font-size: 1.3rem; }

      /* Credentials */
      .creds { padding: 72px 0; }
      .creds__header { padding: 0 24px 40px; }
      .creds__rows { padding: 0 24px; }
      .cred { grid-template-columns: 48px 1fr; gap: 16px; }
      .cred__body { grid-column: 1/3; }
      .cred__value { font-size: 1.3rem; }

      /* Team */
      .team { padding: 72px 0; }
      .team__header { padding: 0 24px 40px; flex-direction: column; align-items: flex-start; gap: 16px; }
      .team-card { width: 220px; aspect-ratio: 3/4.3; }
      /* Touch devices can't hover, so show bio by default with a safe line-clamp
         instead of relying on :hover (which was clipping text on phones/tablets) */
      .team-card__bio {
        max-height: none;
        color: rgba(240,235,228,0.75);
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }

      /* Products */
      .products { grid-template-columns: 1fr; }
      .products__visual { min-height: 60vw; }
      .products__content { padding: 52px 24px; }

      /* Reviews */
      .reviews { padding: 72px 0; }
      .reviews__header { padding: 0 24px; margin-bottom: 40px; }
      .reviews__num { font-size: 4rem; }
      .reviews__grid { grid-template-columns: 1fr; }

      /* Instagram */
      .insta__header { padding: 48px 24px 24px; flex-direction: column; align-items: flex-start; gap: 8px; }
      .insta__grid { grid-template-columns: repeat(3, 1fr); }

      /* FAQ */
      .faq { padding: 72px 0; }
      .faq__inner { padding: 0 24px; }

      /* Find Us */
      .findus { grid-template-columns: 1fr; }
      .findus__map { min-height: 56vw; order: -1; }
      .findus__info { padding: 52px 24px; }

      /* Booking */
      .booking { padding: 72px 24px; }

      /* Footer */
      .footer { padding: 56px 0 28px; }
      .footer__inner { padding: 0 24px; }
      .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 40px; }
    }

    /* Mobile (max 600px) */
    @media(max-width:600px) {
      /* Nav */
      .nav { padding: 0 16px; height: 56px; }

      /* Hero */
      .hero { min-height: 100svh; }
      .hero__content { padding: 0 16px 40px; }
      .hero__title { font-size: clamp(2.4rem, 11vw, 3.5rem); line-height: 0.95; }
      .hero__eyebrow { font-size: 0.55rem; margin-bottom: 16px; }
      .hero__sub { font-size: 0.9rem; margin-bottom: 28px; }
      .hero__actions { gap: 12px; }
      .btn-primary, .btn-ghost { padding: 14px 28px; font-size: 0.68rem; }
      .hero__right { flex-direction: column; align-items: flex-start; gap: 4px; }
      .hero__rating { font-size: 2.2rem; }
      .hero__bg-text { font-size: 32vw; letter-spacing: -0.04em; }
      .hero__scroll { display: none; }

      /* About */
      .about__visual { min-height: 70vw; }
      .about__content { padding: 40px 16px; }
      .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
      .about__founders { flex-direction: column; gap: 16px; }
      .founder + .founder { border-left: none; padding-left: 0; border-top: 1px solid var(--stone); padding-top: 16px; }

      /* Manifesto */
      .manifesto { padding: 48px 0; }
      .manifesto__inner { padding: 0 16px; }
      .manifesto__line { font-size: 1.15rem; padding: 20px 0; flex-direction: column; gap: 6px; }
      .manifesto__num { font-size: 0.58rem; }
      .manifesto__cta { margin-top: 40px; }

      /* Services */
      .services { padding: 56px 0 0; }
      .services__header { padding: 0 16px 32px; }
      .services__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
      }
      .svc--1,.svc--2,.svc--3 { grid-column: 1; grid-row: auto; min-height: 260px; }
      .svc--4 { grid-column: 1; grid-row: auto; min-height: 180px; }
      .svc__title { font-size: 1.3rem; }
      .svc--1 .svc__title { font-size: 1.5rem; }
      .svc__copy { max-height: 80px; }

      /* Telephone */
      .telephone { height: auto; min-height: 200px; padding: 0; }
      .telephone__content { padding: 0 16px 28px; }
      .telephone__headline { font-size: clamp(1.4rem, 7vw, 2rem); }
      .telephone__aside a { font-size: 1.2rem; }

      /* Credentials */
      .creds { padding: 56px 0; }
      .creds__header { padding: 0 16px 32px; }
      .creds__rows { padding: 0 16px; }
      .cred { padding: 24px 0; gap: 12px; }
      .cred__title { font-size: 1rem; }
      .cred__value { font-size: 1.1rem; }

      /* Team */
      .team { padding: 56px 0; }
      .team__header { padding: 0 16px 32px; }
      .team-card { width: 200px; }
      .team-card__name { font-size: 1.1rem; }
      .team-card__bio { font-size: 0.72rem; }

      /* Products */
      .products__visual { min-height: 75vw; }
      .products__content { padding: 40px 16px; }
      .pills { gap: 6px; }
      .pill { font-size: 0.58rem; padding: 5px 10px; }

      /* Reviews */
      .reviews { padding: 56px 0; }
      .reviews__header { padding: 0 16px; margin-bottom: 32px; }
      .reviews__num { font-size: 3.5rem; }
      .reviews__grid { gap: 2px; }
      .review { padding: 28px 20px; }
      .review__text { font-size: 0.85rem; }
      .reviews__actions { flex-direction: column; align-items: center; }
      .btn-ink, .btn-ink-outline { width: 100%; text-align: center; }

      /* Instagram */
      .insta__header { padding: 40px 16px 20px; }
      .insta__handle { font-size: 1.2rem; }
      .insta__grid { grid-template-columns: repeat(3, 1fr); }

      /* FAQ */
      .faq { padding: 56px 0; }
      .faq__inner { padding: 0 16px; }
      .faq__item summary { font-size: 0.9rem; padding: 18px 0; }

      /* Find Us */
      .findus__map { min-height: 60vw; }
      .findus__info { padding: 40px 16px; }
      .findus__row { gap: 12px; }

      /* Booking */
      .booking { padding: 56px 16px; }
      .booking__btns { flex-direction: column; align-items: center; }
      .btn-white, .btn-white-outline { width: 100%; text-align: center; padding: 16px 24px; }

      /* Footer */
      .footer__grid { grid-template-columns: 1fr; gap: 28px; }
      .footer__bottom { flex-direction: column; text-align: center; gap: 8px; }

      /* Container */
      .container { padding: 0 16px; }
    }

    /* Small mobile (max 380px) */
    @media(max-width:380px) {
      .hero__title { font-size: 2.2rem; }
      .nav__wordmark { font-size: 0.85rem; }
      .team-card { width: 180px; }
      .manifesto__line { font-size: 1rem; }
    }

/* ── INNER-PAGE ADDITIONS (added for the multi-page build, same system) ── */
.page-hero { height: 56vh; min-height: 380px; }
.page-hero .hero__content { padding-bottom: 56px; }
.page-hero .hero__title { font-size: clamp(2.6rem, 6vw, 5.5rem); }

/* Full-height hero variant — matches the home page hero exactly (Hair, Team) */
.page-hero--full { height: 100vh; min-height: 640px; }
.page-hero--full .hero__content { padding-bottom: 72px; }
@media(max-width:900px){ .page-hero--full .hero__content { padding-bottom: 64px; } }
@media(max-width:600px){ .page-hero--full .hero__content { padding-bottom: 40px; } }

.breadcrumb { position: relative; z-index: 2; padding: 96px 48px 0; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(240,235,228,0.55); }
.breadcrumb a { color: rgba(240,235,228,0.75); }
.breadcrumb a:hover { color: var(--terra2); }
.breadcrumb span.sep { padding: 0 8px; opacity: 0.4; }
@media(max-width:768px){ .breadcrumb { padding: 84px 20px 0; } }

.prose { background: var(--ink); padding: 90px 0; }
.prose__inner { max-width: 760px; margin: 0 auto; padding: 0 48px; }
.prose .label { display:block; }
.prose .section-title { margin-bottom: 24px; }
.prose .body-copy { font-size: 1rem; }
@media(max-width:768px){ .prose { padding: 64px 0; } .prose__inner { padding: 0 20px; } }

.prose--paper { background: var(--paper); }
.prose--paper .section-title { color: var(--ink); }
.prose--paper .body-copy { color: rgba(13,13,13,0.75); }
.prose--paper .body-copy strong { color: var(--ink); }

.mascot-block { display: flex; gap: 36px; align-items: flex-start; margin-top: 4px; }
.mascot-block__img { width: 100%; max-width: 340px; flex-shrink: 0; border-radius: 8px; object-fit: cover; }
.mascot-block__text { flex: 1; min-width: 0; }
.mascot-block__text .body-copy:first-child { margin-top: 0; }
@media(max-width:700px) {
  .mascot-block { flex-direction: column; gap: 20px; }
  .mascot-block__img { max-width: 100%; }
}

.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 60vh; }
.split__visual { position: relative; overflow: hidden; background: #1a1a1a; min-height: 380px; }
.split__visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: brightness(0.78) saturate(0.9); }
.split__content { background: var(--ink); padding: 72px 64px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid var(--stone); }
@media(max-width:900px){ .split { grid-template-columns: 1fr; } .split__visual { min-height: 50vw; } .split__content { padding: 56px 24px; } }

.fact-list { padding: 0 48px; max-width: 900px; margin: 0 auto; }
.fact-list__inner { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; background: var(--stone); }
.fact-item { background: var(--ink); padding: 28px 32px; }
.fact-item__label { font-size: 0.58rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terra); margin-bottom: 8px; }
.fact-item__value { font-size: 0.95rem; color: rgba(240,235,228,0.85); line-height: 1.6; }
.fact-item__value a { color: var(--terra2); text-decoration: underline; text-underline-offset: 2px; }
.fact-item__value a:hover { color: var(--terra); }
@media(max-width:700px){ .fact-list { padding: 0 20px; } .fact-list__inner { grid-template-columns: 1fr; } }

/* ── PRICE LIST ──────────────────────────────────── */
.price-legend { max-width: 900px; margin: 0 auto 8px; padding: 0 48px; display: flex; flex-wrap: wrap; gap: 8px 28px; }
.price-legend span { font-size: 0.74rem; color: rgba(240,235,228,0.5); }
.price-legend strong { color: rgba(240,235,228,0.8); }

.price-section { padding: 56px 48px; max-width: 900px; margin: 0 auto; border-top: 1px solid var(--stone); }
.price-section:first-of-type { border-top: none; }
.price-section__title { font-family: var(--h); font-size: 1.3rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.02em; color: var(--paper); margin-bottom: 4px; }
.price-section__note { font-size: 0.8rem; color: rgba(240,235,228,0.5); margin-bottom: 24px; }

.price-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.price-table { width: 100%; border-collapse: collapse; min-width: 480px; }
.price-table th, .price-table td { padding: 13px 10px; border-bottom: 1px solid var(--stone); }
.price-table thead th { font-size: 0.6rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(240,235,228,0.45); text-align: right; white-space: nowrap; }
.price-table thead th:first-child { text-align: left; }
.price-table td { font-size: 0.88rem; color: rgba(240,235,228,0.85); text-align: right; white-space: nowrap; }
.price-table td:first-child, .price-table th.service-col { text-align: left; white-space: normal; }
.price-table td.service-name { font-weight: 600; color: var(--paper); }
.price-table td.service-name a { color: var(--paper); }
.price-table td.service-name a:hover { color: var(--terra2); }
.price-table tbody tr:hover { background: rgba(240,235,228,0.03); }
@media(max-width:700px) {
  .price-legend, .price-section { padding-left: 20px; padding-right: 20px; }
  .price-section { padding-top: 40px; padding-bottom: 40px; }
  .price-table th, .price-table td { padding: 11px 8px; font-size: 0.8rem; }
}

.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--stone); max-width: 1200px; margin: 0 auto; }
.info-card { background: var(--ink); padding: 32px; }
.info-card__title { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terra); margin-bottom: 18px; }
.info-card ul { list-style: none; }
.info-card li { font-size: 0.82rem; line-height: 1.55; color: rgba(240,235,228,0.75); margin-bottom: 14px; }
.info-card li:last-child { margin-bottom: 0; }
.info-card li strong { color: var(--paper); }
@media(max-width:900px){ .info-cards { grid-template-columns: 1fr; } }

.person-hero { display: grid; grid-template-columns: 340px 1fr; gap: 56px; padding: 90px 48px; max-width: 1200px; margin: 0 auto; align-items: center; }
.person-hero__photo { aspect-ratio: 3/4; overflow: hidden; background: #1a1a1a; }
.person-hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.person-hero__initial { width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-family: var(--h); font-size: 5rem; font-weight: 900; color: var(--terra); background: #1a1a1a; }
@media(max-width:820px){ .person-hero { grid-template-columns: 1fr; padding: 56px 20px; gap: 28px; } .person-hero__photo { max-width: 280px; margin: 0 auto; } }

.tag-row { display:flex; flex-wrap:wrap; gap:8px; margin: 20px 0; }

.badge-note { display:inline-block; font-size:0.68rem; font-weight:700; letter-spacing:0.06em; color: rgba(240,235,228,0.45); border:1px dashed var(--stone); padding:10px 16px; margin-top: 12px; }


/* RELEASE-SAFE RESPONSIVE OVERRIDES */
html, body { max-width: 100%; overflow-x: clip; }
[data-visual-role="hero"] { height: calc(100svh - 44px); min-height: 0; }
.page-hero:not(.page-hero--full) { height: auto; min-height: clamp(560px, 72svh, 680px); }
.hero__content, .hero__left, .hero__right { min-width: 0; max-width: 100%; }
.hero__content { width: 100%; }
.hero__eyebrow { max-width: 100%; white-space: normal; }
.hero__bg-text { left: 0; width: 100%; max-width: 100%; overflow: hidden; text-align: center; }
.ticker { contain: inline-size; }
#back-to-top { position: fixed; right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom)); width: 44px; height: 44px; border: 1px solid rgba(240,235,228,0.35); border-radius: 50%; background: var(--terra); color: var(--paper); font: 800 1.15rem/1 var(--b); display: grid; place-items: center; opacity: 0; visibility: hidden; pointer-events: none; z-index: 180; transition: opacity 0.2s, visibility 0.2s, background 0.2s; }
#back-to-top.is-visible { opacity: 1; visibility: visible; pointer-events: auto; }
#back-to-top:hover { background: var(--terra2); }
@media(max-width:600px) {
  [data-visual-role="hero"] { height: calc(100svh - 40px); }
  [data-visual-role="hero"] .hero__content { padding: 0 16px 24px; gap: 12px; }
  [data-visual-role="hero"] .hero__title { margin-bottom: 18px; }
  [data-visual-role="hero"] .hero__eyebrow { margin-bottom: 12px; line-height: 1.4; }
  [data-visual-role="hero"] .hero__right { flex-direction: row; align-items: center; gap: 10px; }
  [data-visual-role="hero"] .hero__rating-label { line-height: 1.35; }
}

@media(max-width:380px) and (max-height:650px) {
  [data-visual-role="hero"] .hero__content { padding: 0 14px 16px; gap: 8px; }
  [data-visual-role="hero"] .hero__eyebrow { font-size: 0.48rem; margin-bottom: 8px; letter-spacing: 0.16em; }
  [data-visual-role="hero"] .hero__title { font-size: 1.85rem; margin-bottom: 14px; line-height: 0.94; }
  [data-visual-role="hero"] .hero__title .line2 { font-size: 0.58em; }
  [data-visual-role="hero"] .hero__actions { flex-wrap: nowrap; gap: 8px; }
  [data-visual-role="hero"] .btn-primary, [data-visual-role="hero"] .btn-ghost { padding: 10px 12px; font-size: 0.56rem; letter-spacing: 0.1em; }
  [data-visual-role="hero"] .hero__rating { font-size: 1.55rem; }
  [data-visual-role="hero"] .hero__rating-stars { font-size: 0.66rem; }
  [data-visual-role="hero"] .hero__rating-label { max-width: 150px; font-size: 0.46rem; letter-spacing: 0.11em; }
}