/* ============================================================================
   Tosset — Inner-page Editorial system
   Extends the high-fashion homepage (home_editorial.css) to the key public
   inner pages: Find Talent, Talent Profile, Casting list + detail, and a light
   polish for auth / How-It-Works / Pricing.
   Self-hosted/system fonts only — NO CDN. Re-uses the homepage type scale,
   spacing, gold accent and motion language so it feels like one product.
   Loaded site-wide (see includes/head.php).
   ============================================================================ */

:root {
  --ed-ink:    #0d0d0f;
  --ed-ink-2:  #16161a;
  --ed-ink-3:  #1f1f25;
  --ed-paper:  #f6f4f1;
  --ed-line:   rgba(255,255,255,.14);
  --ed-line-d: rgba(0,0,0,.10);
  --ed-gold:   #c9a96a;
  --ed-gold-2: #d8bd86;
  --ed-serif:  Georgia, 'Times New Roman', 'Noto Serif', serif;
  --ed-sans:   'Manrope', -apple-system, 'Segoe UI', sans-serif;
}

/* Shared display helpers (mirror the homepage, scoped so they don't fight it) */
.edp-display { font-family: var(--ed-serif); font-weight: 600; letter-spacing: .4px; line-height: 1.02; }
.edp-eyebrow { font-family: var(--ed-sans); text-transform: uppercase; letter-spacing: 4px;
  font-size: 11px; font-weight: 700; color: var(--ed-gold); display: inline-block; }
.edp-wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* ============================================================================
   PAGE BANNER (light editorial header strip used on inner index pages)
   ============================================================================ */
.edp-page { background: var(--ed-ink); color: #fff; }
.edp-banner {
  position: relative; background: var(--ed-ink); color: #fff;
  padding: 64px 0 30px; overflow: hidden;
}
.edp-banner::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--ed-line);
}
.edp-banner h1 {
  font-family: var(--ed-serif); font-weight: 600; color: #fff; margin: 10px 0 6px;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem); line-height: 1; letter-spacing: .4px;
}
.edp-banner h1 em { font-style: italic; color: var(--ed-gold); }
.edp-banner .edp-lede { color: rgba(255,255,255,.62); font: 400 15px/1.6 var(--ed-sans); max-width: 60ch; margin: 0; }
.edp-count { color: var(--ed-gold); font: 700 12px var(--ed-sans); letter-spacing: 2px; text-transform: uppercase; }

/* ============================================================================
   FIND TALENT — editorial portrait grid + refined filter bar
   ============================================================================ */
.edp-discover { background: var(--ed-ink); color: #fff; padding: 0 0 90px; min-height: 60vh; }

/* Horizontal filter / sort bar (glassy, dark) */
.edp-filterbar {
  position: sticky; top: 72px; z-index: 20;
  background: rgba(20,20,26,.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ed-line); padding: 16px 0; margin-bottom: 38px;
}
.edp-filterbar .edp-wrap { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.edp-field { position: relative; flex: 1 1 160px; min-width: 130px; }
.edp-field.grow { flex: 2 1 220px; }
.edp-input, .edp-select {
  width: 100%; background: rgba(255,255,255,.06); border: 1px solid var(--ed-line);
  color: #fff; border-radius: 10px; padding: 12px 14px; font: 500 14px var(--ed-sans);
  appearance: none; -webkit-appearance: none;
}
.edp-input::placeholder { color: rgba(255,255,255,.55); }
.edp-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a96a' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 32px; cursor: pointer; }
.edp-select option { color: #111; }
.edp-input:focus, .edp-select:focus { outline: none; border-color: var(--ed-gold); background: rgba(255,255,255,.12); }
.edp-toggle { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.8);
  font: 600 13px var(--ed-sans); white-space: nowrap; cursor: pointer; user-select: none; }
.edp-toggle input { width: 16px; height: 16px; accent-color: var(--ed-gold); }
.edp-apply { flex: 0 0 auto; background: var(--ed-gold); color: #1a1408; border: 0;
  font: 700 14px var(--ed-sans); border-radius: 10px; padding: 12px 26px; cursor: pointer; transition: .2s; }
.edp-apply:hover { background: var(--ed-gold-2); }
.edp-clear { flex: 0 0 auto; color: rgba(255,255,255,.6); font: 600 13px var(--ed-sans);
  text-decoration: none; border-bottom: 1px solid transparent; }
.edp-clear:hover { color: #fff; border-color: var(--ed-gold); }

/* Results meta line */
.edp-resultmeta { display: flex; justify-content: space-between; align-items: baseline;
  margin: 0 0 24px; color: rgba(255,255,255,.6); font: 500 14px var(--ed-sans); }
.edp-resultmeta strong { color: #fff; font-weight: 700; }

/* The portrait grid */
.edp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* A single editorial talent portrait card (3:4) */
.edp-portrait {
  position: relative; display: block; aspect-ratio: 3/4; border-radius: 8px; overflow: hidden;
  background: var(--ed-ink-2); text-decoration: none; isolation: isolate;
}
.edp-portrait img { width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.edp-portrait:hover img { transform: scale(1.07); }
.edp-portrait .edp-fallback {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, #2c2c33, #15151a); color: rgba(255,255,255,.22);
  font-family: var(--ed-serif); font-size: 3.4rem; font-weight: 600;
}
.edp-portrait .edp-grad {
  position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(13,13,15,.88) 100%);
}
.edp-portrait .edp-meta {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 18px 16px; color: #fff;
  transform: translateY(6px); opacity: .94; transition: .3s;
}
.edp-portrait:hover .edp-meta { transform: translateY(0); opacity: 1; }
.edp-portrait .edp-name { font-family: var(--ed-serif); font-weight: 600; font-size: 1.32rem; line-height: 1.05; }
.edp-portrait .edp-cat { font: 600 11px var(--ed-sans); letter-spacing: 2px; text-transform: uppercase;
  color: var(--ed-gold); margin-top: 6px; }
.edp-portrait .edp-rate { font: 600 12px var(--ed-sans); color: rgba(255,255,255,.85); margin-top: 4px; }
.edp-portrait .edp-rate b { color: var(--ed-gold-2); }
/* corner badges */
.edp-pbadge { position: absolute; top: 12px; z-index: 3; font: 700 10px var(--ed-sans);
  letter-spacing: 1px; text-transform: uppercase; padding: 5px 10px; border-radius: 30px; backdrop-filter: blur(4px); }
.edp-pbadge.verified { right: 12px; background: rgba(201,169,106,.92); color: #1a1408; }
.edp-pbadge.featured { left: 12px; background: rgba(255,255,255,.92); color: #1a1408; }

/* Empty state */
.edp-empty { text-align: center; padding: 80px 24px; color: rgba(255,255,255,.55); }
.edp-empty .edp-empty-mark { font-family: var(--ed-serif); font-size: 4rem; color: var(--ed-gold); opacity: .4; line-height: 1; }
.edp-empty h3 { font-family: var(--ed-serif); font-weight: 600; color: #fff; font-size: 1.6rem; margin: 14px 0 8px; }
.edp-empty p { font: 400 15px/1.6 var(--ed-sans); max-width: 42ch; margin: 0 auto 20px; }
.edp-empty .edp-empty-btn { display: inline-block; background: var(--ed-gold); color: #1a1408;
  font: 700 14px var(--ed-sans); border-radius: 30px; padding: 12px 28px; text-decoration: none; transition: .2s; }
.edp-empty .edp-empty-btn:hover { background: var(--ed-gold-2); }

/* Pagination (dark) */
.edp-discover .pagination { justify-content: center; margin-top: 44px; gap: 6px; }
.edp-discover .pagination .page-link { background: transparent; border: 1px solid var(--ed-line);
  color: rgba(255,255,255,.8); border-radius: 8px; padding: 9px 15px; font: 600 14px var(--ed-sans); }
.edp-discover .pagination .page-link:hover { background: rgba(255,255,255,.08); color: #fff; }
.edp-discover .pagination .active .page-link,
.edp-discover .pagination .page-item.active .page-link { background: var(--ed-gold); border-color: var(--ed-gold); color: #1a1408; }
.edp-discover .pagination .disabled .page-link { opacity: .35; }

/* ============================================================================
   CASTING CALLS — editorial cards grid
   ============================================================================ */
.edp-cgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.edp-ccard { display: block; text-decoration: none; background: var(--ed-ink-2);
  border: 1px solid var(--ed-line); border-radius: 12px; overflow: hidden; transition: transform .3s ease, border-color .3s ease; }
.edp-ccard:hover { transform: translateY(-5px); border-color: rgba(201,169,106,.5); }
.edp-ccard-media { position: relative; aspect-ratio: 16/9; background: var(--ed-ink-3); overflow: hidden; }
.edp-ccard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.edp-ccard:hover .edp-ccard-media img { transform: scale(1.05); }
.edp-ccard-fallback { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #26262d, #15151a); }
.edp-ccard-fallback span { font-family: var(--ed-serif); font-size: 3rem; color: rgba(201,169,106,.5); }
.edp-ccard-tags { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; }
.edp-ccard-body { padding: 18px 20px 20px; }
.edp-ccard-kicker { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.edp-ccard-kicker span { font: 700 10px var(--ed-sans); letter-spacing: 1.4px; text-transform: uppercase; color: var(--ed-gold); }
.edp-ccard-kicker span + span { color: rgba(255,255,255,.5); }
.edp-ccard-title { font-family: var(--ed-serif); font-weight: 600; color: #fff; font-size: 1.35rem; line-height: 1.15; margin-bottom: 4px; }
.edp-ccard-company { color: rgba(255,255,255,.55); font: 500 13px var(--ed-sans); }
.edp-ccard-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 14px;
  padding-top: 14px; border-top: 1px solid var(--ed-line); }
.edp-ccard-price { font-family: var(--ed-serif); font-size: 1.15rem; color: var(--ed-gold-2); }
.edp-ccard-deadline { font: 500 12px var(--ed-sans); color: rgba(255,255,255,.5); }

/* ============================================================================
   TALENT PROFILE — comp-card / portfolio
   ============================================================================ */
.edp-profile { background: var(--ed-ink); color: #fff; padding-bottom: 100px; }

/* Hero band: portrait + identity */
.edp-prohero { position: relative; padding-top: 44px; }
.edp-prohero-grid { display: grid; grid-template-columns: minmax(0,1.05fr) 1fr; gap: 48px; align-items: start; }

.edp-herofig { position: relative; border-radius: 12px; overflow: hidden; background: var(--ed-ink-2);
  aspect-ratio: 3/4; box-shadow: 0 30px 80px rgba(0,0,0,.45); }
.edp-herofig img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.edp-herofig .edp-fallback { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, #2c2c33, #15151a); color: rgba(255,255,255,.22); font-family: var(--ed-serif); font-size: 5rem; }
.edp-herofig .edp-count-pill { position: absolute; bottom: 14px; right: 14px; background: rgba(13,13,15,.7);
  backdrop-filter: blur(6px); color: #fff; font: 600 12px var(--ed-sans); padding: 6px 12px; border-radius: 30px; }

/* thumbnail rail under hero */
.edp-thumbs { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.edp-thumbs button { width: 62px; height: 82px; border-radius: 8px; overflow: hidden; border: 1px solid var(--ed-line);
  padding: 0; cursor: pointer; background: var(--ed-ink-2); transition: .2s; }
.edp-thumbs button.is-active { border-color: var(--ed-gold); }
.edp-thumbs button img { width: 100%; height: 100%; object-fit: cover; }

.edp-identity { padding-top: 6px; }
.edp-identity .edp-eyebrow { margin-bottom: 12px; }
.edp-identity h1 { font-family: var(--ed-serif); font-weight: 600; color: #fff; line-height: 1.02;
  font-size: clamp(2.2rem, 4vw, 3.4rem); margin: 0 0 8px; }
.edp-verified { display: inline-flex; align-items: center; gap: 5px; vertical-align: middle;
  background: rgba(201,169,106,.16); color: var(--ed-gold-2); font: 700 12px var(--ed-sans);
  letter-spacing: .5px; padding: 5px 12px; border-radius: 30px; border: 1px solid rgba(201,169,106,.4); margin-left: 10px; }
.edp-subline { color: rgba(255,255,255,.6); font: 500 15px var(--ed-sans); margin: 0 0 4px; }
.edp-subline .edp-dot { color: var(--ed-gold); margin: 0 8px; }
.edp-stars { color: var(--ed-gold-2); font-size: 16px; }
.edp-rateline { color: rgba(255,255,255,.7); font: 500 14px var(--ed-sans); margin: 4px 0 0; }
.edp-headline { font-family: var(--ed-serif); font-style: italic; color: rgba(255,255,255,.92);
  font-size: 1.25rem; margin: 18px 0 12px; line-height: 1.4; }
.edp-bio { color: rgba(255,255,255,.74); font: 400 15px/1.7 var(--ed-sans); margin: 0 0 22px; }

/* CTA buttons */
.edp-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 22px 0; }
.edp-btn-gold { background: var(--ed-gold); color: #1a1408; border: 0; font: 700 15px var(--ed-sans);
  border-radius: 30px; padding: 13px 30px; cursor: pointer; text-decoration: none; display: inline-block; transition: .2s; }
.edp-btn-gold:hover { background: var(--ed-gold-2); color: #1a1408; }
.edp-btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.45);
  font: 600 15px var(--ed-sans); border-radius: 30px; padding: 12px 28px; cursor: pointer; text-decoration: none; display: inline-block; transition: .2s; }
.edp-btn-ghost:hover { background: #fff; color: var(--ed-ink); border-color: #fff; }

/* Stat / comp-card spec block */
.edp-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border: 1px solid var(--ed-line); border-radius: 12px; overflow: hidden; margin: 6px 0 22px; }
.edp-spec { padding: 14px 18px; border-bottom: 1px solid var(--ed-line); }
.edp-spec:nth-child(odd) { border-right: 1px solid var(--ed-line); }
.edp-spec .k { font: 600 11px var(--ed-sans); letter-spacing: 1.5px; text-transform: uppercase; color: var(--ed-gold); }
.edp-spec .v { font-family: var(--ed-serif); font-size: 1.15rem; color: #fff; margin-top: 3px; }

/* chips */
.edp-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.edp-chip { background: rgba(255,255,255,.07); border: 1px solid var(--ed-line); color: rgba(255,255,255,.9);
  font: 500 13px var(--ed-sans); padding: 7px 14px; border-radius: 30px; }

/* Section headings within profile / detail */
.edp-section { padding-top: 56px; }
.edp-section h2 { font-family: var(--ed-serif); font-weight: 600; color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 20px; line-height: 1; }
.edp-section h2 .edp-sub { font: 500 14px var(--ed-sans); color: rgba(255,255,255,.5); margin-left: 10px; }

/* portfolio gallery grid (lightbox) */
.edp-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.edp-gallery-grid .gitem { aspect-ratio: 3/4; border-radius: 8px; overflow: hidden; background: var(--ed-ink-2); cursor: zoom-in; }
.edp-gallery-grid .gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.edp-gallery-grid .gitem:hover img { transform: scale(1.06); }

/* showreel */
.edp-reels { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.edp-reel { background: var(--ed-ink-2); border: 1px solid var(--ed-line); border-radius: 12px; overflow: hidden; }
.edp-reel .ratio { background: #000; }
.edp-reel iframe, .edp-reel video { width: 100%; height: 100%; border: 0; display: block; }
.edp-reel .edp-reel-title { padding: 14px 16px; font-family: var(--ed-serif); font-size: 1.1rem; color: #fff; }

/* experience + reviews list */
.edp-list-card { background: var(--ed-ink-2); border: 1px solid var(--ed-line); border-radius: 12px; padding: 18px 20px; margin-bottom: 12px; }
.edp-list-card .t { font-family: var(--ed-serif); font-size: 1.15rem; color: #fff; }
.edp-list-card .m { font: 500 13px var(--ed-sans); color: rgba(255,255,255,.55); margin-top: 3px; }
.edp-list-card p { color: rgba(255,255,255,.78); font: 400 14px/1.6 var(--ed-sans); margin: 8px 0 0; }
.edp-list-card .rv-head { display: flex; justify-content: space-between; align-items: center; }

/* Lightbox */
.edp-lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(8,8,10,.94);
  display: none; align-items: center; justify-content: center; padding: 4vh 4vw; }
.edp-lightbox.is-open { display: flex; }
.edp-lightbox img { max-width: 100%; max-height: 92vh; object-fit: contain; border-radius: 6px; box-shadow: 0 20px 80px rgba(0,0,0,.6); }
.edp-lightbox .edp-lb-close, .edp-lightbox .edp-lb-nav { position: absolute; background: rgba(255,255,255,.1);
  border: 1px solid var(--ed-line); color: #fff; width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  font-size: 20px; backdrop-filter: blur(6px); transition: .2s; display: flex; align-items: center; justify-content: center; }
.edp-lightbox .edp-lb-close:hover, .edp-lightbox .edp-lb-nav:hover { background: #fff; color: var(--ed-ink); }
.edp-lightbox .edp-lb-close { top: 22px; right: 26px; }
.edp-lightbox .edp-lb-nav.prev { left: 26px; top: 50%; transform: translateY(-50%); }
.edp-lightbox .edp-lb-nav.next { right: 26px; top: 50%; transform: translateY(-50%); }

/* Owner / status notices on dark */
.edp-notice { background: rgba(201,169,106,.12); border: 1px solid rgba(201,169,106,.4);
  color: var(--ed-gold-2); border-radius: 10px; padding: 12px 16px; font: 500 14px var(--ed-sans); margin-bottom: 20px; }

/* ============================================================================
   CASTING DETAIL
   ============================================================================ */
.edp-castdetail { background: var(--ed-ink); color: #fff; padding-bottom: 90px; }
.edp-cast-hero { position: relative; }
.edp-cast-banner { width: 100%; aspect-ratio: 21/9; object-fit: cover; border-radius: 12px; background: var(--ed-ink-2); }
.edp-cast-grid { display: grid; grid-template-columns: minmax(0,2fr) 1fr; gap: 40px; align-items: start; padding-top: 36px; }
.edp-cast-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 0 0 14px; }
.edp-tag { font: 700 10px var(--ed-sans); letter-spacing: 1px; text-transform: uppercase; padding: 5px 12px; border-radius: 30px; }
.edp-tag.cat { background: rgba(255,255,255,.1); color: #fff; border: 1px solid var(--ed-line); }
.edp-tag.type { background: rgba(255,255,255,.06); color: rgba(255,255,255,.8); border: 1px solid var(--ed-line); }
.edp-tag.urgent { background: #b23b3b; color: #fff; }
.edp-tag.verified { background: rgba(201,169,106,.92); color: #1a1408; }
.edp-castdetail h1 { font-family: var(--ed-serif); font-weight: 600; color: #fff; font-size: clamp(1.9rem, 3.6vw, 3rem); margin: 0 0 6px; line-height: 1.02; }
.edp-cast-company { color: rgba(255,255,255,.6); font: 500 15px var(--ed-sans); margin: 0 0 8px; }
.edp-panel { background: var(--ed-ink-2); border: 1px solid var(--ed-line); border-radius: 12px; padding: 22px 24px; margin-top: 22px; }
.edp-panel h6 { font: 700 11px var(--ed-sans); letter-spacing: 2px; text-transform: uppercase; color: var(--ed-gold); margin: 0 0 12px; }
.edp-panel p { color: rgba(255,255,255,.82); font: 400 15px/1.7 var(--ed-sans); margin: 0; }
.edp-metagrid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px 24px; }
.edp-metagrid .k { font: 600 11px var(--ed-sans); letter-spacing: 1.4px; text-transform: uppercase; color: rgba(255,255,255,.5); }
.edp-metagrid .v { font-family: var(--ed-serif); font-size: 1.1rem; color: #fff; margin-top: 2px; }

/* Apply box (sticky) */
.edp-applybox { position: sticky; top: 90px; background: var(--ed-ink-2); border: 1px solid var(--ed-line);
  border-radius: 14px; padding: 24px; }
.edp-applybox .edp-price { font-family: var(--ed-serif); font-size: 2.2rem; color: var(--ed-gold-2); line-height: 1; }
.edp-applybox .edp-deadline { color: rgba(255,255,255,.6); font: 500 13px var(--ed-sans); margin: 6px 0 18px; }
.edp-applybox label { font: 600 12px var(--ed-sans); letter-spacing: .5px; color: rgba(255,255,255,.8); display: block; margin-bottom: 6px; }
.edp-applybox .form-control, .edp-applybox select, .edp-applybox textarea, .edp-applybox input[type=file] {
  width: 100%; background: rgba(255,255,255,.06); border: 1px solid var(--ed-line); color: #fff;
  border-radius: 10px; padding: 11px 13px; font: 500 14px var(--ed-sans); margin-bottom: 14px; }
.edp-applybox .form-control:focus, .edp-applybox select:focus, .edp-applybox textarea:focus { outline: none; border-color: var(--ed-gold); }
.edp-applybox select option { color: #111; }
.edp-applybox .form-check { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; color: rgba(255,255,255,.85); font: 500 13px var(--ed-sans); }
.edp-applybox .form-check input { accent-color: var(--ed-gold); width: 16px; height: 16px; }
.edp-applybox .edp-btn-gold, .edp-applybox .edp-btn-ghost { width: 100%; text-align: center; }
.edp-applybox .edp-btn-ghost { margin-top: 10px; }
.edp-applied { background: rgba(201,169,106,.14); border: 1px solid rgba(201,169,106,.4); color: var(--ed-gold-2);
  border-radius: 10px; padding: 12px 14px; font: 600 14px var(--ed-sans); margin-bottom: 12px; text-align: center; }
.edp-privacy { color: rgba(255,255,255,.5); font: 500 12px/1.5 var(--ed-sans); margin: 16px 0 0; }

/* ============================================================================
   AUTH / CONTENT light editorial polish
   ============================================================================ */
.ts-auth-wrap.edp-authbg, .edp-authbg { background:
  radial-gradient(900px 480px at 78% -10%, rgba(201,169,106,.10), transparent 60%),
  linear-gradient(180deg, #faf8f5, #f2efe9); }
.edp-authbg .ts-auth-card { border: 1px solid var(--ed-line-d); box-shadow: 0 24px 70px rgba(13,13,15,.10); }
.edp-authbg .ts-auth-card h3, .edp-authbg .ts-auth-card .ts-auth-title { font-family: var(--ed-serif); font-weight: 600; letter-spacing: .3px; }
.edp-authbg .btn-dark, .edp-authbg .ts-auth-submit { background: var(--ed-ink); border-color: var(--ed-ink); }
.edp-authbg .ts-auth-submit, .edp-authbg .btn-dark.w-100 { border-radius: 30px; }
.edp-authbg .ts-eyebrow-mark { display: block; text-align: center; }

/* content pages (how-it-works / pricing) get a soft editorial header */
.edp-contenttop { background: var(--ed-ink); color: #fff; padding: 60px 0 34px; text-align: center; }
.edp-contenttop .edp-eyebrow { margin-bottom: 10px; }
.edp-contenttop h1 { font-family: var(--ed-serif); font-weight: 600; color: #fff; font-size: clamp(2.2rem,4.4vw,3.4rem); margin: 0 0 8px; }
.edp-contenttop p { color: rgba(255,255,255,.6); font: 400 15px/1.6 var(--ed-sans); max-width: 56ch; margin: 0 auto; }

/* pricing cards uplift (kept light, gold accent on featured) */
.edp-price-featured { border: 1.5px solid var(--ed-gold) !important; box-shadow: 0 18px 50px rgba(201,169,106,.18); }
.edp-price-badge { background: var(--ed-gold); color: #1a1408; font: 700 11px var(--ed-sans); letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 12px; border-radius: 30px; }

/* ============================================================================
   Scroll reveal (shared with homepage motion language)
   ============================================================================ */
.edp-reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.edp-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .edp-reveal { opacity: 1; transform: none; transition: none; }
  .edp-portrait img, .edp-gallery-grid .gitem img { transition: none; }
}

/* ============================================================================
   Responsive
   ============================================================================ */
@media (max-width: 1199.98px) {
  .edp-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991.98px) {
  .edp-wrap { padding: 0 24px; }
  .edp-grid { grid-template-columns: repeat(2, 1fr); }
  .edp-prohero-grid { grid-template-columns: 1fr; gap: 28px; }
  .edp-cast-grid { grid-template-columns: 1fr; gap: 28px; }
  .edp-applybox { position: static; }
  .edp-reels { grid-template-columns: 1fr; }
  .edp-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .edp-filterbar { top: 60px; }
  .edp-cgrid { grid-template-columns: 1fr; }
}
@media (max-width: 575.98px) {
  .edp-wrap { padding: 0 16px; }
  .edp-banner { padding: 40px 0 22px; }
  .edp-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .edp-filterbar .edp-wrap { gap: 8px; }
  .edp-field, .edp-field.grow { flex: 1 1 100%; }
  .edp-apply { width: 100%; }
  .edp-specs { grid-template-columns: 1fr; }
  .edp-spec:nth-child(odd) { border-right: 0; }
  .edp-gallery-grid { grid-template-columns: 1fr 1fr; }
  .edp-cast-banner { aspect-ratio: 16/9; }
}

/* ── Talent profile enrichments: meta chips, at-a-glance stats, similar talent ── */
.edp-meta-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 20px; }
.edp-mchip { display: inline-flex; align-items: center; gap: 5px; background: rgba(255,255,255,.06);
  border: 1px solid var(--ed-line); color: rgba(255,255,255,.85); border-radius: 999px;
  padding: 5px 12px; font: 600 12.5px var(--ed-sans); }
.edp-mchip svg { opacity: .8; }
.edp-mchip-ok { color: #d8f3df; border-color: rgba(120,200,150,.45); background: rgba(80,180,120,.14); }

.edp-glance { display: grid; grid-template-columns: repeat(4, 1fr); margin: 22px 0 6px;
  border: 1px solid var(--ed-line); border-radius: 14px; overflow: hidden; }
.edp-glance-item { padding: 16px 12px; text-align: center; border-right: 1px solid var(--ed-line); }
.edp-glance-item:last-child { border-right: 0; }
.edp-glance-item .n { font-family: var(--ed-serif); font-size: 1.2rem; color: #fff; line-height: 1.1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.edp-glance-item .l { font: 600 10.5px var(--ed-sans); letter-spacing: 1.3px; text-transform: uppercase;
  color: var(--ed-gold); margin-top: 6px; }

.edp-bio-muted { color: rgba(255,255,255,.62); font-style: italic; }

.edp-similar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 22px; }
.edp-sim-card { display: block; text-decoration: none; }
.edp-sim-img { aspect-ratio: 3/4; border-radius: 12px; overflow: hidden; background: rgba(255,255,255,.05);
  border: 1px solid var(--ed-line); }
.edp-sim-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.edp-sim-card:hover .edp-sim-img img { transform: scale(1.06); }
.edp-sim-meta { padding: 10px 2px 0; }
.edp-sim-meta .nm { font-family: var(--ed-serif); font-size: 1.05rem; color: #fff; }
.edp-sim-meta .ct { font: 600 11px var(--ed-sans); letter-spacing: .8px; text-transform: uppercase;
  color: var(--ed-gold); margin-top: 2px; }

@media (max-width: 767.98px) {
  .edp-glance { grid-template-columns: repeat(2, 1fr); }
  .edp-glance-item:nth-child(2) { border-right: 0; }
  .edp-similar-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* ── How It Works ── */
.hiw-flow { display: flex; align-items: flex-start; flex-wrap: wrap; justify-content: center; margin: 44px 0 10px; }
.hiw-node { flex: 1 1 150px; max-width: 188px; text-align: center; padding: 0 6px; }
.hiw-bubble { position: relative; width: 64px; height: 64px; margin: 0 auto 14px; border-radius: 50%;
  display: grid; place-items: center; color: var(--ed-gold); background: rgba(201,169,106,.1); border: 1px solid var(--ed-gold); }
.hiw-step-no { position: absolute; top: -6px; right: -6px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--ed-gold); color: #1a1408; font: 800 12px var(--ed-sans); display: grid; place-items: center; }
.hiw-node-title { font-family: var(--ed-serif); font-size: 1.05rem; color: #fff; }
.hiw-node-desc { font: 400 12.5px var(--ed-sans); color: rgba(255,255,255,.6); margin-top: 5px; line-height: 1.5; }
.hiw-arrow { margin-top: 22px; color: var(--ed-gold); font-size: 1.4rem; opacity: .55; }

.hiw-tracks { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 48px 0; }
.hiw-track { background: var(--ed-ink-2); border: 1px solid var(--ed-line); border-radius: 18px; padding: 30px; }
.hiw-track-head { margin-bottom: 14px; }
.hiw-track-head h2 { font-size: 1.5rem; margin: 12px 0 0; }
.hiw-pill { display: inline-block; font: 700 11px var(--ed-sans); letter-spacing: 1.5px; text-transform: uppercase;
  color: #1a1408; background: var(--ed-gold); padding: 5px 12px; border-radius: 999px; }
.hiw-pill-dark { background: #fff; color: var(--ed-ink); }
.hiw-steps { list-style: none; margin: 0 0 22px; padding: 0; }
.hiw-steps li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--ed-line); }
.hiw-steps li:last-child { border-bottom: 0; }
.hiw-num { flex: 0 0 30px; width: 30px; height: 30px; border-radius: 50%; background: rgba(201,169,106,.14);
  color: var(--ed-gold); border: 1px solid var(--ed-gold); font: 800 14px var(--ed-sans); display: grid; place-items: center; }
.hiw-steps .t { font-family: var(--ed-serif); font-size: 1.1rem; color: #fff; }
.hiw-steps p { font: 400 13.5px var(--ed-sans); color: rgba(255,255,255,.62); margin: 4px 0 0; line-height: 1.55; }

.hiw-safety { margin: 50px 0; text-align: center; }
.hiw-safety h2 { font-size: 1.6rem; margin-bottom: 24px; }
.hiw-safety-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.hiw-safe-card { background: var(--ed-ink-2); border: 1px solid var(--ed-line); border-radius: 16px; padding: 26px 18px; }
.hiw-safe-card .ic { font-size: 1.8rem; color: var(--ed-gold); }
.hiw-safe-card .t { font-family: var(--ed-serif); font-size: 1.12rem; color: #fff; margin: 10px 0 6px; }
.hiw-safe-card p { font: 400 13px var(--ed-sans); color: rgba(255,255,255,.6); margin: 0; line-height: 1.5; }

.hiw-rules { margin: 50px 0; }
.hiw-rules > h2 { font-size: 1.6rem; }
.hiw-rules-sub { color: rgba(255,255,255,.6); font-size: .95rem; margin-bottom: 22px; max-width: 640px; }
.hiw-rules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.hiw-rules-col { border-radius: 16px; padding: 24px 26px; border: 1px solid var(--ed-line); }
.hiw-do { background: rgba(80,180,120,.08); border-color: rgba(120,200,150,.35); }
.hiw-dont { background: rgba(210,80,80,.07); border-color: rgba(210,110,110,.35); }
.hiw-rules-h .badge { font: 700 13px var(--ed-sans); letter-spacing: .5px; padding: 6px 14px; border-radius: 999px; }
.hiw-do .badge { background: rgba(80,180,120,.2); color: #aef0c4; }
.hiw-dont .badge { background: rgba(210,90,90,.2); color: #ffc2c2; }
.hiw-rules-col ul { list-style: none; margin: 16px 0 0; padding: 0; }
.hiw-rules-col li { position: relative; padding: 9px 0 9px 26px; font: 400 14px var(--ed-sans);
  color: rgba(255,255,255,.82); line-height: 1.5; border-top: 1px solid rgba(255,255,255,.06); }
.hiw-rules-col li:first-child { border-top: 0; }
.hiw-do li::before { content: "\2713"; position: absolute; left: 0; color: #7fd8a0; font-weight: 800; }
.hiw-dont li::before { content: "\2717"; position: absolute; left: 0; color: #ef9a9a; font-weight: 800; }

.hiw-cta { text-align: center; background: linear-gradient(180deg, var(--ed-ink-2), var(--ed-ink-3));
  border: 1px solid var(--ed-line); border-radius: 20px; padding: 48px 24px; margin: 30px 0 70px; }
.hiw-cta h2 { font-size: 1.8rem; }
.hiw-cta p { color: rgba(255,255,255,.65); margin: 8px 0 22px; }
.hiw-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 991.98px) {
  .hiw-tracks { grid-template-columns: 1fr; }
  .hiw-safety-grid { grid-template-columns: 1fr 1fr; }
  .hiw-arrow { display: none; }
  .hiw-node { max-width: 46%; margin-bottom: 18px; }
}
@media (max-width: 575.98px) {
  .hiw-rules-grid { grid-template-columns: 1fr; }
  .hiw-safety-grid { grid-template-columns: 1fr; }
  .hiw-node { max-width: 100%; }
}

/* ============================================================================
   SHARED editorial content blocks (about / services / faq / contact / pricing)
   ============================================================================ */
.edp-lede { color: rgba(255,255,255,.72); font: 400 clamp(1.05rem,1.6vw,1.28rem)/1.7 var(--ed-sans);
  max-width: 64ch; margin: 0; }
.edp-prose p { color: rgba(255,255,255,.74); font: 400 16px/1.8 var(--ed-sans); margin: 0 0 18px; max-width: 70ch; }
.edp-prose p:last-child { margin-bottom: 0; }
.edp-prose .lead { color: rgba(255,255,255,.9); font-size: 1.18rem; line-height: 1.7; }

.edp-sec { padding: 60px 0; border-top: 1px solid var(--ed-line); }
.edp-sec:first-of-type { border-top: 0; }
.edp-sec-head { margin-bottom: 30px; max-width: 70ch; }
.edp-sec-head .edp-eyebrow { margin-bottom: 12px; }
.edp-sec-head h2 { font-family: var(--ed-serif); font-weight: 600; color: #fff;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem); line-height: 1.08; margin: 0 0 12px; }
.edp-sec-head h2 em { font-style: italic; color: var(--ed-gold); }
.edp-sec-head p { color: rgba(255,255,255,.62); font: 400 16px/1.7 var(--ed-sans); margin: 0; }

/* Split editorial row (text + aside / two columns) */
.edp-split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: start; }
.edp-split.rev { grid-template-columns: .85fr 1.15fr; }

/* Credibility / stats band */
.edp-statband { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--ed-line);
  border-radius: 16px; overflow: hidden; margin: 8px 0; }
.edp-statband .it { padding: 30px 22px; text-align: center; border-right: 1px solid var(--ed-line); }
.edp-statband .it:last-child { border-right: 0; }
.edp-statband .n { font-family: var(--ed-serif); font-size: clamp(1.9rem,3vw,2.6rem); color: var(--ed-gold-2); line-height: 1; }
.edp-statband .l { font: 600 11px var(--ed-sans); letter-spacing: 1.6px; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-top: 10px; }

/* Boards / divisions chips row */
.edp-boards { display: flex; flex-wrap: wrap; gap: 12px; }
.edp-board { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.05);
  border: 1px solid var(--ed-line); color: #fff; border-radius: 12px; padding: 14px 20px;
  font: 600 14px var(--ed-sans); transition: .25s; }
.edp-board:hover { border-color: rgba(201,169,106,.55); background: rgba(201,169,106,.08); }
.edp-board b { font-family: var(--ed-serif); font-weight: 600; }
.edp-board span { color: var(--ed-gold); }

/* Categories pill row */
.edp-cats { display: flex; flex-wrap: wrap; gap: 10px; }
.edp-cat-pill { background: rgba(201,169,106,.1); border: 1px solid rgba(201,169,106,.4);
  color: var(--ed-gold-2); border-radius: 999px; padding: 9px 18px; font: 600 13px var(--ed-sans);
  letter-spacing: .4px; }

/* Values grid */
.edp-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.edp-value { background: var(--ed-ink-2); border: 1px solid var(--ed-line); border-radius: 16px; padding: 28px 26px; }
.edp-value .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(201,169,106,.12); border: 1px solid rgba(201,169,106,.4); color: var(--ed-gold); margin-bottom: 16px; }
.edp-value h3 { font-family: var(--ed-serif); font-weight: 600; color: #fff; font-size: 1.22rem; margin: 0 0 8px; }
.edp-value p { font: 400 14.5px/1.65 var(--ed-sans); color: rgba(255,255,255,.66); margin: 0; }

/* Service cards (rich, with icon + paragraph) */
.edp-svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.edp-svc { background: var(--ed-ink-2); border: 1px solid var(--ed-line); border-radius: 18px; padding: 30px 30px 32px;
  transition: .3s; }
.edp-svc:hover { border-color: rgba(201,169,106,.5); transform: translateY(-4px); }
.edp-svc-ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(201,169,106,.12); border: 1px solid rgba(201,169,106,.4); color: var(--ed-gold); margin-bottom: 18px; }
.edp-svc h3 { font-family: var(--ed-serif); font-weight: 600; color: #fff; font-size: 1.35rem; margin: 0 0 10px; line-height: 1.15; }
.edp-svc p { font: 400 15px/1.72 var(--ed-sans); color: rgba(255,255,255,.7); margin: 0; }
.edp-svc .edp-svc-tag { display: inline-block; font: 700 10px var(--ed-sans); letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--ed-gold); margin-bottom: 6px; }

/* Two-audience services split */
.edp-aud-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.edp-aud { background: linear-gradient(180deg, var(--ed-ink-2), var(--ed-ink-3));
  border: 1px solid var(--ed-line); border-radius: 20px; padding: 34px; }
.edp-aud .edp-pill { display: inline-block; font: 700 11px var(--ed-sans); letter-spacing: 1.5px;
  text-transform: uppercase; color: #1a1408; background: var(--ed-gold); padding: 5px 14px; border-radius: 999px; }
.edp-aud .edp-pill.alt { background: #fff; color: var(--ed-ink); }
.edp-aud h3 { font-family: var(--ed-serif); font-weight: 600; color: #fff; font-size: 1.7rem; margin: 16px 0 8px; }
.edp-aud > p { font: 400 15px/1.7 var(--ed-sans); color: rgba(255,255,255,.66); margin: 0 0 18px; }
.edp-aud ul { list-style: none; margin: 0 0 24px; padding: 0; }
.edp-aud ul li { position: relative; padding: 11px 0 11px 30px; font: 500 14.5px/1.5 var(--ed-sans);
  color: rgba(255,255,255,.85); border-top: 1px solid rgba(255,255,255,.06); }
.edp-aud ul li:first-child { border-top: 0; }
.edp-aud ul li::before { content: ""; position: absolute; left: 4px; top: 16px; width: 9px; height: 5px;
  border-left: 2px solid var(--ed-gold); border-bottom: 2px solid var(--ed-gold); transform: rotate(-45deg); }
.edp-aud ul li b { color: #fff; font-weight: 700; }

/* ── PRICING ── */
.edp-pricing-toggle { display: inline-flex; gap: 4px; background: var(--ed-ink-2); border: 1px solid var(--ed-line);
  border-radius: 999px; padding: 5px; margin: 0 auto 8px; }
.edp-pricing-toggle button { border: 0; background: transparent; color: rgba(255,255,255,.7);
  font: 700 14px var(--ed-sans); padding: 10px 26px; border-radius: 999px; cursor: pointer; transition: .2s; }
.edp-pricing-toggle button.is-active { background: var(--ed-gold); color: #1a1408; }

.edp-trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 12px 0; }
.edp-trust-item { display: flex; gap: 14px; align-items: flex-start; background: var(--ed-ink-2);
  border: 1px solid var(--ed-line); border-radius: 14px; padding: 20px 22px; }
.edp-trust-item .ic { flex: 0 0 38px; width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(201,169,106,.12); border: 1px solid rgba(201,169,106,.4); color: var(--ed-gold); }
.edp-trust-item .tx b { font-family: var(--ed-serif); font-size: 1.05rem; color: #fff; display: block; }
.edp-trust-item .tx span { font: 400 13.5px/1.5 var(--ed-sans); color: rgba(255,255,255,.6); }

.edp-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.edp-plan { position: relative; display: flex; flex-direction: column; background: var(--ed-ink-2);
  border: 1px solid var(--ed-line); border-radius: 20px; padding: 32px 30px 34px; transition: .3s; }
.edp-plan:hover { transform: translateY(-4px); border-color: rgba(201,169,106,.45); }
.edp-plan.feat { border: 1.5px solid var(--ed-gold); box-shadow: 0 22px 60px rgba(201,169,106,.16); }
.edp-plan-flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--ed-gold); color: #1a1408; font: 700 10px var(--ed-sans); letter-spacing: 1.5px;
  text-transform: uppercase; padding: 6px 16px; border-radius: 999px; white-space: nowrap; }
.edp-plan .pn { font: 700 12px var(--ed-sans); letter-spacing: 2px; text-transform: uppercase; color: var(--ed-gold); }
.edp-plan .pp { font-family: var(--ed-serif); font-size: 2.5rem; color: #fff; line-height: 1; margin: 12px 0 2px; }
.edp-plan .pp .cyc { font-family: var(--ed-sans); font-size: .95rem; font-weight: 500; color: rgba(255,255,255,.5); }
.edp-plan .pd { font: 400 14px/1.55 var(--ed-sans); color: rgba(255,255,255,.6); margin: 6px 0 20px; min-height: 44px; }
.edp-plan ul { list-style: none; margin: 0 0 26px; padding: 0; flex: 1; }
.edp-plan ul li { position: relative; padding: 10px 0 10px 28px; font: 500 14px/1.5 var(--ed-sans);
  color: rgba(255,255,255,.84); border-top: 1px solid rgba(255,255,255,.06); }
.edp-plan ul li:first-child { border-top: 0; }
.edp-plan ul li::before { content: ""; position: absolute; left: 2px; top: 15px; width: 9px; height: 5px;
  border-left: 2px solid var(--ed-gold); border-bottom: 2px solid var(--ed-gold); transform: rotate(-45deg); }
.edp-plan .edp-btn-gold, .edp-plan .edp-btn-ghost { width: 100%; text-align: center; }
.edp-pricing-group { display: none; }
.edp-pricing-group.is-active { display: block; }

/* comparison table */
.edp-compare { width: 100%; border-collapse: collapse; border: 1px solid var(--ed-line); border-radius: 14px; overflow: hidden; }
.edp-compare th, .edp-compare td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--ed-line);
  font: 500 14px var(--ed-sans); color: rgba(255,255,255,.82); }
.edp-compare thead th { font: 700 12px var(--ed-sans); letter-spacing: 1px; text-transform: uppercase;
  color: var(--ed-gold); background: rgba(255,255,255,.03); }
.edp-compare tbody tr:last-child td { border-bottom: 0; }
.edp-compare td:first-child { color: #fff; font-weight: 600; }
.edp-compare .yes { color: var(--ed-gold-2); }
.edp-compare .no { color: rgba(255,255,255,.35); }
.edp-compare-wrap { overflow-x: auto; border-radius: 14px; }

/* ── FAQ accordion (editorial) ── */
.edp-faq-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.edp-faq-nav a { color: rgba(255,255,255,.72); font: 600 13px var(--ed-sans); text-decoration: none;
  border: 1px solid var(--ed-line); border-radius: 999px; padding: 8px 18px; transition: .2s; }
.edp-faq-nav a:hover { border-color: var(--ed-gold); color: #fff; }
.edp-faq-group { margin-bottom: 44px; scroll-margin-top: 90px; }
.edp-faq-group > h2 { font-family: var(--ed-serif); font-weight: 600; color: #fff; font-size: 1.5rem; margin: 0 0 18px;
  padding-bottom: 12px; border-bottom: 1px solid var(--ed-line); }
.edp-acc-item { border: 1px solid var(--ed-line); border-radius: 14px; margin-bottom: 12px; overflow: hidden;
  background: var(--ed-ink-2); transition: border-color .25s; }
.edp-acc-item.is-open { border-color: rgba(201,169,106,.5); }
.edp-acc-q { width: 100%; text-align: left; background: transparent; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; font-family: var(--ed-serif); font-size: 1.12rem; color: #fff; line-height: 1.35; }
.edp-acc-q .ar { flex: 0 0 22px; color: var(--ed-gold); font-size: 1.4rem; transition: transform .3s; line-height: 1; }
.edp-acc-item.is-open .edp-acc-q .ar { transform: rotate(45deg); }
.edp-acc-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.edp-acc-a-inner { padding: 0 24px 22px; color: rgba(255,255,255,.74); font: 400 15px/1.75 var(--ed-sans); }

/* ── CONTACT ── */
.edp-contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: start; }
.edp-contact-card { background: var(--ed-ink-2); border: 1px solid var(--ed-line); border-radius: 18px; padding: 32px; }
.edp-contact-card h2 { font-family: var(--ed-serif); font-weight: 600; color: #fff; font-size: 1.5rem; margin: 0 0 6px; }
.edp-form label { display: block; font: 600 12px var(--ed-sans); letter-spacing: .5px; color: rgba(255,255,255,.78);
  margin: 0 0 7px; text-transform: uppercase; }
.edp-form .fld { margin-bottom: 18px; }
.edp-form input, .edp-form select, .edp-form textarea { width: 100%; background: rgba(255,255,255,.06);
  border: 1px solid var(--ed-line); color: #fff; border-radius: 10px; padding: 13px 15px; font: 500 14px var(--ed-sans); }
.edp-form input::placeholder, .edp-form textarea::placeholder { color: rgba(255,255,255,.4); }
.edp-form input:focus, .edp-form select:focus, .edp-form textarea:focus { outline: none; border-color: var(--ed-gold);
  background: rgba(255,255,255,.1); }
.edp-form select option { color: #111; }
.edp-form .grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.edp-contact-info { display: flex; flex-direction: column; gap: 16px; }
.edp-info-row { display: flex; gap: 14px; align-items: flex-start; }
.edp-info-row .ic { flex: 0 0 40px; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(201,169,106,.12); border: 1px solid rgba(201,169,106,.4); color: var(--ed-gold); }
.edp-info-row .tx b { font: 700 11px var(--ed-sans); letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--ed-gold); display: block; margin-bottom: 3px; }
.edp-info-row .tx span, .edp-info-row .tx a { font: 500 15px var(--ed-sans); color: rgba(255,255,255,.85);
  text-decoration: none; line-height: 1.5; }
.edp-info-row .tx a:hover { color: var(--ed-gold-2); }
.edp-safety-note { background: rgba(201,169,106,.1); border: 1px solid rgba(201,169,106,.4); border-radius: 14px;
  padding: 20px 22px; }
.edp-safety-note h4 { font-family: var(--ed-serif); color: #fff; font-size: 1.1rem; margin: 0 0 8px; }
.edp-safety-note p { font: 400 13.5px/1.6 var(--ed-sans); color: rgba(255,255,255,.72); margin: 0; }
.edp-alert { border-radius: 12px; padding: 14px 18px; font: 500 14px var(--ed-sans); margin-bottom: 20px; }
.edp-alert.ok { background: rgba(80,180,120,.14); border: 1px solid rgba(120,200,150,.45); color: #aef0c4; }
.edp-alert.err { background: rgba(210,80,80,.12); border: 1px solid rgba(210,110,110,.4); color: #ffc2c2; }

/* generic CTA band (about/services/contact) */
.edp-ctaband { text-align: center; background: linear-gradient(180deg, var(--ed-ink-2), var(--ed-ink-3));
  border: 1px solid var(--ed-line); border-radius: 22px; padding: 54px 28px; margin: 40px 0 72px; }
.edp-ctaband h2 { font-family: var(--ed-serif); font-weight: 600; color: #fff; font-size: clamp(1.7rem,3.2vw,2.3rem); margin: 0 0 10px; }
.edp-ctaband h2 em { font-style: italic; color: var(--ed-gold); }
.edp-ctaband p { color: rgba(255,255,255,.66); font: 400 16px/1.6 var(--ed-sans); max-width: 56ch; margin: 0 auto 24px; }
.edp-ctaband .row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 991.98px) {
  .edp-split, .edp-split.rev { grid-template-columns: 1fr; gap: 32px; }
  .edp-statband { grid-template-columns: repeat(2, 1fr); }
  .edp-statband .it:nth-child(2) { border-right: 0; }
  .edp-statband .it:nth-child(1), .edp-statband .it:nth-child(2) { border-bottom: 1px solid var(--ed-line); }
  .edp-values { grid-template-columns: 1fr; }
  .edp-svc-grid, .edp-aud-grid { grid-template-columns: 1fr; }
  .edp-plans { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .edp-trust-strip { grid-template-columns: 1fr; }
  .edp-contact-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 575.98px) {
  .edp-statband { grid-template-columns: 1fr; }
  .edp-statband .it { border-right: 0; border-bottom: 1px solid var(--ed-line); }
  .edp-statband .it:last-child { border-bottom: 0; }
  .edp-form .grid2 { grid-template-columns: 1fr; }
  .edp-sec { padding: 44px 0; }
}
