/* =========================================================
   D. KRIETON — Dark cinematic studio theme
   Shared stylesheet for all pages
   ========================================================= */

:root {
  --bg:           #0a0908;
  --bg-soft:      #131210;
  --bg-elev:      #1a1815;
  --line:         #2a2620;
  --text:         #f3ece0;
  --text-dim:     #aea69a;
  --text-mute:    #6e6759;
  --gold:         #c9a961;
  --gold-bright:  #e2c280;
  --gold-dim:     #8a7740;
  --danger:       #d96b5a;
  --success:      #6fbf73;

  --maxw: 1180px;
  --radius: 4px;
  --radius-lg: 10px;

  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  /* subtle film-grain feel via layered gradients */
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(201,169,97,0.08), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(201,169,97,0.05), transparent 60%),
    var(--bg);
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold-bright); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 .5em 0;
  color: var(--text);
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
p  { margin: 0 0 1em 0; color: var(--text-dim); }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: .75rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.25rem;
  display: inline-block;
}

.italic-accent { font-style: italic; color: var(--gold-bright); font-weight: 400; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: clamp(70px, 10vw, 130px) 0; }
section.tight { padding: clamp(40px, 6vw, 70px) 0; }

/* =========================================================
   NAV
   ========================================================= */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 9, 8, 0.7);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.logo .dot { color: var(--gold); }
.logo-mark {
  display: block;
  height: 38px;
  width: auto;
  border-radius: 6px;
  background: transparent;
  /* Image has a cream radial background — knock it back a touch on dark theme */
  filter: contrast(1.05);
}
.site-foot .logo-mark { height: 56px; border-radius: 8px; }

/* Brand stamp — small badge that can sit in hero corner / sections */
.brand-stamp {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 14px 8px 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.brand-stamp img {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
.brand-stamp .stamp-text {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.brand-stamp .stamp-text b { color: var(--gold); font-weight: 500; }
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  color: var(--text-dim);
  font-size: .92rem;
  letter-spacing: .03em;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1px; background: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 8px 12px;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius);
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 14px 24px; width: 100%; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--gold);
  color: #1a1308;
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: #1a1308;
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -10px rgba(201,169,97,0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(80px, 14vw, 160px) 0 clamp(70px, 10vw, 120px);
  overflow: hidden;
  isolation: isolate;
}
/* Background photo layer (set per-page via inline --hero-img) */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-img, none);
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  filter: saturate(0.85) contrast(1.05);
  opacity: .55;
}
/* Gradient + grid overlay sits on top of the photo to keep text readable */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(180deg, rgba(10,9,8,0.55) 0%, rgba(10,9,8,0.78) 60%, var(--bg) 100%),
    linear-gradient(90deg, rgba(10,9,8,0.85) 0%, rgba(10,9,8,0.45) 55%, rgba(10,9,8,0.2) 100%),
    linear-gradient(transparent 95%, rgba(255,255,255,0.02) 95%),
    linear-gradient(90deg, transparent 95%, rgba(255,255,255,0.02) 95%);
  background-size: auto, auto, 60px 60px, 60px 60px;
  pointer-events: none;
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.hero h1 {
  max-width: 13ch;
  margin-bottom: 28px;
}
.hero .lede {
  max-width: 58ch;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-dim);
  margin-bottom: 40px;
  line-height: 1.55;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-meta .stat .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.hero-meta .stat .lbl {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--text-mute);
  margin-top: 6px;
  display: block;
}

/* =========================================================
   GENERIC SECTION HEADERS
   ========================================================= */
.section-head {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-head.left { text-align: left; margin-left: 0; }
.section-head p { font-size: 1.05rem; }

/* =========================================================
   ABOUT SPLIT — image + copy two-column
   ========================================================= */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
}
@media (max-width: 820px) {
  .about-split { grid-template-columns: 1fr; gap: 40px; }
}
.about-portrait {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6);
}
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 1.2s var(--ease);
}
.about-portrait:hover img { transform: scale(1.03); }
.about-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,9,8,0.5));
  pointer-events: none;
}
.about-copy { max-width: 56ch; }
.about-copy h2 { margin-bottom: 22px; }

/* =========================================================
   FRAMES — editorial gallery strip
   ========================================================= */
.frames {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}
.frames-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}
@media (max-width: 720px) { .frames-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; margin-top: 40px; } }
.frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3 / 4;
  background: var(--bg-elev);
  border: 1px solid var(--line);
}
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform .9s var(--ease), filter .4s var(--ease);
  filter: saturate(0.9);
}
.frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,9,8,0.85));
  pointer-events: none;
  opacity: .9;
  transition: opacity .4s var(--ease);
}
.frame .caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text);
  z-index: 1;
}
.frame:hover img { transform: scale(1.05); filter: saturate(1); }
.frame:hover::after { opacity: .55; }

/* =========================================================
   COLLABORATIONS / TICKER
   ========================================================= */
.collab {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}
.collab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 40px;
}
.collab-grid .item {
  background: var(--bg-soft);
  padding: 28px 18px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text);
  letter-spacing: .01em;
  transition: background .25s var(--ease);
}
.collab-grid .item:hover { background: var(--bg-elev); }
.collab-grid .item .n {
  display: block;
  font-family: var(--font-body);
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 8px;
}
.collab-note {
  text-align: center;
  margin-top: 30px;
  color: var(--text-mute);
  font-style: italic;
}

/* =========================================================
   SERVICES CARDS
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.service-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  pointer-events: none;
  background: radial-gradient(400px 200px at 100% 0%, rgba(201,169,97,0.08), transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.service-card:hover {
  border-color: rgba(201,169,97,0.4);
  transform: translateY(-4px);
}
.service-card:hover::after { opacity: 1; }

.service-card .icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(201,169,97,0.1);
  border: 1px solid rgba(201,169,97,0.25);
  border-radius: 50%;
  color: var(--gold);
  margin-bottom: 22px;
  font-size: 1.1rem;
}
.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.service-card p { font-size: .95rem; margin-bottom: 22px; }
.service-card .link {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--gold);
  display: inline-flex; gap: 8px; align-items: center;
}
.service-card .link:hover { color: var(--gold-bright); }

/* =========================================================
   "WHY WORK WITH ME" — feature list
   ========================================================= */
.why {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.015) 50%, transparent);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.why-item {
  padding: 26px 26px 26px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.why-item::before {
  content: counter(why-counter, decimal-leading-zero);
  counter-increment: why-counter;
  font-family: var(--font-display);
  font-size: .85rem;
  color: var(--gold);
  letter-spacing: .1em;
  display: block;
  margin-bottom: 14px;
}
.why-grid { counter-reset: why-counter; }
.why-item h4 { font-size: 1.2rem; margin-bottom: 8px; font-family: var(--font-body); font-weight: 500; letter-spacing: .01em; }
.why-item p { font-size: .94rem; margin: 0; color: var(--text-dim); }

/* =========================================================
   INSTAGRAM FEED SECTION
   ========================================================= */
.ig-section {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.015) 50%, transparent);
  border-block: 1px solid var(--line);
}
.ig-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.ig-head h2 { margin-bottom: 12px; }
.ig-head p { max-width: 50ch; margin: 0; color: var(--text-dim); }
.ig-head .btn { flex-shrink: 0; }

.ig-feed {
  /* The Behold widget renders its own grid layout. We give it a clean container. */
  width: 100%;
}
/* Fade-in for widget contents once Behold mounts */
.ig-feed behold-widget {
  display: block;
  min-height: 200px;
}
.cta-strip {
  text-align: center;
  padding: clamp(80px, 12vw, 140px) 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(800px 300px at 50% 100%, rgba(201,169,97,0.08), transparent 60%),
    var(--bg);
}
.cta-strip h2 { max-width: 16ch; margin: 0 auto 20px; }
.cta-strip p { max-width: 50ch; margin: 0 auto 32px; }

/* =========================================================
   FORMS
   ========================================================= */
.form-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 50px);
  max-width: 720px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-field label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--text-mute);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 14px 16px;
  border-radius: var(--radius);
  font: inherit;
  font-size: .95rem;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 130px; line-height: 1.5; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-elev);
}
.form-field .hint { font-size: .8rem; color: var(--text-mute); }
.form-field.error input,
.form-field.error select,
.form-field.error textarea { border-color: var(--danger); }
.form-field .err-msg { color: var(--danger); font-size: .82rem; display: none; }
.form-field.error .err-msg { display: block; }

/* Netlify Forms spam honeypot — hidden from humans, bots fill it and get blocked */
.hp-field { display: none !important; }

.form-actions { margin-top: 14px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.form-actions .note { font-size: .82rem; color: var(--text-mute); }

.form-success, .form-error {
  display: none;
  padding: 16px 18px;
  border-radius: var(--radius);
  margin-top: 20px;
  font-size: .95rem;
}
.form-success { background: rgba(111,191,115,0.1); border: 1px solid rgba(111,191,115,0.4); color: var(--success); }
.form-error { background: rgba(217,107,90,0.1); border: 1px solid rgba(217,107,90,0.4); color: var(--danger); }
.form-success.show, .form-error.show { display: block; }

/* =========================================================
   BOOKING — Embedded Google Form (inline iframe)
   ========================================================= */
.booking-embed {
  max-width: 860px;
  margin: 0 auto;
}
.booking-embed-frame {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 12px;
  position: relative;
  overflow: hidden;
}
.booking-iframe {
  width: 100%;
  height: 4215px; /* Google's recommended height — fits full form, no internal scroll */
  border: 0;
  border-radius: var(--radius);
  background: #ffffff; /* Google Forms renders light — give it a clean canvas */
  display: block;
}
@media (max-width: 600px) {
  /* Mobile stacks form fields vertically, needs more height */
  .booking-iframe { height: 5800px; }
}
.booking-fallback {
  margin-top: 20px;
  text-align: center;
  font-size: .88rem;
  color: var(--text-mute);
}
.booking-fallback a { color: var(--gold); }

/* =========================================================
   BOOKING — CTA card that opens Google Form
   ========================================================= */
.booking-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 60px);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.booking-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 100% 0%, rgba(201,169,97,0.08), transparent 60%);
  pointer-events: none;
}
.booking-card > * { position: relative; }
@media (max-width: 720px) {
  .booking-card { grid-template-columns: 1fr; gap: 30px; }
}

.booking-card-action {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
@media (max-width: 720px) {
  .booking-card-action { align-items: stretch; }
  .booking-card-action .btn { justify-content: center; }
}

.btn-large {
  padding: 18px 30px;
  font-size: 1rem;
}

.booking-card-note {
  font-size: .8rem;
  color: var(--text-mute);
  margin: 0;
  letter-spacing: .03em;
}

.booking-meta {
  max-width: 900px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 720px) {
  .booking-meta { grid-template-columns: 1fr; }
}
.booking-meta-item {
  background: var(--bg-soft);
  padding: 24px 22px;
}
.booking-meta-item .lbl {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold);
  margin-bottom: 10px;
}
.booking-meta-item .val {
  font-size: .92rem;
  color: var(--text-dim);
  line-height: 1.55;
}
.booking-meta-item .val a { color: var(--text); }
.booking-meta-item .val a:hover { color: var(--gold); }

/* =========================================================
   PAGE HEADER (used on inner pages)
   ========================================================= */
.page-head {
  position: relative;
  padding: clamp(70px, 10vw, 130px) 0 clamp(40px, 6vw, 70px);
  border-bottom: 1px solid var(--line);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(800px 300px at 50% -50%, rgba(201,169,97,0.1), transparent 60%);
}
.page-head.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--ph-img, none);
  background-size: cover;
  background-position: center 28%;
  filter: saturate(0.9) contrast(1.05);
  opacity: .55;
}
.page-head.has-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,9,8,0.45) 0%, rgba(10,9,8,0.72) 78%, var(--bg) 100%);
  pointer-events: none;
}
.page-head h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 18px; }
.page-head p { max-width: 60ch; margin: 0 auto; color: var(--text-dim); font-size: 1.1rem; }

/* =========================================================
   SERVICES PAGE — DETAIL ROWS
   ========================================================= */
.svc-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}
.svc-row:last-child { border-bottom: none; }
@media (max-width: 800px) {
  .svc-row { grid-template-columns: 1fr; gap: 24px; }
}
.svc-row .label .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.svc-row .label .tag {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--text-mute);
  margin-top: 14px;
  display: block;
}
.svc-row h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 14px; }
.svc-row .includes {
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px 24px;
}
.svc-row .includes li {
  position: relative;
  padding-left: 22px;
  color: var(--text-dim);
  font-size: .94rem;
}
.svc-row .includes li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 10px; height: 1px;
  background: var(--gold);
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-portrait {
  margin-bottom: 30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  background: var(--bg-soft);
  position: relative;
}
.contact-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.contact-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,9,8,0.55));
  pointer-events: none;
}
.contact-info .row {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.contact-info .row:last-child { border-bottom: 1px solid var(--line); }
.contact-info .row .lbl {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--text-mute);
  margin-bottom: 6px;
  display: block;
}
.contact-info .row .val {
  font-size: 1.05rem;
  color: var(--text);
}
.contact-info .row .val a { color: var(--text); }
.contact-info .row .val a:hover { color: var(--gold); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-foot {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 70px 0 30px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 760px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
.foot-grid h5 {
  font-family: var(--font-body);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: 18px;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid li { margin-bottom: 10px; }
.foot-grid a { color: var(--text-dim); font-size: .92rem; }
.foot-grid a:hover { color: var(--text); }
.foot-grid .brand p { color: var(--text-mute); font-size: .9rem; max-width: 30ch; }
.foot-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px;
  font-size: .82rem; color: var(--text-mute);
  flex-wrap: wrap;
}

/* =========================================================
   Reveal animation (on scroll)
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* Skip link */
.skip {
  position: absolute; top: -40px; left: 8px;
  background: var(--gold); color: #1a1308;
  padding: 6px 12px; border-radius: var(--radius);
  z-index: 100; font-size: .85rem;
}
.skip:focus { top: 8px; }

/* =========================================================
   WHATSAPP FLOATING CHAT BUBBLE
   ========================================================= */
.wa-chat {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 10px 30px -8px rgba(37, 211, 102, 0.45),
    0 4px 12px rgba(0, 0, 0, 0.35);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.wa-chat:hover {
  transform: scale(1.06);
  background: #20BA59;
  color: #fff;
  box-shadow:
    0 14px 40px -10px rgba(37, 211, 102, 0.65),
    0 6px 18px rgba(0, 0, 0, 0.4);
}
.wa-chat:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.wa-chat-icon {
  width: 30px;
  height: 30px;
  display: block;
}
.wa-chat-label {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--bg-elev);
  color: var(--text);
  border: 1px solid var(--line);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: .8rem;
  letter-spacing: .04em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.wa-chat:hover .wa-chat-label,
.wa-chat:focus-visible .wa-chat-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
/* Subtle pulse ring */
.wa-chat::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid #25D366;
  opacity: 0;
  animation: wa-pulse 2.4s var(--ease) infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);    opacity: .65; }
  100% { transform: scale(1.65); opacity: 0; }
}

@media (max-width: 600px) {
  .wa-chat { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .wa-chat-icon { width: 28px; height: 28px; }
  .wa-chat-label { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-chat::before { animation: none; }
}

/* =========================================================
   AUTH PAGES (signup / login / reset)
   ========================================================= */
.auth-shell {
  min-height: calc(100vh - 80px);
  display: grid;
  place-items: center;
  padding: 60px 24px;
}
.auth-card {
  width: 100%;
  max-width: 460px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  position: relative;
  overflow: hidden;
}
.auth-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(500px 250px at 100% 0%, rgba(201,169,97,0.08), transparent 60%);
  pointer-events: none;
}
.auth-card > * { position: relative; }
.auth-card .eyebrow { margin-bottom: 14px; }
.auth-card h1 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}
.auth-card .auth-sub {
  color: var(--text-dim);
  font-size: .95rem;
  margin-bottom: 28px;
}
.auth-card .form-actions { margin-top: 22px; }
.auth-card .form-actions .btn { width: 100%; justify-content: center; }
.auth-foot {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: .88rem;
  color: var(--text-mute);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.auth-foot a { color: var(--gold); }

/* =========================================================
   APP SHELL (dashboard + admin)
   ========================================================= */
.app-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - 80px);
}
@media (max-width: 820px) {
  .app-shell { grid-template-columns: 1fr; }
}

.app-sidebar {
  background: var(--bg-soft);
  border-right: 1px solid var(--line);
  padding: 32px 22px;
  position: sticky;
  top: 80px;
  align-self: start;
  height: calc(100vh - 80px);
  overflow-y: auto;
}
@media (max-width: 820px) {
  .app-sidebar { position: static; height: auto; border-right: none; border-bottom: 1px solid var(--line); padding: 18px 22px; }
}
.app-sidebar .who {
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.app-sidebar .who .name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text);
  display: block;
  margin-bottom: 2px;
}
.app-sidebar .who .role {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.app-nav { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.app-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--text-dim);
  font-size: .94rem;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.app-nav a:hover { background: var(--bg-elev); color: var(--text); }
.app-nav a.active { background: rgba(201,169,97,0.08); color: var(--gold); }
.app-nav .divider {
  margin: 14px 4px 8px;
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.app-nav .signout-btn {
  margin-top: auto;
  background: none;
  border: 1px solid var(--line);
  color: var(--text-dim);
  padding: 10px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  font-size: .9rem;
  text-align: left;
  transition: all .2s var(--ease);
}
.app-nav .signout-btn:hover { border-color: var(--danger); color: var(--danger); }

.app-main {
  padding: clamp(28px, 4vw, 50px);
  min-width: 0; /* prevent grid blowout */
}
.app-main h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}
.app-main .lede {
  color: var(--text-dim);
  margin-bottom: 36px;
  max-width: 60ch;
}

/* Page section inside app */
.app-section {
  margin-bottom: 50px;
}
.app-section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.app-section-head h2 {
  font-size: 1.4rem;
  margin: 0;
}
.app-section-head .meta {
  font-size: .8rem;
  color: var(--text-mute);
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Stat strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
}
.stat-strip .cell {
  background: var(--bg-soft);
  padding: 22px;
}
.stat-strip .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-strip .lbl {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--text-mute);
  margin-top: 8px;
  display: block;
}

/* Card list — projects, bookings, etc. */
.card-list { display: flex; flex-direction: column; gap: 12px; }
.list-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.list-card:hover { border-color: rgba(201,169,97,0.35); }
.list-card .lc-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.list-card .lc-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text);
}
.list-card .lc-meta {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--text-mute);
}
.list-card .lc-body {
  color: var(--text-dim);
  font-size: .92rem;
  line-height: 1.55;
}
.list-card .lc-foot {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.list-card .lc-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* Status pill */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  color: var(--text-dim);
  background: var(--bg-elev);
}
.pill.new      { color: var(--gold); border-color: rgba(201,169,97,0.35); }
.pill.active   { color: var(--success); border-color: rgba(111,191,115,0.35); }
.pill.waiting  { color: var(--text-dim); }
.pill.done     { color: var(--text-mute); }
.pill.urgent   { color: var(--danger); border-color: rgba(217,107,90,0.4); }

/* Priority bar (admin) */
.priority-bar {
  height: 4px;
  background: var(--bg-elev);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 8px;
}
.priority-bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-bright));
}

/* Tiny icon-only / secondary button */
.btn-sm {
  padding: 8px 14px;
  font-size: .78rem;
  letter-spacing: .1em;
}
.btn-link {
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  font: inherit;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 0;
}
.btn-link:hover { color: var(--gold-bright); }
.btn-danger {
  background: transparent;
  color: var(--danger);
  border: 1px solid rgba(217,107,90,0.4);
}
.btn-danger:hover { background: rgba(217,107,90,0.08); }

/* Tables */
.app-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.app-table th, .app-table td {
  text-align: left;
  padding: 14px 18px;
  font-size: .9rem;
  border-bottom: 1px solid var(--line);
}
.app-table th {
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .72rem;
  color: var(--text-mute);
  background: var(--bg-elev);
}
.app-table tr:last-child td { border-bottom: none; }
.app-table tr:hover td { background: rgba(255,255,255,0.015); }

/* Empty / loading state */
.empty-state {
  background: var(--bg-soft);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  color: var(--text-mute);
  font-size: .95rem;
}
.empty-state .em-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-dim);
  display: block;
  margin-bottom: 6px;
}
.empty-state .em-text { display: block; margin-bottom: 16px; }
.empty-state .btn { display: inline-flex; }

/* Dashboard quick actions row */
.dash-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 22px 0 4px; }

/* Notes editor */
.notes-editor {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.notes-editor textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: var(--radius);
  padding: 14px 16px;
  font: inherit;
  font-size: .95rem;
  min-height: 180px;
  resize: vertical;
  line-height: 1.55;
}
.notes-editor textarea:focus { outline: none; border-color: var(--gold); background: var(--bg-elev); }
.notes-editor .ai-summary {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: .92rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.notes-editor .ai-summary .ai-tag {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

/* Modal */
.dk-modal-bg {
  position: fixed; inset: 0;
  background: rgba(5,4,3,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
}
.dk-modal-bg.open { display: flex; }
.dk-modal {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(24px, 4vw, 36px);
  position: relative;
}
.dk-modal h3 { font-size: 1.4rem; margin-bottom: 14px; }
.dk-modal .modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: none;
  border: none;
  color: var(--text-mute);
  font-size: 1.4rem;
  cursor: pointer;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
}
.dk-modal .modal-close:hover { color: var(--text); background: var(--bg-elev); }

/* Toast */
.dk-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg-elev);
  color: var(--text);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 14px 22px;
  font-size: .92rem;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.5);
  opacity: 0;
  transition: all .3s var(--ease);
  z-index: 300;
  pointer-events: none;
}
.dk-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.dk-toast.error { border-left-color: var(--danger); }
.dk-toast.success { border-left-color: var(--success); }

/* Cal.com embed wrapper */
.calcom-embed {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 12px;
  min-height: 700px;
  position: relative;
}
.calcom-embed iframe { border: 0; width: 100%; min-height: 680px; border-radius: var(--radius); background: #fff; }
.calcom-fallback {
  margin-top: 16px;
  text-align: center;
  font-size: .85rem;
  color: var(--text-mute);
}

/* In-account "request a session" panel (shown to signed-in clients on Book) */
.request-panel {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 52px) clamp(20px, 4vw, 36px);
}

/* Newsletter composer */
.compose-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: start;
}
@media (max-width: 900px) { .compose-grid { grid-template-columns: 1fr; } }
.compose-side {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  font-size: .9rem;
  color: var(--text-dim);
}
.compose-side h4 { font-family: var(--font-body); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.compose-side ul { list-style: none; padding: 0; margin: 0; }
.compose-side li { padding: 6px 0; border-bottom: 1px dashed var(--line); }
.compose-side li:last-child { border-bottom: none; }

/* =========================================================
   SYMPHONIEZ — concert production sub-brand
   ========================================================= */
.sympho-mark {
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: .04em;
  color: var(--gold-bright);
}
.sympho-eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: .72rem;
  color: var(--gold);
  display: inline-block;
}

/* Pillars grid */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.pillar {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.pillar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 100% 0%, rgba(201,169,97,0.08), transparent 60%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.pillar:hover { transform: translateY(-3px); border-color: rgba(201,169,97,0.35); }
.pillar:hover::after { opacity: 1; }
.pillar .num {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.2rem;
  display: block;
  margin-bottom: 14px;
}
.pillar h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.pillar ul {
  list-style: none;
  margin: 0; padding: 0;
}
.pillar li {
  position: relative;
  padding-left: 18px;
  font-size: .94rem;
  color: var(--text-dim);
  line-height: 1.8;
}
.pillar li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 8px; height: 1px;
  background: var(--gold-dim);
}

/* Process strip */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 40px;
}
.process .step {
  background: var(--bg-soft);
  padding: 32px 24px;
  position: relative;
}
.process .step .n {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 14px;
}
.process .step h4 {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .03em;
  margin-bottom: 8px;
}
.process .step p {
  font-size: .9rem;
  color: var(--text-dim);
  margin: 0;
}

/* Big call-out (for Symphoniez story) */
.story-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--text);
  line-height: 1.35;
  max-width: 28ch;
  margin: 0 auto;
  text-align: center;
  padding: 30px 0;
  position: relative;
}
.story-quote::before, .story-quote::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 28px auto;
}

/* =========================================================
   CUTEDGE / brand sub-line
   ========================================================= */
.brand-cutedge {
  display: block;
  font-family: var(--font-body);
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 6px;
}
.brand-cutedge b { color: var(--gold-dim); font-weight: 500; letter-spacing: .14em; }

/* Disciplines strip — quiet, below hero */
.disciplines-strip {
  padding: 28px 0 0;
}
.disciplines-strip .container {
  border-top: 1px solid var(--line);
  padding-top: 26px;
}
.disciplines-strip .roles-line {
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-mute);
  text-align: center;
  line-height: 1.8;
}
.disciplines-strip .roles-line b {
  color: var(--gold);
  font-weight: 500;
}

/* Testimonials — class names match index.html: .testimonials, .t-grid, .t-card */
.testimonials {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.015) 50%, transparent);
}
.t-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 50px;
}
.t-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 230px;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.t-card:hover { border-color: rgba(201,169,97,0.35); transform: translateY(-2px); }
.t-card::before {
  content: "“";
  position: absolute;
  top: 4px;
  left: 22px;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: .28;
}
.t-card blockquote {
  margin: 0 0 20px 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.5;
  font-style: italic;
}
.t-card .who { display: flex; flex-direction: column; gap: 4px; }
.t-card .who .name {
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.t-card .who .role {
  font-size: .78rem;
  letter-spacing: .12em;
  color: var(--text-mute);
}

/* Packages */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.pkg-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .3s var(--ease);
}
.pkg-card.featured {
  border-color: rgba(201,169,97,0.45);
  background:
    linear-gradient(180deg, rgba(201,169,97,0.06), transparent 60%),
    var(--bg-soft);
}
.pkg-card:hover { transform: translateY(-4px); border-color: rgba(201,169,97,0.45); }
.pkg-card .pkg-tag {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: inline-block;
}
.pkg-card .pkg-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.1;
}
.pkg-card .pkg-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 4px;
}
.pkg-card .pkg-price small {
  font-size: .8rem;
  color: var(--text-mute);
  letter-spacing: .15em;
  text-transform: uppercase;
  display: block;
  margin-top: 8px;
}
.pkg-card .pkg-list {
  list-style: none;
  padding: 0;
  margin: 26px 0;
}
.pkg-card .pkg-list li {
  position: relative;
  padding: 10px 0 10px 24px;
  font-size: .92rem;
  color: var(--text-dim);
  border-bottom: 1px dashed var(--line);
}
.pkg-card .pkg-list li:last-child { border-bottom: none; }
.pkg-card .pkg-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 10px;
  color: var(--gold);
  font-size: .9rem;
}
.pkg-card .btn { width: 100%; justify-content: center; margin-top: auto; }
.pkg-note {
  margin-top: 40px;
  text-align: center;
  color: var(--text-mute);
  font-size: .88rem;
}

/* Category header for services.html — class names: .svc-category, .cat-eyebrow */
.svc-category {
  margin: 70px 0 10px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.svc-category:first-of-type { margin-top: 0; }
.svc-category .cat-eyebrow {
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.svc-category h3 {
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  font-family: var(--font-display);
  margin: 0 0 8px 0;
  line-height: 1.15;
}
.svc-category > p {
  color: var(--text-dim);
  max-width: 60ch;
  margin: 0;
}

/* For-you page audience cards */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 50px;
}
.aud-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: all .35s var(--ease);
}
.aud-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(400px 200px at 100% 0%, rgba(201,169,97,0.08), transparent 60%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  border-radius: var(--radius-lg);
}
.aud-card:hover { transform: translateY(-4px); border-color: rgba(201,169,97,0.45); }
.aud-card:hover::after { opacity: 1; }
.aud-card .aud-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(201,169,97,0.1);
  border: 1px solid rgba(201,169,97,0.25);
  border-radius: 50%;
  color: var(--gold);
  margin-bottom: 22px;
  font-size: 1.1rem;
}
.aud-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 12px;
}
.aud-card p {
  font-size: .94rem;
  color: var(--text-dim);
  flex: 1;
  margin-bottom: 18px;
}
.aud-card .aud-cta {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.aud-card:hover .aud-cta { color: var(--gold-bright); }

/* Symphoniez bold wordmark for its hero */
.sympho-wordmark {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -.005em;
  font-size: clamp(3.2rem, 8vw, 6rem);
  color: var(--gold-bright);
  display: block;
  line-height: 1;
  margin-bottom: 18px;
  text-shadow: 0 6px 30px rgba(201,169,97,0.18);
}
.sympho-sub {
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.sympho-sub b { color: var(--gold-dim); font-weight: 500; }

/* Symphoniez hero — intro text left, logo right */
.sympho-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
@media (max-width: 820px) {
  .sympho-hero-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
}
/* Order: text first (left), logo second (right). On mobile, logo drops below. */
.sympho-hero-copy { order: 1; text-align: left; }
.sympho-hero-logo { order: 2; }
@media (max-width: 820px) {
  .sympho-hero-copy { text-align: center; }
}
/* Keep every text line flush to the same left edge — no ragged outlining */
.sympho-hero-copy .sympho-sub,
.sympho-hero-copy .sympho-wordmark { display: block; }
.sympho-hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sympho-hero-logo img {
  width: 100%;
  max-width: 360px;
  height: auto;
  filter: drop-shadow(0 16px 50px rgba(201,169,97,0.22));
  animation: sympho-float 6s var(--ease) infinite;
}
@keyframes sympho-float {
  0%, 100% { transform: translateY(0); filter: drop-shadow(0 16px 50px rgba(201,169,97,0.22)); }
  50%      { transform: translateY(-10px); filter: drop-shadow(0 26px 60px rgba(201,169,97,0.34)); }
}
@media (prefers-reduced-motion: reduce) {
  .sympho-hero-logo img { animation: none; }
}
@media (max-width: 820px) {
  .sympho-hero-logo img { max-width: 240px; }
}
.sympho-hero-copy .hero-ctas { flex-wrap: wrap; }
/* Even 2×2 stat block so nothing wraps awkwardly in the narrower column */
.sympho-hero-copy .hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
}
@media (max-width: 820px) {
  .sympho-hero-copy .hero-ctas { justify-content: center; }
}
@media (max-width: 420px) {
  .sympho-hero-copy .hero-meta { grid-template-columns: 1fr; }
}

/* =========================================================
   CRISP CHATBOX OVERRIDES
   ---------------------------------------------------------
   Constrain the open chatbox on desktop so it doesn't dominate
   the screen. Crisp embeds its chatbox in an iframe under
   <div class="crisp-client">. These rules cap dimensions
   without breaking Crisp's internal layout on mobile.
   For the most reliable sizing, also set "Compact" chatbox
   layout in your Crisp dashboard.
   ========================================================= */
@media (min-width: 720px) {
  .crisp-client .cc-1brb6,
  .crisp-client .cc-kv6t,
  .crisp-client iframe[name="crisp-chatbox"],
  .crisp-client > div[class*="crisp"]:not([class*="launcher"]) {
    max-width: 360px !important;
    max-height: min(540px, calc(100vh - 140px)) !important;
    border-radius: 14px !important;
    box-shadow: 0 24px 60px -20px rgba(0,0,0,0.55) !important;
  }
}
/* Soft pulse on the launcher so it feels alive */
.crisp-client a[aria-label="Open chat"],
.crisp-client a.cc-1xry,
.crisp-client a.crisp-client-launcher {
  animation: dk-chat-pulse 3.2s var(--ease) infinite;
}
@keyframes dk-chat-pulse {
  0%, 70%, 100% { transform: scale(1); }
  35% { transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .crisp-client a[aria-label="Open chat"],
  .crisp-client a.cc-1xry,
  .crisp-client a.crisp-client-launcher { animation: none; }
}

/* =========================================================
   SYMPHONIEZ LOGO IMAGE (replaces the wordmark)
   ========================================================= */
.sympho-logo-img {
  display: block;
  width: clamp(220px, 36vw, 380px);
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 10px 30px rgba(201,169,97,0.18));
}
.sympho-logo-img.small {
  width: clamp(140px, 18vw, 200px);
  margin-bottom: 12px;
}
.sympho-logo-img.inline {
  display: inline-block;
  width: clamp(120px, 15vw, 160px);
  margin: 0 0 6px 0;
  vertical-align: middle;
}

/* =========================================================
   VIDEO LINK CARD (thumbnail → opens YouTube in new tab)
   ---------------------------------------------------------
   Small, sidesteps embed restrictions (e.g. owner has not
   enabled embedding on a livestream → YouTube Error 153),
   and keeps the page lightweight.
   ========================================================= */
.video-card {
  display: block;
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 40px auto 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.5);
  text-decoration: none;
  color: inherit;
  isolation: isolate;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.video-card:hover { transform: translateY(-3px); border-color: rgba(201,169,97,0.45); }
.video-card .vt {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: saturate(0.9);
}
.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,9,8,0.05) 0%, rgba(10,9,8,0.6) 80%);
  z-index: 1;
}
.video-card .vplay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(201,169,97,0.95);
  display: grid;
  place-items: center;
  color: #1a1308;
  font-size: 1.3rem;
  z-index: 2;
  box-shadow: 0 8px 30px -8px rgba(201,169,97,0.7);
  transition: transform .3s var(--ease);
}
.video-card:hover .vplay { transform: translate(-50%, -50%) scale(1.07); }
.video-card .vmeta {
  position: absolute;
  bottom: 16px; left: 18px; right: 18px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}
.video-card .vmeta .vtitle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.2;
  max-width: 70%;
}
.video-card .vmeta .vsrc {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =========================================================
   ARTISTRY PAGE — alternating editorial blocks
   ========================================================= */
.artistry-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
  padding: clamp(50px, 8vw, 90px) 0;
  border-bottom: 1px solid var(--line);
}
.artistry-block:last-child { border-bottom: none; }
/* Alternate the image to the right on even blocks */
.artistry-block:nth-child(even) .ab-media { order: 2; }
@media (max-width: 800px) {
  .artistry-block { grid-template-columns: 1fr; gap: 30px; }
  .artistry-block:nth-child(even) .ab-media { order: 0; }
}

.ab-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6);
}
.ab-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 1.2s var(--ease);
}
.ab-media:hover img { transform: scale(1.04); }
.ab-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,9,8,0.45));
  pointer-events: none;
}

.ab-copy .eyebrow { margin-bottom: 14px; }
.ab-copy h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: 18px; }
.ab-copy p { font-size: 1.02rem; line-height: 1.7; color: var(--text-dim); max-width: 52ch; }

/* Spotify embed (and placeholder before links are added) */
.spotify-embed { margin-top: 26px; }
.spotify-embed iframe {
  border-radius: 12px;
  width: 100%;
  border: 0;
  display: block;
}
.spotify-placeholder {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--text-mute);
  font-size: .9rem;
}
.spotify-placeholder .sp-mark {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #1DB954;
  color: #07120a;
  display: grid; place-items: center;
  font-weight: 700;
  flex-shrink: 0;
}

/* =========================================================
   NEW RELEASE — homepage, artistry and release page
   ========================================================= */
.new-release {
  padding: clamp(46px, 7vw, 82px) 0;
  background:
    radial-gradient(700px 400px at 7% 70%, rgba(230, 133, 43, .22), transparent 66%),
    radial-gradient(650px 380px at 85% 10%, rgba(238, 178, 89, .12), transparent 62%),
    var(--bg-soft);
  border-block: 1px solid var(--line);
}
.release-feature {
  display: grid;
  grid-template-columns: minmax(200px, 360px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 7vw, 96px);
  max-width: 980px;
  margin: 0 auto;
}
.release-art {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 194, 128, .38);
  box-shadow: 0 34px 72px -30px rgba(0, 0, 0, .8);
}
.release-art img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .7s var(--ease); }
.release-art:hover img { transform: scale(1.035); }
.release-copy h2 { font-size: clamp(2.5rem, 5.2vw, 4.6rem); margin-bottom: 16px; }
.release-copy p { max-width: 48ch; font-size: 1.06rem; }
.release-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.release-page { padding-top: clamp(54px, 8vw, 112px); }
.release-page .release-feature { max-width: 1080px; grid-template-columns: minmax(240px, 430px) minmax(0, 1fr); }
.release-kicker { color: var(--gold-bright); font-size: clamp(1.1rem, 2vw, 1.4rem); margin-bottom: 26px; }
.stream-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 30px; max-width: 540px; }
.platform-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255,255,255,.025);
  font-size: .88rem;
  font-weight: 500;
}
.platform-link:hover { border-color: var(--gold-dim); color: var(--gold-bright); background: rgba(201,169,97,.08); }
.platform-link span:last-child { color: var(--gold); }
@media (max-width: 700px) {
  .release-feature, .release-page .release-feature { grid-template-columns: 1fr; gap: 30px; }
  .release-art { max-width: 380px; }
  .stream-links { grid-template-columns: 1fr; }
}

/* Homepage audience band — compact pathway chips */
.audience-band {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}
.audience-band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-top: 44px;
}
.ab-chip {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg);
  text-decoration: none;
  color: inherit;
  transition: all .25s var(--ease);
}
.ab-chip:hover { border-color: rgba(201,169,97,0.45); transform: translateY(-3px); background: var(--bg-elev); }
.ab-chip .ab-chip-icon {
  font-size: 1.1rem;
  color: var(--gold);
}
.ab-chip .ab-chip-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.1;
}
.ab-chip .ab-chip-cta {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: auto;
}
.ab-chip:hover .ab-chip-cta { color: var(--gold); }

/* =========================================================
   POWERED-BY MARK — subtle CutEdge attribution
   ========================================================= */
.powered-by {
  display: block;
  margin-top: 4px;
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 400;
}
.powered-by b {
  color: var(--gold-dim);
  font-weight: 500;
  letter-spacing: .18em;
}
.brand-wordmark {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--text);
  display: inline-block;
}
.brand-wordmark .dot { color: var(--gold); }

/* =========================================================
   TESTIMONIALS — replaces collaborations strip on home
   ========================================================= */
.testimonials {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}
.t-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 50px;
}
.t-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.t-card:hover { border-color: rgba(201,169,97,0.35); transform: translateY(-3px); }
.t-card::before {
  content: "\201C";
  position: absolute;
  top: -10px; left: 22px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: .25;
  line-height: 1;
}
.t-card blockquote {
  margin: 0 0 22px;
  padding: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.45;
  font-style: italic;
}
.t-card .who {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.t-card .who .name {
  font-size: .92rem;
  color: var(--text);
  display: block;
}
.t-card .who .role {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 4px;
  display: block;
}

/* =========================================================
   CATEGORY HEADER — for grouped svc-rows on services page
   ========================================================= */
.svc-category {
  margin: 60px 0 0;
  padding: 30px 0 16px;
  border-top: 1px solid var(--line);
}
.svc-category:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }
.svc-category .cat-eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: .72rem;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 8px;
}
.svc-category h3 {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--text);
}
.svc-category p {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 60ch;
  margin: 0;
}

/* =========================================================
   FOR YOU — audience pathway cards
   ========================================================= */
.pathway-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.pathway-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.pathway-card::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(400px 200px at 100% 0%, rgba(201,169,97,0.08), transparent 60%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.pathway-card:hover { transform: translateY(-4px); border-color: rgba(201,169,97,0.4); color: var(--text); }
.pathway-card:hover::after { opacity: 1; }
.pathway-card .num {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: .15em;
}
.pathway-card h3 {
  font-size: 1.45rem;
  margin: 0;
}
.pathway-card p {
  margin: 0;
  font-size: .94rem;
  color: var(--text-dim);
  line-height: 1.55;
}
.pathway-card .go {
  margin-top: 4px;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pathway-card:hover .go { color: var(--gold-bright); }

/* =========================================================
   PRICING / PACKAGES
   ========================================================= */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 50px;
}
.pkg-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.pkg-card:hover { transform: translateY(-3px); border-color: rgba(201,169,97,0.35); }
.pkg-card.featured {
  border-color: rgba(201,169,97,0.45);
  background: linear-gradient(180deg, rgba(201,169,97,0.04), var(--bg-soft));
}
.pkg-card.featured::before {
  content: "Most requested";
  position: absolute;
  top: 14px; right: 14px;
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,169,97,0.1);
  border: 1px solid rgba(201,169,97,0.25);
  padding: 4px 10px;
  border-radius: 999px;
}
.pkg-card .pkg-eyebrow {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold);
  margin-bottom: 12px;
}
.pkg-card h3 {
  font-size: 1.5rem;
  margin: 0 0 8px;
}
.pkg-card .pkg-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text);
  line-height: 1;
  margin: 8px 0 4px;
}
.pkg-card .pkg-price small {
  font-size: .9rem;
  color: var(--text-mute);
  letter-spacing: .12em;
  display: inline-block;
  margin-left: 2px;
}
.pkg-card .pkg-tag {
  font-size: .78rem;
  color: var(--text-mute);
  margin-bottom: 22px;
  letter-spacing: .04em;
}
.pkg-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  flex: 1;
}
.pkg-card li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: .92rem;
  color: var(--text-dim);
  border-bottom: 1px dashed rgba(255,255,255,0.04);
}
.pkg-card li:last-child { border-bottom: none; }
.pkg-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 10px; height: 1px;
  background: var(--gold);
}
.pkg-card .btn { align-self: flex-start; }
.pkg-note {
  margin-top: 38px;
  text-align: center;
  color: var(--text-mute);
  font-size: .9rem;
  font-style: italic;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}
