:root {
  --navy: #061B3A;
  --navy-2: #0C2B57;
  --saffron: #F26A21;
  --green: #1F8A3B;
  --cream: #FFF7EC;
  --white: #FFFFFF;
  --ink: #142033;
  --muted: #657386;
  --line: rgba(6, 27, 58, 0.12);
  --shadow: 0 18px 54px rgba(6, 27, 58, 0.12);
  --radius: 12px;
  --container: min(1180px, calc(100% - 32px));
  --topbar-height: 42px;
  --header-height: 86px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Noto Sans Devanagari", "Inter", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.container { width: var(--container); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 70;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}

.topbar .container {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.9rem;
}

.topbar__right { display: flex; align-items: center; gap: 14px; }

.topbar-phone {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 3px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  white-space: nowrap;
}

.lang-toggle {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.lang-toggle span { padding: 5px 11px; }
.lang-toggle span:first-child { background: var(--saffron); }

.header {
  position: sticky;
  top: var(--topbar-height);
  z-index: 60;
  background: rgba(255, 247, 236, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 900;
}

.brand__mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 6px 20px rgba(6, 27, 58, 0.12);
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 900;
}

.nav__links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--navy);
}

.nav__links a:hover,
.nav__links a.is-active {
  color: var(--white);
  background: var(--navy);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--navy);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.page-hero {
  padding: 52px 0 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 247, 236, 0.96)),
    var(--cream);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.75fr);
  gap: 36px;
  align-items: center;
}

.label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--saffron);
  font-family: "Inter", sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 820px;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.lead {
  max-width: 780px;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 800;
}

.hero-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: var(--shadow);
}

.hero-card b {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
}

.hero-card span { color: rgba(255, 255, 255, 0.82); font-weight: 800; }

.section { padding: 54px 0; }

.section-head {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1.18;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid.two { grid-template-columns: repeat(2, 1fr); }
.grid.four { grid-template-columns: repeat(4, 1fr); }

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(6, 27, 58, 0.08);
}

.card__media {
  height: 220px;
  background: #F6F8FB;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__body { padding: 20px; }

.tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
}

.card h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.35;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

.card-link {
  display: grid;
  height: 100%;
  color: inherit;
}

.card--linked {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card--linked:hover,
.card--linked:focus-within {
  transform: translateY(-3px);
  border-color: rgba(242, 106, 33, 0.45);
  box-shadow: 0 18px 48px rgba(6, 27, 58, 0.14);
}

.card-cta {
  display: inline-flex;
  margin-top: 16px;
  color: var(--saffron);
  font-weight: 900;
}

.archive-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.archive-stat {
  padding: 16px;
  border: 1px solid rgba(6, 27, 58, 0.10);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 28px rgba(6, 27, 58, 0.06);
}

.archive-stat b {
  display: block;
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1;
}

.archive-stat span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
}

.archive-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
}

.filter-chip.is-active {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
}

.is-filter-hidden {
  display: none !important;
}

.card--feature {
  grid-column: span 2;
}

.card--feature .card-link {
  grid-template-columns: minmax(280px, 0.95fr) 1fr;
}

.card--feature .card__media {
  height: 100%;
  min-height: 330px;
}

.card--feature h3 {
  font-size: clamp(1.55rem, 2vw, 2.2rem);
}

.card--feature .card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.mini-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
}

.mini-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #F8FAFC;
  font-size: 0.78rem;
  font-weight: 900;
}

.gallery-board {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.gallery-board .card:first-child {
  grid-row: span 2;
}

.gallery-board .card:first-child .card__media {
  height: 410px;
}

.media-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.media-tile {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #061B3A;
  box-shadow: 0 14px 38px rgba(6, 27, 58, 0.10);
}

.media-tile--wide {
  grid-column: span 2;
  min-height: 360px;
}

.media-tile img,
.media-tile video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.media-tile video {
  background: #061B3A;
}

.media-tile__caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--white);
  background: rgba(6, 27, 58, 0.78);
  backdrop-filter: blur(10px);
  font-weight: 900;
}

.media-tile__caption small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}

.coverage-list {
  display: grid;
  gap: 22px;
}

.coverage-story {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(6, 27, 58, 0.08);
}

.coverage-story__head {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(6, 27, 58, 0.96), rgba(6, 27, 58, 0.88)),
    var(--navy);
  color: var(--white);
}

.coverage-story__head h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  line-height: 1.28;
}

.coverage-story__head p {
  max-width: 900px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.coverage-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.coverage-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.10);
  font-size: 0.82rem;
  font-weight: 900;
}

.coverage-sources {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 16px;
}

.coverage-source {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #F8FAFC;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(6, 27, 58, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.coverage-source:hover,
.coverage-source:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(242, 106, 33, 0.42);
  box-shadow: 0 18px 38px rgba(6, 27, 58, 0.12);
}

.coverage-source__media {
  height: 190px;
  background: #EAF0F7;
}

.coverage-source__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coverage-source__media--logo {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 18px;
  background: #fff;
}

.coverage-source__media--logo img {
  width: min(100%, 260px);
  height: min(100%, 170px);
  object-fit: contain;
}

.coverage-source__body {
  padding: 16px;
}

.coverage-source__body h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.35;
}

.coverage-source__body p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.press-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.press-video-grid .embed-card {
  height: 100%;
}

.source-type {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--white);
  background: var(--saffron);
  font-size: 0.75rem;
  font-weight: 900;
}

.source-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--saffron);
  font-weight: 900;
}

.ps-news-grid,
.ps-gallery-grid,
.ps-notice-grid,
.ps-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ps-news-card,
.ps-gallery-card,
.ps-notice-card,
.ps-testimonial-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(6, 27, 58, 0.09);
}

.ps-archive-card__body {
  padding: 16px;
}

.ps-archive-card__body h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.35;
}

.ps-archive-card__body p,
.ps-archive-meta {
  margin: 9px 0 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.55;
}

.ps-media-button {
  display: grid;
  place-items: center;
  width: 100%;
  border: 0;
  padding: 0;
  color: var(--navy);
  background: #EAF0F7;
  cursor: pointer;
  text-decoration: none;
  font: inherit;
  font-weight: 900;
}

.ps-media-button--three-two {
  aspect-ratio: 3 / 2;
}

.ps-media-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ps-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: #061B3A;
}

.ps-video-frame iframe,
.ps-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #061B3A;
}

.ps-video-frame iframe[src*="instagram.com"] {
  width: calc(100% + 2px);
  height: 100%;
  margin-left: -1px;
}

.ps-archive-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--white);
  font-weight: 900;
}

.ps-link-button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.ps-media-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(6, 27, 58, 0.78);
}

.ps-media-modal.is-open {
  display: flex;
}

.ps-media-modal__dialog {
  position: relative;
  width: min(1100px, 94vw);
  max-height: 92vh;
  overflow: auto;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(6, 27, 58, 0.34);
}

.ps-media-modal__dialog img {
  display: block;
  width: 100%;
  height: auto;
}

.ps-media-modal__caption {
  padding: 14px 18px 18px;
  color: var(--navy);
  font-weight: 900;
}

.ps-media-modal__close {
  position: sticky;
  top: 12px;
  left: calc(100% - 56px);
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 12px 12px -56px auto;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(6, 27, 58, 0.92);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.topbar-note {
  max-width: min(54vw, 720px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.88);
}

.detail-hero {
  padding: 30px 0 22px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 108, 31, 0.10), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 247, 236, 0.98)),
    var(--cream);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  color: var(--muted);
  font-weight: 900;
}

.breadcrumb a {
  color: var(--navy);
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--saffron);
}

.detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 980px;
  gap: 18px;
  align-items: start;
}

.detail-hero__grid--media {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  max-width: 1180px;
  align-items: stretch;
}

.hero-card--image {
  overflow: hidden;
  min-height: 360px;
  padding: 0;
  background: #F8FAFC;
}

.hero-card--image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.hero-card--wide {
  grid-column: 1 / -1;
  min-height: 0;
  aspect-ratio: 3 / 2;
}

.hero-card--wide img {
  min-height: 0;
  object-fit: contain;
}

.detail-hero h1 {
  max-width: 880px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5vw, 4.65rem);
  line-height: 1.02;
}

.detail-hero--compact h1 {
  max-width: 1080px;
  font-size: clamp(2rem, 3.15vw, 3rem);
  line-height: 1.10;
}

.detail-hero--compact .lead {
  max-width: 1080px;
  line-height: 1.55;
}

.detail-hero--compact .detail-hero__grid > div:first-child {
  grid-column: 1 / -1;
}

.detail-hero--compact .meta-strip {
  margin-top: 18px;
}

.detail-hero .lead {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(6, 27, 58, 0.90);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  font-weight: 900;
  line-height: 1.75;
}

.detail-hero.detail-hero--compact .lead {
  max-width: 1080px;
  line-height: 1.55;
}

.meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.meta-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 18px rgba(6, 27, 58, 0.06);
  font-size: 0.9rem;
  font-weight: 900;
}

.detail-score {
  display: none;
}

.detail-section {
  padding-top: 20px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1040px);
  justify-content: center;
  gap: 0;
  align-items: start;
}

.detail-article,
.side-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 22px 54px rgba(6, 27, 58, 0.10);
}

.detail-article {
  overflow: hidden;
}

.detail-media {
  margin: 0;
  border-bottom: 1px solid var(--line);
  background: #F8FAFC;
}

.detail-media picture,
.source-card picture {
  display: block;
}

.detail-media img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  max-height: 800px;
  object-fit: cover;
  object-position: center;
}

.detail-media figcaption {
  padding: 14px 22px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #FFFFFF, #F8FAFC);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.content-block {
  padding: clamp(26px, 4vw, 42px);
  border-bottom: 1px solid var(--line);
}

.content-block:last-child {
  border-bottom: 0;
}

.content-block h2,
.side-panel h2 {
  position: relative;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.2;
}

.content-block h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--saffron), var(--green));
}

.content-block p {
  color: var(--ink);
  font-size: 1.03rem;
  font-weight: 750;
  line-height: 1.95;
}

.check-list,
.plain-list,
.pill-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.check-list li {
  position: relative;
  min-height: 74px;
  padding: 16px 16px 16px 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(14, 101, 77, 0.07), rgba(255, 255, 255, 0.96)),
    #F8FAFC;
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(6, 27, 58, 0.05);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 16px;
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(14, 101, 77, 0.10);
  color: var(--green);
  font-weight: 900;
}

.source-card {
  position: relative;
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--orange);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 108, 31, 0.08), rgba(14, 101, 77, 0.06)),
    #FFFFFF;
  box-shadow: 0 12px 30px rgba(6, 27, 58, 0.08);
}

.source-card img {
  width: 100%;
  height: 210px;
  border: 1px solid var(--line);
  border-radius: 14px;
  object-fit: cover;
  object-position: center;
  background: #F8FAFC;
  box-shadow: 0 10px 20px rgba(6, 27, 58, 0.10);
}

.source-card h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.25;
}

.source-card p {
  margin: 0 0 8px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.65;
}

.source-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.source-card .tag {
  margin-bottom: 12px;
  background: var(--navy);
}

.quote-banner,
.cta-banner,
.embed-card,
.gallery-note {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(6, 27, 58, 0.08);
}

.quote-banner {
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(7, 35, 70, 0.94), rgba(7, 35, 70, 0.84)),
    var(--navy);
  color: var(--white);
}

.quote-banner p {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.35rem, 2.8vw, 2.1rem);
  font-weight: 900;
  line-height: 1.45;
}

.cta-banner {
  padding: clamp(24px, 4vw, 38px);
  border-color: rgba(255, 108, 31, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 108, 31, 0.11), rgba(14, 101, 77, 0.08)),
    #FFFFFF;
}

.cta-banner strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: clamp(1.3rem, 2.3vw, 1.9rem);
  line-height: 1.3;
}

.cta-banner p {
  margin: 0;
  color: var(--ink);
}

.embed-card {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  background:
    linear-gradient(180deg, #FFFFFF, #F8FAFC);
}

.content-block:has(> .embed-card + .embed-card) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  align-items: start;
  gap: 18px;
}

.content-block:has(> .embed-card + .embed-card) > h2,
.content-block:has(> .embed-card + .embed-card) > p {
  grid-column: 1 / -1;
}

.content-block:has(> .embed-card + .embed-card) > .embed-card {
  height: 100%;
}

.embed-card__head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  justify-content: space-between;
}

.embed-card__head h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.embed-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}

.instagram-media {
  margin-right: auto !important;
  margin-left: auto !important;
}

.video-frame {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0B1930;
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-frame--youtube {
  position: relative;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(6, 27, 58, 0.28), rgba(6, 27, 58, 0.58)),
    url("https://img.youtube.com/vi/xcDuuyI0Nuo/hqdefault.jpg") center / cover no-repeat,
    #0B1930;
}

.video-frame--youtube.has-iframe {
  display: block;
  background: #0B1930;
}

.video-frame__fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(6, 27, 58, 0.24);
}

.gallery-note {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  background: #F8FAFC;
}

.gallery-note span {
  min-height: 64px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
}

.inline-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.inline-photo-grid img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(6, 27, 58, 0.10);
  cursor: zoom-in;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.inline-photo-grid img:hover,
.inline-photo-grid img:focus {
  transform: translateY(-3px);
  border-color: rgba(242, 106, 33, 0.45);
  box-shadow: 0 18px 42px rgba(6, 27, 58, 0.16);
}

.detail-article .card__media img,
.detail-media img,
.detail-hero .hero-card--image img {
  cursor: zoom-in;
}

.inline-photo-grid img:focus-visible,
.photo-lightbox__close:focus-visible {
  outline: 3px solid rgba(242, 106, 33, 0.55);
  outline-offset: 3px;
}

.inline-photo-grid--three-two img {
  height: 250px;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(6, 27, 58, 0.88);
  backdrop-filter: blur(8px);
}

.photo-lightbox.is-open {
  display: flex;
}

.photo-lightbox__dialog {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(780px, calc(100vh - 48px));
}

.photo-lightbox__image {
  display: block;
  width: 100%;
  max-height: min(780px, calc(100vh - 48px));
  object-fit: contain;
  border-radius: 12px;
  background: #FFFFFF;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.photo-lightbox__close {
  position: absolute;
  top: -14px;
  right: -14px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.detail-sidebar {
  display: none;
}

.side-panel {
  padding: 18px;
}

.fact-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.fact-list div {
  display: grid;
  gap: 3px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.fact-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.fact-list dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fact-list dd {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
}

.public-facts div {
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: baseline;
}

.public-facts dt {
  text-transform: none;
}

.pill-list li,
.plain-list li,
.related-links a {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #F8FAFC;
  color: var(--navy);
  font-weight: 900;
}

.related-links {
  display: grid;
  gap: 10px;
}

.related-links a:hover,
.related-links a:focus-visible {
  color: var(--white);
  background: var(--navy);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.metric-grid--five {
  grid-template-columns: repeat(5, 1fr);
}

.metric {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.metric b {
  display: block;
  color: var(--navy);
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.metric span { color: var(--muted); font-weight: 800; }

.info-panel {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(6, 27, 58, 0.08);
}

.info-panel p {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.85;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field.full { grid-column: 1 / -1; }

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: #F8FAFC;
  font: inherit;
  font-weight: 700;
}

.field textarea { min-height: 150px; resize: vertical; }

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.btn--primary {
  color: var(--white);
  background: var(--saffron);
  box-shadow: 0 14px 32px rgba(242, 106, 33, 0.22);
}

.btn--secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
}

.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

.footer {
  padding: 46px 0 24px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 24px;
}

.footer h3, .footer h4 { margin-bottom: 12px; color: var(--white); }
.footer a { color: rgba(255, 255, 255, 0.9); font-weight: 800; }
.footer ul { display: grid; gap: 8px; padding: 0; margin: 0; list-style: none; }

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.visitor-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-family: "Inter", sans-serif;
  font-weight: 900;
}

.visitor-count b {
  color: var(--saffron);
}

@media (max-width: 920px) {
  .topbar .container { justify-content: center; }
  .topbar__right { display: none; }
  .nav { position: relative; }
  .menu-toggle { display: block; }
  .nav__links {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { justify-content: center; }
  .page-hero__grid,
  .detail-hero__grid,
  .detail-layout,
  .grid,
  .grid.two,
  .grid.four,
  .archive-stats,
  .card--feature .card-link,
  .gallery-board,
  .media-gallery,
  .ps-news-grid,
  .ps-gallery-grid,
  .coverage-sources,
  .press-video-grid,
  .metric-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .detail-hero__grid--media { grid-template-columns: 1fr; }
  .card--feature { grid-column: auto; }
  .media-tile--wide { grid-column: auto; }
  .card--feature .card__media,
  .gallery-board .card:first-child .card__media { height: 240px; min-height: 0; }
  .detail-sidebar { position: static; }
  .source-card { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .gallery-note { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .inline-photo-grid { grid-template-columns: 1fr; }
  .inline-photo-grid img,
  .inline-photo-grid--three-two img { height: 240px; }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 24px, 1180px);
    --topbar-height: 38px;
    --header-height: 72px;
  }
  .topbar .container {
    min-height: var(--topbar-height);
    gap: 8px;
    padding: 5px 0;
    font-size: 0.78rem;
  }
  .topbar-note {
    max-width: 100%;
  }
  .topbar-phone {
    min-height: 26px;
    padding: 2px 8px;
  }
  .nav { min-height: var(--header-height); }
  .brand__mark { width: 46px; height: 46px; }
  .brand strong { font-size: 0.96rem; }
  .brand small { font-size: 0.72rem; }
  .page-hero { padding-top: 34px; }
  .card__media { height: 190px; }
  .detail-hero { padding: 22px 0 24px; }
  .detail-hero h1 { font-size: clamp(2rem, 11vw, 3.1rem); }
  .detail-hero--compact h1 { font-size: clamp(1.75rem, 8vw, 2.35rem); line-height: 1.14; }
  .detail-hero .lead { font-size: 0.98rem; line-height: 1.7; }
  .breadcrumb { font-size: 0.86rem; }
  .meta-strip span { justify-content: center; }
  .detail-media img {
    aspect-ratio: 3 / 2;
    max-height: 420px;
  }
  .content-block,
  .side-panel { padding: 18px; }
  .source-card { padding: 16px; gap: 16px; }
  .source-card img { height: 180px; }
  .inline-photo-grid img,
  .inline-photo-grid--three-two img { height: 220px; }
  .photo-lightbox { padding: 14px; }
  .photo-lightbox__close {
    top: 10px;
    right: 10px;
  }
  .check-list li { min-height: auto; }
  .gallery-note { grid-template-columns: 1fr; }
  .embed-card__head { align-items: stretch; }
  .embed-card__link { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .actions { flex-direction: column; }
  .btn { width: 100%; }
  .copyright { display: grid; }
}
