/* ==========================================================================
   That Content Agency, visual system
   Colours sampled from the client's proposal documents. Do not re-tint.
   ========================================================================== */

:root {
  --ink:       #0B0B0C;
  --ink-2:     #17181A;
  --ink-3:     #2B2C2E;
  --lime:      #C4D82E;
  --lime-dark: #6F791E;
  --paper:     #FAFAF7;
  --grey:      #A9ABAD;
  --grey-2:    #797A7A;
  --line:      #E2E2E0;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --sec: 120px;          /* section padding, desktop */
  --maxw: 1180px;
  --nav-h: 64px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Anchor targets clear the floating nav. */
  scroll-padding-top: calc(var(--nav-h) + 28px);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--grey);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  color: var(--paper);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }

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

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------- layout primitives ---------- */

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

section { padding-block: var(--sec); }

.section-light {
  background: var(--paper);
  color: var(--grey-2);
}
.section-light h1,
.section-light h2,
.section-light h3 { color: var(--ink); }

.eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}
.section-light .eyebrow { color: var(--lime-dark); }

.h-sec { font-size: clamp(30px, 4.6vw, 48px); }

.lede {
  margin-top: 20px;
  font-size: clamp(16px, 1.7vw, 18px);
  max-width: 58ch;
}

.section-head { margin-bottom: 56px; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease),
              color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn .arw { transition: transform 0.25s var(--ease); }
.btn:hover .arw { transform: translateX(3px); }

.btn-primary {
  background: var(--paper);
  color: var(--ink);
}
.btn-primary:hover { background: var(--lime); }

.btn-secondary {
  background: transparent;
  color: var(--paper);
  border-color: var(--ink-3);
}
.btn-secondary:hover { border-color: var(--lime); color: var(--lime); }

.section-light .btn-secondary { color: var(--ink); border-color: var(--line); }
.section-light .btn-secondary:hover { border-color: var(--lime-dark); color: var(--lime-dark); }
.section-light .btn-primary { background: var(--ink); color: var(--paper); }
.section-light .btn-primary:hover { background: var(--lime-dark); color: var(--paper); }

.btn-sm { padding: 9px 18px; font-size: 14px; }

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

.txt-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lime);
  font-weight: 600;
  font-size: 15px;
}
.txt-link:hover { color: var(--paper); }
.txt-link:hover .arw { transform: translateX(3px); }
.txt-link .arw { transition: transform 0.25s var(--ease); }

/* ---------- floating pill nav ---------- */

.nav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 28px);
  max-width: var(--maxw);
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease),
              backdrop-filter 0.4s var(--ease);
}

.nav.stuck {
  background: rgba(23, 24, 26, 0.8);
  border-color: var(--ink-3);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 10px 0 22px;
}

.wordmark {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--paper);
  text-transform: lowercase;
  white-space: nowrap;
}
.wordmark em { font-style: normal; color: var(--lime); }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 500;
  color: var(--grey);
}
.nav-links a { transition: color 0.2s var(--ease); }
.nav-links a:hover { color: var(--paper); }

.nav-cta { margin-left: 4px; }

/* Mobile: wordmark + CTA only. */
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; }
  .nav-inner { padding-left: 18px; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 92px);
  padding-bottom: var(--sec);
  overflow: hidden;
}

/* Faint grid, fading out toward the bottom. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.55) 55%, transparent 92%);
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.55) 55%, transparent 92%);
  pointer-events: none;
}

.hero .wrap { position: relative; z-index: 1; }

.hero h1 {
  font-size: clamp(40px, 7vw, 76px);
  max-width: 15ch;
}
.hero h1 em { font-style: normal; color: var(--lime); }

.hero .lede { max-width: 62ch; }

/* ---------- cards ---------- */

.card {
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.card:hover { border-color: var(--lime-dark); }

.card .ico {
  color: var(--lime);
  margin-bottom: 18px;
}
.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.card p { font-size: 15px; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ---------- the work ---------- */

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.work-item {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--ink-3);
  border-radius: 16px;
  background: var(--ink-2);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: border-color 0.3s var(--ease);
}
.work-item:hover { border-color: var(--lime); }

.work-thumb {
  position: relative;
  aspect-ratio: 9 / 16;
  background: var(--ink);
  overflow: hidden;
}
.work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-play {
  position: absolute;
  inset: 0;
  display: grid;
  /* Bottom-left, not centred: the poster frames are chosen to show the clip's
     own hook text, and a centred button sits straight on top of it. */
  place-items: end start;
  padding: 14px;
  background: linear-gradient(to top, rgba(11, 11, 12, 0.62), transparent 45%);
  transition: background-color 0.3s var(--ease);
}
.work-play span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(11, 11, 12, 0.62);
  border: 1px solid rgba(250, 250, 247, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--paper);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease),
              border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.work-item:hover .work-play span {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
  transform: scale(1.07);
}

.work-cap {
  padding: 16px 18px 18px;
  font-size: 14px;
  color: var(--grey);
}

/* Placeholder tile, used only while real assets are outstanding.
   Deliberately neutral: no stock imagery, no invented client names. */
.work-thumb.is-slot {
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(135deg, transparent 0 12px, rgba(196, 216, 46, 0.045) 12px 24px),
    var(--ink-2);
  border-bottom: 1px solid var(--ink-3);
}
.work-thumb.is-slot b {
  font-size: 30px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: -0.02em;
}

/* ---------- video modal ---------- */

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(11, 11, 12, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.modal[hidden] { display: none; }

.modal-inner {
  position: relative;
  width: min(420px, 100%);
  max-height: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}
.modal-inner video,
.modal-inner iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(11, 11, 12, 0.7);
  border: 1px solid var(--ink-3);
  color: var(--paper);
  cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.modal-close:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }

/* ---------- what we do ---------- */

.pillar {
  border-top: 1px solid var(--ink-3);
  padding-top: 26px;
}
.pillar .num {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--lime);
  display: block;
  margin-bottom: 14px;
}
.pillar h3 { font-size: 22px; margin-bottom: 10px; }
.pillar > p { font-size: 15px; }

.svc-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  font-size: 15px;
}
.svc-list li {
  padding: 9px 0;
  border-bottom: 1px solid var(--ink-3);
  color: var(--grey);
}
.svc-list li:first-child { border-top: 1px solid var(--ink-3); }

.pillar .txt-link { margin-top: 22px; }

/* ---------- featured band ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 72px;
  align-items: start;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.stat {
  flex: 1 1 130px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  background: #fff;
}
.stat b {
  display: block;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--lime-dark);
  line-height: 1.15;
}
.stat span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-2);
}

/* ---------- who we work with ---------- */

.rows { border-top: 1px solid var(--ink-3); }
.row {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 32px;
  padding: 30px 0;
  border-bottom: 1px solid var(--ink-3);
  align-items: baseline;
}
.row h3 { font-size: 19px; }
.row p { font-size: 15px; }

/* ---------- about ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-grid.no-photo { grid-template-columns: 1fr; max-width: 760px; }

.about-photo {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--ink-3);
  aspect-ratio: 4 / 5;
  background: var(--ink-2);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

.about-copy p + p { margin-top: 20px; }
.about-copy p { font-size: clamp(16px, 1.7vw, 17px); }

/* ---------- final CTA ---------- */

.cta {
  text-align: center;
  border-top: 1px solid var(--ink-3);
}
.cta .wrap { max-width: 720px; }
.cta .eyebrow { margin-inline: auto; }
.cta h2 { font-size: clamp(32px, 5vw, 52px); }
.cta .lede { margin-inline: auto; }
.cta .btn-row { justify-content: center; }

.cta-contact {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: center;
  font-size: 15px;
}
.cta-contact a { color: var(--grey); transition: color 0.2s var(--ease); }
.cta-contact a:hover { color: var(--lime); }
.cta-contact .sep { color: var(--ink-3); }

/* ---------- footer ---------- */

.footer {
  border-top: 1px solid var(--ink-3);
  padding-block: 64px 40px;
  background: var(--ink);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.footer p { font-size: 14px; max-width: 34ch; margin-top: 14px; }
.footer h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-2);
  margin-bottom: 16px;
}
.footer ul { list-style: none; margin: 0; padding: 0; font-size: 14px; }
.footer li { margin-bottom: 10px; }
.footer li a { transition: color 0.2s var(--ease); }
.footer li a:hover { color: var(--lime); }

.footer-base {
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-3);
  font-size: 13px;
  color: var(--grey-2);
}

/* ---------- scroll reveal ----------
   Gated on `.js`, which is set by an inline script in <head>. Without JS the
   rule never applies, so nothing is ever stranded at opacity 0. */

.js .rv {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  transition-delay: var(--d, 0ms);
}
.js .rv.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .rv,
  .js .rv.in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------- responsive ---------- */

@media (max-width: 960px) {
  .feature-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; max-width: 760px; }
  .about-photo { max-width: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  :root { --sec: 72px; }
  .grid-3 { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .row { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .section-head { margin-bottom: 40px; }
  .hero { padding-top: calc(var(--nav-h) + 56px); }
  .btn-row .btn { flex: 1 1 100%; justify-content: center; }
}

@media (max-width: 420px) {
  .work-grid { gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- big number ---------- */

.bignum { text-align: center; }
.bignum b {
  display: block;
  font-size: clamp(56px, 11vw, 120px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--lime);
}
.bignum span {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-2);
}

/* ---------- workshop hero ---------- */

.hero-sub {
  display: block;
  margin-top: 18px;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 500;
  color: var(--grey);
  letter-spacing: -0.01em;
  max-width: 26ch;
}

/* ---------- hero meta strip ---------- */

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 48px;
  margin: 44px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--ink-3);
}
.hero-meta dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-2);
  margin-bottom: 6px;
}
.hero-meta dd {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--paper);
}

.trust-line {
  margin-top: 26px;
  font-size: 14px;
  color: var(--grey-2);
}

/* ---------- two-up ---------- */

.two-up {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ---------- qualify lists ---------- */

.qual ul { list-style: none; margin: 20px 0 0; padding: 0; }
.qual li {
  position: relative;
  padding: 12px 0 12px 32px;
  border-top: 1px solid var(--ink-3);
  font-size: 15px;
}
.qual li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.qual.yes li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C4D82E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
.qual.no li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23797A7A' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6 6 18'/%3E%3C/svg%3E");
}

/* ---------- tables ---------- */

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.tbl {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  font-size: 15px;
  text-align: left;
}
.tbl th {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-2);
  padding: 0 20px 14px 0;
  border-bottom: 1px solid var(--ink-3);
}
.tbl td {
  padding: 16px 20px 16px 0;
  border-bottom: 1px solid var(--ink-3);
  vertical-align: top;
}
.tbl td:first-child {
  color: var(--paper);
  font-weight: 500;
  white-space: nowrap;
}
.tbl td:last-child, .tbl th:last-child { padding-right: 0; }
.tbl .num-col { color: var(--lime); font-weight: 500; white-space: nowrap; }

/* ---------- pricing ---------- */

.price {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.price .tier {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-2);
  margin-bottom: 16px;
}
.price b {
  display: block;
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--lime);
}
.price s {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--grey-2);
}

/* ---------- notes and callouts ---------- */

.note {
  margin-top: 30px;
  font-size: 14px;
  color: var(--grey-2);
  max-width: 76ch;
}
.note strong { color: var(--grey); font-weight: 500; }

.callout {
  margin-top: 32px;
  border: 1px solid var(--lime-dark);
  border-radius: 16px;
  padding: 26px 28px;
  background: rgba(196, 216, 46, 0.04);
}
.callout h3 { font-size: 17px; margin-bottom: 10px; color: var(--lime); }
.callout p { font-size: 15px; }

/* ---------- FAQ accordion ---------- */

.faq { max-width: 840px; }
.faq-item { border-bottom: 1px solid var(--ink-3); }
.faq-item:first-child { border-top: 1px solid var(--ink-3); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 24px 44px 24px 0;
  font-size: clamp(16px, 1.9vw, 18px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--paper);
  transition: color 0.2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--lime); }

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 50%;
  width: 15px;
  height: 15px;
  margin-top: -7px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C4D82E' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-body {
  padding: 0 44px 26px 0;
  font-size: 15px;
  max-width: 68ch;
}

/* ---------- responsive ---------- */

@media (max-width: 720px) {
  .two-up { grid-template-columns: 1fr; }
  .hero-meta { gap: 14px 32px; }
}

/* ---------- media ---------- */

.media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--ink-3);
  background: var(--ink-2);
}
.media img { width: 100%; height: 100%; object-fit: cover; }
.section-light .media { border-color: var(--line); }

.media-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.media-strip .media { aspect-ratio: 3 / 4; }

.media-cap {
  margin-top: 12px;
  font-size: 13px;
  color: var(--grey-2);
}

/* ---------- booking embed ---------- */

.booking {
  max-width: 900px;
  margin: 44px auto 0;
}
.booking-embed {
  display: block;
  width: 100%;
  border: 0;
  overflow: hidden;
  /* Space reserved so the widget's own resize doesn't shift the page.
     Measured against the live GHL calendar; keep in step if it changes. */
  min-height: 810px;
  border-radius: 16px;
  background: var(--ink-2);
}

@media (max-width: 720px) {
  .media-strip { grid-template-columns: 1fr; gap: 14px; }
  /* Close to the 3:4 source, so stacking stays legible without a hard crop. */
  .media-strip .media { aspect-ratio: 4 / 5; }
  /* The widget renders ~791px at phone widths. */
  .booking-embed { min-height: 780px; }
}
