/*
 Theme Name:   Hello Elementor Child
 Theme URI:    https://example.com/hello-elementor-child
 Description:  Hello Elementor Child Theme
 Author:       Your Name
 Author URI:   https://example.com
 Template:     hello-elementor
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  https://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  hello-elementor-child
*/

/* Add your custom styles below this line */

/* ============================================
   Hero Collage Shortcode Styles
   ============================================ */
:root {
    /* Brand palette */
    --green:       #43b5a0;
    --green-hover: #379584;
    --orange:      #e4572e;
    --orange-hover:#d9481c;
    --purple:      #5b5f97;
    --purple-hover:#4d5080;
    --yellow:      #fbca3d;
    --pink:        #eba6a9;
    --black:       #121212;
    --grey:        #555555;
    --light-grey:  #f7f7f7;
    --white:       #ffffff;

    /* Semantic */
    --ink:   var(--black);
    --ink-2: #2a2a2a;
    --muted: var(--grey);
    --bg:    #ffffff;
    --surface: var(--light-grey);

    --radius:    20px;
    --radius-lg: 28px;
    --shadow-hard:    0 4px 0 0 var(--black);
    --shadow-hard-lg: 0 6px 0 0 var(--black);
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    font-size: 17px;
    line-height: 1.55;
  }
  h1,h2,h3,h4 {
    font-family: "Poppins", "DM Sans", sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0;
    line-height: 1.08;
    text-wrap: balance;
  }
  p { text-wrap: pretty; margin: 0; }
  a { color: inherit; }
  img { max-width: 100%; display: block; }

  .wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
  @media (max-width: 640px) { .wrap { padding: 0 20px; } }

  /* ----- NAV ----- */
  .nav {
    position: sticky; top: 0; z-index: 40;
    backdrop-filter: saturate(1.2) blur(12px);
    background: rgba(255,255,255,0.82);
    border-bottom: 1px solid rgba(18,18,18,0.08);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 32px;
    max-width: 1240px; margin: 0 auto;
  }
  .brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .brand img { height: 34px; width: auto; }
  .brand .pill { background: var(--black); color: var(--white); font-size: 11px; padding: 4px 9px; border-radius: 999px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; font-family: "Poppins"; }
  .nav-links { display: flex; align-items: center; gap: 28px; font-size: 15px; font-weight: 500; }
  .nav-links a { text-decoration: none; color: var(--ink-2); transition: color .15s; }
  .nav-links a:hover { color: var(--green); }
  @media (max-width: 860px) { .nav-links .hide-m { display: none; } }

  /* ----- BUTTONS ----- */
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    font-family: "Poppins"; font-weight: 600; font-size: 15px;
    text-decoration: none;
    border: 2px solid var(--black);
    background: var(--black);
    color: var(--white);
    transition: background .15s, transform .12s, box-shadow .12s;
    box-shadow: var(--shadow-hard);
    cursor: pointer;
  }
  .btn:hover { transform: translate(-1px,-1px); box-shadow: 0 5px 0 0 var(--black); }
  .btn:active { transform: translate(0,2px); box-shadow: 0 2px 0 0 var(--black); }
  .btn.primary { background: var(--green); color: var(--white); }
  .btn.primary:hover { background: var(--green-hover); }
  .btn.orange { background: var(--orange); color: var(--white); }
  .btn.orange:hover { background: var(--orange-hover); }
  .btn.ghost { background: transparent; color: var(--black); box-shadow: none; }
  .btn.ghost:hover { background: rgba(18,18,18,0.05); box-shadow: none; transform: none; }
  .btn.lg { padding: 18px 30px; font-size: 17px; }
  .btn .arrow { transition: transform .2s; }
  .btn:hover .arrow { transform: translateX(3px); }

  /* ----- HERO ----- */
  .hero { position: relative; padding: 80px 0 96px; overflow: hidden; }
  .hero .grid {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center;
  }
  @media (max-width: 980px) { .hero .grid { grid-template-columns: 1fr; gap: 40px; } }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(67,181,160,0.12);
    color: var(--green-hover);
    font-family: "Poppins"; font-weight: 600; font-size: 13px;
    padding: 8px 14px; border-radius: 999px;
    border: 1.5px solid var(--green);
  }
  .eyebrow .dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: .7; } }

  h1.hero-h {
    font-size: clamp(42px, 6vw, 82px);
    margin-top: 22px;
    letter-spacing: -0.035em;
    font-weight: 700;
  }
  h1.hero-h .swoop {
    position: relative; display: inline-block;
    color: var(--green);
  }
  h1.hero-h .swoop::after {
    content: "";
    position: absolute; left: -2%; right: -2%; bottom: -6px;
    height: 12px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 14' preserveAspectRatio='none'><path d='M2 10 C 60 2, 140 14, 298 4' stroke='%23fbca3d' stroke-width='6' fill='none' stroke-linecap='round'/></svg>") no-repeat center/100% 100%;
  }
  .hero-sub {
    margin-top: 22px; font-size: 19px; color: var(--ink-2); max-width: 560px;
  }
  .hero-ctas { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
  .hero-meta { margin-top: 36px; display: flex; gap: 28px; flex-wrap: wrap; font-size: 14px; color: var(--muted); }
  .hero-meta .m { display: inline-flex; align-items: center; gap: 8px; }
  .hero-meta .m svg { color: var(--green); }

  /* Hero collage of "real humans" (placeholders) */
  .hero-collage {
    position: relative;
    height: 520px;
  }
  @media (max-width: 980px) { .hero-collage { height: 440px; max-width: 520px; margin: 0 auto; } }

  .photo {
    position: absolute;
    background: var(--light-grey);
    border: 2px solid var(--black);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hard-lg);
    overflow: hidden;
    display: flex; align-items: flex-end;
    font-family: "DM Sans"; font-size: 11px; color: var(--muted);
  }
  .photo .ph {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 6px;
    color: var(--grey); font-family: "Poppins"; font-weight: 500;
    background-image:
      repeating-linear-gradient(45deg, rgba(18,18,18,0.045) 0 1px, transparent 1px 10px);
  }
  .photo .ph span { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
  .photo .ph small { font-size: 11px; color: var(--grey); }
  .photo .tag {
    position: absolute; bottom: 10px; left: 10px;
    background: var(--white); border: 1.5px solid var(--black);
    padding: 4px 10px; border-radius: 999px;
    font-family: "Poppins"; font-weight: 600; font-size: 11px;
    display: inline-flex; align-items: center; gap: 6px;
    box-shadow: 0 2px 0 0 var(--black);
  }
  .photo .tag .d { width: 7px; height: 7px; border-radius: 50%; }

  .photo.p1 { top: 0; left: 0; width: 58%; height: 62%; transform: rotate(-2deg); background: #F7E9D5; }
  .photo.p2 { top: 8%; right: 0; width: 42%; height: 38%; transform: rotate(3deg); background: #DCEFEC; }
  .photo.p3 { bottom: 0; left: 12%; width: 40%; height: 36%; transform: rotate(2deg); background: #F2D9DA; }
  .photo.p4 { bottom: 6%; right: 3%; width: 46%; height: 46%; transform: rotate(-3deg); background: #EDEBF3; }

  .sticker {
    position: absolute; font-family: "Caveat"; font-weight: 600; font-size: 22px;
    background: var(--yellow); color: var(--black);
    padding: 8px 14px; border-radius: 999px; border: 2px solid var(--black);
    box-shadow: var(--shadow-hard);
    z-index: 5;
  }

  /* ----- SECTIONS ----- */
  section { padding: 96px 0; position: relative; }
  .section-head { max-width: 780px; margin: 0 auto 56px; text-align: center; }
  .section-eyebrow { display: inline-block; font-family: "Poppins"; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .14em; color: var(--green); margin-bottom: 14px; }
  .section-head h2 { font-size: clamp(32px, 4.4vw, 54px); letter-spacing: -0.03em; }
  .section-head p { margin-top: 18px; font-size: 18px; color: var(--ink-2); max-width: 640px; margin-left: auto; margin-right: auto; }

  /* ----- WHAT IS ----- */
  .what { background: var(--light-grey); }
  .what-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  @media (max-width: 900px) { .what-grid { grid-template-columns: 1fr; } }
  .what-card {
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: var(--radius);
    padding: 30px;
    position: relative;
  }
  .what-card .num {
    position: absolute; top: -14px; left: 24px;
    background: var(--yellow); border: 2px solid var(--black);
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: "Poppins"; font-weight: 700; font-size: 14px;
  }
  .what-card h3 { font-size: 22px; margin-bottom: 10px; margin-top: 16px; }
  .what-card p { color: var(--ink-2); font-size: 15.5px; }
  .what-icon {
    width: 58px; height: 58px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    border: 2px solid var(--black);
  }

  /* ----- VALUES ----- */
  .values { background: var(--white); }
  .values-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
  }
  @media (max-width: 1100px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }
  .value {
    border: 2px solid var(--black);
    border-radius: var(--radius);
    padding: 26px 22px 28px;
    position: relative;
    transition: transform .2s, box-shadow .2s;
    min-height: 280px;
    display: flex; flex-direction: column;
  }
  .value:hover { transform: translate(-2px, -4px); box-shadow: var(--shadow-hard); }
  .value .num {
    font-family: "Poppins"; font-weight: 700; font-size: 13px;
    color: var(--grey); letter-spacing: .14em; margin-bottom: 14px;
  }
  .value h3 { font-size: 20px; letter-spacing: -0.02em; }
  .value p { color: var(--ink-2); font-size: 14.5px; margin-top: 12px; line-height: 1.5; }
  .value:nth-child(1) { background: rgba(67,181,160,0.14); }
  .value:nth-child(2) { background: rgba(251,202,61,0.22); }
  .value:nth-child(3) { background: rgba(228,87,46,0.14); }
  .value:nth-child(4) { background: rgba(91,95,151,0.14); }
  .value:nth-child(5) { background: rgba(235,166,169,0.3); }

  /* ----- BENEFITS (Why work with us) ----- */
  .why { background: var(--light-grey); }
  .why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  }
  @media (max-width: 940px) { .why-grid { grid-template-columns: repeat(2,1fr); } }
  @media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }
  .why-card {
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: var(--radius);
    padding: 26px 22px;
    transition: transform .2s, box-shadow .2s;
    position: relative;
    display: flex; flex-direction: column; gap: 14px;
  }
  .why-card:hover { transform: translate(-2px,-3px); box-shadow: var(--shadow-hard); }
  .why-card .i {
    width: 50px; height: 50px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--black);
    color: var(--black);
  }
  .why-card h3 { font-size: 19px; }
  .why-card p { color: var(--ink-2); font-size: 15px; }

  /* ----- WHO THRIVES ----- */
  .who-section { background: var(--white); }
  .who-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
  @media (max-width: 900px) { .who-wrap { grid-template-columns: 1fr; gap: 32px; } }
  .who-left h2 { font-size: clamp(32px, 4.4vw, 52px); letter-spacing: -0.03em; }
  .who-left p { margin-top: 16px; font-size: 17px; color: var(--ink-2); }
  .who-photo {
    margin-top: 32px;
    position: relative;
    aspect-ratio: 4/3;
    border: 2px solid var(--black);
    border-radius: var(--radius);
    background: var(--light-grey);
    overflow: hidden;
    box-shadow: var(--shadow-hard-lg);
  }
  .who-photo .ph {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 6px;
    color: var(--grey); font-family: "Poppins"; font-weight: 500;
    background-image: repeating-linear-gradient(45deg, rgba(18,18,18,0.05) 0 1px, transparent 1px 10px);
  }
  .who-photo .ph span { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
  .who-traits { display: flex; flex-direction: column; gap: 14px; }
  .trait {
    border: 2px solid var(--black); border-radius: var(--radius);
    padding: 20px 22px;
    display: flex; align-items: center; gap: 18px;
    background: var(--white);
    transition: background .2s;
  }
  .trait:hover { background: var(--light-grey); }
  .trait .marker {
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: "Poppins"; font-weight: 700; font-size: 16px;
    border: 2px solid var(--black);
    flex: 0 0 auto;
  }
  .trait h4 { font-size: 17px; margin-bottom: 4px; }
  .trait p { font-size: 14.5px; color: var(--ink-2); }

  /* ----- TESTIMONIALS ----- */
  .team { background: var(--light-grey); }
  .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  @media (max-width: 960px) { .team-grid { grid-template-columns: 1fr; } }
  .quote-card {
    border: 2px solid var(--black);
    border-radius: var(--radius);
    padding: 30px;
    display: flex; flex-direction: column;
    background: var(--white);
  }
  .quote-card:nth-child(1) { background: rgba(67,181,160,0.14); }
  .quote-card:nth-child(2) { background: rgba(251,202,61,0.22); }
  .quote-card:nth-child(3) { background: rgba(235,166,169,0.3); }
  .quote-card .qmark {
    font-family: "Poppins"; font-size: 60px; font-weight: 700;
    line-height: 0.5; color: var(--black); margin-bottom: 14px;
  }
  .quote-card blockquote {
    margin: 0; font-size: 17px; line-height: 1.55; color: var(--ink); flex: 1;
  }
  .who { margin-top: 24px; display: flex; align-items: center; gap: 14px; }
  .who .av {
    width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--black);
    overflow: hidden; flex: 0 0 auto;
    background: var(--light-grey);
    display: flex; align-items: center; justify-content: center;
    font-family: "Poppins"; font-weight: 600; font-size: 11px;
    color: var(--grey);
    background-image: repeating-linear-gradient(45deg, rgba(18,18,18,0.06) 0 1px, transparent 1px 7px);
  }
  .who .name { font-family: "Poppins"; font-weight: 600; font-size: 15px; }
  .who .loc { font-size: 13px; color: var(--grey); display: flex; align-items: center; gap: 4px; margin-top: 2px; }

  /* ----- PROCESS ----- */
  .process { background: var(--black); color: var(--white); overflow: hidden; }
  .process .section-head h2 { color: var(--white); }
  .process .section-eyebrow { color: var(--yellow); }
  .process .section-head p { color: rgba(255,255,255,0.68); }
  .process-timeline {
    position: relative;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  }
  @media (max-width: 900px) { .process-timeline { grid-template-columns: 1fr; } }
  .process-timeline::before {
    content: "";
    position: absolute; left: 12%; right: 12%; top: 44px;
    height: 2px; border-top: 2px dashed rgba(255,255,255,0.25);
  }
  @media (max-width: 900px) { .process-timeline::before { display: none; } }
  .step { text-align: center; position: relative; }
  .step .circle {
    width: 88px; height: 88px; border-radius: 50%;
    background: var(--green); color: var(--white);
    border: 3px solid var(--white);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-family: "Poppins"; font-weight: 800; font-size: 28px;
    position: relative; z-index: 1;
    box-shadow: 0 4px 0 0 var(--green-hover);
  }
  .step:nth-child(2) .circle { background: var(--yellow); color: var(--black); box-shadow: 0 4px 0 0 #d9a91f; }
  .step:nth-child(3) .circle { background: var(--orange); box-shadow: 0 4px 0 0 var(--orange-hover); }
  .step:nth-child(4) .circle { background: var(--purple); box-shadow: 0 4px 0 0 var(--purple-hover); }
  .step h4 { font-size: 20px; color: var(--white); margin-bottom: 8px; }
  .step p { color: rgba(255,255,255,0.72); font-size: 14.5px; max-width: 240px; margin: 0 auto; }

  /* ----- OPEN ROLES ----- */
  .open { background: var(--white); }
  .open-filter {
    display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
    margin: 0 auto 40px;
  }
  .filter-chip {
    font-family: "Poppins"; font-weight: 600; font-size: 14px;
    padding: 10px 18px; border-radius: 999px;
    border: 2px solid var(--black); background: var(--white); color: var(--black);
    cursor: pointer; transition: all .15s;
  }
  .filter-chip:hover { background: var(--light-grey); }
  .filter-chip.active { background: var(--black); color: var(--white); }

  .open-list {
    display: grid; grid-template-columns: 1fr; gap: 14px;
    max-width: 960px; margin: 0 auto;
  }
  .open-row {
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: var(--radius);
    padding: 22px 26px;
    display: flex; align-items: center; gap: 20px;
    transition: all .18s;
  }
  .open-row:hover { background: var(--light-grey); transform: translateX(4px); }
  .open-row .dot {
    width: 12px; height: 12px; border-radius: 50%; background: var(--green);
    flex: 0 0 auto;
    box-shadow: 0 0 0 5px rgba(67,181,160,0.22);
  }
  .open-row .body { flex: 1; min-width: 0; }
  .open-row .name { font-family: "Poppins"; font-weight: 700; font-size: 18px; }
  .open-row .meta-row { margin-top: 4px; display: flex; gap: 16px; flex-wrap: wrap; font-size: 14px; color: var(--grey); }
  .open-row .meta-row span { display: inline-flex; align-items: center; gap: 6px; }
  .open-row .apply {
    font-family: "Poppins"; font-weight: 600; font-size: 14px;
    background: var(--black); color: var(--white);
    padding: 10px 18px; border-radius: 999px; text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px; flex: 0 0 auto;
    border: 2px solid var(--black);
    transition: all .15s;
  }
  .open-row .apply:hover { background: var(--green); border-color: var(--green); }
  @media (max-width: 640px) {
    .open-row { flex-wrap: wrap; }
    .open-row .apply { margin-left: auto; }
  }

  .portfolio-note { text-align: center; margin-top: 36px; color: var(--ink-2); font-size: 16px; }
  .portfolio-note a { color: var(--green); font-weight: 600; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }

  /* ----- FINAL CTA ----- */
  .final {
    background: var(--green);
    border-top: 2px solid var(--black);
    padding: 120px 0 130px;
    position: relative; overflow: hidden;
    color: var(--white);
  }
  .final .wrap { position: relative; z-index: 1; text-align: center; }
  .final h2 { font-size: clamp(40px, 6vw, 84px); letter-spacing: -0.035em; color: var(--white); }
  .final p { margin: 22px auto 0; max-width: 560px; font-size: 18px; color: rgba(255,255,255,0.9); }
  .final .btn { margin-top: 38px; }
  .final .deer-bg {
    position: absolute; right: -40px; bottom: -40px;
    width: 380px; opacity: 0.12;
    pointer-events: none;
  }
  .final .deer-bg-2 {
    position: absolute; left: -30px; top: -20px;
    width: 220px; opacity: 0.12;
    transform: scaleX(-1) rotate(-10deg);
    pointer-events: none;
  }

  /* ----- FOOTER ----- */
  footer {
    background: var(--black); color: rgba(255,255,255,0.7);
    padding: 56px 0 40px;
  }
  footer .wrap { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: center; }
  footer .small { font-size: 13px; }
  footer .links { display: flex; gap: 28px; font-size: 14px; }
  footer .links a { color: rgba(255,255,255,0.7); text-decoration: none; }
  footer .links a:hover { color: var(--white); }
  footer img { height: 30px; width: auto; }

  /* ----- TWEAKS PANEL ----- */
  .tweaks {
    position: fixed; right: 18px; bottom: 18px; z-index: 90;
    background: var(--white); border: 2px solid var(--black); border-radius: 20px;
    padding: 16px; width: 270px;
    box-shadow: var(--shadow-hard-lg);
    font-family: "DM Sans";
    display: none;
  }
  .tweaks.open { display: block; }
  .tweaks h4 { font-family: "Poppins"; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; display: flex; justify-content: space-between; align-items: center; }
  .tweaks h4 button { background: transparent; border: none; cursor: pointer; font-size: 18px; color: var(--grey); }
  .tweaks .row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
  .tweaks label { font-size: 12px; color: var(--grey); font-weight: 500; }
  .tweaks .swatches { display: flex; gap: 6px; flex-wrap: wrap; }
  .tweaks .sw { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--black); cursor: pointer; transition: transform .15s; }
  .tweaks .sw:hover { transform: scale(1.1); }
  .tweaks .sw.active { box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--black); }
  .tweaks select, .tweaks input[type=range] {
    font-family: "DM Sans"; font-size: 13px;
    padding: 6px 8px; border: 1.5px solid var(--black); border-radius: 8px;
    background: var(--white);
  }

  /* ----- VIDEO LIGHTBOX ----- */
  .lightbox {
    position: fixed; inset: 0; z-index: 100;
    background: rgba(18,18,18,0.88);
    display: none;
    align-items: center; justify-content: center;
    padding: 24px;
    backdrop-filter: blur(6px);
    animation: fadein .18s ease;
  }
  .lightbox.open { display: flex; }
  @keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
  .lightbox .frame {
    position: relative;
    width: 100%; max-width: 1040px;
    aspect-ratio: 16/9;
    border: 2px solid var(--black);
    border-radius: var(--radius-lg);
    background: var(--black);
    box-shadow: var(--shadow-hard-lg);
    overflow: hidden;
  }
  .lightbox iframe { width: 100%; height: 100%; border: 0; display: block; }
  .lightbox .close {
    position: absolute; top: -18px; right: -18px;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--yellow); color: var(--black);
    border: 2px solid var(--black);
    box-shadow: var(--shadow-hard);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 700;
    transition: transform .15s;
  }
  .lightbox .close:hover { transform: rotate(90deg); }

  .dot-bg {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(18,18,18,0.06) 1.2px, transparent 1.2px);
    background-size: 22px 22px;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
  }