/* ==========================================================================
   Encore Talent & Entertainment — Design System
   Brand: vibrant pink (#ee006a) on deep ink black, editorial sans headings
   ========================================================================== */

:root {
  --pink: #ee006a;
  --pink-dark: #b8004f;
  --pink-light: #ff4d94;
  --gold: #ffb100;
  --ink: #0a0a12;
  --ink-2: #14131f;
  --ink-3: #1d1c2b;
  --paper: #ffffff;
  --off: #faf9fb;
  --text: #1a1a24;
  --muted: #666575;
  --muted-light: #9c9bab;
  --line: #ececf1;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px -20px rgba(10, 10, 18, 0.35);
  --shadow-sm: 0 8px 24px -12px rgba(10, 10, 18, 0.25);
  --maxw: 1200px;
  --ff-head: "Fraunces", Georgia, "Times New Roman", serif;
  --ff-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ff-logo: "Arial Black", "Arial Bold", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--ff-head);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; }
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 88px 0; }
@media (max-width: 780px) { section { padding: 56px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--pink);
  display: inline-block;
}
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 42px); }
.section-head p { color: var(--muted); font-size: 17px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--pink); color: #fff; }
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 12px 24px -8px rgba(238,0,106,.55); }
.btn-outline-dark { border-color: rgba(255,255,255,.35); color: #fff; }
.btn-outline-dark:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-outline-light { border-color: rgba(10,10,18,.18); color: var(--text); }
.btn-outline-light:hover { border-color: var(--text); }
.btn-ghost-pink { color: var(--pink); font-weight: 800; padding: 8px 0; }
.btn-ghost-pink::after { content: "→"; margin-left: 6px; transition: transform .15s ease; display:inline-block; }
.btn-ghost-pink:hover::after { transform: translateX(4px); }
.btn-block { width: 100%; }

/* ===== Header / Nav ===== */
/* Note: intentionally no backdrop-filter here — it would make .site-header
   establish a containing block for its position:fixed mobile nav descendant,
   which breaks full-viewport coverage of the slide-out menu. */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,18,.96);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 24px; }
.logo { display: flex; flex-direction: column; line-height: 1.05; color: #fff; }
.logo strong { font-family: var(--ff-logo); font-weight: 900; font-size: 24px; letter-spacing: -0.01em; text-transform: uppercase; }
.logo strong span { color: var(--pink); }
.logo em { font-style: normal; font-family: var(--ff-logo); font-weight: 900; font-size: 13px; letter-spacing: 0.02em; text-transform: uppercase; color: var(--muted-light); margin-top: 4px; }

.nav-main { display: flex; align-items: center; gap: 6px; }
.nav-main > ul { list-style: none; display: flex; gap: 2px; margin: 0; padding: 0; }
.nav-main > ul > li { position: relative; }
.nav-main > ul > li > a, .nav-main > ul > li > button.nav-toggle {
  display: flex; align-items: center; gap: 5px;
  padding: 12px 16px; color: #eceaf3; font-weight: 600; font-size: 14.5px; line-height: 1.6;
  background: none; border: none; font-family: var(--ff-body); cursor: pointer; border-radius: 8px;
}
.nav-main > ul > li > a:hover, .nav-main > ul > li > button.nav-toggle:hover,
.nav-main > ul > li.active > a { color: var(--pink); }
.nav-main .caret { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: -4px; transition: transform .15s; }
.dropdown { position: relative; }
/* Invisible bridge over the gap between the nav button and the mega panel below it,
   so hovering down from the button into the panel doesn't lose :hover mid-transit
   (without this, the dropdown would flicker closed and effectively require a click).
   Desktop-only: on mobile the panel opens on tap (see .dropdown.open below), and this
   bridge would otherwise sit on top of the next nav row's tap target. */
@media (min-width: 1001px) {
  .dropdown::before {
    content: "";
    position: absolute;
    top: 100%; left: 0; right: 0; height: 12px;
  }
}
.dropdown .mega {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  background: #fff; border-radius: 14px; box-shadow: var(--shadow);
  min-width: 300px; padding: 14px; display: none; grid-template-columns: 1fr 1fr; gap: 4px;
}
.dropdown.mega-wide .mega { min-width: 620px; grid-template-columns: 1fr 1fr 1fr; }
.dropdown:hover .mega, .dropdown:focus-within .mega { display: grid; }
.dropdown:hover .caret, .dropdown:focus-within .caret { transform: rotate(225deg); margin-top: 3px; }
.mega a { display: block; padding: 10px 12px; border-radius: 8px; color: var(--text); font-size: 14.5px; font-weight: 600; }
.mega a:hover { background: var(--off); color: var(--pink); }
.mega a small { display: block; font-weight: 500; color: var(--muted); font-size: 12.5px; margin-top: 2px; }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn { padding: 11px 22px; font-size: 14px; }
.header-phone { display: none; }
@media (min-width: 1080px) {
  .header-phone { display: flex; align-items: center; color: var(--pink); font-size: 14.5px; font-weight: 700; white-space: nowrap; text-decoration: none; transition: color .15s ease; }
  .header-phone:hover { color: #fff; }
}

.nav-mobile-toggle { display: none; background: none; border: none; width: 40px; height: 40px; position: relative; cursor: pointer; }
.nav-mobile-toggle span, .nav-mobile-toggle span::before, .nav-mobile-toggle span::after {
  content: ""; position: absolute; left: 8px; right: 8px; height: 2px; background: #fff; transition: .2s;
}
.nav-mobile-toggle span { top: 19px; }
.nav-mobile-toggle span::before { top: -7px; }
.nav-mobile-toggle span::after { top: 7px; }

@media (max-width: 1000px) {
  .nav-main { position: fixed; inset: 68px 0 0 0; background: var(--ink); overflow-y: auto;
    transform: translateX(100%); transition: transform .25s ease; padding: 12px 20px 40px;
    display: block; align-items: stretch; }
  .nav-main.open { transform: translateX(0); }
  .nav-main > ul { flex-direction: column; gap: 0; width: 100%; }
  .nav-main > ul > li { border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-main > ul > li > a, .nav-main > ul > li > button.nav-toggle { width: 100%; padding: 16px 4px; justify-content: space-between; }
  .dropdown .mega { position: static; transform: none; display: none; background: var(--ink-2); box-shadow: none; grid-template-columns: 1fr; margin-bottom: 8px; }
  .dropdown.open .mega { display: grid; }
  .mega a { color: #eceaf3; }
  .mega a:hover { background: rgba(255,255,255,.06); color: var(--pink); }
  .header-cta .btn-outline-dark { display: none; }
  .nav-mobile-toggle { display: block; }
  .header-phone { display: none !important; }
}
body.nav-open { overflow: hidden; }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: radial-gradient(1100px 520px at 85% -10%, rgba(238,0,106,.35), transparent 60%),
              radial-gradient(800px 400px at 0% 100%, rgba(238,0,106,.18), transparent 60%),
              linear-gradient(180deg, var(--ink) 0%, #100f1a 100%);
  color: #fff;
  overflow: hidden;
  padding: 96px 0 100px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(700px 500px at 75% 20%, black, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero.simple .container { grid-template-columns: 1fr; text-align: center; max-width: 820px; }
.hero.simple .hero-art { display: none; }
.hero h1 { font-size: clamp(38px, 5vw, 60px); margin-bottom: 20px; }
.hero h1 em { color: var(--pink); font-style: normal; }
.hero h1.home-h1 { font-size: clamp(24px, 2.7vw, 36px); }
.hero h1.home-h1 .nowrap-line { white-space: nowrap; }
.hero .lede { font-size: 19px; color: #cfcdda; max-width: 540px; margin-bottom: 32px; }
.hero.simple .lede { margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero.simple .hero-actions { justify-content: center; }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap; }
.hero.simple .hero-stats { justify-content: center; }
.hero-stats div strong { display: block; font-family: var(--ff-head); font-size: 30px; color: #fff; }
.hero-stats div span { font-size: 13px; color: var(--muted-light); text-transform: uppercase; letter-spacing: .08em; }
.breadcrumb { font-size: 13px; color: var(--muted-light); margin-bottom: 22px; }
.breadcrumb a { color: var(--muted-light); }
.breadcrumb a:hover { color: var(--pink); }

.hero-art { position: relative; height: 420px; }
.art-blob {
  position: absolute; border-radius: 32px; box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.art-blob svg { width: 46%; height: 46%; opacity: .9; }
.art-1 { width: 78%; height: 78%; top: 0; right: 0; background: linear-gradient(155deg, var(--pink) 0%, #7a0037 100%); }
.art-2 { width: 46%; height: 46%; bottom: 0; left: 0; background: linear-gradient(155deg, #2a2840 0%, var(--ink) 100%); border: 1px solid rgba(255,255,255,.08); }
.art-3 { width: 30%; height: 30%; top: 10%; left: -4%; background: #fff; }
.art-3 svg { stroke: var(--pink); }

/* ===== Placeholder photo blocks (swap for client photos) ===== */
.ph {
  position: relative;
  background: linear-gradient(155deg, var(--ink-3) 0%, var(--ink) 100%);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  color: rgba(255,255,255,.55); overflow: hidden;
  border: 1px dashed rgba(255,255,255,.18);
}
.ph.light { background: linear-gradient(155deg, #fdeaf1 0%, #ffe0ec 100%); border-color: rgba(238,0,106,.25); color: rgba(184,0,79,.55); }
.ph svg { width: 34%; height: 34%; opacity: .8; margin-bottom: 10px; }
.ph span { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; opacity: .8; }
.ph::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 16px 16px;
}

/* ===== Real photos (replace .ph placeholders where an actual photo exists) ===== */
.photo { position: relative; overflow: hidden; background: var(--ink-3); }
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo .cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 10px 14px;
  background: linear-gradient(0deg, rgba(0,0,0,.65), transparent);
  color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}

/* ===== Hero photo showcase (rotating real-event photography) ===== */
.hero-photo-stack { position: relative; width: 100%; height: 100%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.hero-photo-stack img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; animation: heroFade 35s infinite; transform: scale(1.06);
}
.hero-photo-stack img:nth-child(1) { animation-delay: 0s; }
.hero-photo-stack img:nth-child(2) { animation-delay: 5s; }
.hero-photo-stack img:nth-child(3) { animation-delay: 10s; }
.hero-photo-stack img:nth-child(4) { animation-delay: 15s; }
.hero-photo-stack img:nth-child(5) { animation-delay: 20s; }
.hero-photo-stack img:nth-child(6) { animation-delay: 25s; }
.hero-photo-stack img:nth-child(7) { animation-delay: 30s; }
/* Photo count-specific timing so each rotation's crossfade tiles exactly
   to a seamless loop (no dead/blank gap before it repeats), whatever the
   number of photos on that particular page. */
.hero-photo-stack[data-count="2"] img { animation-name: heroFade2; animation-duration: 10s; }
.hero-photo-stack[data-count="3"] img { animation-name: heroFade3; animation-duration: 15s; }
.hero-photo-stack[data-count="4"] img { animation-name: heroFade4; animation-duration: 20s; }
.hero-photo-stack[data-count="5"] img { animation-name: heroFade5; animation-duration: 25s; }
.hero-photo-stack[data-count="6"] img { animation-name: heroFade6; animation-duration: 30s; }
.hero-photo-stack[data-count="7"] img { animation-name: heroFade7; animation-duration: 35s; }
.hero-photo-stack::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(238,0,106,.28), transparent 55%),
              linear-gradient(0deg, rgba(10,10,18,.55), transparent 40%);
  pointer-events: none;
}
@keyframes heroFade {
  0%      { opacity: 0; transform: scale(1.06); }
  3%      { opacity: 1; transform: scale(1.06); }
  15%     { opacity: 1; transform: scale(1.13); }
  20%     { opacity: 0; transform: scale(1.13); }
  100%    { opacity: 0; }
}
@keyframes heroFade2 {
  0%      { opacity: 0; transform: scale(1.06); }
  9%      { opacity: 1; transform: scale(1.06); }
  45%     { opacity: 1; transform: scale(1.13); }
  60%     { opacity: 0; transform: scale(1.13); }
  100%    { opacity: 0; }
}
@keyframes heroFade3 {
  0%      { opacity: 0; transform: scale(1.06); }
  6%      { opacity: 1; transform: scale(1.06); }
  30%     { opacity: 1; transform: scale(1.13); }
  40%     { opacity: 0; transform: scale(1.13); }
  100%    { opacity: 0; }
}
@keyframes heroFade4 {
  0%      { opacity: 0; transform: scale(1.06); }
  4.5%    { opacity: 1; transform: scale(1.06); }
  22.5%   { opacity: 1; transform: scale(1.13); }
  30%     { opacity: 0; transform: scale(1.13); }
  100%    { opacity: 0; }
}
@keyframes heroFade5 {
  0%      { opacity: 0; transform: scale(1.06); }
  3.6%    { opacity: 1; transform: scale(1.06); }
  18%     { opacity: 1; transform: scale(1.13); }
  24%     { opacity: 0; transform: scale(1.13); }
  100%    { opacity: 0; }
}
@keyframes heroFade6 {
  0%      { opacity: 0; transform: scale(1.06); }
  3%      { opacity: 1; transform: scale(1.06); }
  15%     { opacity: 1; transform: scale(1.13); }
  20%     { opacity: 0; transform: scale(1.13); }
  100%    { opacity: 0; }
}
@keyframes heroFade7 {
  0%      { opacity: 0; transform: scale(1.06); }
  2.57%   { opacity: 1; transform: scale(1.06); }
  12.86%  { opacity: 1; transform: scale(1.13); }
  17.14%  { opacity: 0; transform: scale(1.13); }
  100%    { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-photo-stack img { animation: none; opacity: 0; transform: none; }
  .hero-photo-stack img:first-child { opacity: 1; }
}
.hero-photo-badge {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  background: rgba(10,10,18,.72); backdrop-filter: none;
  color: #fff; font-size: 12px; font-weight: 700; padding: 8px 14px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
}

/* ===== Cards ===== */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.cat-card {
  border-radius: var(--radius); overflow: hidden; background: #fff;
  box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease;
  display: flex; flex-direction: column; height: 100%;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.cat-card .ph, .cat-card .photo { height: 190px; }
.cat-card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.cat-card-body h3 { font-size: 20px; margin-bottom: 2px; }
.cat-card-body p { color: var(--muted); font-size: 14.5px; margin-bottom: 12px; flex: 1; }
.tag-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.tag { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; background: var(--off); color: var(--muted); padding: 5px 10px; border-radius: 999px; }

.pillar-card { padding: 30px 26px; border-radius: var(--radius); background: var(--off); }
.pillar-card .num { font-family: var(--ff-head); font-size: 15px; color: var(--pink); font-weight: 700; margin-bottom: 10px; display: block; }
.pillar-card h3 { font-size: 20px; }
.pillar-card p { color: var(--muted); font-size: 14.5px; margin: 0; }

.event-pill {
  display: flex; align-items: center; gap: 16px; padding: 22px; border-radius: var(--radius-sm);
  background: #fff; border: 1px solid var(--line); transition: border-color .15s ease, transform .15s ease;
}
.event-pill:hover { border-color: var(--pink); transform: translateY(-3px); }
.event-pill .ico { width: 46px; height: 46px; border-radius: 12px; background: rgba(238,0,106,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.event-pill .ico svg { width: 22px; height: 22px; stroke: var(--pink); }
.event-pill h4 { font-size: 16px; margin: 0 0 2px; }
.event-pill p { font-size: 13.5px; color: var(--muted); margin: 0; }

/* ===== Dark band / CTA ===== */
.band-dark { background: var(--ink); color: #fff; }
.band-pink {
  background: linear-gradient(120deg, var(--pink) 0%, #a3004b 100%);
  color: #fff; border-radius: 28px; padding: 64px; text-align: center;
}
.band-pink h2 { font-size: clamp(26px, 3.4vw, 38px); max-width: 640px; margin: 0 auto 14px; }
.band-pink p { color: rgba(255,255,255,.88); max-width: 520px; margin: 0 auto 30px; font-size: 16.5px; }
.band-pink .btn-primary { background: #fff; color: var(--pink); }
.band-pink .btn-primary:hover { background: #fff; box-shadow: 0 12px 24px -8px rgba(0,0,0,.35); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 640px) { .band-pink { padding: 44px 26px; } }

/* ===== Testimonials ===== */
.testi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; height: 100%; display: flex; flex-direction: column; }
.testi .stars { color: var(--gold); font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.testi p.quote { font-family: var(--ff-head); font-size: 18px; color: var(--text); flex: 1; }
.testi .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testi .avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(155deg, var(--pink), #7a0037); flex-shrink: 0; display:flex; align-items:center; justify-content:center; color:#fff; font-weight:700; font-family:var(--ff-head); }
.testi .who strong { display: block; font-size: 14.5px; }
.testi .who span { font-size: 13px; color: var(--muted); }

/* ===== Trust strip ===== */
.trust-strip { padding: 56px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-strip p.label { text-align: center; font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-light); margin-bottom: 22px; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 34px; }
.trust-row span { font-family: var(--ff-head); font-size: 19px; color: var(--muted); opacity: .75; font-weight: 600; }
.trust-strip .trust-image { max-width: 780px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.trust-strip .trust-image img { width: 100%; display: block; }
.trust-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 44px 56px; max-width: 980px; margin: 0 auto; }
.trust-logos img { height: 34px; width: auto; max-width: 130px; object-fit: contain; filter: grayscale(100%); opacity: .55; transition: opacity .2s ease, filter .2s ease; }
.trust-logos img:hover { opacity: .9; filter: grayscale(40%); }
@media (max-width: 640px) { .trust-logos { gap: 30px 36px; } .trust-logos img { height: 26px; } }

/* ===== FAQ ===== */
.faq details { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq summary { cursor: pointer; font-weight: 700; font-size: 16.5px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; color: var(--pink); flex-shrink: 0; transition: transform .15s; font-weight: 400; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--muted); margin: 12px 0 0; font-size: 15px; max-width: 680px; }

/* ===== Two column feature ===== */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
@media (max-width: 900px) { .feature-row, .feature-row.reverse { grid-template-columns: 1fr; direction: ltr; } }
.feature-row .ph, .feature-row .photo { height: 380px; border-radius: var(--radius); }
.checklist { list-style: none; padding: 0; margin: 22px 0; }
.checklist li { display: flex; gap: 12px; margin-bottom: 12px; font-size: 15px; color: var(--text); }
.checklist li svg { width: 20px; height: 20px; stroke: var(--pink); flex-shrink: 0; margin-top: 1px; }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 8px; }
.step .n { font-family: var(--ff-head); font-size: 42px; color: rgba(238,0,106,.28); font-weight: 600; display: block; margin-bottom: 6px; }
.step h4 { font-size: 16.5px; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--muted); margin: 0; }

/* ===== Contact page ===== */
.contact-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; }
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; } }
.contact-card { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-card .ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(238,0,106,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card .ico svg { width: 20px; height: 20px; stroke: var(--pink); }
.contact-card h4 { font-size: 15px; margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 15px; color: var(--muted); margin: 0; }
.contact-card a:hover { color: var(--pink); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; background: var(--off); padding: 34px; border-radius: var(--radius); }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; padding: 24px; } }
.form-grid label { font-size: 13px; font-weight: 700; margin-bottom: 6px; display: block; color: var(--text); }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%; padding: 13px 14px; border-radius: 10px; border: 1px solid var(--line);
  font-family: var(--ff-body); font-size: 14.5px; background: #fff; color: var(--text);
}
.form-grid textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 12.5px; color: var(--muted-light); margin-top: 14px; }
.map-ph { height: 260px; border-radius: var(--radius); margin-top: 28px; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: #cfcdda; padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h5 { color: #fff; font-family: var(--ff-body); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer .logo strong { color: #fff; }
.footer-about p { font-size: 14.5px; color: var(--muted-light); max-width: 300px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 14.5px; color: var(--muted-light); }
.footer-links a:hover { color: var(--pink); }
.social-row { display: flex; gap: 10px; margin-top: 20px; }
.social-row a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; }
.social-row a:hover { border-color: var(--pink); background: rgba(238,0,106,.12); }
.social-row svg { width: 16px; height: 16px; stroke: #fff; }
.social-row.on-light a { border-color: rgba(10,10,18,.15); }
.social-row.on-light a:hover { border-color: var(--pink); }
.social-row.on-light svg { stroke: var(--text); }
.social-row.on-light a:hover svg { stroke: var(--pink); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 0; font-size: 13px; color: var(--muted-light); flex-wrap: wrap; }
.footer-bottom a { color: var(--muted-light); }
.footer-bottom a:hover { color: var(--pink); }

/* ===== Utility ===== */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.badge-note {
  display: inline-block; margin-top: 10px; font-size: 12px; font-weight: 700; color: var(--pink);
  background: rgba(238,0,106,.08); padding: 6px 12px; border-radius: 999px;
}
