/* Geist — self-hosted, latin subsets only */
@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/geist-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/geist-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --cream: #f4f2eb;
  --surface: #fbfaf6;
  --ink: #20241f;
  --muted: #6c726a;
  --sage: #91a08a;
  --sage-soft: #e3e8df;
  --line: rgba(32, 36, 31, 0.12);
  --shadow: 0 18px 60px rgba(44, 50, 42, 0.07);
  --sans: "Geist", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

img,
svg {
  display: block;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% -8%, rgba(145, 160, 138, 0.16), transparent 31rem),
    var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 4px;
}

::selection {
  background: var(--sage-soft);
}

.page-shell {
  width: min(100% - 40px, 1040px);
  margin-inline: auto;
}

/* Sticky bar — hidden until the hero name scrolls out of view. */
.masthead {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  min-height: 58px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  background: rgba(244, 242, 235, 0.82);
  opacity: 0;
  transform: translateY(-100%);
  transition: transform 260ms ease, opacity 200ms ease, border-color 260ms ease;
}

@supports (backdrop-filter: blur(1px)) {
  .masthead {
    background: rgba(244, 242, 235, 0.66);
    backdrop-filter: saturate(1.4) blur(12px);
  }
}

.masthead.is-visible {
  border-bottom-color: var(--line);
  opacity: 1;
  transform: translateY(0);
}

.masthead .page-shell {
  display: flex;
  justify-content: center;
}

.wordmark {
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.28em;
  transition: background 160ms ease;
}

.wordmark:hover {
  background: rgba(255, 255, 255, 0.6);
}

.footer div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.linktree {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(52px, 8vw, 92px);
  padding-bottom: clamp(72px, 9vw, 112px);
  text-align: center;
}

.portrait {
  width: 160px;
  aspect-ratio: 1;
  margin: 0 0 24px;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  background: var(--sage-soft);
  box-shadow: 0 12px 32px rgba(44, 50, 42, 0.13);
  animation: enter 500ms ease both;
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  filter: saturate(0.75) contrast(1.02);
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.linktree h1 {
  margin: 13px 0 0;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 610;
  letter-spacing: 0.02em;
  line-height: 0.94;
}

.instagram-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 21px auto 24px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(251, 250, 246, 0.72);
  color: var(--ink);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.instagram-icon:hover {
  border-color: rgba(32, 36, 31, 0.3);
  background: var(--surface);
  transform: translateY(-2px);
}

.link-list {
  width: min(100%, 630px);
  display: grid;
  gap: 11px;
  text-align: left;
}

.link-list>a {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 17px 14px 18px;
  border: 1px solid rgba(24, 32, 25, 0.11);
  border-radius: 16px;
  background: rgba(251, 250, 246, 0.82);
  box-shadow: 0 6px 22px rgba(43, 55, 42, 0.045);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.link-list>a:hover {
  border-color: rgba(32, 36, 31, 0.3);
  box-shadow: 0 10px 28px rgba(43, 55, 42, 0.1);
  transform: translateY(-2px);
}

.link-list span {
  flex: 1;
  display: grid;
  gap: 4px;
}

.link-list strong {
  font-size: 0.96rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.link-list small {
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.4;
}

.link-list>a:first-child:not(.primary) small {
  color: rgba(16, 23, 15, 0.67);
}

/* Primary CTA — stays light and monochrome. It leads on the only filled icon
   on the page, plus a little extra weight and lift, rather than a dark block. */
.link-list>a.primary {
  min-height: 80px;
  border-color: rgba(32, 36, 31, 0.24);
  background: #fffefb;
  box-shadow: 0 10px 30px rgba(43, 55, 42, 0.11);
}

.link-list>a.primary:hover {
  border-color: rgba(32, 36, 31, 0.42);
  box-shadow: 0 14px 34px rgba(43, 55, 42, 0.16);
}

.link-list>a.primary strong {
  font-size: 1.02rem;
  font-weight: 700;
}

.link-list>a.primary small {
  color: rgba(16, 23, 15, 0.62);
}

.link-list>a.primary b {
  width: 40px;
  height: 40px;
  background: var(--ink);
  color: var(--surface);
}

.link-list>a.primary:hover b {
  background: #283129;
}

.link-list b {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--ink);
  transition: background 160ms ease;
}

.link-list>a:hover b {
  background: #d4dccf;
}

.about {
  scroll-margin-top: 74px;
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 8px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 2.05rem);
  font-weight: 590;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(42px, 7vw, 76px);
  padding-top: 34px;
}

.column-label {
  margin: 0;
  padding-bottom: 12px;
  /* border-bottom: 1px solid var(--line); */
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.credit {
  padding: 13px 0 14px;
  border-bottom: 1px solid var(--line);
}

.credit h3,
.credit p {
  margin: 0;
}

.credit h3 {
  font-size: 0.89rem;
  font-weight: 650;
  line-height: 1.4;
}

.credit p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.5;
}

.bio-copy {
  padding-top: 16px;
}

.bio-copy p {
  margin: 0 0 1.2em;
  color: #343d35;
  font-size: clamp(0.92rem, 1.25vw, 1.04rem);
  letter-spacing: -0.015em;
  line-height: 1.6;
}

/* Expandable About — bio and credits collapse together behind one toggle. */
.about-body {
  position: relative;
  max-height: 4000px;
  overflow: hidden;
  transition: max-height 420ms ease;
}

/* 348px with a 100px fade leaves both columns clear to ~248px — the bio
   through the Fitzmaurice line, and the first two credits. */
.about-body.is-collapsed {
  max-height: 348px;
}

.about-fade {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100px;
  background: linear-gradient(to bottom,
      rgba(251, 250, 246, 0) 0%,
      rgba(251, 250, 246, 0.72) 46%,
      var(--surface) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.about-body.is-collapsed .about-fade {
  opacity: 1;
}

.bio-copy p:last-child {
  margin-bottom: 0;
}

/* Per-column collapse. Inert above the mobile breakpoint, where the single
   whole-section toggle takes over instead. */
.col-body {
  position: relative;
}

.col-fade {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 80px;
  background: linear-gradient(to bottom,
      rgba(251, 250, 246, 0) 0%,
      rgba(251, 250, 246, 0.72) 46%,
      var(--surface) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

/* Two classes, so this beats .expand-toggle's own display regardless of
   source order. */
.expand-toggle.col-toggle {
  display: none;
}

.expand-toggle {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 22px auto 0;
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(244, 242, 235, 0.5);
  color: var(--muted);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 660;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.expand-toggle:hover {
  border-color: rgba(32, 36, 31, 0.3);
  background: var(--sage-soft);
  color: var(--ink);
}

.expand-toggle:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 3px;
}

.expand-toggle .chevron {
  transition: transform 200ms ease;
}

.expand-toggle[aria-expanded="false"] .label-less,
.expand-toggle[aria-expanded="true"] .label-more {
  display: none;
}

.expand-toggle[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

/* Social proof */
.proof {
  margin-top: clamp(34px, 5vw, 52px);
}

/* Constrained and divided, so three tiles read as a deliberate trio
   rather than a four-column row with a gap in it. */
.stats {
  width: min(100%, 560px);
  margin: clamp(36px, 5vw, 52px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  text-align: center;
}

.stats>div+div {
  border-left: 1px solid var(--line);
}

.stats dt {
  font-size: clamp(1.35rem, 3vw, 1.95rem);
  font-weight: 620;
  letter-spacing: -0.035em;
  line-height: 1;
}

.stats dd {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 640;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
}

.stats-source {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-align: center;
  opacity: 0.8;
}

.logo-bar {
  padding-bottom: clamp(32px, 4.5vw, 46px);
  border-bottom: 1px solid var(--line);
}

.logo-bar .column-label {
  text-align: center;
}

/* Flex rather than a fixed column count, so adding or removing a logo
   re-centres the row on its own. */
.logo-bar ul {
  width: 100%;
  margin: 0 auto;
  padding: 30px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px clamp(24px, 3vw, 44px);
  list-style: none;
}

.logo-bar img {
  width: auto;
  max-width: 100%;
  height: clamp(30px, 3.6vw, 42px);
  object-fit: contain;
  /* Neutralise brand colour so the row reads as one set. */
  filter: grayscale(1);
  opacity: 0.62;
  transition: opacity 200ms ease;
}

/* Opt-in: white artwork drawn for a dark page, flipped for the cream one.
   Already-dark logos (e.g. ITVX) must not carry this class. */
.logo-bar img.light-artwork {
  filter: invert(1) grayscale(1);
}

/* ITVX artwork carries far more ink than the rest — scale it back so it
   doesn't dominate the row at a matched height. */
.logo-bar img[alt="ITVX"] {
  height: clamp(20px, 2.4vw, 28px);
}

.logo-bar:hover img {
  opacity: 0.85;
}

.contact {
  margin-top: clamp(36px, 6vw, 64px);
  display: flex;
  /* Align to the heading, not the eyebrow+heading block, so the button
     doesn't ride high against the large type. */
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(30px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact h2 {
  margin: 9px 0 0;
  font-size: clamp(2rem, 5vw, 3.7rem);
  font-weight: 570;
  letter-spacing: -0.055em;
  line-height: 1;
}

.contact>a {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 16px 28px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--surface);
  font-size: 0.82rem;
  font-weight: 650;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease;
}

.contact>a span {
  font-size: 0.9em;
  line-height: 1;
}

.contact>a:hover {
  background: #283129;
  transform: translateY(-2px);
}

/* Booking page — the embed brings its own card, so it gets no box of its own,
   just a centred column. The masthead is fixed and always shown here, so the
   content is offset by its height. */
.page-booking main {
  padding-top: 58px;
}

.booking {
  width: min(100% - 40px, 760px);
  margin-inline: auto;
  padding: clamp(18px, 3vw, 34px) 0 clamp(28px, 4vw, 48px);
}

.booking iframe {
  display: block;
  width: 100%;
  /* Floor only — form_embed.js sets the real height once it loads. */
  min-height: 660px;
  border: 0;
  overflow: hidden;
}

.footer {
  min-height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--muted);
  font-size: 0.68rem;
}

.footer p {
  margin: 0;
}

.footer a {
  padding: 7px 9px;
  border-radius: 8px;
}

.footer a:hover {
  background: var(--sage-soft);
  color: var(--ink);
}

@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 680px) {
  .page-shell {
    width: min(100% - 28px, 1040px);
  }

  .masthead {
    min-height: 50px;
  }

  .wordmark {
    font-size: 0.68rem;
    letter-spacing: 0.24em;
  }

  .linktree {
    padding-top: 34px;
    padding-bottom: 56px;
  }

  .page-booking main {
    padding-top: 50px;
  }

  .booking {
    width: min(100% - 28px, 760px);
  }

  .portrait {
    width: 100x;
    margin-bottom: 16px;
    border-width: 4px;
  }

  .eyebrow {
    font-size: 0.6rem;
  }

  .linktree h1 {
    margin-top: 9px;
    font-size: clamp(2.15rem, 10.5vw, 3rem);
    letter-spacing: 0.09em;
  }

  .instagram-icon {
    width: 38px;
    height: 38px;
    margin: 15px auto 18px;
  }

  .link-list {
    gap: 8px;
  }

  .link-list>a {
    min-height: 60px;
    padding: 10px 11px 10px 15px;
    border-radius: 14px;
  }

  .link-list strong {
    font-size: 0.9rem;
  }

  .link-list small {
    font-size: 0.65rem;
  }

  .link-list b {
    width: 33px;
    height: 33px;
  }

  .about {
    scroll-margin-top: 62px;
    padding: 28px 20px;
    border-radius: 22px;
  }

  .section-heading {
    padding-bottom: 4px;
  }

  .section-heading h2 {
    font-size: 1.6rem;
  }

  .profile-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 26px;
  }

  /* Mobile: the two columns collapse independently, so the whole-section
     toggle and its fade step aside. */
  #expand-toggle,
  .about-body>.about-fade {
    display: none;
  }

  .about-body,
  .about-body.is-collapsed {
    max-height: none;
    overflow: visible;
  }

  .expand-toggle.col-toggle {
    display: flex;
    margin-top: 16px;
  }

  .col-body {
    max-height: 4000px;
    overflow: hidden;
    transition: max-height 420ms ease;
  }

  /* 264px with an 80px fade leaves the text clear to ~184px — the intro plus
     the "Grammy-winning" line, then it starts dissolving. */
  .col-body.is-collapsed {
    max-height: 264px;
  }

  .col-body.is-collapsed .col-fade {
    opacity: 1;
  }

  .stats dd {
    font-size: 0.56rem;
    letter-spacing: 0.07em;
  }

  .logo-bar ul {
    gap: 26px 26px;
  }

  /* clamp() bottoms out at 20px here, which left ITVX visibly undersized
     next to Netflix on the wrapped row — hold the desktop ratio instead. */
  .logo-bar img[alt="ITVX"] {
    height: 22px;
  }

  .logo-bar img {
    height: 30px;
  }

  .bio-copy p {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .contact {
    margin-top: 28px;
    display: block;
    padding: 28px 22px;
    border-radius: 22px;
  }

  .contact h2 {
    font-size: 2.15rem;
  }

  .contact>a {
    width: 100%;
    margin-top: 24px;
  }

  .footer {
    min-height: 82px;
    gap: 18px;
    font-size: 0.62rem;
  }

  .footer p {
    max-width: 205px;
    line-height: 1.45;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}