/* Kusam Events · stylesheet
   Same DNA as the Kusam Groups site: deep navy ground, gold accents,
   Cormorant Garamond headlines, DM Sans body, square corners, gold hairlines. */

:root {
  --navy: #080C18;
  --navy-2: #0D1324;
  --navy-3: #131B31;
  --gold: #C9A84C;
  --gold-2: #E2C27D;
  --gold-deep: #A07830;
  --gold-line: rgba(201, 168, 76, .2);
  --gold-line-2: rgba(201, 168, 76, .4);
  --text: rgba(255, 255, 255, .82);
  --text-2: rgba(255, 255, 255, .62);
  --mute: rgba(255, 255, 255, .42);
  --line: rgba(255, 255, 255, .08);
  --red: #e0392b;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --gutter: clamp(1.1rem, 5vw, 5rem);
  --wrap: 1280px;
  --nav-h: 72px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --gold-grad: linear-gradient(135deg, #E2C27D 0%, #C9A84C 45%, #A07830 100%);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--navy); color: var(--text);
  font-family: var(--sans); font-size: 1rem; font-weight: 300; line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
section[id], [id="top"] { scroll-margin-top: var(--nav-h); }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 500; color: #fff; }
p { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none; }
button { font: inherit; }
::selection { background: rgba(201, 168, 76, .35); color: #fff; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: #7a6428; }

.kicker { font-size: .66rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .8rem; }
.wrap { width: min(var(--wrap), 100% - var(--gutter) * 2); margin-inline: auto; }
.wrap--narrow { width: min(820px, 100% - var(--gutter) * 2); }

.skip-link { position: fixed; left: -9999px; top: .6rem; z-index: 999; background: var(--gold); color: var(--navy); padding: .7rem 1.2rem; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; }
.skip-link:focus { left: .6rem; }
:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; }

/* ---------- ambient layers: progress bar, grain, cursor glow ---------- */
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 100%; z-index: 400; background: var(--gold-grad); transform-origin: 0 50%; transform: scaleX(0); pointer-events: none; }
.grain {
  position: fixed; inset: -50%; width: 200%; height: 200%; z-index: 350; pointer-events: none; opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 1.4s steps(6) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); } 20% { transform: translate(-4%, 3%); } 40% { transform: translate(3%, -5%); }
  60% { transform: translate(-5%, -2%); } 80% { transform: translate(4%, 5%); }
}
.glow {
  position: fixed; left: 0; top: 0; width: 520px; height: 520px; z-index: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(circle, rgba(201, 168, 76, .12), transparent 62%);
  transform: translate(-50%, -50%); transition: opacity .6s;
}
body.has-pointer .glow { opacity: 1; }

/* ---------- buttons ---------- */
.btn {
  position: relative; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--gold-grad); color: var(--navy); padding: .95rem 1.6rem; border-radius: 1px; border: 1px solid transparent;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; text-decoration: none;
  transition: transform .2s var(--ease), box-shadow .3s var(--ease), background .2s, color .2s, border-color .2s;
  cursor: pointer; min-height: 48px; white-space: nowrap;
}
.btn::after { content: ""; position: absolute; top: 0; left: -80%; width: 50%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .45), transparent); transform: skewX(-20deg); transition: left .6s var(--ease); }
.btn:hover::after { left: 130%; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -14px rgba(201, 168, 76, .7); }
.btn:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--gold); border-color: var(--gold-line-2); }
.btn--ghost:hover { background: rgba(201, 168, 76, .08); border-color: var(--gold); color: var(--gold-2); box-shadow: none; }
.btn--ghost::after { display: none; }
.btn--sm { padding: .6rem 1.2rem; font-size: .66rem; min-height: 40px; }
.btn--block { width: 100%; }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 300; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0 var(--gutter);
  background: rgba(8, 12, 24, .82); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease), transform .45s var(--ease-out);
}
.nav.is-solid { background: rgba(8, 12, 24, .96); border-bottom-color: var(--gold-line); }
.nav.is-hidden { transform: translateY(-100%); }
.nav__brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; flex-shrink: 0; }
.nav__mark { height: 40px; width: auto; transition: transform .5s var(--ease-out); }
.nav__brand:hover .nav__mark { transform: rotate(-6deg) scale(1.06); }
.nav__words { display: block; line-height: 1.05; }
.nav__name { display: block; font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: #fff; letter-spacing: .04em; }
.nav__sub { display: block; font-size: .58rem; letter-spacing: .16em; color: var(--gold); text-transform: uppercase; font-weight: 600; margin-top: .15rem; }
.nav__links { display: none; gap: clamp(.9rem, 1.6vw, 1.8rem); margin: 0 auto; }
.nav__links a { position: relative; text-decoration: none; font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .68); padding: .4rem 0; transition: color .18s; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--gold); transition: right .3s var(--ease-out); }
.nav__links a:hover, .nav__links a.is-active { color: var(--gold); }
.nav__links a:hover::after, .nav__links a.is-active::after { right: 0; }
.nav__right { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.nav__burger { width: 46px; height: 46px; background: transparent; border: 1px solid rgba(201, 168, 76, .3); border-radius: 2px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; cursor: pointer; }
.nav__burger span { display: block; width: 20px; height: 1.5px; background: var(--gold); transition: transform .3s var(--ease), opacity .3s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.menu { position: fixed; inset: var(--nav-h) 0 0 0; z-index: 299; background: rgba(5, 8, 16, .985); backdrop-filter: blur(20px); padding: 1rem var(--gutter) 3rem; overflow-y: auto; display: flex; flex-direction: column; justify-content: space-between; border-top: 1px solid var(--gold-line); }
.menu[hidden] { display: none; }
.menu nav a { display: block; padding: .95rem .4rem; min-height: 48px; color: #fff; font-size: .95rem; font-weight: 500; letter-spacing: .06em; text-decoration: none; border-bottom: 1px solid var(--line); animation: menuIn .5s var(--ease-out) both; }
.menu nav a:nth-child(2) { animation-delay: .04s } .menu nav a:nth-child(3) { animation-delay: .08s } .menu nav a:nth-child(4) { animation-delay: .12s } .menu nav a:nth-child(5) { animation-delay: .16s } .menu nav a:nth-child(6) { animation-delay: .2s } .menu nav a:nth-child(7) { animation-delay: .24s } .menu nav a:nth-child(8) { animation-delay: .28s }
@keyframes menuIn { from { opacity: 0; transform: translateX(-14px); } to { opacity: 1; transform: none; } }
.menu nav a.menu__cta { color: var(--gold); font-weight: 700; border-bottom: 0; }
.menu__foot { display: flex; flex-wrap: wrap; gap: 1.5rem; padding-top: 2rem; }
.menu__foot a { color: var(--gold); text-decoration: none; font-size: .9rem; }
@media (min-width: 1080px) { .nav__links { display: flex; } .nav__burger { display: none; } }
@media (max-width: 399px) { .nav .btn--sm { display: none; } }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; padding-top: var(--nav-h); }
.hero__media { position: absolute; inset: 0; z-index: 0; will-change: transform; }
.hero__bg { width: 100%; height: 100%; object-fit: cover; object-position: 58% 78%; opacity: .62; animation: kenburns 18s var(--ease-out) both; }
@keyframes kenburns { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero__veil { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(90deg, rgba(8, 12, 24, .96) 0%, rgba(8, 12, 24, .85) 36%, rgba(8, 12, 24, .35) 68%, rgba(8, 12, 24, .15) 100%),
  linear-gradient(180deg, rgba(8, 12, 24, .7) 0%, rgba(8, 12, 24, 0) 28%, rgba(8, 12, 24, .1) 62%, var(--navy) 100%); }
.hero__watermark { position: absolute; right: -3vw; top: 6%; height: 92%; width: auto; z-index: 1; opacity: .07; pointer-events: none; animation: floatY 9s ease-in-out infinite; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero__inner { position: relative; z-index: 2; padding-bottom: clamp(3rem, 8vw, 6rem); }

.onair { display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1.4rem; padding: .45rem .9rem; border: 1px solid var(--red); color: #fff; font-size: .66rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; animation: neon 3.2s infinite; box-shadow: 0 0 14px rgba(224, 57, 43, .35), inset 0 0 8px rgba(224, 57, 43, .2); }
.onair__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 8px var(--red); animation: blink 1.1s steps(2, start) infinite; }
@keyframes blink { to { visibility: hidden; } }
@keyframes neon { 0%, 18%, 22%, 63%, 100% { opacity: 1; } 20% { opacity: .55; } 64%, 66% { opacity: .7; } }

.hero__title { font-size: clamp(2.7rem, 7.6vw, 6.2rem); line-height: .98; letter-spacing: -.01em; font-weight: 500; max-width: 15ch; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; transform: translateY(110%); animation: lineUp 1.1s var(--ease-out) forwards; }
.hero__title .line:nth-child(2) > span { animation-delay: .12s; }
.hero__title .line:nth-child(3) > span { animation-delay: .24s; }
@keyframes lineUp { to { transform: translateY(0); } }
.hero__title em { font-style: italic; font-weight: 400; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lede { margin-top: 1.5rem; max-width: 34rem; font-size: clamp(1rem, 1.3vw, 1.1rem); opacity: 0; animation: fadeUp 1s var(--ease-out) .5s forwards; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; opacity: 0; animation: fadeUp 1s var(--ease-out) .7s forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.ticker { position: relative; z-index: 2; border-top: 1px solid var(--gold-line); border-bottom: 1px solid var(--gold-line); overflow: hidden; padding: .9rem 0; background: rgba(8, 12, 24, .7); backdrop-filter: blur(6px); }
.ticker__track { display: flex; gap: 3rem; width: max-content; animation: ticker 42s linear infinite; font-family: var(--serif); font-size: 1.15rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .75); }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__track span::before { content: "◆"; color: var(--gold); font-size: .5rem; vertical-align: middle; margin-right: 3rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- facts ---------- */
.facts { display: grid; grid-template-columns: repeat(2, 1fr); border-bottom: 1px solid var(--gold-line); }
.facts > div { padding: 1.3rem 0; border-bottom: 1px solid var(--line); }
.facts > div:nth-child(odd) { padding-right: 1rem; border-right: 1px solid var(--line); }
.facts > div:nth-child(even) { padding-left: 1rem; }
.facts dt { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.facts dd { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.3rem); color: #fff; line-height: 1.1; margin-top: .2rem; font-variant-numeric: tabular-nums; }
@media (min-width: 820px) {
  .facts { grid-template-columns: repeat(4, 1fr); }
  .facts > div { border-bottom: 0; padding: 1.7rem 1.6rem; border-right: 1px solid var(--line); }
  .facts > div:first-child { padding-left: 0; }
  .facts > div:last-child { border-right: 0; }
}

/* ---------- statement ---------- */
.statement { padding: clamp(3.5rem, 8vw, 6rem) 0; background: var(--navy-2); border-bottom: 1px solid var(--gold-line); }
.statement__grid { display: grid; gap: 2.5rem; align-items: center; }
.statement__text { font-family: var(--serif); font-size: clamp(1.5rem, 2.8vw, 2.3rem); line-height: 1.3; color: #fff; font-weight: 400; text-wrap: pretty; }
.statement__fig { margin: 0; border: 1px solid var(--gold-line); padding: .5rem; background: var(--navy); max-width: 440px; }
.statement__fig img { width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover; object-position: 60% 30%; }
@media (min-width: 900px) { .statement__grid { grid-template-columns: 1.15fr .85fr; gap: 4rem; } .statement__fig { justify-self: end; } }

/* ---------- sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; border-top: 1px solid var(--gold-line); }
.section--alt { background: var(--navy-2); }
.sec-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: clamp(1.6rem, 4vw, 2.6rem); }
.sec-head > .kicker { flex-basis: 100%; margin-bottom: 0; }
.sec-head h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); line-height: 1.05; position: relative; }
.sec-head h2::after { content: ""; display: block; width: 3.5rem; height: 1px; background: var(--gold); margin-top: .8rem; transform: scaleX(0); transform-origin: 0 50%; transition: transform .9s var(--ease-out) .2s; }
.sec-head.is-in h2::after { transform: scaleX(1); }

/* ---------- services ---------- */
.svc-grid { display: grid; gap: 1px; background: var(--gold-line); border: 1px solid var(--gold-line); }
.svc { background: var(--navy); display: grid; grid-template-rows: auto 1fr; transition: background .3s; }
.svc:hover { background: var(--navy-3); }
.svc__img { overflow: hidden; aspect-ratio: 4 / 3; }
.svc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.svc:hover .svc__img img { transform: scale(1.06); }
.svc__body { padding: 1.4rem; }
.svc__num { font-family: var(--serif); font-size: 1rem; color: var(--gold); font-weight: 600; letter-spacing: .06em; }
.svc h3 { font-size: 1.6rem; line-height: 1.1; margin: .3rem 0 .5rem; }
.svc p { color: var(--text-2); font-size: .9rem; }
@media (min-width: 640px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .svc-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- process ---------- */
.chain { display: grid; gap: 1px; background: var(--gold-line); border: 1px solid var(--gold-line); }
.chain__step { background: var(--navy-2); padding: 1.5rem; position: relative; overflow: hidden; }
.chain__step::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; background: var(--gold-grad); transform: scaleX(0); transform-origin: 0 50%; transition: transform .6s var(--ease-out); }
.chain__step:hover::after { transform: scaleX(1); }
.chain__num { display: inline-grid; place-items: center; width: 32px; height: 32px; border: 1px solid var(--gold); color: var(--gold); font-family: var(--serif); font-size: 1.1rem; font-weight: 600; margin-bottom: 1rem; }
.chain__step h3 { font-size: 1.55rem; line-height: 1.1; margin-bottom: .4rem; }
.chain__step p { color: var(--text-2); font-size: .9rem; }
@media (min-width: 640px) { .chain { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .chain { grid-template-columns: repeat(4, 1fr); } }

/* ---------- packages ---------- */
.tiers { display: grid; gap: 1rem; }
.tier { background: var(--navy-2); border: 1px solid var(--gold-line); padding: 1.6rem; display: flex; flex-direction: column; gap: .8rem; transition: border-color .3s, transform .4s var(--ease-out); position: relative; }
.tier:hover { border-color: var(--gold-line-2); transform: translateY(-4px); }
.tier__kicker { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.tier h3 { font-size: 1.7rem; line-height: 1.05; }
.tier__price { font-family: var(--serif); font-size: 2.5rem; color: #fff; line-height: 1; display: flex; align-items: baseline; gap: .5rem; }
.tier__price small { font-family: var(--sans); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); }
.tier ul { display: grid; gap: .4rem; border-top: 1px solid var(--line); padding-top: .9rem; margin-bottom: auto; }
.tier li { position: relative; padding-left: 1.1rem; font-size: .9rem; }
.tier li::before { content: ""; position: absolute; left: 0; top: .7em; width: .5rem; height: 1px; background: var(--gold); }
.tier--lead { border-color: var(--gold); background: linear-gradient(180deg, rgba(201, 168, 76, .12), rgba(201, 168, 76, .03) 40%, var(--navy-2)); }
.tier--lead::before { content: ""; position: absolute; inset: -1px; pointer-events: none; background: linear-gradient(120deg, transparent 30%, rgba(226, 194, 125, .45) 50%, transparent 70%); background-size: 250% 100%; animation: shimmer 4.5s linear infinite; mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; padding: 1px; }
@keyframes shimmer { from { background-position: 120% 0; } to { background-position: -130% 0; } }
.foot-note { margin-top: 1.2rem; color: var(--mute); font-size: .82rem; }
@media (min-width: 640px) { .tiers { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .tiers { grid-template-columns: repeat(4, 1fr); } }

/* ---------- gallery carousel ---------- */
.section--flush { padding-bottom: clamp(2.5rem, 6vw, 4rem); }
.carousel__nav { display: flex; gap: .5rem; }
.carousel__btn { width: 46px; height: 46px; background: transparent; border: 1px solid var(--gold-line-2); color: var(--gold); font-size: 1.1rem; cursor: pointer; transition: background .2s, border-color .2s; }
.carousel__btn:hover { background: rgba(201, 168, 76, .1); border-color: var(--gold); }
.carousel { overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; cursor: grab; }
.carousel::-webkit-scrollbar { display: none; }
.carousel.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.carousel__track { display: flex; gap: 1rem; padding: .5rem var(--gutter) 1rem; width: max-content; }
.carousel__track::after { content: ""; flex: 0 0 calc(var(--gutter) - 1rem); }
.slide { flex: 0 0 auto; height: clamp(240px, 42vw, 420px); scroll-snap-align: start; border: 1px solid var(--gold-line); background: var(--navy); overflow: hidden; display: block; transition: border-color .3s, transform .5s var(--ease-out); }
.slide img { height: 100%; width: auto; transition: transform .8s var(--ease-out), filter .4s; filter: saturate(.9); }
.slide:hover { border-color: var(--gold-line-2); transform: translateY(-4px); }
.slide:hover img { transform: scale(1.03); filter: saturate(1); }
.carousel__dots { display: flex; gap: .45rem; margin-top: .8rem; }
.carousel__dots i { width: 22px; height: 2px; background: var(--line); transition: background .3s; }
.carousel__dots i.is-on { background: var(--gold); }

/* ---------- events ---------- */
.evgrid { display: grid; gap: 1px; background: var(--gold-line); border: 1px solid var(--gold-line); counter-reset: ev; }
.ev { background: var(--navy); padding: 1.4rem; display: grid; gap: .3rem; transition: background .3s; }
.ev:hover { background: var(--navy-3); }
.ev::before { counter-increment: ev; content: "0" counter(ev); font-family: var(--serif); font-size: .95rem; color: var(--gold); font-weight: 600; letter-spacing: .06em; }
.ev h3 { font-size: 1.5rem; line-height: 1.1; }
.ev p { color: var(--text-2); font-size: .88rem; }
@media (min-width: 600px) { .evgrid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .evgrid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- people ---------- */
.people { display: grid; gap: 1px; background: var(--gold-line); border: 1px solid var(--gold-line); }
.person { background: var(--navy-2); padding: 1.7rem; }
.person h3 { font-size: 2rem; line-height: 1.05; margin-bottom: .6rem; }
.person p { color: var(--text-2); }
.person__contact { margin-top: .9rem; }
.person__contact a { color: #fff; text-decoration: none; border-bottom: 1px solid var(--gold-line-2); font-weight: 500; }
.person blockquote { margin: 0; padding-left: 1rem; border-left: 2px solid var(--gold); }
.person blockquote p { font-family: var(--serif); font-size: 1.3rem; line-height: 1.35; color: #fff; font-style: italic; }
.person cite { display: block; margin-top: .5rem; font-style: normal; font-size: .74rem; letter-spacing: .06em; color: var(--gold); }
@media (min-width: 800px) { .people { grid-template-columns: 1fr 1fr; } }

/* ---------- faq ---------- */
.faq { border-top: 1px solid var(--gold-line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 1.05rem 2.5rem 1.05rem 0; position: relative; font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 500; color: #fff; line-height: 1.25; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: .2rem; top: 50%; transform: translateY(-50%); font-family: var(--serif); font-size: 1.6rem; color: var(--gold); transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 0 1.2rem; color: var(--text-2); max-width: 44rem; animation: fadeUp .4s var(--ease-out); }

/* ---------- contact ---------- */
.contact { display: grid; gap: 2.5rem; }
.contact__copy h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); line-height: 1.05; margin-bottom: 1.2rem; }
.contact__list { display: grid; gap: 1rem; }
.contact__list dt { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.contact__list dd { margin-top: .15rem; line-height: 1.5; color: #fff; }
.contact__list a { color: #fff; text-decoration: none; border-bottom: 1px solid var(--gold-line-2); }
.contact__list a:hover { border-bottom-color: var(--gold); color: var(--gold-2); }
.map { margin-top: 1.6rem; border: 1px solid var(--gold-line); }
.map iframe { display: block; width: 100%; height: 240px; border: 0; filter: grayscale(1) invert(.92) hue-rotate(180deg) contrast(.9); }

.form { display: grid; gap: .9rem; padding: 1.6rem; border: 1px solid var(--gold-line); background: var(--navy); align-self: start; }
.form__note { font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; color: var(--mute); }
.form__row { display: grid; gap: .35rem; }
.form__row--2 { grid-template-columns: 1fr; }
.form__row--2 > div { display: grid; gap: .35rem; }
.form label { font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.form input, .form select, .form textarea { width: 100%; background: var(--navy-2); color: #fff; border: 1px solid var(--gold-line); border-radius: 1px; padding: .7rem .85rem; font: inherit; font-size: .95rem; min-height: 46px; color-scheme: dark; transition: border-color .2s; }
.form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.form input::placeholder, .form textarea::placeholder { color: var(--mute); }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 168, 76, .18); }
.form textarea { resize: vertical; }
.form input[aria-invalid="true"] { border-color: var(--red); animation: shake .35s; }
@keyframes shake { 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }
@media (min-width: 560px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .contact { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; } }

/* ---------- footer ---------- */
.foot { border-top: 1px solid var(--gold-line); padding: 3rem 0 5.5rem; }
.foot__grid { display: grid; gap: 2rem; align-items: center; }
.foot__lockup { width: 170px; }
.foot__links { display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; }
.foot__links a { color: rgba(255, 255, 255, .7); text-decoration: none; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; padding: .3rem 0; transition: color .2s; }
.foot__links a:hover { color: var(--gold); }
.foot__legal { display: flex; align-items: center; gap: .8rem; font-size: .74rem; letter-spacing: .04em; color: var(--mute); padding-top: 1.6rem; border-top: 1px solid var(--line); }
.foot__legal img { height: 30px; width: auto; }
@media (min-width: 900px) { .foot__grid { grid-template-columns: auto 1fr; } .foot__links { justify-content: flex-end; } .foot__legal { grid-column: 1 / -1; } }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; right: 1rem; bottom: 1rem; z-index: 90; width: 52px; height: 52px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 30px -10px rgba(0, 0, 0, .7); transition: transform .25s var(--ease); }
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366; animation: ring 2.4s ease-out infinite; }
@keyframes ring { from { transform: scale(1); opacity: .7; } to { transform: scale(1.7); opacity: 0; } }
.wa-float:hover { transform: translateY(-2px); }

/* ---------- lightbox ---------- */
.lightbox { border: 0; padding: 0; background: transparent; max-width: 100vw; max-height: 100vh; width: 100vw; height: 100vh; }
.lightbox::backdrop { background: rgba(5, 8, 16, .94); backdrop-filter: blur(6px); }
.lightbox[open] figure { animation: zoomIn .35s var(--ease-out); }
@keyframes zoomIn { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: none; } }
.lightbox figure { margin: 0; width: 100%; height: 100%; display: grid; place-items: center; grid-template-rows: 1fr auto; padding: 3.5rem 1rem 1.5rem; }
.lightbox img { max-width: min(96vw, 1200px); max-height: calc(100vh - 8rem); width: auto; height: auto; border: 1px solid var(--gold-line-2); }
.lightbox figcaption { color: rgba(255, 255, 255, .7); font-size: .78rem; letter-spacing: .1em; text-align: center; padding-top: .8rem; text-transform: uppercase; }
.lightbox__close { position: fixed; top: 1rem; right: 1rem; width: 46px; height: 46px; z-index: 2; background: transparent; border: 1px solid var(--gold-line-2); color: var(--gold); font-size: 1.8rem; line-height: 1; cursor: pointer; }
.lightbox__close:hover { background: rgba(201, 168, 76, .12); }

/* ---------- reveal system ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.stagger > .reveal:nth-child(2) { transition-delay: .08s } .stagger > .reveal:nth-child(3) { transition-delay: .16s } .stagger > .reveal:nth-child(4) { transition-delay: .24s }
.stagger > .reveal:nth-child(5) { transition-delay: .32s } .stagger > .reveal:nth-child(6) { transition-delay: .4s } .stagger > .reveal:nth-child(7) { transition-delay: .48s }
.wipe { overflow: hidden; }
.wipe img { clip-path: inset(0 100% 0 0); transform: scale(1.12); transition: clip-path 1.1s var(--ease-out), transform 1.4s var(--ease-out); }
.wipe.is-in img { clip-path: inset(0 0 0 0); transform: scale(1); }
.svc:hover .svc__img.wipe.is-in img { transform: scale(1.06); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .wipe img { transform: none; clip-path: none; transition: none; }
  .hero__title .line > span, .hero__lede, .hero__actions { animation: none; transform: none; opacity: 1; }
  .hero__bg, .hero__watermark, .ticker__track, .grain, .onair, .onair__dot, .tier--lead::before, .wa-float::before { animation: none; }
  .grain { display: none; }
  * { transition-duration: .01ms !important; }
}

@media print {
  .nav, .menu, .wa-float, .map, .form, .lightbox, .grain, .glow, .progress, .ticker { display: none !important; }
  body { background: #fff; color: #000; }
  .reveal { opacity: 1; transform: none; } .wipe img { clip-path: none; transform: none; }
}
