/* Fail closed if form scripts are unavailable or fail before initialization. */
.inquiry-form[hidden], [data-inquiry-fallback][hidden] { display: none !important; }
.captcha-notice{font-size:14px;line-height:1.75;color:var(--muted);margin:0}
/* Without the scroll controller, keep the footer below the native disclosure. */
html:not(.has-js) .opening-sequence { margin-bottom: 0; }
html:not(.has-js) .opening-content { transform: none; }
html:not(.has-js) .opening-sequence .hero { position: relative; }
.event-arrangement {
  padding: 52px 24px 68px;
  border-top: 1px solid rgba(36, 97, 173, .16);
  background: var(--blue-mist);
  color: var(--muted);
}
.event-arrangement-inner { max-width: 44rem; margin-inline: auto; }
.event-arrangement p { font-size: 15px; line-height: 1.85; margin: 0 0 18px; }
.event-arrangement h2 {
  color: var(--blue-deep); background: none; -webkit-text-fill-color: currentColor;
  font-size: clamp(22px, 2.2vw, 28px); font-weight: 500; line-height: 1.4; letter-spacing: -.015em; margin: 0 0 18px;
}
.event-arrangement h3 {
  color: var(--blue-deep); background: none; -webkit-text-fill-color: currentColor;
  font-size: 17px; line-height: 1.55; letter-spacing: .01em; margin: 0 0 13px;
}
.event-arrangement summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: fit-content; max-width: 100%; padding: 4px 0; cursor: pointer;
  list-style: none; color: var(--blue-deep); font-size: 14px; font-weight: 600;
}
.event-arrangement summary::-webkit-details-marker { display: none; }
.event-arrangement summary:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }
.event-arrangement summary:hover { color: var(--blue); }
.event-arrangement .arrangement-open-label,
.event-arrangement details[open] .arrangement-closed-label { display: none; }
.event-arrangement details[open] .arrangement-open-label { display: inline; }
.event-arrangement .arrangement-mark { transition: transform 300ms ease; }
.event-arrangement details[open] .arrangement-mark { transform: rotate(45deg); }
.event-arrangement-content { padding-top: 34px; }
.event-arrangement-content section { margin-bottom: 28px; }
.event-arrangement-content p a { color: var(--blue-deep); text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 767px) {
  .event-arrangement { padding: 38px 24px 52px; }
  .event-arrangement h2 { font-size: 22px; }
  .event-arrangement p { font-size: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .event-arrangement .arrangement-mark { transition: none; }
}

:root {
  color-scheme: light;
  --blue: #2461ad;
  --brand-deep-blue: #2660ac;
  --blue-deep: #174b8a;
  --blue-soft: #e9f2fb;
  --blue-mist: #f4f8fc;
  --navy: #0e2b4c;
  --ink: #19324d;
  --muted: #536b83;
  --line: #d7e3ef;
  --surface: #ffffff;
  --surface-alt: #f5f7fa;
  --radius: 16px;
  --radius-photo: 24px;
  --radius-overlay: 28px;
  --radius-feature: 32px;
  --pill: 999px;
  --heading-size: clamp(38px, 4.5vw, 68px);
  --heading-mobile-size: clamp(30px, 9.7vw, 46px);
  --heading-leading: 1.28;
  --heading-tracking: 0.02em;
  /* Display text is a deliberate tier above ordinary section headings. */
  --display-size: clamp(44px, 5.3vw, 80px);
  --button-gap: 12px;
  --shadow-soft: 0 18px 55px rgba(35, 82, 133, 0.12);
  --shadow-float: 0 16px 45px rgba(25, 72, 124, 0.14);
  --container: 1320px;
  --header-height: 68px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html:has(body.nav-open) {
  overflow: hidden;
}

body.nav-open {
  overflow: clip;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

figure,
h1,
h2,
h3,
h4,
p,
dl,
dd,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid rgba(36, 97, 173, 0.34);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 16px;
  z-index: 100;
  padding: 10px 18px;
  border-radius: var(--pill);
  color: #ffffff;
  background: var(--navy);
  transform: translateY(-160%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  pointer-events: none;
  transition: top 520ms var(--ease);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 82px;
  margin-inline: auto;
  padding: 7px max(22px, calc((100vw - 1390px) / 2 + 22px));
  border: 1px solid transparent;
  border-bottom-color: rgba(36, 97, 173, 0.1);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 5px 22px rgba(25, 72, 124, 0.05);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  pointer-events: auto;
  transition: width 520ms var(--ease), height 520ms var(--ease), padding 520ms var(--ease), border-color 520ms var(--ease), border-radius 520ms var(--ease), box-shadow 520ms var(--ease);
}

.site-header.is-past-hero {
  top: 16px;
}

.site-header.is-past-hero .nav-shell {
  width: min(calc(100% - 48px), 1390px);
  height: var(--header-height);
  padding: 7px 12px 7px 22px;
  border-color: rgba(36, 97, 173, 0.15);
  border-radius: var(--pill);
  box-shadow: var(--shadow-float), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(210px, 18vw, 276px);
  flex: 0 0 auto;
}

.brand-lockup {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 2.5%;
}

.brand-lockup-symbol {
  width: 17.2%;
  height: auto;
  flex: 0 0 17.2%;
}

.brand-lockup-wordmark {
  width: 80.3%;
  height: auto;
  flex: 0 0 80.3%;
}

.site-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 28px);
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 7px;
  border-radius: var(--pill);
  color: var(--navy);
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
  transition: color 220ms var(--ease), background-color 220ms var(--ease), transform 220ms var(--ease);
}

.nav-list a:hover {
  color: var(--blue);
  background: var(--blue-mist);
}

.nav-list a:active,
.button:active {
  transform: translateY(1px) scale(0.985);
}

.nav-list .nav-cta {
  gap: 16px;
  min-width: 146px;
  padding: 0 10px 0 22px;
  color: #ffffff;
  background: var(--blue);
}

.nav-list .nav-cta span:last-child {
  display: grid;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  place-items: center;
}

.nav-list .nav-cta:hover {
  color: #ffffff;
  background: var(--blue-deep);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transform: translateX(-50%);
  transition: transform 420ms cubic-bezier(.16, 1, .3, 1), top 420ms cubic-bezier(.16, 1, .3, 1);
}

.nav-toggle span:first-child {
  top: 19px;
}

.nav-toggle span:last-child {
  top: 27px;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 14%, rgba(36, 97, 173, 0.07), transparent 25%),
    #ffffff;
}

.opening-sequence {
  --opening-scale: 1;
  --opening-dim: 0;
  --opening-shadow: 0;
  --opening-lift: 0px;
  position: relative;
  background: #ffffff;
  isolation: isolate;
  overflow-anchor: none;
}

.opening-content {
  position: relative;
  z-index: 10;
  overflow: hidden;
  background: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.72fr) minmax(0, 1.28fr);
  min-height: 100dvh;
  margin-inline: auto;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
  padding: 132px 32px 76px max(64px, calc((100vw - var(--container)) / 2));
}

.hero-copy h1,
.hero-mobile-kicker,
.hero-statement,
.hero-description,
.hero-copy .button-row {
  animation: hero-copy-reveal 780ms var(--ease) both;
}

.hero-statement {
  animation-delay: 90ms;
}

.hero-description {
  animation-delay: 170ms;
}

.hero-copy .button-row {
  animation-delay: 250ms;
}

.hero-copy h1,
.section-heading h2,
.teaching-copy > h2,
.contact-intro > h2 {
  margin-bottom: 24px;
  color: var(--blue);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 760;
  letter-spacing: 0.1em;
  line-height: 1.45;
}

.hero-statement {
  color: var(--navy);
  font-size: clamp(46px, 4.15vw, 72px);
  font-weight: 570;
  letter-spacing: -0.055em;
  line-height: 1.22;
}

.hero-mobile-kicker {
  display: none;
}

.hero-description {
  max-width: 31em;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 500;
  line-height: 1.8;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--button-gap);
  min-height: 52px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: var(--pill);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: transform 220ms var(--ease), background-color 220ms var(--ease), border-color 220ms var(--ease), color 220ms var(--ease);
}

.button-primary {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(36, 97, 173, 0.2);
}

.button-primary:hover {
  background: var(--blue-deep);
}

.button-secondary {
  color: var(--blue-deep);
  border-color: var(--blue);
  background: rgba(255, 255, 255, 0.88);
}

.button-secondary:hover {
  background: var(--blue-soft);
}

.hero-inquiry-link {
  gap: 12px;
  min-height: 52px;
  padding-inline: 8px 2px;
  border: 0;
  border-bottom: 1px solid rgba(36, 97, 173, 0.4);
  border-radius: 0;
  background: transparent;
}

.hero-inquiry-link:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
  background: transparent;
}

.hero-media {
  position: relative;
  min-width: 0;
  min-height: 100dvh;
  overflow: hidden;
  clip-path: polygon(7% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-media::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: #ffffff;
  content: "";
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: right center;
  animation: hero-curtain 1050ms var(--ease) both;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent 18%);
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  transform: scale(1.015);
  animation: hero-settle 1100ms var(--ease) both;
}

@keyframes hero-settle {
  from {
    opacity: 0;
    transform: scale(1.045) translateX(18px);
  }
  to {
    opacity: 1;
    transform: scale(1.015) translateX(0);
  }
}

@keyframes hero-copy-reveal {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-curtain {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}

.section {
  padding-block: clamp(96px, 10vw, 152px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.mobile-title-break {
  display: none;
}

.mobile-title-break + span::before {
  content: "";
}

.title-punctuation {
  display: inline;
}

/* Keep narrative heading punctuation attached to each semantic phrase. */
@media(min-width:768px){
 .home-optical-title .home-end-mark{display:inline-block;width:0;overflow:visible;white-space:nowrap;color:var(--blue);-webkit-text-fill-color:currentColor}
}
@media (max-width: 767px) {
  main .mobile-centered-title {
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-inline: auto;
  }
  main .mobile-centered-title .heading-phrase {
    position: relative;
    display: inline-block;
  }
  main .mobile-centered-title .mobile-hanging-mark {
    display: inline-block;
    width: 0;
    overflow: visible;
    white-space: nowrap;
    color: var(--blue);
    -webkit-text-fill-color: currentColor;
  }
}

.heading-phrase {
  display: inline-block;
  max-width: 100%;
  text-wrap: pretty;
}

/* Only selected multi-line centered headings need optical punctuation. */
@media (max-width: 767px) {
  #occasions-title.optical-heading { max-width: calc(100% - 1em); margin-inline: auto; }
  #occasions-title.optical-heading .heading-phrase { position: relative; }
  #occasions-title.optical-heading .optical-punctuation {
    position: absolute;
    left: 100%;
    top: 0;
    white-space: nowrap;
    color: var(--blue-deep);
    -webkit-text-fill-color: currentColor;
  }
  .service-page--shadow #occasions-title.optical-heading .optical-punctuation { color: #fff; }
  .brand-proof-heading #about-title { max-width: calc(100% - 2em); margin-inline: auto; }
  #about-title .heading-phrase { position: relative; }
  #about-title .optical-punctuation {
    position: absolute;
    left: 100%;
    top: 0;
    white-space: nowrap;
    color: var(--blue-deep);
    -webkit-text-fill-color: currentColor;
  }
}

.section-heading h3,
.teaching-copy > h3,
.contact-intro > h3 {
  max-width: 18em;
  color: transparent;
  background: linear-gradient(90deg, #111820 0%, var(--blue-deep) 58%, var(--blue) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: var(--heading-size);
  font-weight: 400;
  letter-spacing: var(--heading-tracking);
  line-height: var(--heading-leading);
}

.section-heading > p,
.teaching-copy > p,
.contact-intro > p {
  max-width: 46em;
  margin-top: 24px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
}

.services {
  position: relative;
  padding-bottom: clamp(72px, 7vw, 104px);
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 18%, rgba(30, 173, 229, 0.08), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 78%);
}

.services .container {
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.services .section-heading {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: clamp(190px, 20vw, 280px);
  max-width: 100%;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  margin-inline: auto;
  text-align: center;
}

.services .section-heading h3,
.occasions .section-heading h3,
.gallery .section-heading h3 {
  max-width: none;
  font-size: var(--heading-size);
  white-space: normal;
}

.occasions .section-heading,
.gallery .section-heading {
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
}

.occasions .section-heading {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: clamp(190px, 20vw, 280px);
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
}

.occasions .section-heading > p,
.gallery .section-heading > p {
  margin-inline: auto;
}

.services .section-heading h3,
.services .section-heading > p {
  margin-inline: auto;
}

.services-wordmark,
.occasions-wordmark {
  position: absolute;
  z-index: 0;
  top: clamp(26px, 4vw, 58px);
  left: 50%;
  width: max-content;
  max-width: none;
  margin: 0;
  color: rgba(36, 97, 173, 0.055);
  font-size: clamp(88px, 13vw, 188px);
  font-weight: 650;
  letter-spacing: -0.085em;
  line-height: 0.86;
  pointer-events: none;
  transform: translateX(-50%);
  user-select: none;
  white-space: nowrap;
}

.occasions {
  position: relative;
  overflow: hidden;
}

.occasions .container {
  position: relative;
  z-index: 1;
}

.occasions-wordmark {
  top: clamp(26px, 4vw, 58px);
}

.service-grid {
  position: relative;
  z-index: 1;
  display: flex;
  height: clamp(560px, 67svh, 690px);
  min-height: 0;
  gap: 2px;
  overflow: hidden;
  border: 1px solid rgba(36, 97, 173, 0.14);
  border-radius: var(--radius-feature);
  background: rgba(210, 226, 244, 0.9);
  box-shadow: 0 34px 90px rgba(9, 42, 84, 0.14);
  isolation: isolate;
}

.service-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  color: #ffffff;
  background: var(--navy);
  text-decoration: none;
  isolation: isolate;
  transition: flex-grow 820ms var(--ease), opacity 520ms ease;
}

.service-media {
  position: absolute;
  z-index: -2;
  inset: 0;
  min-height: 0;
  overflow: hidden;
}

.service-media img {
  --media-scale: 1.02;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(var(--media-scale));
  transition: transform 780ms var(--ease), filter 420ms ease;
}

.service-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgb(14 43 76 / 0.02) 24%, rgb(14 43 76 / 0.93) 100%);
  content: "";
  pointer-events: none;
}

.service-card-magic .service-media img {
  object-position: 50% 15%;
}

.service-card-shadow .service-media img {
  object-fit: cover;
  object-position: 45% 25%;
}

/* Keep the performer's face in the narrow desktop preview. */
@media (min-width: 981px) and (hover: hover) and (pointer: fine) {
  .service-grid[data-hovered-service="magic"] .service-card-shadow .service-media img {
    object-fit: cover;
    object-position: 35% 20%;
  }
}

.service-copy {
  position: absolute;
  z-index: 1;
  right: auto;
  bottom: clamp(24px, 3.2vw, 46px);
  left: clamp(24px, 3.2vw, 48px);
  display: grid;
  gap: 14px;
  width: clamp(310px, 28vw, 400px);
  max-width: calc(100% - 48px);
  padding: 0;
}

.service-copy h3 {
  color: #ffffff;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.service-copy > p {
  max-height: 180px;
  max-width: 44em;
  overflow: hidden;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: max-height 520ms var(--ease), opacity 300ms ease, transform 520ms var(--ease);
}

.service-link-label {
  display: inline-flex;
  width: max-content;
  max-height: 44px;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--pill);
  color: #ffffff;
  background: var(--blue-deep);
  box-shadow: 0 8px 22px rgba(7, 31, 61, 0.2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: max-height 420ms var(--ease), opacity 260ms ease, transform 420ms var(--ease);
  white-space: nowrap;
}

.service-link-label > span {
  transition: transform 240ms var(--ease);
}

.service-card:hover .service-link-label > span,
.service-card:focus-visible .service-link-label > span {
  transform: translate3d(4px, 0, 0);
}

.service-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 2px;
}

.service-facts div {
  min-width: min(220px, 100%);
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.service-facts dt {
  color: #b9dcf7;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.service-facts dd {
  margin-top: 3px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
}

.service-copy .service-note {
  width: max-content;
  max-width: 100%;
  margin-top: 2px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--pill);
  color: #ffffff;
  background: rgba(14, 43, 76, 0.58);
  backdrop-filter: blur(10px);
}

@media (min-width: 981px) and (hover: hover) and (pointer: fine) {
  .service-grid[data-hovered-service="magic"] .service-card-magic,
  .service-grid[data-hovered-service="shadow"] .service-card-shadow,
  .service-card:focus-within {
    flex-grow: 7;
  }

  .service-grid[data-hovered-service="magic"] .service-card-shadow,
  .service-grid[data-hovered-service="shadow"] .service-card-magic,
  .service-grid:has(.service-card:focus-within) .service-card:not(:focus-within) {
    flex-grow: 3;
    opacity: 0.9;
  }

  .service-grid[data-hovered-service="magic"] .service-card-shadow .service-copy > p,
  .service-grid[data-hovered-service="shadow"] .service-card-magic .service-copy > p,
  .service-grid:has(.service-card:focus-within) .service-card:not(:focus-within) .service-copy > p {
    max-height: 0;
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }

  .service-grid[data-hovered-service="magic"] .service-card-shadow .service-link-label,
  .service-grid[data-hovered-service="shadow"] .service-card-magic .service-link-label,
  .service-grid:has(.service-card:focus-within) .service-card:not(:focus-within) .service-link-label {
    max-height: 0;
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }

  .service-grid[data-hovered-service="magic"] .service-card-shadow .service-copy h3,
  .service-grid[data-hovered-service="shadow"] .service-card-magic .service-copy h3,
  .service-grid:has(.service-card:focus-within) .service-card:not(:focus-within) .service-copy h3 {
    font-size: clamp(25px, 2.35vw, 34px);
    opacity: 0.52;
    white-space: nowrap;
  }

  .service-grid[data-hovered-service="magic"] .service-card-magic .service-media img,
  .service-grid[data-hovered-service="shadow"] .service-card-shadow .service-media img,
  .service-card:focus-within .service-media img {
    --media-scale: 1.045;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .opening-sequence {
    margin-bottom: -35svh;
  }

  .opening-sequence .hero {
    position: sticky;
    z-index: 1;
    top: 0;
  }

  .opening-sequence .hero::after {
    position: absolute;
    z-index: 4;
    inset: 0;
    background: rgb(14 43 76 / var(--opening-dim));
    content: "";
    pointer-events: none;
  }

  .opening-sequence .hero-grid {
    transform: scale(var(--opening-scale));
    transform-origin: center top;
    will-change: transform;
  }

  .opening-content {
    border-radius: var(--radius-feature) var(--radius-feature) 0 0;
    box-shadow: 0 -24px 70px rgba(9, 42, 84, var(--opening-shadow));
    transform: translate3d(0, var(--opening-lift), 0);
    will-change: transform, box-shadow;
  }
}

@media (min-width: 981px) and (prefers-reduced-motion: no-preference) {
  .opening-sequence.is-opening-complete .hero {
    visibility: hidden;
  }
}

@media (max-width: 980px) and (prefers-reduced-motion: no-preference) {
  .opening-sequence {
    margin-bottom: -18svh;
  }

  .opening-content {
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -18px 54px rgba(9, 42, 84, var(--opening-shadow));
  }
}

@media (max-width: 767px) and (prefers-reduced-motion: no-preference) {
  .opening-sequence {
    margin-bottom: 0;
  }

  .opening-sequence .hero {
    position: relative;
    top: auto;
  }

  .opening-sequence .hero-grid,
  .opening-content {
    transform: none;
    will-change: auto;
  }

  .opening-content {
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
  }
}

.section-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.section-action p {
  color: var(--muted);
  font-weight: 500;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-deep);
  font-weight: 750;
  white-space: nowrap;
}

.text-link span {
  transition: transform 220ms var(--ease);
}

.text-link:hover span {
  transform: translateX(4px);
}

.teaching {
  background: var(--blue-mist);
}

.teaching-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
}

.teaching-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.teaching-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teaching-copy {
  padding-block: 24px;
}

.teaching-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 36px 0;
}

.teaching-options article {
  min-height: 190px;
  padding: 25px;
  border: 1px solid rgba(36, 97, 173, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.teaching-options h4 {
  color: var(--navy);
  font-size: 20px;
}

.teaching-options p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.occasions {
  background: #ffffff;
}

.section.occasions {
  padding-top: clamp(72px, 7vw, 104px);
  padding-bottom: clamp(80px, 8vw, 120px);
}

.occasion-explorer {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-photo);
  background: var(--navy);
  isolation: isolate;
}

.occasion-explorer::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgb(14 43 76 / 0.62) 0%, rgb(14 43 76 / 0.2) 34%, transparent 62%);
  content: "";
  pointer-events: none;
}

.occasion-controls {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: clamp(22px, 3vw, 44px);
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(390px, calc(100% - 44px));
  transform: translateY(-50%);
}

.occasion-arrows {
  display: grid;
  flex: 0 0 auto;
  gap: 8px;
}

.occasion-arrows button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: #ffffff;
  place-items: center;
  transition: transform 260ms var(--ease), background-color 260ms ease, border-color 260ms ease;
}

.occasion-arrows button:hover {
  color: var(--blue);
  background: #ffffff;
}

.occasion-arrow-desktop {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.occasion-arrow-mobile {
  display: none;
}

.occasion-help {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 28px;
  margin-top: 28px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
}

.occasion-help > p {
  margin: 0;
  color: var(--muted);
}

.occasion-help-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
}

.occasion-help-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: var(--blue-deep);
  white-space: nowrap;
  text-decoration: none;
}

.occasion-help-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 1px;
  background: currentColor;
  pointer-events: none;
}

.occasion-help-links a:hover {
  color: var(--blue);
  text-decoration: none;
}

@media (max-width: 767px) {
  .occasion-help {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 24px;
    gap: 8px;
  }

  .occasion-help-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

.occasion-tabs {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}

.occasion-tab {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto 0fr;
  align-items: start;
  width: min(190px, 100%);
  padding: 12px 18px;
  border: 0;
  border-radius: var(--radius-overlay);
  color: var(--navy);
  background: transparent;
  text-align: left;
  transform-origin: left top;
  transition: none;
}

.occasion-tab-bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.96);
  transform-origin: left top;
  transition: background-color 260ms ease, border-color 260ms ease, box-shadow 320ms var(--ease);
}

.occasion-tab-content {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  grid-template-rows: auto 0fr;
}

.occasion-tab:hover .occasion-tab-bg {
  background: #ffffff;
}

.occasion-tab.is-active {
  width: 100%;
  padding: 20px 22px;
}

.occasion-tab.is-active .occasion-tab-bg {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(3, 18, 38, 0.25);
}

.occasion-tab-label {
  font-weight: 700;
  white-space: nowrap;
}

.occasion-tab.is-active .occasion-tab-label {
  color: var(--navy);
}

.occasion-tab-summary {
  display: grid;
  grid-template-rows: 0fr;
  padding-top: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
  opacity: 0;
  transition: opacity 180ms ease;
}

.occasion-tab-summary > span {
  min-height: 0;
  overflow: hidden;
}

.occasion-tab.is-active .occasion-tab-summary {
  grid-template-rows: 1fr;
  padding-top: 10px;
  opacity: 1;
  transition-delay: 80ms;
}

.occasion-mobile-carousel {
  display: none;
}

.occasion-panel {
  position: absolute;
  z-index: 0;
  inset: 0;
}

.occasion-visual {
  position: relative;
  height: 100%;
  min-height: 720px;
  overflow: hidden;
  contain: paint;
}

.occasion-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: translateZ(0);
  transition: opacity 520ms ease;
  will-change: opacity;
}

.occasion-image[src*="annual-"] {
  object-position: right center;
}

.occasion-image.is-visible {
  z-index: 1;
  opacity: 1;
  transform: translateZ(0);
}

.gallery {
  padding-top: clamp(96px, 10vw, 152px);
  padding-bottom: clamp(72px, 7vw, 112px);
  background: var(--blue-mist);
}

.gallery-heading {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.gallery .photo-marquee-track {
  padding-block: 0;
}

.photo-marquee {
  --marquee-gap: clamp(16px, 1.3vw, 24px);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  scroll-behavior: auto;
  overflow-anchor: none;
}

.photo-marquee-track {
  display: flex;
  width: max-content;
  gap: var(--marquee-gap);
  padding-block: clamp(24px, 3vw, 38px);
}

.photo-marquee-set {
  display: flex;
  flex: 0 0 auto;
  height: clamp(520px, 37.5vw, 680px);
  gap: var(--marquee-gap);
}

.marquee-column {
  display: grid;
  flex: none;
  gap: var(--marquee-gap);
}

.marquee-column-narrow {
  width: calc((clamp(520px, 37.5vw, 680px) - var(--marquee-gap)) * 0.75);
  grid-template-rows: 1fr 1fr;
}

.marquee-column-medium {
  width: calc((clamp(520px, 37.5vw, 680px) - var(--marquee-gap)) * 0.75);
  grid-template-rows: 1fr 1fr;
}

.marquee-tile {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-photo);
  background: #dfe7ef;
}

.marquee-tile-wide {
  /* Explicit widths also constrain the parent max-content size in WebKit.
     A flex-basis alone leaves intrinsic-image whitespace after each set. */
  flex: 0 0 auto;
  width: clamp(650px, 38vw, 730px);
}

.marquee-tile-portrait {
  flex: 0 0 auto;
  width: clamp(470px, 28vw, 540px);
}

.marquee-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0d1b2d;
  transition: transform 900ms var(--ease);
}

.marquee-tile:hover img {
  transform: scale(1.025);
}

.performance-story {
  --story-progress: 0;
  --story-line-one: 0;
  --story-line-two: 0;
  position: relative;
  overflow: hidden;
  background: #020b18;
  color: white;
}
.performance-story-stage {
  position: relative;
  display: flex;
  align-items: center;
  height: clamp(560px, 72svh, 680px);
  min-height: 560px;
  overflow: hidden;
  isolation: isolate;
}
.performance-story-photo, .performance-story-veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.performance-story-photo {
  object-fit: cover;
  object-position: center;
  opacity: calc(.46 + var(--story-progress) * .12);
  filter: saturate(.9) contrast(1.04);
  transform: scale(calc(1.045 - var(--story-progress) * .02));
  will-change: transform, opacity;
}
.performance-story-veil {
  z-index: -1;
  background: linear-gradient(90deg, rgba(1,9,22,.84), rgba(2,12,29,.62) 52%, rgba(2,10,23,.24)), linear-gradient(180deg,rgba(1,8,19,.08),rgba(1,8,19,.38));
}
.performance-story-copy { padding-block: 80px; }
.performance-story-copy h2 {
  max-width: 920px;
  margin: 0;
  font-size: var(--display-size);
  font-weight: 300;
  letter-spacing: var(--heading-tracking);
  line-height: var(--heading-leading);
}
.performance-story-copy h2 > span:first-child { color: rgb(255 255 255 / calc(.20 + var(--story-line-one) * .80)); }
.performance-story-copy h2 > span:last-child { color: rgb(255 255 255 / calc(.20 + var(--story-line-two) * .80)); }
.performance-story-copy p {
  max-width: 620px;
  margin: 30px 0 0;
  color: #c8d7ec;
  font-weight: 500;
  opacity: calc(.68 + var(--story-progress) * .32);
  transform: translate3d(0, calc(24px - var(--story-progress) * 24px), 0);
}
@media (max-width: 767px) {
  /* Editorial copy stays centered and comfortably readable on narrow screens. */
  .performance-story-copy > p,
  .faq-layout .section-heading > p,
  .contact-intro > p,
  .brand-proof-copy {
    width: min(100%, 34em);
    margin-inline: auto;
    text-align: center;
  }

  .brand-proof-copy > .button {
    margin-inline: auto;
  }

  .contact-direct {
    width: min(100%, 34rem);
    margin-inline: auto;
  }

  .contact-direct a {
    grid-template-columns: max-content minmax(0, max-content);
    justify-content: center;
  }

  .performance-story-stage { height: 68svh; }
  .performance-story-copy h2 {
    margin-inline: auto;
    font-size: var(--heading-mobile-size);
    letter-spacing: var(--heading-tracking);
    line-height: var(--heading-leading);
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .performance-story-photo, .performance-story-copy p { transform: none; }
}

.brand-proof {
  padding-block: clamp(80px, 8vw, 120px);
  background: #ffffff;
}

.brand-proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(44px, 5vw, 80px);
  align-items: start;
  padding-block: clamp(30px, 4vw, 54px);
}

.brand-proof-kicker {
  margin-bottom: 20px;
  color: var(--blue);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 760;
  letter-spacing: 0.1em;
  line-height: 1.45;
}

.brand-proof-heading h2 {
  max-width: 12em;
  color: transparent;
  background: linear-gradient(90deg, #111820 0%, var(--blue-deep) 58%, var(--blue) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: var(--heading-size);
  font-weight: 400;
  letter-spacing: var(--heading-tracking);
  line-height: var(--heading-leading);
  text-wrap: balance;
}

.brand-proof-copy {
  display: grid;
  gap: 18px;
  max-width: 46em;
  color: var(--muted);
  font-size: 17px;
}

.brand-proof-copy > p {
  font-weight: 500;
  line-height: 1.8;
}

.brand-proof-copy > .button {
  width: fit-content;
}

.brand-proof-copy .brand-proof-cta {
  margin-top: 10px;
}

.faq {
  background: #ffffff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.faq-layout .section-heading {
  position: sticky;
  top: 120px;
  margin-bottom: 0;
}

/* Keep the shared heading size; use some gutter space for intact phrases. */
@media (min-width: 981px) {
  .faq-layout .section-heading h3 {
    width: calc(100% + 1.2em);
    max-width: none;
  }
  #faq-title .mobile-title-line { white-space: nowrap; }
  #faq-title .mobile-title-break { display: block; }
}

.faq-list {
  display: grid;
  gap: 14px;
}

/* Suppress native touch flash only on FAQ triggers; keep :focus-visible. */
.faq-question,
.faq-question *,
.service-faq-list summary,
.service-faq-list summary * {
  -webkit-tap-highlight-color: transparent;
}

.faq-item {
  overflow: hidden;
  border-radius: 42px;
  background: var(--surface);
  box-shadow: 0 8px 28px rgba(14, 43, 76, 0.09);
  transition: border-radius 520ms var(--ease), box-shadow 320ms var(--ease);
}

.faq-item.is-open {
  border-radius: var(--radius-overlay);
  box-shadow: 0 12px 32px rgba(14, 43, 76, 0.12);
}

.faq-item:has(.faq-question:focus-visible) {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.faq-question:focus:not(:focus-visible) {
  outline: none;
}

.faq-item h4 {
  font-size: inherit;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 84px;
  padding: 20px 24px;
  border: 1px solid transparent;
  border-radius: var(--pill);
  color: var(--navy);
  background: transparent;
  text-align: left;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.6;
  transition: background-color 220ms var(--ease), border-color 220ms var(--ease);
}

.faq-question:hover,
.faq-question[aria-expanded="true"] {
  color: var(--blue-deep);
}

.faq-question span:last-child {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  transition: transform 260ms var(--ease), background-color 220ms var(--ease);
  place-items: center;
}

.faq-question[aria-expanded="true"] span:last-child {
  color: #ffffff;
  background: var(--blue);
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 28px;
  color: var(--muted);
  font-weight: 400;
  text-align: left;
}

.faq-answer a {
  display: inline-block;
  margin-top: 12px;
  color: var(--blue-deep);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.contact {
  background: var(--blue-mist);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

/* Wide desktop: shared editorial split; preserve tablet/mobile layouts. */
@media (min-width: 1200px) {
  .faq-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
  .faq-layout .section-heading h3 {
    /* Reserve a little of the gutter for full-width sentence punctuation. */
    width: calc(100% + .25em);
    max-width: none;
  }
}

.contact-intro {
  position: sticky;
  top: 120px;
}

/* Reserve part of the desktop gutter for complete contact-heading phrases. */
@media (min-width: 981px) {
  .contact-intro #contact-title {
    width: max-content;
    max-width: calc(100% + clamp(32px, 5vw, 64px));
  }
}

.contact-direct {
  display: grid;
  gap: 12px;
  margin-top: 36px;
  container-type: inline-size;
}

.contact-direct a {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: baseline;
  gap: 8px 16px;
  padding: 16px 24px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: var(--surface);
  transition: background-color 220ms var(--ease), border-color 220ms var(--ease);
}

.contact-direct a:hover {
  background: var(--blue-soft);
  border-color: #b8cfe8;
}

.contact-direct span {
  color: var(--muted);
  font-size: 13px;
}

.contact-direct strong {
  min-width: 0;
  color: var(--blue-deep);
  font-size: 16px;
  word-break: break-word;
}

@media (max-width: 480px) {
  .contact-direct a {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
    text-align: center;
  }
}

/* Narrow desktop columns need the same safe email layout as phones. */
@container (max-width: 380px) {
  .contact-direct a {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 980px) {
  .contact-direct {
    width: min(100%, 34rem);
    margin-right: auto;
  }
}

.contact-intro .contact-notice {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(36, 97, 173, 0.16);
  border-radius: 12px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 18px;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(36, 97, 173, 0.12);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.form-progress {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.form-progress-status {
  margin-bottom: 16px;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 700;
}

.form-progress ol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.form-progress ol::before {
  position: absolute;
  top: 17px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: var(--line);
  content: "";
}

.form-progress-item {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #71869a;
  text-align: center;
  font-size: 12px;
}

.form-progress-item span {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
  font-weight: 750;
  place-items: center;
}

.form-progress-item strong {
  font-weight: 650;
}

.form-progress-item.is-complete,
.form-progress-item.is-current {
  color: var(--navy);
}

.form-progress-item.is-complete span,
.form-progress-item.is-current span {
  color: #ffffff;
  border-color: var(--blue);
  background: var(--blue);
}

.form-step {
  min-width: 0;
}

.has-js .form-step {
  display: none;
}

.has-js .inquiry-form[data-current-step="1"] [data-form-step="1"],
.has-js .inquiry-form[data-current-step="2"] [data-form-step="2"],
.has-js .inquiry-form[data-current-step="3"] [data-form-step="3"] {
  display: block;
}

.form-step-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 18px;
}

.form-step-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 28px;
}

.form-step-actions > span {
  color: var(--muted);
  font-size: 12px;
}

.button-tertiary {
  color: var(--blue-deep);
  border-color: var(--line);
  background: #ffffff;
}

.button-tertiary:hover {
  border-color: var(--blue);
  background: var(--blue-mist);
}

.field {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.conditional-fields legend {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.field small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.field input,
.field select,
.field textarea {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  width: 100%;
  min-height: 50px;
  border: 1px solid #b8c9da;
  border-radius: 10px;
  color: var(--ink);
  background: #ffffff;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.field input,
.field select {
  padding: 0 14px;
}

.field textarea {
  min-height: 130px;
  padding: 12px 14px;
  resize: vertical;
}

/* Keep the native iOS date picker without letting its intrinsic width expand the grid. */
.field input[type="date"] {
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 14px;
  line-height: 48px;
  text-align: left;
  min-inline-size: 0;
  max-inline-size: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.field input[type="date"]::-webkit-date-and-time-value {
  min-width: 0;
  margin: 0;
  line-height: 48px;
  text-align: left;
}
.field input[type="date"]::-webkit-datetime-edit {
  padding: 0;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #6d8093;
  opacity: 1;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(36, 97, 173, 0.14);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea,
.consent.is-invalid input {
  border-color: #b64b5d;
}

.field-error {
  color: #9f3044;
  font-size: 13px;
  line-height: 1.5;
}

.conditional-fields {
  min-width: 0;
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(36, 97, 173, 0.18);
  border-radius: 12px;
  background: var(--blue-mist);
}

.conditional-fields > p {
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.conditional-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  flex: 0 0 auto;
  accent-color: var(--blue);
}

.privacy-note {
  padding: 18px 20px;
  border-left: 3px solid rgba(36, 97, 173, 0.5);
  border-radius: 0 12px 12px 0;
  color: var(--muted);
  background: var(--blue-mist);
  font-size: 13px;
}

.privacy-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}

.inquiry-form .captcha-notice {
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.form-status:empty {
  display: none;
}

.form-status {
  min-height: 28px;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--navy);
  background: var(--blue-mist);
  font-size: 13px;
}

.form-status.is-checked {
  border: 1px solid rgba(36, 97, 173, 0.22);
  background: #e3f0fd;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.form-actions span {
  color: var(--muted);
  font-size: 12px;
}

.site-footer {
  position: relative;
  z-index: 20;
  padding: 78px 0 28px;
  color: var(--ink);
  background: #eaf1f8;
  isolation: isolate;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(160px, 0.8fr) minmax(240px, 1fr);
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: 58px;
}

.footer-brand > a {
  display: inline-block;
  width: 245px;
  margin-bottom: 24px;
}

.footer-brand h2 {
  color: var(--navy);
  font-size: 22px;
}

.footer-brand p {
  max-width: 38em;
  margin-top: 12px;
  color: var(--muted);
}

.footer-nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-nav a,
.footer-contact a {
  display: flex;
  min-height: 44px;
  align-items: center;
  color: var(--navy);
  font-size: 14px;
  font-weight: 650;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--blue);
}

.footer-contact {
  font-style: normal;
}

.footer-contact > span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.footer-nav .footer-consultation {
  margin-top: 8px;
  color: var(--blue);
}

@media (max-width: 767px) {
  .site-footer .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(14, 43, 76, 0.13);
  color: var(--muted);
  font-size: 12px;
}

.has-js .reveal {
  opacity: 0;
  translate: 0 var(--entry-distance, 12px);
  transition: opacity var(--entry-opacity-duration, 720ms) cubic-bezier(.33, 0, .2, 1) var(--entry-delay, 0ms), translate var(--entry-duration, 560ms) var(--ease) var(--entry-delay, 0ms), var(--entry-interaction, color 180ms var(--ease));
}

.has-js .reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}

.has-js .reveal:focus-within { opacity: 1; translate: 0 0; transition: var(--entry-interaction, none); }
.has-js .service-stage-wrap.reveal {
  opacity: 0;
  clip-path: inset(0 49.5% round var(--radius-feature));
  translate: none;
  transition: opacity 320ms ease, clip-path 900ms cubic-bezier(.76, 0, .24, 1);
}
.has-js .service-stage-wrap.reveal.is-visible,
.has-js .service-stage-wrap.reveal:focus-within {
  opacity: 1;
  clip-path: inset(0 round var(--radius-feature));
}
.has-js .service-stage-wrap.reveal .service-copy {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 520ms ease, transform 680ms cubic-bezier(.22, 1, .36, 1);
}
.has-js .service-stage-wrap.reveal.is-visible .service-copy,
.has-js .service-stage-wrap.reveal:focus-within .service-copy {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 420ms;
}
.has-js .service-stage-wrap.reveal.is-visible .service-card:last-child .service-copy {
  transition-delay: 520ms;
}
.faq-item.reveal { --entry-interaction: border-radius 520ms var(--ease), box-shadow 320ms var(--ease); }
.site-footer a { transition: color 180ms var(--ease); }
@media (prefers-reduced-motion: reduce) {
  .has-js .reveal { opacity: 1; translate: none; transition: none; }
  .has-js .service-stage-wrap.reveal { clip-path: none; }
  .has-js .service-stage-wrap.reveal .service-copy { opacity: 1; transform: none; transition: none; }
}
@media (max-width: 980px) and (prefers-reduced-motion: no-preference) {
  .site-nav.is-open .nav-list a { animation: menu-link-enter 460ms cubic-bezier(.16, 1, .3, 1) var(--nav-delay, 0ms) both; }
}
@keyframes menu-link-enter {
  from { opacity: 0; translate: 0 12px; filter: blur(4px); }
  to { opacity: 1; translate: 0 0; }
}

@media (max-width: 1180px) {
  .site-header.is-past-hero .nav-shell {
    width: calc(100% - 32px);
  }

  .brand {
    width: 214px;
  }

  .nav-list {
    gap: 12px;
  }

  .nav-list a {
    padding-inline: 6px;
    font-size: 14px;
  }

  .nav-list .nav-cta {
    min-width: 134px;
    padding-left: 17px;
  }

  .hero-grid {
    grid-template-columns: minmax(390px, 0.82fr) minmax(0, 1.18fr);
  }

  .hero-copy {
    padding-left: 48px;
  }

}

@media (max-width: 980px) {
  :root {
    --header-height: 64px;
  }

  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .site-header {
    top: 0;
  }

  .nav-shell {
    width: 100%;
    height: 76px;
    padding: 7px 12px 7px 18px;
  }

  .site-header.is-past-hero {
    top: 12px;
  }

  .site-header.is-past-hero .nav-shell {
    width: calc(100% - 24px);
    height: var(--header-height);
    padding: 7px 8px 7px 18px;
  }

  .brand {
    width: min(245px, calc(100vw - 106px));
  }

  .nav-toggle {
    position: relative;
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: fixed;
    top: 88px;
    right: 12px;
    left: auto;
    width: min(340px, calc(100% - 32px));
    max-height: calc(100dvh - 104px);
    margin: 0;
    padding: 24px;
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-float);
    opacity: 0;
    visibility: hidden;
    clip-path: inset(0 0 100% 68% round 28px);
    filter: blur(8px);
    transform: translateY(-10px) scale(.965);
    transform-origin: top right;
    will-change: opacity, transform, clip-path, filter;
    transition: opacity 320ms ease, visibility 0s linear 560ms, transform 560ms cubic-bezier(.16,1,.3,1), clip-path 560ms cubic-bezier(.16,1,.3,1), filter 420ms ease;
  }

  .opening-content {
    z-index: 10;
    margin-top: 0;
    border-radius: 24px 24px 0 0;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    clip-path: inset(0 round var(--radius));
    filter: blur(0);
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }

  .nav-list {
    display: grid;
    gap: 4px;
    width: 100%;
    margin-inline: auto;
    text-align: left;
  }

  .nav-list a {
    justify-content: flex-start;
    min-height: 48px;
    width: 100%;
    padding-inline: 20px;
    font-size: 16px;
  }

  .nav-list .nav-cta {
    justify-content: space-between;
    width: 100%;
    margin-top: 8px;
    margin-left: 0;
    padding-left: 20px;
  }

  @media (max-width: 767px) {
    .site-nav { right: 16px; }
  }

  .hero-grid {
    position: relative;
    display: block;
    min-height: 100dvh;
  }

  .hero-copy {
    position: absolute;
    z-index: 3;
    right: 24px;
    bottom: max(46px, env(safe-area-inset-bottom));
    left: 24px;
    align-items: center;
    max-width: none;
    padding: 0;
    text-align: center;
  }

  .hero-copy h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .hero-mobile-kicker {
    display: block;
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.16em;
  }

  .hero-desktop-punctuation {
    display: none;
  }

  .hero-lead {
    display: block;
  }

  .hero-statement {
    max-width: none;
    color: #ffffff;
    font-size: clamp(44px, 7.2vw, 68px);
    line-height: 1.08;
    text-shadow: 0 2px 24px rgba(4, 21, 42, 0.24);
  }

  .hero-subline {
    display: block;
    margin-top: 12px;
    font-size: clamp(15px, 2.25vw, 22px);
    font-weight: 520;
    letter-spacing: -0.025em;
    line-height: 1.4;
    white-space: nowrap;
  }

  .hero-description,
  .hero-copy .button-row {
    display: none;
  }

  .hero-media {
    position: absolute;
    inset: 0;
    min-height: 100dvh;
    margin: 0;
    border-radius: 0;
    clip-path: none;
  }

  .hero-media::after {
    z-index: 1;
    display: block;
    background: linear-gradient(180deg, rgb(14 43 76 / 0.02) 34%, rgb(14 43 76 / 0.2) 58%, rgb(14 43 76 / 0.88) 100%);
  }

  .hero-media img {
    object-position: 54% center;
  }

  .section {
    padding-block: 100px;
  }

  .teaching-grid,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-grid {
    height: clamp(540px, 61svh, 620px);
  }

  .teaching-media {
    min-height: 520px;
  }

  .occasion-explorer {
    min-height: 650px;
  }

  .occasion-visual {
    min-height: 650px;
  }

  .faq-layout .section-heading,
  .contact-intro {
    position: static;
  }

  .faq-layout .section-heading {
    margin-bottom: 34px;
  }

  .contact-layout {
    gap: 50px;
  }

  .brand-proof-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .brand-proof-heading h2 {
    max-width: 16em;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (min-width: 768px) and (max-width: 980px) {
  :root {
    --tablet-text-inset: clamp(28px, 4vw, 40px);
  }

  /* Give tablet copy a readable gutter without moving section, photo,
     accordion or form frames. */
  .services .section-heading,
  .occasions .section-heading,
  .gallery .section-heading,
  .performance-story-copy,
  .brand-proof-heading,
  .brand-proof-copy,
  .faq-layout .section-heading {
    padding-inline: var(--tablet-text-inset);
  }

  .contact-intro > h2,
  .contact-intro > h3,
  .contact-intro > p:not(.contact-notice) {
    margin-inline: var(--tablet-text-inset);
  }

  .contact-direct {
    width: min(calc(100% - var(--tablet-text-inset) * 2), 34rem);
    margin-right: auto;
    margin-left: var(--tablet-text-inset);
  }

  .footer-main,
  .footer-bottom {
    padding-inline: var(--tablet-text-inset);
  }

  .hero--cinematic .hero-copy {
    right: calc(20px + var(--tablet-text-inset));
    left: calc(20px + var(--tablet-text-inset));
  }

  .service-copy {
    right: calc(26px + var(--tablet-text-inset) * .4);
    left: calc(26px + var(--tablet-text-inset) * .4);
  }

  .brand-proof-heading h2 {
    max-width: none;
    font-size: clamp(36px, 4.3vw, 43px);
    white-space: nowrap;
  }

  .services {
    padding-bottom: 78px;
  }

  .section.occasions {
    padding-top: 78px;
  }

  .service-copy {
    bottom: 30px;
    width: auto;
    max-width: none;
  }

  .service-copy h3 {
    font-size: clamp(34px, 5vw, 44px);
  }

  .service-copy > p {
    font-size: 14px;
    line-height: 1.68;
  }

  .service-mobile-track.is-scroll-sequence {
    min-height: calc(clamp(540px, 61svh, 620px) + 80dvh);
  }

  .service-mobile-track.is-scroll-sequence .service-grid {
    position: sticky;
    top: calc(104px - var(--opening-lift, 0px));
  }

  .service-grid[data-mobile-service-focus="balanced"] .service-card {
    flex-grow: 1;
  }

  .service-grid[data-mobile-service-focus="magic"] .service-card-magic,
  .service-grid[data-mobile-service-focus="shadow"] .service-card-shadow {
    flex-grow: 4;
  }

  .service-grid[data-mobile-service-focus="magic"] .service-card-shadow,
  .service-grid[data-mobile-service-focus="shadow"] .service-card-magic {
    flex-grow: 1;
    opacity: 0.9;
  }

  .service-grid[data-mobile-service-focus="magic"] .service-card-shadow .service-copy > p,
  .service-grid[data-mobile-service-focus="shadow"] .service-card-magic .service-copy > p {
    max-height: 0;
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }

  .service-grid[data-mobile-service-focus="magic"] .service-card-magic .service-media img,
  .service-grid[data-mobile-service-focus="shadow"] .service-card-shadow .service-media img {
    --media-scale: 1.045;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .occasion-controls {
    left: 16px;
    width: min(334px, calc(100% - 32px));
  }

  .occasion-arrows {
    display: none;
  }
}

@media (max-width: 767px) {
  .opening-content,
  .services {
    overflow: clip;
  }

  .container {
    width: calc(100% - 32px);
  }

  .hero-copy {
    right: 16px;
    bottom: max(34px, env(safe-area-inset-bottom));
    left: 16px;
    justify-content: center;
    padding: 0;
  }

  .hero-media {
    margin: 0;
    border-radius: 0;
  }

  .hero-media::before {
    border-radius: 0;
  }

  .occasions .container {
    width: calc(100% - 40px);
  }

  .hero-copy h1,
  .section-heading h2,
  .teaching-copy > h2,
  .contact-intro > h2 {
    margin-bottom: 16px;
    font-size: 16px;
  }

  .hero-statement {
    font-size: clamp(34px, 10.3vw, 48px);
    letter-spacing: -0.05em;
  }

  .hero-description {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.7;
  }

  .button-row {
    margin-top: 22px;
  }

  .button {
    min-height: 48px;
    padding-inline: 20px;
    font-size: 14px;
  }

  .section {
    padding-block: 78px;
  }

  .section.occasions {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .services {
    padding-bottom: 64px;
  }

  .gallery {
    padding-top: 78px;
    padding-bottom: 64px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h3,
  .teaching-copy > h3,
  .contact-intro > h3 {
    font-size: var(--heading-mobile-size);
  }

  br.mobile-title-break {
    display: block;
  }

  .mobile-title-break + span::before {
    content: "";
  }

  .title-punctuation {
    display: none;
  }

  .mobile-title-line {
    white-space: nowrap;
  }

  .brand-proof-kicker,
  .brand-proof-heading h2,
  .faq-layout .section-heading > h2,
  .faq-layout .section-heading > h3,
  .contact-intro > h2,
  .contact-intro > h3 {
    margin-inline: auto;
    text-align: center;
  }

  .services .section-heading h3,
  .occasions .section-heading h3,
  .gallery .section-heading h3 {
    font-size: var(--heading-mobile-size);
    line-height: var(--heading-leading);
    white-space: normal;
  }

  .section-heading > p,
  .teaching-copy > p,
  .contact-intro > p {
    margin-top: 18px;
    font-size: 15px;
  }

  .services-wordmark,
  .occasions-wordmark {
    top: 34px;
    font-size: clamp(66px, 19vw, 92px);
  }

  .services .section-heading {
    min-height: 220px;
    margin-bottom: 38px;
  }

  .service-grid {
    display: block;
    height: clamp(440px, 64dvh, 620px);
    border-radius: var(--radius-photo);
  }

  .service-card,
  .service-card-magic,
  .service-card-shadow {
    position: absolute;
    right: 0;
    left: 0;
    width: 100%;
    height: 50%;
    min-height: 0;
    transition: height 820ms cubic-bezier(0.22, 1, 0.36, 1), opacity 520ms ease;
  }

  .service-card-magic {
    top: 0;
  }

  .service-card-shadow {
    bottom: 0;
    border-top: 2px solid rgba(255, 255, 255, 0.82);
  }

  .service-mobile-track.is-scroll-sequence {
    min-height: calc(clamp(440px, 64dvh, 620px) + 80dvh);
  }

  .service-mobile-track.is-scroll-sequence .service-grid {
    position: sticky;
    top: 104px;
  }

  .service-grid[data-mobile-service-focus="balanced"] .service-card {
    height: 50%;
  }

  .service-grid[data-mobile-service-focus="magic"] .service-card-magic,
  .service-grid[data-mobile-service-focus="shadow"] .service-card-shadow {
    height: 80%;
  }

  .service-grid[data-mobile-service-focus="magic"] .service-card-shadow,
  .service-grid[data-mobile-service-focus="shadow"] .service-card-magic {
    height: 20%;
  }

  .service-grid[data-mobile-service-focus] .service-card .service-media img {
    filter: brightness(0.66);
  }

  .service-grid[data-mobile-service-focus="balanced"] .service-card .service-media img,
  .service-grid[data-mobile-service-focus="magic"] .service-card-magic .service-media img,
  .service-grid[data-mobile-service-focus="shadow"] .service-card-shadow .service-media img {
    filter: brightness(1);
  }

  .service-grid[data-mobile-service-focus] .service-copy > p {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translate3d(0, 10px, 0);
    transition: max-height 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1), opacity 380ms ease;
  }

  .service-grid[data-mobile-service-focus="magic"] .service-card-magic .service-copy > p,
  .service-grid[data-mobile-service-focus="shadow"] .service-card-shadow .service-copy > p {
    max-height: 160px;
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .service-grid[data-mobile-service-focus] .service-copy h3 {
    transform: scale(0.78);
    transform-origin: left bottom;
    transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .service-grid[data-mobile-service-focus="balanced"] .service-copy h3 {
    transform: scale(0.88);
  }

  .service-grid[data-mobile-service-focus="magic"] .service-card-magic .service-copy h3,
  .service-grid[data-mobile-service-focus="shadow"] .service-card-shadow .service-copy h3 {
    transform: scale(1);
  }

  .service-copy {
    right: 22px;
    bottom: 26px;
    left: 22px;
    gap: 12px;
    width: auto;
    max-width: none;
  }

  .service-copy h3 {
    font-size: 36px;
  }

  .service-copy > p {
    font-size: 14px;
  }

  .service-facts {
    gap: 8px;
  }

  .service-facts div {
    min-width: 0;
    width: 100%;
  }

  .section-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .teaching-grid {
    gap: 36px;
  }

  .teaching-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .teaching-options {
    grid-template-columns: 1fr;
  }

  .teaching-options article {
    min-height: 0;
  }

  .occasion-explorer {
    min-height: clamp(460px, 118vw, 560px);
    border-radius: var(--radius-photo);
  }

  .occasion-explorer::after {
    background: linear-gradient(180deg, rgb(14 43 76 / 0.08) 42%, rgb(14 43 76 / 0.5) 100%);
  }

  .occasion-controls {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: auto;
    transform: none;
    pointer-events: none;
  }

  .occasion-arrows {
    display: contents;
  }

  .occasion-arrows button {
    position: absolute;
    z-index: 4;
    bottom: 32px;
    width: 44px;
    height: 56px;
    border: 0;
    color: var(--navy);
    background: transparent;
    box-shadow: none;
    pointer-events: auto;
  }

  .occasion-arrows button:first-child {
    left: 0;
    padding: 0 10px 0 0;
    transform: none;
  }

  .occasion-arrows button:last-child {
    right: 0;
    padding: 0 0 0 10px;
    transform: none;
  }

  .occasion-arrows button:hover {
    color: var(--blue);
    background: transparent;
    transform: none;
  }

  .occasion-arrow-desktop {
    display: none;
  }

  .occasion-arrow-mobile {
    display: block;
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .occasion-tabs {
    display: none;
  }

  .occasion-tab {
    flex: 0 0 auto;
    width: 8px;
    min-width: 8px;
    height: 8px;
    padding: 0;
    border-radius: var(--pill);
  }

  .occasion-tab.is-active {
    width: 32px;
    min-width: 32px;
    height: 8px;
    padding: 0;
  }

  .occasion-tab-bg,
  .occasion-tab.is-active .occasion-tab-bg {
    border: 0;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: none;
  }

  .occasion-tab.is-active .occasion-tab-bg {
    background: #ffffff;
  }

  .occasion-tab-content {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .occasion-mobile-carousel {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: block;
    overflow: hidden;
    pointer-events: none;
  }

  .occasion-mobile-card {
    position: absolute;
    right: 44px;
    bottom: 32px;
    left: 44px;
    transform: translate3d(0, 0, 0);
    contain: layout style;
    will-change: transform;
  }

  .occasion-mobile-card[data-mobile-slot="previous"] {
    transform: translate3d(calc(-100% - 10px), 0, 0);
  }

  .occasion-mobile-card[data-mobile-slot="current"] {
    z-index: 2;
    transform: translate3d(0, 0, 0);
  }

  .occasion-mobile-card[data-mobile-slot="next"] {
    transform: translate3d(calc(100% + 10px), 0, 0);
  }

  /* Bottom-anchored panel shape; copy never scales with the background. */
  .occasion-mobile-card-bg {
    position: absolute;
    inset: auto 0 0;
    height: 56px;
    border-radius: var(--radius-overlay);
    background: rgba(255, 255, 255, 0.96);
  }

  .occasion-mobile-card[data-mobile-slot="current"] .occasion-mobile-card-bg {
    height: 100%;
  }

  .occasion-mobile-card-copy {
    display: flex;
    position: relative;
    padding: 18px 24px;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    color: var(--navy);
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }

  .occasion-mobile-card[data-mobile-slot="current"] .occasion-mobile-card-copy {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .occasion-mobile-card-copy h4 {
    font-size: 18px;
    line-height: 1.3;
  }

  .occasion-mobile-card-copy p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.65;
  }

  .occasion-visual {
    min-height: 100%;
  }

  .occasion-image {
    height: 100%;
    object-position: 50% 25%;
    transition-duration: 560ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  .occasion-image[src*="annual-"] { object-position: 100% 25%; }
  .occasion-image[src*="corporate-"] { object-position: 48% 25%; }
  .occasion-image[src*="festival-"] { object-position: 54% 25%; }
  .occasion-image[src*="wedding-"] { object-position: 46% 20%; }
  .occasion-image[src*="family-"] { object-position: 65% 25%; }
  .occasion-image[src*="private-"] { object-position: 70% 25%; }

  .occasion-panel {
    display: block;
  }

  .photo-marquee {
    --marquee-gap: 10px;
  }

  .photo-marquee-track {
    padding-block: 18px;
  }

  .photo-marquee-set {
    height: 420px;
  }

  .marquee-column-narrow {
    width: 307.5px;
  }

  .marquee-column-medium {
    width: 307.5px;
  }

  .marquee-tile-wide {
    width: 500px;
  }

  .marquee-tile-portrait {
    width: 300px;
  }

  .marquee-tile {
    border-radius: var(--radius-photo);
  }

  .faq-question {
    min-height: 76px;
    padding: 18px 20px;
    border-radius: 32px;
    font-size: 16px;
  }

  .faq-answer {
    padding-right: 12px;
  }

  .brand-proof {
    padding-block: 72px;
  }

  .brand-proof-layout {
    gap: 26px;
    padding-block: 28px;
  }

  .brand-proof-kicker {
    margin-bottom: 14px;
    font-size: 16px;
  }

  .brand-proof-heading h2 {
    font-size: var(--heading-mobile-size);
  }

  .brand-proof-copy {
    gap: 15px;
    font-size: 15px;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 18px;
  }

  .field-full {
    grid-column: auto;
  }

  .form-progress ol {
    gap: 4px;
  }

  .form-progress ol::before {
    right: 14%;
    left: 14%;
  }

  .form-progress-item strong {
    font-size: 11px;
  }

  .form-step-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .form-step-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .form-step-actions .button {
    width: 100%;
  }

  .field small,
  .form-step-actions > span {
    font-size: 13px;
  }

  .conditional-fields {
    grid-column: auto;
  }

  .conditional-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand {
    width: min(210px, calc(100vw - 104px));
  }

  .hero-copy {
    right: 14px;
    bottom: max(30px, env(safe-area-inset-bottom));
    left: 14px;
    padding: 0;
  }

  .hero-description {
    max-width: 29em;
  }

  .button-row {
    gap: 8px;
  }

  .button {
    padding-inline: 16px;
  }

  .hero-media {
    margin: 0;
  }

  .occasion-panel {
    min-height: 430px;
  }

}

/* Brand artwork: decorative only, anchored to headings without affecting layout. */
.opening-sequence .hero-headline,
.opening-sequence .service-copy h3 { position: relative; isolation: isolate; }
.opening-sequence .hero-headline::after,
.opening-sequence .service-copy h3::after {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  background: url("../images/brand/brand-arc.svg") center / contain no-repeat;
  aspect-ratio: 1; width: 3.2em;
}
.opening-sequence .hero-headline::after {
  width: 4.5em; left: auto; right: -1.55em; top: -1.8em;
}
@media (min-width: 1440px) {
  .opening-sequence .hero-headline::after { translate: 10px 0; }
}
@media (min-width: 981px) and (max-height: 600px) {
  .opening-sequence .hero-headline::after {
    width: 240px; left: calc(100% - .5em); right: auto; top: -90px;
  }
}
.opening-sequence .service-copy h3::after {
  width: 2.85em; left: 2.4em; top: -1.5em;
  opacity: 0; transform: translate3d(8px, 6px, 0);
  transition: opacity 300ms ease, transform 420ms cubic-bezier(.22,1,.36,1);
}
/* Scroll focus is the same state used by the existing responsive panels. */
.opening-sequence .service-grid[data-mobile-service-focus="magic"]:not(:focus-within) .service-card-magic h3::after,
.opening-sequence .service-grid[data-mobile-service-focus="shadow"]:not(:focus-within) .service-card-shadow h3::after,
.opening-sequence .service-card:focus-within h3::after {
  opacity: 1; transform: none;
}
@media (min-width: 981px) and (hover: hover) and (pointer: fine) {
  .opening-sequence .service-grid[data-hovered-service="magic"]:not(:focus-within) .service-card-magic h3::after,
  .opening-sequence .service-grid[data-hovered-service="shadow"]:not(:focus-within) .service-card-shadow h3::after {
    opacity: 1; transform: none;
  }
}
html.hero-intro-pending .opening-sequence .hero-headline::after { opacity: 0; }
html.hero-intro-pending .opening-sequence .is-hero-entering .hero-headline::after {
  animation: brand-arc-enter calc(480ms * var(--hero-intro-rate)) ease calc(720ms * var(--hero-intro-rate)) both;
}
@keyframes brand-arc-enter {
  from { opacity: 0; transform: translate3d(6px, 6px, 0); }
  to { opacity: 1; transform: none; }
}
@media (max-width: 980px) {
  /* Hide the hero artwork when its copy uses the centered layout. */
  .opening-sequence .hero-headline::after { display: none; }
  .opening-sequence .service-copy h3::after { width: 2.65em; left: 2.3em; top: -1.1em; }
}
@media (max-width: 767px) {
  .opening-sequence .service-copy h3::after { width: 2.5em; left: 2.35em; top: -1.05em; }
}
@media (prefers-reduced-motion: reduce) {
  .opening-sequence .hero-headline::after { animation: none !important; opacity: 1 !important; transform: none !important; }
  .opening-sequence .service-copy h3::after { transition: none; transform: none; }
}

/* Photo-led opening. Isolated from the service-card and opening-cover motion. */
.hero.hero--cinematic { min-height: 100svh; background: var(--brand-deep-blue); }
.hero--cinematic .hero-grid { position: relative; display: block; min-height: 100svh; }
.hero--cinematic .hero-media {
  position: absolute; inset: 0; min-height: 0; margin: 0; clip-path: none;
  animation: none;
}
.hero-stage-light {
  display: none; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  /* A single translucent surface keeps the paper focal point and the scene together. */
  background: radial-gradient(ellipse farthest-corner at var(--hero-light-x, 53%) var(--hero-light-y, 23%),
    rgb(38 96 172 / .25) 0%, rgb(14 43 76 / .42) 12%,
    rgb(14 43 76 / .68) 32%, rgb(14 43 76 / .81) 62%, rgb(14 43 76 / .83) 100%);
  transform-origin: var(--hero-light-x, 53%) var(--hero-light-y, 23%);
}
.hero--cinematic { --hero-intro-rate: 1; }
html.hero-intro-pending .is-hero-photo-ready .hero-stage-light { display: block; }
html.hero-intro-pending .is-hero-photo-ready .hero-media { transform: translateZ(0); }
html.hero-intro-pending .is-hero-entering .hero-stage-light {
  animation: hero-stage-illuminate calc(1120ms * var(--hero-intro-rate)) cubic-bezier(.4,0,.2,1) calc(80ms * var(--hero-intro-rate)) both;
}
html.hero-intro-pending .hero--cinematic .hero-copy > h1,
html.hero-intro-pending .hero--cinematic .hero-headline > span,
html.hero-intro-pending .hero--cinematic .hero-tagline,
html.hero-intro-pending .hero--cinematic .hero-copy .button-row { opacity: 0; }
html.hero-intro-pending .hero--cinematic.is-hero-entering .hero-copy > h1 {
  animation: hero-intro-copy calc(450ms * var(--hero-intro-rate)) cubic-bezier(.33,0,.2,1) calc(300ms * var(--hero-intro-rate)) both;
}
html.hero-intro-pending .hero--cinematic.is-hero-entering .hero-headline > span {
  animation: hero-intro-copy calc(600ms * var(--hero-intro-rate)) cubic-bezier(.33,0,.2,1) calc(400ms * var(--hero-intro-rate)) both;
}
html.hero-intro-pending .hero--cinematic.is-hero-entering .hero-tagline {
  animation: hero-intro-copy calc(500ms * var(--hero-intro-rate)) cubic-bezier(.33,0,.2,1) calc(650ms * var(--hero-intro-rate)) both;
}
html.hero-intro-pending .hero--cinematic.is-hero-entering .hero-copy .button-row {
  animation: hero-intro-copy calc(500ms * var(--hero-intro-rate)) cubic-bezier(.33,0,.2,1) calc(800ms * var(--hero-intro-rate)) both;
}
/* Keep the photograph edge-to-edge while the next section covers it. */
.opening-sequence .hero--cinematic .hero-grid { transform: none; will-change: auto; }
@media (min-width: 768px) and (prefers-reduced-motion: no-preference) {
  /* Animate inside the full-bleed frame, independently of the entrance animation. */
  .opening-sequence .hero--cinematic .hero-grid {
    transform: scale(calc(1 + var(--opening-progress, 0) * .12));
    transform-origin: 55% 40%;
    will-change: transform;
  }
  .opening-sequence .hero--cinematic .hero-copy {
    transform: translate3d(0, calc(var(--opening-progress, 0) * -48px), 0);
    opacity: calc(1 - var(--opening-progress, 0) * .65);
  }
  .opening-sequence .hero--cinematic::after {
    background: rgb(14 43 76 / calc(var(--opening-progress, 0) * .3));
  }
}
.hero--cinematic .hero-media::before { display: none; }
.hero--cinematic .hero-media::after {
  background: linear-gradient(0deg, rgb(14 43 76 / .86), rgb(14 43 76 / .26) 42%, transparent 75%);
}
.hero--cinematic .hero-media img {
  display: block; object-position: 57% 42%; transform: none;
  animation: none;
}
.hero--cinematic .hero-copy {
  position: absolute; z-index: 3; inset: auto auto max(64px, 8svh) max(40px, calc((100vw - 1390px) / 2 + 22px));
  width: auto; max-width: none; padding: 0; align-items: flex-start; text-align: left; color: white;
}
.hero--cinematic .hero-copy h1 {
  position: static; width: auto; height: auto; overflow: visible; clip-path: none; clip: auto;
  display: block; margin: 0 0 18px; padding: 0; color: #fff; font-size: clamp(26px, 2.5vw, 40px);
  font-weight: 650; letter-spacing: .06em; line-height: 1.3; white-space: nowrap;
  animation: none;
}
.hero--cinematic .hero-headline {
  margin: 0; padding: 0; color: white; font-size: clamp(40px, 4.6vw, 66px);
  font-weight: 400; letter-spacing: .04em; line-height: 1.24; white-space: nowrap;
}
.hero-headline > span { display: block; overflow: hidden; padding-block: .06em; }
.hero-headline i {
  display: inline-block; font-style: normal;
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
  animation: none;
}
.hero--cinematic .hero-tagline {
  margin: -2px 0 0; color: #fff; font-size: clamp(18px, 1.85vw, 26px);
  font-weight: 600; line-height: 1.6; letter-spacing: .055em; white-space: nowrap;
  animation: none;
}
.hero--cinematic .hero-copy .button-row { display: flex; margin-top: 28px; animation: none; }
.hero--cinematic .hero-explore {
  min-height: 48px; padding: 10px 23px; gap: var(--button-gap); border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--pill); color: white; background: transparent; box-shadow: none; font-size: 15px;
}
.hero--cinematic .hero-explore:hover { background: white; color: var(--navy); }
@keyframes hero-stage-illuminate {
  0% { opacity: 1; transform: scale(1); }
  38% { opacity: .8; transform: scale(1.28); }
  78% { opacity: .15; transform: scale(1.75); }
  100% { opacity: 0; transform: scale(2.05); }
}
@keyframes hero-intro-copy {
  from { transform: translate3d(0, 10px, 0); opacity: 0; }
  to { transform: translate3d(0, 0, 0); opacity: 1; }
}
@media (max-width: 767px) {
  .hero--cinematic { --hero-intro-rate: .85; }
  .opening-sequence .hero--cinematic .hero-tagline { margin-top: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  html.hero-intro-pending .hero-stage-light { display: none; }
  html.hero-intro-pending .hero--cinematic .hero-copy > h1,
  html.hero-intro-pending .hero--cinematic .hero-headline > span,
  html.hero-intro-pending .hero--cinematic .hero-tagline,
  html.hero-intro-pending .hero--cinematic .hero-copy .button-row { animation: none; opacity: 1; transform: none; }
}
@media (max-width: 980px) {
  .hero--cinematic .hero-copy {
    inset: auto 20px max(38px, 6svh) 20px; align-items: center; text-align: center;
  }
  .hero--cinematic .hero-media img { object-position: 54% 35%; }
  .hero--cinematic .hero-headline { font-size: clamp(34px, 7vw, 52px); }
  .hero--cinematic .hero-copy h1 { margin-bottom: 14px; font-size: clamp(24px, 5.8vw, 30px); }
  .hero--cinematic .hero-tagline { margin-top: -4px; font-size: clamp(16px, 4vw, 22px); letter-spacing: .025em; }
  .hero--cinematic .hero-copy .button-row { margin-top: 24px; }
}
@media (max-height: 600px) {
  .hero--cinematic .hero-copy { bottom: 24px; }
  .hero--cinematic .hero-headline { font-size: 34px; }
  .hero--cinematic .hero-tagline { margin-top: 10px; }
  .hero--cinematic .hero-copy .button-row { margin-top: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .photo-marquee {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .photo-marquee::-webkit-scrollbar {
    display: none;
  }

  .photo-marquee-track {
    animation: none;
  }

  .marquee-tile img {
    transition: none;
  }
}

@media (min-width: 768px) and (max-width: 980px),
  (min-width: 981px) and (max-width: 1366px) and (hover: none) and (pointer: coarse) {
  .opening-content,
  .services {
    overflow: clip;
  }

  .service-mobile-track.is-scroll-sequence .service-grid {
    position: sticky;
    top: calc(104px - var(--opening-lift, 0px));
  }

  .service-grid[data-mobile-service-focus="magic"] .service-card-shadow .service-copy > p,
  .service-grid[data-mobile-service-focus="shadow"] .service-card-magic .service-copy > p,
  .service-grid[data-mobile-service-focus="magic"] .service-card-shadow .service-link-label,
  .service-grid[data-mobile-service-focus="shadow"] .service-card-magic .service-link-label {
    max-height: 0;
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }

  .service-grid[data-mobile-service-focus="magic"] .service-card-shadow .service-copy h3,
  .service-grid[data-mobile-service-focus="shadow"] .service-card-magic .service-copy h3 {
    font-size: clamp(24px, 3vw, 32px);
    opacity: 0.52;
    white-space: nowrap;
  }

  .service-grid[data-mobile-service-focus="magic"] .service-card-shadow .service-media img,
  .service-grid[data-mobile-service-focus="shadow"] .service-card-magic .service-media img {
    filter: brightness(0.66);
  }
}

@media (min-width: 768px) and (max-width: 980px) and (orientation: landscape),
  (min-width: 981px) and (max-width: 1366px) and (hover: none) and (pointer: coarse) and (orientation: landscape) {
  .service-mobile-track.is-scroll-sequence {
    min-height: calc(clamp(540px, 67svh, 690px) + 80dvh);
  }

  .service-grid[data-mobile-service-focus="balanced"] .service-card {
    flex-grow: 1;
  }

  .service-grid[data-mobile-service-focus="magic"] .service-card-magic,
  .service-grid[data-mobile-service-focus="shadow"] .service-card-shadow {
    flex-grow: 7;
  }

  .service-grid[data-mobile-service-focus="magic"] .service-card-shadow,
  .service-grid[data-mobile-service-focus="shadow"] .service-card-magic {
    flex-grow: 3;
    opacity: 0.9;
  }
}

@media (min-width: 768px) and (max-width: 980px) and (orientation: portrait),
  (min-width: 981px) and (max-width: 1366px) and (hover: none) and (pointer: coarse) and (orientation: portrait) {
  .service-grid {
    display: block;
    height: clamp(600px, 72dvh, 820px);
    border-radius: var(--radius-photo);
  }

  .service-card,
  .service-card-magic,
  .service-card-shadow {
    position: absolute;
    right: 0;
    left: 0;
    width: 100%;
    height: 50%;
    min-height: 0;
    transition: height 820ms cubic-bezier(0.22, 1, 0.36, 1), opacity 520ms ease;
  }

  .service-card-magic {
    top: 0;
  }

  .service-card-shadow {
    bottom: 0;
    border-top: 2px solid rgba(255, 255, 255, 0.82);
  }

  .service-mobile-track.is-scroll-sequence {
    min-height: calc(clamp(600px, 72dvh, 820px) + 80dvh);
  }

  .service-grid[data-mobile-service-focus="balanced"] .service-card {
    height: 50%;
  }

  .service-grid[data-mobile-service-focus="magic"] .service-card-magic,
  .service-grid[data-mobile-service-focus="shadow"] .service-card-shadow {
    height: 80%;
  }

  .service-grid[data-mobile-service-focus="magic"] .service-card-shadow,
  .service-grid[data-mobile-service-focus="shadow"] .service-card-magic {
    height: 20%;
  }
}

@media (max-width: 767px) {
  .service-grid[data-mobile-service-focus="magic"] .service-card-shadow .service-link-label,
  .service-grid[data-mobile-service-focus="shadow"] .service-card-magic .service-link-label {
    max-height: 0;
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }

  .service-grid[data-mobile-service-focus="magic"] .service-card-shadow .service-copy h3,
  .service-grid[data-mobile-service-focus="shadow"] .service-card-magic .service-copy h3 {
    opacity: 0.52;
    white-space: nowrap;
  }
}

@media (max-width: 360px) {
  .hero-statement {
    font-size: 31px;
  }

  .hero-description {
    font-size: 13px;
  }

  .button-row {
    flex-wrap: nowrap;
  }

  .button {
    min-height: 44px;
    padding-inline: 13px;
    font-size: 12px;
  }
}

@media (max-width: 767px) and (max-height: 650px) {
  .hero-copy {
    padding-top: 94px;
    padding-bottom: 18px;
  }

  .hero-copy h1 {
    margin-bottom: 8px;
  }

  .hero-statement {
    font-size: 30px;
    line-height: 1.16;
  }

  .hero-description {
    margin-top: 10px;
    line-height: 1.55;
  }

  .button-row {
    margin-top: 14px;
  }

  .hero-grid {
    grid-template-rows: auto 130px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .button-primary:hover {
    transform: translateY(-2px);
  }

  .button-secondary:hover {
    transform: translateY(-2px);
  }
}

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

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

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .nav-shell,
  .site-nav {
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
