:root {
      --bg: #07140e;
      --bg-2: #0c2218;
      --ink: #f2f5f1;
      --muted: #a8b7ad;
      --accent: #d4b483;
      --accent-2: #e8d2a8;
      --line: rgba(242, 245, 241, 0.12);
      --font-display: "Unbounded", system-ui, sans-serif;
      --font-body: "Onest", system-ui, sans-serif;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      background: var(--bg);
      color: var(--ink);
      line-height: 1.55;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }

    .nav {
      position: fixed; inset: 0 0 auto; z-index: 50;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.1rem 6vw;
      background: rgba(7,20,14,.72);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1px solid transparent;
      transition: background .25s ease, border-color .25s ease;
    }
    .nav.is-solid {
      background: rgba(7,20,14,.94);
      border-bottom-color: var(--line);
    }
    .nav-brand {
      font-family: var(--font-display);
      font-size: .95rem; letter-spacing: .04em; font-weight: 700;
    }
    .nav-links {
      display: flex; gap: 1.5rem; align-items: center;
      font-size: .9rem; color: var(--muted);
    }
    .nav-links a:hover { color: var(--ink); }
    .nav-cta {
      color: var(--bg) !important; background: var(--accent);
      padding: .55rem 1rem; font-weight: 600; font-size: .85rem;
      transition: background .25s ease, transform .25s ease;
    }
    .nav-cta:hover { background: var(--accent-2); transform: translateY(-1px); }

    .hero {
      min-height: 100svh; display: grid; place-items: end start;
      padding: 0 6vw 12vh; position: relative; isolation: isolate;
      overflow: hidden;
    }
    .hero-media {
      position: absolute; inset: 0; z-index: -2;
      overflow: hidden;
    }
    .hero-media img {
      width: 100%; height: 100%; object-fit: cover;
      object-position: 58% 28%;
      transform: scale(1.04);
      animation: ken 18s ease-in-out infinite alternate;
      filter: saturate(1.05) contrast(1.05);
    }
    .hero-media::after {
      content: ""; position: absolute; inset: 0;
      background:
        linear-gradient(105deg, rgba(7,20,14,.92) 0%, rgba(7,20,14,.72) 34%, rgba(7,20,14,.35) 58%, rgba(7,20,14,.55) 100%),
        linear-gradient(to top, rgba(7,20,14,.95) 0%, rgba(7,20,14,.45) 38%, transparent 62%);
    }
    @media (max-width: 799px) {
      .hero {
        place-items: end stretch;
        padding: 0 6vw max(5.5rem, 12vh);
      }
      .hero-media img { object-position: 70% 30%; }
      .hero-media::after {
        background:
          linear-gradient(to top, rgba(7,20,14,.96) 0%, rgba(7,20,14,.7) 42%, rgba(7,20,14,.35) 70%),
          linear-gradient(to right, rgba(7,20,14,.55), transparent 55%);
      }
      .hero-copy { max-width: none; }
    }
    @keyframes ken {
      from { transform: scale(1.06) translate3d(0,0,0); }
      to { transform: scale(1.12) translate3d(-1.5%, 1%, 0); }
    }
    @keyframes rise {
      from { opacity: 0; transform: translateY(18px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .hero-copy {
      max-width: 40rem;
      position: relative;
      z-index: 2;
    }
    .hero-brand {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 7.5vw, 4.8rem);
      line-height: .95; letter-spacing: -.02em;
      margin-bottom: 1.1rem; animation: rise .8s ease both;
    }
    .hero-brand span {
      display: block; color: var(--accent); font-size: .34em;
      letter-spacing: .14em; margin-top: .55rem; font-weight: 500;
    }
    .trust {
      display: flex; flex-wrap: wrap; gap: .5rem .85rem;
      color: var(--muted); font-size: .82rem; margin-bottom: 1.1rem;
      animation: rise .8s ease .08s both;
    }
    .trust span::before { content: "·"; margin-right: .85rem; color: var(--accent); }
    .trust span:first-child::before { content: none; margin: 0; }
    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(1.25rem, 3vw, 1.85rem);
      font-weight: 500; line-height: 1.25; margin-bottom: .85rem;
      animation: rise .8s ease .12s both;
    }
    .hero p {
      color: var(--muted); font-size: clamp(1rem, 2vw, 1.12rem);
      max-width: 34rem; margin-bottom: 1.75rem;
      animation: rise .8s ease .22s both;
    }
    .cta-row {
      display: flex; flex-wrap: wrap; gap: .75rem;
      animation: rise .8s ease .32s both;
    }
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      padding: .9rem 1.25rem; font-weight: 600; font-size: .95rem;
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary { background: var(--accent); color: var(--bg); }
    .btn-primary:hover { background: var(--accent-2); }
    .btn-ghost {
      border: 1px solid var(--line); color: var(--ink);
      background: rgba(255,255,255,.03);
    }
    .btn-ghost:hover { border-color: rgba(242,245,241,.35); }

    section { padding: 5.5rem 6vw; border-top: 1px solid var(--line); }
    .section-kicker {
      color: var(--accent); font-size: .8rem; letter-spacing: .16em;
      text-transform: uppercase; margin-bottom: .75rem; font-weight: 600;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(1.55rem, 3.4vw, 2.3rem);
      line-height: 1.15; max-width: 20ch; margin-bottom: 1rem;
    }
    .section-lead { color: var(--muted); max-width: 40rem; margin-bottom: 2.5rem; }

    .method { display: grid; gap: 1.25rem; counter-reset: step; }
    .method li {
      list-style: none; display: grid; grid-template-columns: auto 1fr;
      gap: 1rem; align-items: start; padding: 1.1rem 0;
      border-bottom: 1px solid var(--line);
      opacity: 0; transform: translateY(12px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .method li.in { opacity: 1; transform: none; }
    .method li::before {
      counter-increment: step; content: counter(step, decimal-leading-zero);
      font-family: var(--font-display); color: var(--accent);
      font-size: .95rem; padding-top: .15rem;
    }
    .method strong { display: block; font-size: 1.05rem; margin-bottom: .25rem; }
    .method span { color: var(--muted); font-size: .95rem; }

    .audiences { display: grid; gap: 2rem; }
    @media (min-width: 800px) {
      .audiences { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
    }
    .audiences h3 {
      font-family: var(--font-display); font-size: 1.1rem; margin-bottom: .5rem;
    }
    .audiences p { color: var(--muted); font-size: .95rem; }

    .packages {
      display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line);
    }
    @media (min-width: 900px) { .packages { grid-template-columns: repeat(3, 1fr); } }
    .packages article {
      background: var(--bg-2); padding: 1.75rem 1.5rem 1.5rem;
      display: flex; flex-direction: column; gap: .75rem;
    }
    .packages article.featured {
      background: linear-gradient(180deg, #143628 0%, var(--bg-2) 100%);
    }
    .packages h3 { font-family: var(--font-display); font-size: 1.2rem; }
    .packages .tag {
      color: var(--accent); font-size: .75rem; letter-spacing: .12em;
      text-transform: uppercase; font-weight: 600;
    }
    .packages p { color: var(--muted); font-size: .95rem; flex: 1; }
    .packages .price { font-family: var(--font-display); font-size: 1rem; }

    .about-grid { display: grid; gap: 2rem; }
    @media (min-width: 800px) {
      .about-grid { grid-template-columns: 1.15fr .85fr; align-items: start; }
    }
    .cv {
      margin-top: 1.5rem; color: var(--muted); font-size: .9rem;
    }
    .cv strong { color: var(--ink); display: block; margin: 1rem 0 .35rem; font-size: .8rem;
      letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }
    .about-visuals {
      display: grid;
      gap: 1rem;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
      align-items: stretch;
    }
    @media (max-width: 799px) {
      .about-visuals { grid-template-columns: 1fr 1fr; gap: .75rem; }
    }
    .about-panel {
      border: 1px solid var(--line); position: relative; overflow: hidden;
      display: grid;
      place-items: center;
      background:
        radial-gradient(circle at 50% 40%, rgba(212,180,131,.12), transparent 55%),
        var(--bg-2);
      min-height: 0;
      height: 100%;
    }
    .about-panel.portrait {
      padding: 0;
      aspect-ratio: 3 / 4;
      max-height: 400px;
    }
    .about-panel.portrait img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }
    .about-panel.badge {
      padding: 1.5rem 1rem 2.5rem;
      aspect-ratio: auto;
      max-height: 400px;
    }
    .about-panel.badge img {
      width: min(78%, 200px);
      height: auto;
      object-fit: contain;
    }
    .about-panel figcaption {
      position: absolute; left: 0; right: 0; bottom: 0;
      padding: .85rem 1rem;
      background: linear-gradient(to top, rgba(7,20,14,.92), transparent);
      color: var(--muted); font-size: .8rem;
      text-align: center;
    }
    .about-panel strong { color: var(--ink); }

    .cred-embeds {
      margin-top: 2rem;
      display: grid;
      gap: 1rem;
    }
    @media (min-width: 800px) {
      .cred-embeds {
        grid-template-columns: 1fr 1fr;
        gap: 1.1rem;
      }
    }
    .cred-embed {
      display: block;
      text-decoration: none;
      color: inherit;
      border: 1px solid var(--line);
      background: #0c1a12;
      overflow: hidden;
      transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
    }
    .cred-embed:hover {
      border-color: rgba(242, 245, 241, 0.28);
      transform: translateY(-2px);
      box-shadow: 0 16px 40px rgba(0,0,0,.28);
    }
    .cred-embed-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: .85rem 1rem;
      background: #111;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .cred-embed-bar img {
      display: block;
      width: auto;
    }
    .cred-embed-bar .logo-tm {
      height: 34px;
    }
    .cred-embed-bar .logo-tff {
      height: 36px;
    }
    .cred-embed-id {
      font-size: .72rem;
      letter-spacing: .08em;
      color: rgba(255,255,255,.45);
      font-variant-numeric: tabular-nums;
    }
    .cred-embed-body {
      display: grid;
      grid-template-columns: 64px 1fr;
      gap: .9rem;
      padding: 1rem 1rem 1.1rem;
      align-items: center;
    }
    .cred-embed-avatar {
      width: 64px;
      height: 64px;
      object-fit: cover;
      object-position: center top;
      border: 1px solid var(--line);
      background: var(--bg-2);
    }
    .cred-embed-name {
      font-family: var(--font-display);
      font-size: 1.05rem;
      line-height: 1.2;
      margin-bottom: .2rem;
    }
    .cred-embed-role {
      color: var(--muted);
      font-size: .85rem;
      margin-bottom: .7rem;
    }
    .cred-links {
      display: flex;
      flex-wrap: wrap;
      gap: .45rem;
    }
    .cred-chip {
      display: inline-flex;
      align-items: center;
      gap: .35rem;
      padding: .45rem .7rem;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.03);
      color: var(--accent);
      font-size: .78rem;
      font-weight: 600;
      transition: background .2s ease, border-color .2s ease, color .2s ease;
    }
    .cred-chip:hover {
      background: rgba(212,180,131,.12);
      border-color: rgba(212,180,131,.4);
      color: var(--accent-2);
    }
    .cred-embed-cta {
      font-size: .82rem;
      font-weight: 600;
      color: var(--accent);
    }
    a.cred-embed:hover .cred-embed-cta {
      color: var(--accent-2);
    }

    .subhead {
      font-family: var(--font-display);
      font-size: 1rem;
      letter-spacing: .04em;
      margin: 2.25rem 0 1rem;
      color: var(--accent);
      font-weight: 500;
    }

    .press-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
    }
    @media (min-width: 800px) {
      .press-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
    }
    .press-card {
      all: unset;
      box-sizing: border-box;
      cursor: zoom-in;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--line);
      background: #0a1812;
      padding: .75rem;
    }
    .press-card img {
      width: 100%;
      height: auto;
      max-height: min(68vh, 580px);
      object-fit: contain;
      display: block;
    }
    .press-card:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    .photo-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: .7rem;
    }
    @media (min-width: 800px) {
      .photo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .85rem; }
    }
    @media (min-width: 1100px) {
      .photo-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    }
    .photo-card {
      all: unset;
      box-sizing: border-box;
      cursor: zoom-in;
      display: block;
      overflow: hidden;
      border: 1px solid var(--line);
      background: #0a1812;
      aspect-ratio: 3 / 2;
      width: 100%;
    }
    .photo-card.is-portrait {
      aspect-ratio: 3 / 4;
    }
    .photo-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: transform .45s ease;
    }
    .photo-card.is-portrait img { object-position: center top; }
    .photo-card:hover img,
    .photo-card:focus-visible img { transform: scale(1.04); }
    .photo-card:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    /* Antrenörlük: tek tip kutu — kırpılmış, hizalı grid */
    #coachingGallery {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: .65rem;
    }
    @media (min-width: 640px) {
      #coachingGallery { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .8rem; }
    }
    @media (min-width: 1024px) {
      #coachingGallery { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .9rem; }
    }
    #coachingGallery .photo-card,
    #coachingGallery .photo-card.is-portrait,
    #coachingGallery .photo-card.is-landscape,
    #coachingGallery .photo-card.is-wide {
      aspect-ratio: 4 / 3;
      grid-column: auto;
      width: 100%;
      min-width: 0;
    }
    #coachingGallery .photo-card img {
      object-fit: cover;
      object-position: center 28%;
    }

    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: none;
      align-items: center;
      justify-content: center;
      background: rgba(3, 10, 7, .94);
      padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
      cursor: zoom-out;
      overflow: hidden;
    }
    .lightbox.open { display: flex; }
    .lightbox img {
      display: block;
      max-width: min(96vw, 1100px);
      max-height: min(85dvh, 85vh);
      width: auto;
      height: auto;
      margin: auto;
      object-fit: contain;
      border: 1px solid var(--line);
      box-shadow: 0 30px 80px rgba(0,0,0,.5);
      position: relative;
      z-index: 1;
    }
    .lightbox[data-kind="press"] img {
      max-width: min(96vw, 820px);
      max-height: min(90dvh, 90vh);
    }
    .lightbox-close {
      position: absolute;
      top: max(.75rem, env(safe-area-inset-top));
      right: max(.75rem, env(safe-area-inset-right));
      border: 1px solid var(--line);
      background: rgba(7,20,14,.85);
      color: var(--ink);
      font-family: var(--font-body);
      font-size: .85rem;
      font-weight: 600;
      padding: .55rem .85rem;
      cursor: pointer;
      z-index: 2;
    }

    .saha-visual {
      width: 100vw;
      max-width: 100vw;
      margin: 0 calc(50% - 50vw) 2.25rem;
      overflow: hidden;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      aspect-ratio: 21 / 9;
      max-height: min(52vh, 560px);
      background: #0a1812;
    }
    .saha-visual img {
      width: 100%; height: 100%; object-fit: cover;
      object-position: center 45%;
      display: block;
      animation: sahaIn 1.2s ease both;
    }
    @media (max-width: 799px) {
      .saha-visual {
        aspect-ratio: 16 / 10;
        max-height: min(42vh, 360px);
      }
    }
    @keyframes sahaIn {
      from { opacity: .4; transform: scale(1.04); }
      to { opacity: 1; transform: scale(1); }
    }

    .facility { display: grid; gap: 1rem; }
    @media (min-width: 700px) { .facility { grid-template-columns: 1fr 1fr; gap: 1.5rem 2.5rem; } }
    .facility dt {
      font-family: var(--font-display); font-size: .85rem; color: var(--accent);
      margin-bottom: .2rem;
    }
    .facility dd { color: var(--muted); font-size: .95rem; margin-bottom: .75rem; }

    .final {
      background: radial-gradient(ellipse at 20% 0%, rgba(45,138,85,.2), transparent 50%), var(--bg);
    }
    footer {
      padding: 2rem 6vw 3rem; border-top: 1px solid var(--line);
      color: var(--muted); font-size: .85rem;
      display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
    }
    @media (max-width: 799px) {
      .nav {
        flex-wrap: wrap;
        gap: .65rem .85rem;
        padding: .85rem 5vw;
      }
      .nav-links {
        width: 100%;
        flex-wrap: wrap;
        gap: .55rem .85rem;
        font-size: .8rem;
        justify-content: flex-start;
      }
      .nav-links a:not(.nav-cta) { display: inline; }
      .nav-cta { margin-left: auto; }
    }

/* —— Multi-page additions —— */
.page-hero {
  padding: 7.5rem 6vw 3rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 80% 0%, rgba(45,138,85,.18), transparent 45%),
    var(--bg);
}
.page-hero .section-kicker { margin-bottom: .65rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.15;
  max-width: 18ch;
  margin-bottom: 1rem;
}
.page-hero .lead {
  color: var(--muted);
  max-width: 40rem;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: .4rem .65rem;
  font-size: .8rem; color: var(--muted); margin-bottom: 1.25rem;
}
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span[aria-current] { color: var(--accent); }

.prose { max-width: 42rem; }
.prose p { color: var(--muted); margin-bottom: 1.1rem; }
.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: var(--ink);
  margin: 2.25rem 0 .85rem;
  line-height: 1.2;
}
.prose h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  margin: 1.75rem 0 .55rem;
}
.prose ul, .prose ol {
  color: var(--muted);
  margin: 0 0 1.25rem 1.2rem;
}
.prose li { margin-bottom: .45rem; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--accent-2); }
.prose strong { color: var(--ink); }

.faq { display: grid; gap: 0; border-top: 1px solid var(--line); margin-top: 1rem; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}
.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 1.2rem; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); margin-top: .75rem; font-size: .95rem; }

.card-grid {
  display: grid; gap: 1rem;
}
@media (min-width: 800px) {
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
}
.soft-card {
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 1.35rem 1.25rem;
}
.soft-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: .45rem;
}
.soft-card p { color: var(--muted); font-size: .95rem; }
.soft-card a.more {
  display: inline-block; margin-top: .85rem;
  color: var(--accent); font-weight: 600; font-size: .9rem;
}
.soft-card a.more:hover { color: var(--accent-2); }

.nap {
  display: grid; gap: 1.25rem;
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 1.5rem;
}
@media (min-width: 700px) { .nap { grid-template-columns: 1fr 1fr; } }
.nap dt {
  font-family: var(--font-display);
  font-size: .8rem;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .25rem;
}
.nap dd { color: var(--muted); margin-bottom: .85rem; font-size: .95rem; }
.nap a { color: var(--accent); }

.blog-list { display: grid; gap: 1rem; }
.blog-item {
  display: block;
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 1.35rem 1.25rem;
  transition: border-color .2s ease, transform .2s ease;
}
.blog-item:hover {
  border-color: rgba(242,245,241,.28);
  transform: translateY(-2px);
}
.blog-item time { color: var(--accent); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.blog-item h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: .45rem 0 .5rem;
}
.blog-item p { color: var(--muted); font-size: .95rem; }

.related {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.related h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.footer-nav {
  display: flex; flex-wrap: wrap; gap: .65rem 1.25rem;
  width: 100%;
  margin-bottom: .75rem;
}
.footer-nav a { color: var(--muted); }
.footer-nav a:hover { color: var(--ink); }
footer { flex-direction: column; align-items: flex-start; }
.footer-meta {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; width: 100%;
}

.home-strip {
  display: grid; gap: 1.25rem;
}
@media (min-width: 800px) {
  .home-strip { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.home-strip article h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: .4rem;
}
.home-strip article p { color: var(--muted); font-size: .95rem; }
.home-strip a { color: var(--accent); font-weight: 600; font-size: .9rem; }

.map-embed {
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  max-height: 420px;
  background: var(--bg-2);
}
.map-embed iframe {
  width: 100%; height: 100%; border: 0; display: block;
}


.nav-links a.is-active { color: var(--ink); }
