/* ==========================================================================
   Katrina Murphy Entertainment
   Bright theme. The client's teal is the brand; sunshine yellow is the action
   colour (buttons, badges, play). Dark near-black is gone — the deepest tone
   on the site is a rich teal, so everything reads light and warm.
   ========================================================================== */

:root {
  /* brand teal */
  --teal:        #2BB9A6;
  --teal-dark:   #1E9384;
  --teal-deep:   #14685D;   /* teal that's safe for text on light */
  --teal-light:  #7BE0D2;
  --teal-wash:   #E4F7F4;

  /* sunshine */
  --sun:         #FFC93C;
  --sun-hover:   #FFD866;
  --sun-deep:    #B77C00;   /* yellow that's safe for text on light */
  --sun-wash:    #FFF7E0;

  /* deepest tone on the site — a rich teal, not black */
  --deep:        #0F4F47;
  --deep-2:      #0B403A;

  /* paper */
  --cream:       #FFFDF7;
  --paper:       #FFFFFF;
  --line:        #E7E4DC;

  /* type */
  --text:        #16302C;
  --muted:       #5A736E;
  --on-deep:     #EAF7F5;
  --on-deep-mute:#9FCFC7;

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --wrap: 1180px;
  --radius: 6px;
  --shadow-sm: 0 1px 2px rgba(20,60,54,.05), 0 2px 8px rgba(20,60,54,.05);
  --shadow-md: 0 4px 14px rgba(20,60,54,.08), 0 12px 32px rgba(20,60,54,.07);
  --shadow-lg: 0 12px 32px rgba(20,60,54,.10), 0 32px 64px rgba(20,60,54,.10);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a.plain { color: inherit; text-decoration: none; }
a.plain:hover { color: var(--teal-dark); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.14; margin: 0; letter-spacing: -.01em; }
p { margin: 0 0 1.1em; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: 760px; }
.center { text-align: center; }
.muted { color: var(--muted); }

.skip { position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--deep); color: #fff; padding: 12px 20px; font-weight: 600; }
.skip:focus { left: 12px; top: 12px; }

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

/* ---------- type scale ---------- */
.h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
.h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); }
.h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }

.kicker {
  font-family: var(--sans); font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--teal-deep);
  margin: 0 0 .85rem;
}
.lede { font-size: 1.24rem; line-height: 1.62; color: var(--text); }
.prose p { color: #334743; }
.prose .lede { color: var(--text); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans); font-size: .93rem; font-weight: 700; letter-spacing: .01em;
  padding: 14px 26px; border-radius: var(--radius); border: 2px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
/* Yellow is the action colour. Dark ink text on it = strong contrast. */
.btn--solid { background: var(--sun); color: #2A1F00; border-color: var(--sun); box-shadow: var(--shadow-sm); }
.btn--solid:hover { background: var(--sun-hover); border-color: var(--sun-hover); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--teal-deep); border-color: var(--teal); }
.btn--ghost:hover { background: var(--teal-wash); border-color: var(--teal-deep); }
.btn--lg { padding: 17px 34px; font-size: 1rem; }
.btn--sm { padding: 10px 18px; font-size: .85rem; }
.btn--full { width: 100%; }

/* ghost buttons sitting on a photo or a deep-teal band */
.hero .btn--ghost, .ahero .btn--ghost, .cta-band .btn--ghost {
  color: #fff; border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.08);
}
.hero .btn--ghost:hover, .ahero .btn--ghost:hover, .cta-band .btn--ghost:hover {
  background: rgba(255,255,255,.18); border-color: #fff; color: #fff;
}

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,253,247,.9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; gap: 28px; height: 76px; }
.brand { display: flex; flex-direction: column; text-decoration: none; line-height: 1.05; margin-right: auto; }
.brand__name { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--text); }
.brand__sub { font-size: .6rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  color: var(--teal-dark); margin-top: 2px; }
.nav__list { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav__list a { font-size: .92rem; font-weight: 500; color: var(--text); text-decoration: none;
  padding: 6px 0; position: relative; transition: color .2s var(--ease); }
.nav__list a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 0;
  background: var(--sun); border-radius: 2px; transition: width .25s var(--ease); }
.nav__list a:hover { color: var(--teal-deep); }
.nav__list a:hover::after, .nav__list a.is-active::after { width: 100%; }
.nav__list a.is-active { color: var(--teal-deep); font-weight: 600; }
.nav__toggle { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: min(84vh, 720px); display: flex; align-items: flex-end;
  background: var(--deep); overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
/* teal-tinted scrim rather than black — keeps white text legible but reads warm */
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(11,64,58,.94) 0%, rgba(11,64,58,.76) 36%, rgba(11,64,58,.26) 72%, rgba(11,64,58,.4) 100%),
    linear-gradient(to right, rgba(11,64,58,.72) 0%, rgba(11,64,58,.06) 66%);
}
.hero__inner { position: relative; padding-top: 130px; padding-bottom: 76px; max-width: 900px; }
.hero__eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--sun); margin: 0 0 1.1rem; }
.hero__h1 { font-size: clamp(2.5rem, 5.6vw, 4.4rem); color: #fff; margin: 0 0 1.3rem; letter-spacing: -.02em; }
.hero__h1 em { font-style: italic; color: var(--sun); }
.hero__lede { font-size: clamp(1.05rem, 1.7vw, 1.28rem); color: rgba(255,255,255,.92);
  max-width: 620px; margin: 0 0 2.2rem; line-height: 1.65; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__actions--center { justify-content: center; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 44px; list-style: none;
  margin: 3.2rem 0 0; padding: 1.8rem 0 0; border-top: 1px solid rgba(255,255,255,.25); }
.hero__proof li { display: flex; flex-direction: column; }
.hero__proof strong { font-family: var(--serif); font-size: 1.6rem; color: var(--sun); font-weight: 600; }
.hero__proof span { font-size: .82rem; color: rgba(255,255,255,.78); letter-spacing: .04em; }

/* ---------- sections ---------- */
.section { padding: 104px 0; }
.section--tight { padding: 72px 0; }
.section--alt { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
/* was near-black; now a warm sunlit band */
.section--ink { background: var(--sun-wash); border-top: 1px solid #F2E3BC; border-bottom: 1px solid #F2E3BC; }
.section--ink .kicker { color: var(--sun-deep); }

.sechead { max-width: 700px; margin-bottom: 52px; }
.sechead--center { margin-left: auto; margin-right: auto; text-align: center; }
.sechead__p { color: var(--muted); font-size: 1.08rem; margin: 1rem 0 0; }

/* credibility strip — bright teal, not black */
.marquee { padding: 26px 0; background: var(--teal); }
.marquee__lead { margin: 0; text-align: center; color: #06322C;
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }

/* ---------- page head ---------- */
.phead { padding: 88px 0 56px; background: var(--paper); border-bottom: 1px solid var(--line); }
.phead--tall { padding: 140px 0 130px; }
.phead__p { color: var(--muted); font-size: 1.12rem; max-width: 620px; margin: 1.2rem 0 0; }
.phead--tall .phead__p { margin-left: auto; margin-right: auto; }
.phead__sub { color: var(--teal-deep); font-size: 1.05rem; font-weight: 500; margin: 1rem 0 1.4rem; }
.phead__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.portrait { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 6px solid var(--sun); }
.portrait img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.phead .hero__actions { margin-top: 1.8rem; }

.crumbs { font-size: .82rem; color: var(--muted); margin-bottom: 1.2rem; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--teal-deep); }
.crumbs span { margin: 0 .4rem; opacity: .5; }
.crumbs em { font-style: normal; color: var(--text); }

/* ---------- act cards ---------- */
/* Flagship spans the full width; the rest flow evenly so no card is ever
   orphaned alone on a row, however many acts there are. */
.acts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 26px; }
.acts-grid > .acard--flag { grid-column: 1 / -1; }
.acts-grid--3 { grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 24px; }

.acard {
  display: flex; flex-direction: column; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  text-decoration: none; color: inherit;
  transition: border-color .28s var(--ease), box-shadow .28s var(--ease), transform .28s var(--ease);
}
.acard:hover { border-color: var(--sun); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.acard--flag { grid-column: 1 / -1; flex-direction: row; border-color: var(--sun); }
.acard--flag .acard__img { flex: 1 1 56%; }
.acard--flag .acard__body { flex: 1 1 44%; display: flex; flex-direction: column; justify-content: center; padding: 48px; }
.acard--flag .acard__title { font-size: clamp(1.9rem, 2.8vw, 2.5rem); }
.acard--flag .acard__tag { font-size: 1.1rem; }

.acard__img { position: relative; overflow: hidden; background: var(--teal-wash); }
.acard__img img { width: 100%; height: 100%; min-height: 260px; object-fit: cover;
  transition: transform .7s var(--ease); }
.acard:hover .acard__img img { transform: scale(1.04); }
.acard__badge { position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--sun); color: #2A1F00; font-size: .68rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; padding: 7px 13px; border-radius: 3px; }
.acard__body { padding: 28px 28px 30px; }
.acard__title { font-size: 1.6rem; margin: 0 0 .5rem; }
.acard__tag { color: var(--muted); margin: 0 0 1.3rem; line-height: 1.55; }
.acard__cta { display: inline-flex; align-items: center; gap: .45rem; margin-top: auto;
  font-size: .87rem; font-weight: 700; color: var(--teal-deep); }
.acard__cta svg { transition: transform .25s var(--ease); }
.acard:hover .acard__cta svg { transform: translateX(4px); }

/* ---------- act hero ---------- */
.ahero { position: relative; min-height: min(62vh, 560px); display: flex; align-items: flex-end;
  background: var(--deep); overflow: hidden; }
.ahero__media { position: absolute; inset: 0; }
.ahero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.ahero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(11,64,58,.93) 5%, rgba(11,64,58,.68) 42%, rgba(11,64,58,.3) 100%),
    linear-gradient(to right, rgba(11,64,58,.68), rgba(11,64,58,.04) 70%);
}
.ahero__inner { position: relative; padding-top: 120px; padding-bottom: 66px; max-width: 820px; }
.ahero__inner .crumbs, .ahero__inner .crumbs a { color: rgba(255,255,255,.72); }
.ahero__inner .crumbs em { color: #fff; }
.ahero__badge { display: inline-block; background: var(--sun); color: #2A1F00;
  font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 3px; margin: 0 0 1.1rem; }
.ahero__h1 { font-size: clamp(2.2rem, 4.8vw, 3.7rem); color: #fff; margin: 0 0 1rem; letter-spacing: -.02em; }
.ahero__tag { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: rgba(255,255,255,.9); margin: 0 0 2rem; max-width: 600px; }

/* ---------- split layout ---------- */
.split { display: grid; grid-template-columns: 1.55fr .95fr; gap: 64px; align-items: start; }
.split__main p { font-size: 1.05rem; }
.split__aside { position: sticky; top: 104px; display: flex; flex-direction: column; gap: 20px; }

.panel { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
/* the accent panel is now sunshine, not black */
.panel--ink { background: var(--sun-wash); border: 2px solid var(--sun); color: var(--text); }
.panel__h { font-family: var(--sans); font-size: .74rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal-deep); margin: 0 0 1.2rem; }
.panel--ink .panel__h { color: var(--sun-deep); }

.ticks { list-style: none; margin: 0; padding: 0; }
.ticks li { position: relative; padding-left: 26px; margin-bottom: .8rem; font-size: .95rem; line-height: 1.55; }
.ticks li::before { content: ""; position: absolute; left: 0; top: .5em;
  width: 11px; height: 6px; border-left: 2.5px solid var(--teal); border-bottom: 2.5px solid var(--teal);
  transform: rotate(-45deg); }

.pills { list-style: none; margin: 0 0 1.6rem; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.pills li { font-size: .8rem; font-weight: 600; background: #fff; color: var(--teal-deep);
  border: 1px solid var(--teal); padding: 6px 12px; border-radius: 100px; }

.credits { list-style: none; margin: 0; padding: 0; }
.credits li { padding: 12px 0; border-bottom: 1px solid rgba(183,124,0,.22); display: flex; flex-direction: column; }
.credits li:last-child { border-bottom: 0; }
.credits strong { font-family: var(--serif); font-size: 1.08rem; color: var(--text); font-weight: 600; }
.credits span { font-size: .84rem; color: var(--muted); }

/* ---------- formats ---------- */
.fmts { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.fmt { padding: 28px; background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); border-top: 4px solid var(--sun); }
.fmt h3 { font-size: 1.2rem; margin: 0 0 .6rem; }
.fmt p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ---------- bio ---------- */
.bio__sec { margin-bottom: 42px; }
.bio__sec h2 { margin-bottom: .9rem; }

/* ---------- videos ---------- */
.vgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.vgrid--feature { grid-template-columns: repeat(2, 1fr); margin-bottom: 44px; }

.vcard { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); }
.vcard__btn { display: block; position: relative; width: 100%; padding: 0; border: 0; cursor: pointer;
  background: var(--deep); aspect-ratio: 16/9; overflow: hidden; }
.vcard__btn img { width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease), opacity .3s var(--ease); }
.vcard__btn:hover img { transform: scale(1.05); opacity: .88; }
.vcard__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 68px; height: 68px; border-radius: 50%; background: var(--sun); color: #2A1F00;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 26px rgba(0,0,0,.35);
  transition: transform .25s var(--ease), background-color .25s var(--ease); }
.vcard__play svg { margin-left: 3px; }
.vcard__btn:hover .vcard__play { transform: translate(-50%,-50%) scale(1.1); background: var(--sun-hover); }
.vcard__video { width: 100%; aspect-ratio: 16/9; background: #000; display: block; }
.vcard iframe { width: 100%; aspect-ratio: 16/9; border: 0; display: block; }
.vcard__meta { padding: 20px 22px 22px; }
.vcard__meta h3 { font-size: 1.14rem; margin: 0 0 .35rem; color: var(--text); }
.vcard__meta p { margin: 0; font-size: .9rem; color: var(--muted); line-height: 1.55; }

/* ---------- gallery ---------- */
.gal { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.gal__item { margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--teal-wash); }
.gal__item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .6s var(--ease); }
.gal__item:hover img { transform: scale(1.05); }

/* ---------- quotes ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 40px; }
.quotes--two { grid-template-columns: repeat(2, 1fr); }
.quotes--all { grid-template-columns: repeat(2, 1fr); margin-bottom: 0; }
.quote { margin: 0; padding: 34px 30px; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); border-left: 5px solid var(--sun); display: flex; flex-direction: column; }
.quote blockquote { margin: 0 0 1.4rem; padding: 0; font-family: var(--serif);
  font-size: 1.12rem; line-height: 1.6; color: var(--text); }
.quote blockquote::before { content: "\201C"; color: var(--sun-deep); font-size: 1.4em;
  line-height: 0; vertical-align: -.28em; margin-right: .06em; }
.quote figcaption { margin-top: auto; display: flex; flex-direction: column; }
.quote__name { font-weight: 700; font-size: .93rem; }
.quote__role { font-size: .84rem; color: var(--muted); }

/* ---------- locations ---------- */
.loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.loc { padding: 32px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  text-decoration: none; color: inherit;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease); }
.loc:hover { border-color: var(--sun); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.loc h3 { font-size: 1.45rem; margin: 0 0 .7rem; }
.loc p { color: var(--muted); font-size: .95rem; margin: 0 0 1.2rem; }
.loc__cta { font-size: .87rem; font-weight: 700; color: var(--teal-deep); }

.cities { list-style: none; margin: 1.6rem 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.cities li { background: var(--sun-wash); color: #6B4B00; border: 1px solid var(--sun);
  padding: 8px 15px; border-radius: 100px; font-size: .88rem; font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { background: var(--paper); border-top: 1px solid var(--line); }
.faq__list { border-top: 2px solid var(--sun); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative;
  font-family: var(--serif); font-size: 1.18rem; font-weight: 500; color: var(--text);
  transition: color .2s var(--ease); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--teal-deep); }
.faq__item summary::after { content: ""; position: absolute; right: 8px; top: 50%;
  width: 10px; height: 10px; margin-top: -6px;
  border-right: 2.5px solid var(--sun-deep); border-bottom: 2.5px solid var(--sun-deep);
  transform: rotate(45deg); transition: transform .25s var(--ease); }
.faq__item[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq__item[open] summary { color: var(--teal-deep); }
.faq__a { padding: 0 44px 24px 0; }
.faq__a p { margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.7; }

/* ---------- CTA band ---------- */
.cta-band {
  padding: 88px 0; text-align: center; color: #fff;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--deep) 100%);
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(760px 300px at 50% 0%, rgba(255,201,60,.3), transparent 70%);
}
.cta-band > .wrap { position: relative; z-index: 1; }
.cta-band__h { color: #fff; margin-bottom: .9rem; }
.cta-band__p { color: rgba(255,255,255,.86); max-width: 560px; margin: 0 auto 2.1rem; font-size: 1.05rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- contact ---------- */
.contact { display: grid; grid-template-columns: 1.4fr .9fr; gap: 56px; align-items: start; }
.form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px; border-top: 5px solid var(--sun); box-shadow: var(--shadow-sm); }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; display: flex; flex-direction: column; }
.field label { font-size: .84rem; font-weight: 700; margin-bottom: 7px; color: var(--text); }
.field label span { color: var(--sun-deep); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--text);
  padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--cream); width: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sun); background: var(--paper);
  box-shadow: 0 0 0 3px rgba(255,201,60,.3);
}
.field textarea { resize: vertical; min-height: 120px; }
.form__note { margin: 1rem 0 0; font-size: .84rem; color: var(--muted); text-align: center; }
.hp { position: absolute; left: -9999px; }

.contact__aside { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 104px; }
.contact__list { list-style: none; margin: 0; padding: 0; }
.contact__list li { padding: 14px 0; border-bottom: 1px solid rgba(183,124,0,.22); }
.contact__list li:last-child { border-bottom: 0; }
.contact__label { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--sun-deep); margin-bottom: 4px; }
.contact__big { font-family: var(--serif); font-size: 1.2rem; color: var(--text); text-decoration: none;
  transition: color .2s var(--ease); word-break: break-word; }
.contact__big:hover { color: var(--teal-deep); }

/* ---------- footer ---------- */
.foot { background: var(--deep); color: var(--on-deep-mute); padding: 76px 0 0;
  border-top: 6px solid var(--sun); }
.foot__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 56px; }
.foot .brand__name { color: #fff; display: block; font-size: 1.3rem; }
.foot .brand__sub { color: var(--sun); display: block; }
.foot__blurb { margin-top: 1.1rem; font-size: .92rem; line-height: 1.65; max-width: 320px; }
.foot__col h4 { font-family: var(--sans); font-size: .72rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--sun); margin: 0 0 1.1rem; }
.foot__h--sp { margin-top: 1.8rem !important; }
.foot__col ul { list-style: none; margin: 0; padding: 0; }
.foot__col li { margin-bottom: .65rem; }
.foot__col a { color: var(--on-deep); text-decoration: none; font-size: .93rem; transition: color .2s var(--ease); }
.foot__col a:hover { color: var(--sun); }
.foot__base { border-top: 1px solid rgba(255,255,255,.14); padding: 24px 0; }
.foot__base p { margin: 0; font-size: .84rem; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .nav__cta { display: none; }
  .nav__toggle { display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; background: none; border: 0; cursor: pointer; padding: 0; }
  .nav__toggle span { display: block; width: 24px; height: 2.5px; background: var(--text); border-radius: 2px;
    transition: transform .25s var(--ease), opacity .25s var(--ease); }
  .nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .nav__list { position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 4px solid var(--sun); padding: 12px 24px 24px;
    transform: translateY(-130%); transition: transform .32s var(--ease); box-shadow: var(--shadow-md); }
  .nav__list.is-open { transform: translateY(0); }
  .nav__list li { border-bottom: 1px solid var(--line); }
  .nav__list li:last-child { border-bottom: 0; }
  .nav__list a { display: block; padding: 16px 0; font-size: 1.05rem; }
  .nav__list a::after { display: none; }

  .split, .contact, .phead__grid { grid-template-columns: 1fr; gap: 44px; }
  .split__aside, .contact__aside { position: static; }
  .portrait { order: -1; }

  .acts-grid, .acts-grid--3, .quotes, .quotes--all, .quotes--two, .loc-grid, .vgrid--feature {
    grid-template-columns: 1fr;
  }
  .acts-grid > .acard--flag { grid-column: 1 / -1; }
  .acard--flag { flex-direction: column; }
  .acard--flag .acard__body { padding: 30px 28px 32px; }

  .foot__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .section--tight { padding: 52px 0; }
  .hero { min-height: 90vh; }
  .hero__inner { padding-top: 90px; padding-bottom: 56px; }
  .hero__proof { gap: 26px; margin-top: 2.4rem; }
  .hero__proof strong { font-size: 1.3rem; }
  .ahero__inner { padding-top: 90px; padding-bottom: 48px; }
  .btn { width: 100%; }
  .hero__actions .btn, .cta-band__actions .btn { flex: 1 1 100%; }
  .form, .panel { padding: 24px; }
  .row { grid-template-columns: 1fr; gap: 0; }
  .foot__grid { grid-template-columns: 1fr; }
  .phead { padding: 60px 0 44px; }
  .phead--tall { padding: 90px 0 80px; }
  .gal { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* ---------- motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- print ---------- */
@media print {
  .nav, .cta-band, .foot, .vcard__btn { display: none; }
  body { background: #fff; color: #000; }
}

/* ---------- sticky mobile call bar ----------
   Event bookers browse on phones, often mid-planning. Zero of the 24 US
   competitor sites benchmarked have one — this is uncontested ground.
   Desktop already has the phone in the header, so this is mobile-only. */
.callbar { display: none; }

@media (max-width: 820px) {
  .callbar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,253,247,.96);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 20px rgba(20,60,54,.10);
  }
  .callbar__btn {
    display: flex; align-items: center; justify-content: center; gap: .45rem;
    min-height: 50px; padding: 12px 10px; border-radius: var(--radius);
    font-family: var(--sans); font-size: .95rem; font-weight: 700;
    text-decoration: none; border: 2px solid transparent;
  }
  .callbar__btn--call { background: var(--deep); color: #fff; border-color: var(--deep); }
  .callbar__btn--enq  { background: var(--sun); color: #2A1F00; border-color: var(--sun); }
  /* keep the footer clear of the fixed bar */
  .foot__base { padding-bottom: calc(24px + 70px); }
}

/* ---------- proof bar ----------
   Three columns, no wasted vertical space. The acts that book most win on
   proof density, so this needs to read as one dense block, not a list. */
.proof { background: var(--deep); color: var(--on-deep); padding: 44px 0; }
.proof__grid {
  display: grid; grid-template-columns: .85fr 1.3fr 1.35fr; gap: 0; align-items: start;
}
.proof__col { padding: 0 34px; }
.proof__col:first-child { padding-left: 0; }
.proof__col:last-child { padding-right: 0; }
.proof__col + .proof__col { border-left: 1px solid rgba(255,255,255,.16); }
.proof__h {
  font-family: var(--sans); font-size: .66rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--sun); margin: 0 0 14px;
}
.proof__list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 4px 18px; }
.proof__list li { font-family: var(--serif); font-size: 1.02rem; color: #fff; opacity: .95; }
.proof__list--strong { flex-direction: column; gap: 3px; }
.proof__list--strong li { font-size: 1.2rem; font-weight: 600; }
.proof__list--sm li { font-family: var(--sans); font-size: .88rem; font-weight: 500; opacity: .8; }

@media (max-width: 900px) {
  .proof { padding: 36px 0; }
  .proof__grid { grid-template-columns: 1fr; gap: 24px; }
  .proof__col { padding: 0; }
  .proof__col + .proof__col {
    border-left: 0; border-top: 1px solid rgba(255,255,255,.16); padding-top: 24px;
  }
  .proof__list--strong { flex-direction: row; }
}

/* ---------- response-time promise ---------- */
.promise {
  display: inline-flex; align-items: center; gap: .45rem;
  margin: 1.1rem 0 0; font-size: .88rem; color: var(--teal-deep); font-weight: 500;
}
.promise strong { font-weight: 700; }
.promise svg { flex: none; color: var(--teal); }
.promise--on-dark { color: rgba(255,255,255,.9); }
.promise--on-dark svg { color: var(--sun); }
.cta-band .promise { margin-top: 1.4rem; }
.form .promise { display: flex; justify-content: center; margin-top: 1rem; }

/* ---------- guarantee ---------- */
.guarantee {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--sun-wash); border: 2px solid var(--sun);
  border-radius: var(--radius); padding: 16px 18px; margin: 0 0 1.5rem;
}
.guarantee svg { flex: none; color: var(--sun-deep); margin-top: 2px; }
.guarantee p { margin: 0; font-size: .93rem; font-weight: 600; color: var(--text); line-height: 1.5; }

/* ---------- inline enquiry block ---------- */
.enq { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: start; }
.enq__intro { position: sticky; top: 104px; }
.enq__proof { list-style: none; margin: 1.6rem 0; padding: 0; }
.enq__proof li {
  display: flex; align-items: center; gap: .55rem;
  font-size: .95rem; font-weight: 500; margin-bottom: .7rem; color: var(--text);
}
.enq__proof svg { flex: none; color: var(--teal); }
.enq__call { margin: 0; font-size: .95rem; color: var(--muted); }
.enq__call a { font-weight: 700; color: var(--teal-deep); text-decoration: none; }
.enq__call a:hover { text-decoration: underline; }

/* optional-field hint — mark BOTH required and optional (Baymard: when only
   optional fields are marked, 32% of users fail to complete a required one) */
.opt { font-weight: 400; color: var(--muted); font-size: .8rem; }

@media (max-width: 980px) {
  .enq { grid-template-columns: 1fr; gap: 36px; }
  .enq__intro { position: static; }
  .proof__h { flex: 0 0 100%; }
}
@media (max-width: 620px) {
  .proof { padding: 32px 0; }
  .proof__list { gap: 6px 18px; }
  .proof__list li { font-size: .95rem; }
  .proof__list--strong li { font-size: 1.05rem; }
}

/* ---------- guarantee band ----------
   Zero of the 24 US competitors benchmarked offer any guarantee. Give it room. */
.gband { background: var(--sun-wash); border-top: 2px solid var(--sun); border-bottom: 2px solid var(--sun); padding: 40px 0; }
.gband__inner { display: flex; align-items: center; gap: 26px; }
.gband__inner > svg { flex: none; color: var(--sun-deep); }
.gband__inner > div { flex: 1; }
.gband__h { font-size: clamp(1.35rem, 2.3vw, 1.85rem); margin: 0 0 .3rem; }
.gband__p { margin: 0; color: #5C4A1E; font-size: .98rem; line-height: 1.55; max-width: 720px; }
.gband .btn { flex: none; }

@media (max-width: 860px) {
  .gband__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .gband .btn { width: 100%; }
}
.proof__list--sm li { font-family: var(--sans); font-size: .9rem; font-weight: 500; opacity: .82; }

/* ---------- social band (TikTok / YouTube) ---------- */
.social { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 64px 0; }
.social__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.social__copy { flex: 1 1 320px; }
.social__copy .h2 { margin-bottom: .5rem; }
.social__p { margin: 0; color: var(--muted); font-size: 1.02rem; max-width: 420px; }
.social__links { display: flex; gap: 16px; flex-wrap: wrap; }

.sbtn {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 22px; min-width: 210px;
  border-radius: var(--radius); text-decoration: none;
  border: 2px solid var(--line); background: var(--cream); color: var(--text);
  transition: border-color .22s var(--ease), transform .22s var(--ease), box-shadow .22s var(--ease);
}
.sbtn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.sbtn svg { flex: none; }
.sbtn span { display: flex; flex-direction: column; line-height: 1.25; }
.sbtn strong { font-size: 1rem; font-weight: 700; }
.sbtn em { font-style: normal; font-size: .82rem; color: var(--muted); }

.sbtn--tiktok:hover { border-color: var(--text); }
.sbtn--tiktok svg { color: var(--text); }
.sbtn--yt:hover { border-color: #FF0000; }
.sbtn--yt svg { color: #FF0000; }

@media (max-width: 700px) {
  .social { padding: 48px 0; }
  .social__links { width: 100%; }
  .sbtn { flex: 1 1 100%; }
}
