:root {
  --ink: #0b1220;
  --muted: #5a6576;
  --line: #dfe7ef;
  --paper: #ffffff;
  --soft: #f4f8fb;
  --teal: #0f8f88;
  --blue: #2364d8;
  --purple: #8c0063;
  --green: #34b36b;
  --coral: #ef7c5a;
  --gold: #f0b84f;
  --shadow: 0 22px 70px rgba(16, 31, 55, 0.14);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(15, 143, 136, 0.12), transparent 34rem),
    linear-gradient(180deg, #f8fbfd 0%, #ffffff 42%, #f5f8fb 100%);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  overflow: hidden;
}

.section-pad {
  padding: 92px clamp(20px, 5vw, 72px);
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(1120px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(14, 32, 54, 0.12);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  font-weight: 800;
}

.brand-logo {
  width: 176px;
  height: 52px;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  padding: 0;
}

.brand:has(.brand-logo) .brand-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  border-radius: 999px;
  color: #263349;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 11px 15px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--purple);
  background: rgba(140, 0, 99, 0.07);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: #eef5f7;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(30px, 4vw, 58px);
  padding-top: 122px;
}

.hero-copy {
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.65vw, 3.85rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.hero-text,
.section-heading p,
.intro-grid p,
.company-copy p,
.contact-copy p,
.service-card p,
.step p,
.footer {
  color: var(--muted);
  line-height: 1.7;
}

.section-heading p,
.service-card p,
.step p,
.company-copy p,
.team-card p {
  font-size: 0.98rem;
}

.hero-text {
  max-width: 650px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 0 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: white;
  background: linear-gradient(135deg, #5a0042, var(--purple));
  box-shadow: 0 18px 36px rgba(140, 0, 99, 0.3);
}

.btn.ghost {
  border-color: var(--line);
  background: white;
}

.btn.full {
  width: 100%;
}

.hero-media {
  position: relative;
  isolation: isolate;
}

.hero-media::before {
  position: absolute;
  z-index: -1;
  inset: 7% -5% -8% 14%;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(52, 179, 107, 0.2), rgba(239, 124, 90, 0.14));
  content: "";
  transform: rotate(4deg);
}

.hero-media img {
  width: 100%;
  min-height: 420px;
  max-height: 620px;
  border-radius: 34px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.metric-card {
  position: absolute;
  display: grid;
  gap: 2px;
  width: 172px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 42px rgba(14, 32, 54, 0.16);
  backdrop-filter: blur(12px);
  animation: float 5s ease-in-out infinite;
}

.metric-card strong {
  font-size: 1.8rem;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.card-one {
  top: 8%;
  left: -26px;
}

.card-two {
  right: -18px;
  bottom: 10%;
  animation-delay: -1.6s;
}

.intro-band {
  background: linear-gradient(135deg, #280018, #5a0042 55%, var(--purple));
  color: white;
}

.intro-band .eyebrow,
.intro-band p {
  color: rgba(255, 210, 235, 0.9);
}

.intro-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: 1fr;
  gap: 40px;
  margin: auto;
  text-align: center;
}

.intro-grid p {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  max-width: 730px;
  margin: 0 auto 38px;
}

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

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

.reputation-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 40px rgba(16, 31, 55, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.reputation-card:hover {
  border-color: rgba(140, 0, 99, 0.28);
  box-shadow: 0 24px 60px rgba(16, 31, 55, 0.11);
  transform: translateY(-5px);
}

.reputation-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, #5a0042, var(--purple));
  flex-shrink: 0;
}

.reputation-icon svg {
  width: 26px;
  height: 26px;
}

.reputation-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.3;
}

.reputation-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

.reputation-stat {
  display: inline-block;
  margin-top: 10px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(140, 0, 99, 0.08);
  color: var(--purple);
  font-size: 0.8rem;
  font-weight: 800;
}

.service-card,
.step,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 40px rgba(16, 31, 55, 0.06);
}

.service-card {
  min-height: 250px;
  padding: 26px;
  text-align: center;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.service-card:hover {
  border-color: rgba(15, 143, 136, 0.45);
  box-shadow: 0 24px 60px rgba(16, 31, 55, 0.12);
  transform: translateY(-6px);
}

.news-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border-color: rgba(223, 231, 239, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 253, 0.98)),
    radial-gradient(circle at 10% 0%, rgba(35, 100, 216, 0.12), transparent 13rem);
}

.news-thumb,
.lead-news-media {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(25, 0, 18, 0.95), rgba(90, 0, 66, 0.88)),
    radial-gradient(circle at 70% 20%, rgba(240, 184, 79, 0.24), transparent 13rem);
}

.news-thumb {
  aspect-ratio: 16 / 9;
  margin: -10px -10px 20px;
}

.news-thumb img,
.lead-news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-thumb span,
.lead-news-media span {
  color: white;
  font-weight: 800;
}

.news-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--coral), var(--gold), var(--purple));
  content: "";
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.32s ease;
}

.news-card:hover::before {
  transform: scaleX(1);
}

.news-card h3 {
  font-size: 1.08rem;
  line-height: 1.35;
}

.news-card[data-news-open],
.lead-news[data-news-open] {
  cursor: pointer;
}

.news-layout {
  background:
    radial-gradient(circle at 12% 0%, rgba(140, 0, 99, 0.07), transparent 24rem),
    #f7fafc;
}

.lead-news {
  display: grid;
  max-width: 1120px;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  margin: 0 auto 70px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(223, 231, 239, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(25, 0, 18, 0.97), rgba(90, 0, 66, 0.92)),
    var(--ink);
  box-shadow: var(--shadow);
}

.lead-news-media {
  min-height: 310px;
  align-self: stretch;
}

.lead-news h2,
.lead-news p {
  color: white;
}

.lead-news h2 {
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.lead-news p {
  color: rgba(255, 215, 238, 0.88);
}

.lead-news .news-date {
  color: white;
}

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

.news-grid .news-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(16, 31, 55, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.news-grid .news-card:hover {
  box-shadow: 0 26px 65px rgba(16, 31, 55, 0.14);
  transform: translateY(-6px);
}

.news-carousel {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  gap: 18px;
  align-items: center;
}

.news-carousel-viewport {
  overflow: hidden;
}

.news-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.news-carousel-track::-webkit-scrollbar {
  display: none;
}

.news-slide {
  min-height: 100%;
  scroll-snap-align: start;
}

.carousel-btn {
  display: inline-grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(15, 143, 136, 0.24);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(16, 31, 55, 0.1);
  cursor: pointer;
  font: inherit;
  font-size: 1.25rem;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.carousel-btn:hover {
  border-color: rgba(15, 143, 136, 0.45);
  box-shadow: 0 20px 42px rgba(16, 31, 55, 0.14);
  transform: translateY(-2px);
}

.news-modal[hidden] {
  display: none;
}

.news-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
}

.news-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 13, 24, 0.62);
  backdrop-filter: blur(4px);
}

.news-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(980px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  margin: 20px auto;
  overflow: hidden;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 34px 90px rgba(16, 31, 55, 0.28);
}

.news-modal-media {
  min-height: 280px;
  max-height: 70vh;
  background:
    linear-gradient(135deg, rgba(25, 0, 18, 0.95), rgba(90, 0, 66, 0.88)),
    radial-gradient(circle at 70% 20%, rgba(240, 184, 79, 0.24), transparent 13rem);
}

.news-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.news-modal-content {
  display: grid;
  align-content: start;
  gap: 14px;
  overflow: auto;
  padding: 30px;
}

.news-modal-body {
  white-space: pre-wrap;
  color: var(--muted);
  line-height: 1.75;
}

.news-modal-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(16, 31, 55, 0.16);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.icon-wrap {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 15px;
  margin-bottom: 26px;
  color: white;
  background: var(--purple);
  font-size: 0.8rem;
  font-weight: 800;
}

.icon-wrap.alt {
  background: var(--blue);
}

.icon-wrap.blue {
  background: var(--blue);
}

.icon-wrap.warm {
  background: var(--coral);
}

.icon-wrap.coral {
  background: var(--coral);
}

.icon-wrap.sun {
  color: var(--ink);
  background: var(--gold);
}

.icon-wrap.gold {
  color: var(--ink);
  background: var(--gold);
}

.page-hero {
  display: grid;
  min-height: 58vh;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
  padding-top: 160px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.62)),
    radial-gradient(circle at 80% 20%, rgba(52, 179, 107, 0.16), transparent 28rem),
    radial-gradient(circle at 20% 30%, rgba(35, 100, 216, 0.12), transparent 24rem);
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero-inner {
  text-align: left;
}

.page-hero-inner .hero-text {
  margin-left: 0;
}

.page-hero-aside {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 28px 22px;
  border: 1px solid rgba(223, 231, 239, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 55px rgba(16, 31, 55, 0.1);
  text-align: center;
}

.page-hero-aside span {
  color: var(--purple);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.page-hero-aside p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.featured-service {
  padding-top: 48px;
  padding-bottom: 0;
}

.services-catalog {
  padding-top: 52px;
  padding-bottom: 52px;
}

.featured-service-card {
  display: grid;
  max-width: 1180px;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin: auto;
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid rgba(223, 231, 239, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(243, 249, 251, 0.98)),
    radial-gradient(circle at 88% 12%, rgba(52, 179, 107, 0.16), transparent 18rem);
  box-shadow: var(--shadow);
}

.featured-service-card h2 {
  margin-bottom: 12px;
}

.featured-service-card p:last-child {
  max-width: 820px;
  margin-bottom: 0;
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 24px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 40px rgba(16, 31, 55, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-row:hover {
  border-color: rgba(15, 143, 136, 0.32);
  box-shadow: 0 24px 60px rgba(16, 31, 55, 0.11);
  transform: translateY(-4px);
}

.service-row h2 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.3vw, 2.05rem);
}

.service-row p {
  max-width: 880px;
}

.refined-list {
  max-width: 1120px;
  margin: auto;
}

.services-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: start;
}

.svc-card {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 40px rgba(16, 31, 55, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.svc-card:hover {
  border-color: rgba(15, 143, 136, 0.32);
  box-shadow: 0 24px 60px rgba(16, 31, 55, 0.11);
  transform: translateY(-4px);
}

.svc-card .icon-wrap {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  display: inline-grid;
}

.svc-card h3 {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  margin-bottom: 8px;
  font-weight: 700;
}

.svc-card .svc-summary {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.97rem;
  margin-bottom: 0;
}

.svc-card .svc-body {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  margin-bottom: 0;
}

.news-date {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.team {
  background: white;
}

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

.team-card {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 250px;
  overflow: hidden;
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 250, 252, 0.98)),
    radial-gradient(circle at 50% 0%, rgba(15, 143, 136, 0.14), transparent 12rem);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.team-card::before {
  position: absolute;
  inset: 0;
  border-top: 4px solid var(--purple);
  content: "";
  opacity: 0.9;
}

.team-card:hover {
  border-color: rgba(140, 0, 99, 0.38);
  box-shadow: 0 24px 60px rgba(16, 31, 55, 0.12);
  transform: translateY(-7px);
}

.avatar {
  position: relative;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, #5a0042, var(--purple));
  font-size: 2.3rem;
  font-weight: 800;
  isolation: isolate;
}

.avatar::before {
  position: absolute;
  z-index: -1;
  inset: -7px;
  border-radius: inherit;
  background: conic-gradient(from 90deg, var(--purple), var(--coral), var(--gold), var(--purple));
  content: "";
  animation: avatar-spin 8s linear infinite;
}

.avatar::after {
  position: absolute;
  z-index: 2;
  inset: -2px;
  border: 5px solid white;
  border-radius: inherit;
  content: "";
}

.avatar img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  clip-path: circle(50% at 50% 50%);
  object-fit: cover;
  object-position: 50% 18%;
}

.avatar span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border-radius: inherit;
}

.team-card p {
  margin-bottom: 12px;
  color: var(--muted);
}

.team-card a {
  color: var(--purple);
  font-weight: 800;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-info-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(223, 231, 239, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 35px rgba(16, 31, 55, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.contact-info-card:hover {
  border-color: rgba(15, 143, 136, 0.32);
  box-shadow: 0 22px 50px rgba(16, 31, 55, 0.11);
  transform: translateY(-3px);
}

.contact-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #5a0042, var(--purple));
  box-shadow: 0 12px 26px rgba(140, 0, 99, 0.24);
}

.contact-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.7;
}

.contact-icon svg path,
.contact-icon svg circle {
  stroke: #ffffff;
}

.contact-icon svg path,
.contact-icon svg circle {
  vector-effect: non-scaling-stroke;
}

.contact-info-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.contact-info-card span,
.contact-info-card a {
  color: var(--muted);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.contact-info-card a {
  font-weight: 700;
}

.map-section {
  padding-top: 0;
}

.map-frame {
  width: 100%;
  min-height: 430px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.notice {
  border-radius: 8px;
  color: #0b684e;
  background: #e9f8f1;
  padding: 14px 16px;
  font-weight: 700;
}

.process {
  background:
    linear-gradient(90deg, rgba(35, 100, 216, 0.07), transparent 52%),
    var(--soft);
}

.process .section-heading {
  max-width: 840px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.step {
  position: relative;
  min-height: 210px;
  padding: 24px;
  overflow: hidden;
  text-align: center;
}

.step::after {
  position: absolute;
  right: -28px;
  bottom: -34px;
  color: rgba(15, 143, 136, 0.08);
  content: attr(data-step);
  font-size: 8rem;
  font-weight: 800;
}

.step span {
  display: block;
  margin-bottom: 44px;
  color: var(--purple);
  font-weight: 800;
}

.company-panel {
  display: grid;
  max-width: 1180px;
  grid-template-columns: 1fr;
  gap: 42px;
  margin: auto;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 8px;
  color: white;
  background:
    linear-gradient(135deg, rgba(40, 0, 28, 0.97), rgba(120, 0, 80, 0.93)),
    linear-gradient(45deg, #5a0042, var(--purple));
  box-shadow: var(--shadow);
  text-align: center;
}

.company-copy {
  display: grid;
  gap: 18px;
  justify-items: center;
  max-width: 850px;
  margin: auto;
}

.company-copy p {
  margin: 0;
  color: rgba(255, 215, 238, 0.88);
}


.company-panel .eyebrow,
.intro-band .eyebrow {
  color: rgba(255, 200, 230, 0.9);
}

.authority {
  background:
    radial-gradient(circle at 16% 12%, rgba(240, 184, 79, 0.16), transparent 24rem),
    linear-gradient(180deg, #ffffff, #f7fafc);
}

.authority-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
  margin: auto;
}

.authority-copy {
  text-align: left;
}

.authority-copy h2 {
  max-width: 760px;
}

.authority-copy p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.75;
}

.authority-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.authority-cv {
  margin-top: 24px;
}

.authority-points span {
  border: 1px solid rgba(15, 143, 136, 0.18);
  border-radius: 999px;
  color: #16475a;
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 9px 13px;
}

.leader-card {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.leader-photo {
  display: grid;
  width: min(100%, 350px);
  max-width: 100%;
  place-items: center;
  overflow: visible;
  border-radius: 0;
  color: white;
  background: transparent;
  font-size: 3rem;
  font-weight: 800;
}

.leader-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(16, 31, 55, 0.18));
}

.leader-meta {
  max-width: 320px;
  padding: 0 14px 10px;
}

.leader-card h3 {
  margin-bottom: 6px;
}

.leader-card p {
  margin-bottom: 8px;
  color: var(--purple);
  font-weight: 800;
}

.leader-card small {
  display: block;
  color: var(--muted);
  line-height: 1.6;
}

.media-opinion {
  background:
    radial-gradient(circle at 80% 0%, rgba(35, 100, 216, 0.1), transparent 24rem),
    #ffffff;
}

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

.media-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 40px rgba(16, 31, 55, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.media-card:hover {
  border-color: rgba(15, 143, 136, 0.34);
  box-shadow: 0 26px 65px rgba(16, 31, 55, 0.14);
  transform: translateY(-6px);
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #0b1220;
  aspect-ratio: 16 / 9;
}

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

.video-placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(25, 0, 18, 0.95), rgba(90, 0, 66, 0.88)),
    radial-gradient(circle at 70% 24%, rgba(240, 184, 79, 0.26), transparent 14rem);
}

.video-placeholder.alt {
  background:
    linear-gradient(135deg, rgba(90, 0, 66, 0.94), rgba(140, 0, 99, 0.9)),
    radial-gradient(circle at 70% 24%, rgba(255, 255, 255, 0.24), transparent 14rem);
}

.video-placeholder span {
  display: inline-flex;
  min-width: 92px;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: white;
  font-weight: 800;
}

.media-card h3 {
  font-size: 1rem;
  line-height: 1.35;
}

.media-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 0.86fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 120px;
  text-align: left;
}

.contact-form {
  display: grid;
  width: min(100%, 680px);
  gap: 15px;
  justify-self: end;
  margin-top: 146px;
  padding: clamp(20px, 3vw, 28px);
}

label {
  display: grid;
  gap: 8px;
  color: #263349;
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(140, 0, 99, 0.12);
}

textarea {
  resize: vertical;
  min-height: 112px;
}

.footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  overflow: hidden;
  padding: 38px clamp(20px, 5vw, 72px) 32px;
  border-top: 0;
  color: white;
  background:
    radial-gradient(circle at 16% 40%, rgba(200, 0, 120, 0.22), transparent 20rem),
    linear-gradient(135deg, #1a0010, #3d0030 52%, var(--purple));
}

.footer-spacer {
  width: 110px;
  flex: 0 0 110px;
}

.footer p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 220, 240, 0.9);
}

.footer-copy {
  flex: 1 1 auto;
  text-align: center;
}

.footer a {
  position: relative;
  z-index: 1;
  color: rgba(255, 200, 230, 1);
  font-weight: 800;
  white-space: nowrap;
}

.footer::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--purple), var(--coral), var(--gold), var(--coral), var(--purple));
  background-size: 260% 100%;
  content: "";
  animation: footer-bar 8s linear infinite;
}

.footer::after {
  position: absolute;
  right: -18%;
  bottom: -110%;
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140, 0, 99, 0.22), transparent 68%);
  content: "";
  animation: footer-glow 7s ease-in-out infinite;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

.video-frame[data-embed] {
  cursor: pointer;
}

.video-frame[data-embed] img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.28);
  transition: background 0.2s ease;
}

.video-play-btn svg {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
  transition: transform 0.2s ease;
}

.video-frame[data-embed]:hover .video-play-btn {
  background: rgba(0, 0, 0, 0.18);
}

.video-frame[data-embed]:hover .video-play-btn svg {
  transform: scale(1.1);
}

.chat-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 35;
}

.chat-launcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, #5a0042, var(--purple));
  box-shadow: 0 20px 42px rgba(140, 0, 99, 0.32);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 0 18px 0 12px;
}

.chat-launcher-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.chat-launcher-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.chat-launcher[aria-expanded="false"] .icon-close,
.chat-launcher[aria-expanded="true"] .icon-open {
  display: none;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 74px;
  display: grid;
  width: min(390px, calc(100vw - 24px));
  overflow: hidden;
  border: 1px solid rgba(223, 231, 239, 0.96);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 30px 80px rgba(16, 31, 55, 0.22);
  backdrop-filter: blur(14px);
}

.chat-panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 14px;
  color: white;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.16), transparent 12rem),
    linear-gradient(135deg, #280018, #5a0042 55%, var(--purple));
}

.chat-panel-head strong {
  display: block;
  margin-bottom: 4px;
}

.chat-panel-head p {
  margin: 0;
  color: rgba(235, 244, 248, 0.88);
  font-size: 0.88rem;
  line-height: 1.5;
}

.chat-close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.chat-messages {
  display: grid;
  gap: 12px;
  max-height: 420px;
  overflow: auto;
  padding: 18px;
  background:
    radial-gradient(circle at top left, rgba(15, 143, 136, 0.06), transparent 18rem),
    #f8fbfd;
}

.chat-message {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 14px;
  line-height: 1.6;
  white-space: pre-wrap;
}

.chat-message.bot {
  justify-self: start;
  border: 1px solid rgba(223, 231, 239, 0.96);
  background: white;
}

.chat-message.user {
  justify-self: end;
  color: white;
  background: linear-gradient(135deg, #5a0042, var(--purple));
}

.chat-message.pending {
  opacity: 0.78;
}

.chat-form {
  display: grid;
  gap: 12px;
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(223, 231, 239, 0.9);
  background: white;
}

.chat-form textarea {
  min-height: 92px;
  max-height: 180px;
}

.chat-form .btn {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes avatar-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes footer-bar {
  to {
    background-position: 260% 0;
  }
}

@keyframes footer-glow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-22px, -12px, 0) scale(1.08);
  }
}

/* ── TIC 2025 page ───────────────────────────────────── */

.tic-hero {
  grid-template-columns: 1fr;
  color: white;
  background:
    radial-gradient(circle at 72% 20%, rgba(140, 0, 99, 0.28), transparent 28rem),
    linear-gradient(160deg, #1a0010 0%, #3d0030 55%, var(--purple));
}

.tic-hero .page-hero-inner,
.services-hero .page-hero-inner {
  text-align: center;
}

.services-hero {
  grid-template-columns: 1fr;
  place-items: center;
}

.services-hero .page-hero-inner {
  max-width: 800px;
  width: 100%;
}

.services-hero .page-hero-inner .hero-text {
  margin-left: auto;
}

.services-hero .page-hero-aside {
  width: min(100%, 320px);
}

.tic-hero h1 {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  color: white;
}

.tic-hero .hero-text {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 215, 238, 0.88);
}

.tic-hero .eyebrow {
  color: rgba(255, 190, 225, 0.9);
}

.tic-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.tic-stat {
  flex: 1 1 110px;
  display: grid;
  gap: 4px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  backdrop-filter: blur(8px);
}

.tic-stat strong {
  display: block;
  color: white;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
}

.tic-stat span {
  color: rgba(255, 200, 230, 0.82);
  font-size: 0.83rem;
  font-weight: 600;
}

.tic-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: clamp(28px, 5vw, 64px);
  max-width: 1180px;
  margin: auto;
}

.tic-block h2 {
  margin-bottom: 18px;
}

.tic-block > p {
  color: var(--muted);
  line-height: 1.75;
}

.tic-delegates {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.tic-delegate {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.tic-delegate-initial,
.tic-delegate-photo {
  display: grid;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
}

.tic-delegate-initial {
  color: white;
  background: linear-gradient(135deg, #5a0042, var(--purple));
  font-size: 0.85rem;
  font-weight: 800;
}

.tic-delegate-photo {
  object-fit: cover;
  object-position: 50% 18%;
}

.tic-delegate strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.3;
  color: var(--ink);
}

.tic-delegate span {
  color: var(--muted);
  font-size: 0.82rem;
}

.tic-highlight-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 20px 22px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 32px rgba(16, 31, 55, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.tic-highlight-card:last-child {
  margin-bottom: 0;
}

.tic-highlight-card:hover {
  border-color: rgba(140, 0, 99, 0.24);
  box-shadow: 0 22px 56px rgba(16, 31, 55, 0.1);
  transform: translateY(-4px);
}

.tic-highlight-icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, #5a0042, var(--purple));
}

.tic-highlight-icon svg {
  width: 26px;
  height: 26px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tic-highlight-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  color: var(--ink);
}

.tic-highlight-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

.tic-expand {
  margin-top: 10px;
}

.tic-expand summary {
  width: fit-content;
  cursor: pointer;
  list-style: none;
  color: var(--purple);
  font-size: 0.86rem;
  font-weight: 800;
}

.tic-expand summary::-webkit-details-marker {
  display: none;
}

.tic-expand[open] summary {
  margin-bottom: 8px;
}

.tic-expand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.tic-compact-summary {
  margin: 0;
}

.tic-expand-toggle {
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--purple);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
}

.tic-expand-panel {
  margin-top: 10px;
}

.tic-expand-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.tic-companies {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.tic-companies li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 700;
}

.tic-companies li::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--purple);
  content: "";
}

.tic-signature {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  text-align: center;
}

.tic-signature-line {
  width: 80px;
  height: 3px;
  margin: 0 auto 10px;
  border-radius: 2px;
  background: rgba(255, 200, 230, 0.45);
}

.tic-signature strong {
  display: block;
  color: white;
  font-size: 1rem;
}

.tic-signature span {
  color: rgba(255, 200, 230, 0.75);
  font-size: 0.88rem;
}

/* ── César Jazz Club page ────────────────────────────── */

.jazz-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.jazz-hero-bg {
  position: absolute;
  inset: 0;
  background: #1a1008;
}

.jazz-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  opacity: 0.55;
  filter: saturate(0.7);
}

.jazz-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10, 6, 2, 0.96) 0%, rgba(10, 6, 2, 0.4) 55%, rgba(10, 6, 2, 0.2) 100%),
    linear-gradient(135deg, rgba(180, 100, 0, 0.18), transparent 60%);
}

.jazz-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  margin: auto;
  padding-top: 180px;
}

.jazz-eyebrow {
  color: #c8922a !important;
}

.jazz-title {
  color: white;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.02;
  margin-bottom: 18px;
}

.jazz-subtitle {
  color: rgba(240, 210, 160, 0.82);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  margin: 0;
}

.jazz-statement {
  background: #ffffff;
}

.jazz-statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.75fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  max-width: 1180px;
  margin: auto;
}

.jazz-statement-copy h2 {
  margin-bottom: 20px;
}

.jazz-statement-copy > p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.jazz-points {
  display: grid;
  gap: 18px;
  margin-bottom: 32px;
}

.jazz-point {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.jazz-point-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 10px;
  color: white;
  background: linear-gradient(135deg, #7a4800, #c8922a);
  flex-shrink: 0;
}

.jazz-point-icon svg {
  width: 20px;
  height: 20px;
  stroke: white;
}

.jazz-point p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

.jazz-quote {
  margin: 0;
  padding: 20px 24px;
  border-left: 4px solid #c8922a;
  background: rgba(200, 146, 42, 0.07);
  border-radius: 0 8px 8px 0;
  color: #5a3800;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.5;
}

.jazz-portrait {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #1a1008, #3d2800);
  box-shadow: 0 32px 80px rgba(10, 6, 2, 0.22);
}

.jazz-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 15%;
}

.jazz-portrait-empty {
  display: grid;
  place-items: center;
}

.jazz-portrait-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(10, 6, 2, 0.82);
  backdrop-filter: blur(8px);
  color: #c8922a;
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
}

.jazz-portrait-badge svg {
  width: 16px;
  height: 16px;
  stroke: #c8922a;
}

.jazz-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: auto;
}

.jazz-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #1a1008;
  aspect-ratio: 4 / 5;
}

.jazz-gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.jazz-gallery-item:hover img {
  transform: scale(1.04);
}

.jazz-sponsors {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 40px auto 0;
}

.jazz-sponsor-slot {
  display: grid;
  place-items: center;
  min-height: 100px;
  border: 2px dashed rgba(200, 146, 42, 0.3);
  border-radius: 10px;
  background: rgba(200, 146, 42, 0.04);
  color: rgba(200, 146, 42, 0.55);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.jazz-cta[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.65;
  background: linear-gradient(135deg, #7a4800, #c8922a);
  box-shadow: 0 18px 36px rgba(200, 146, 42, 0.25);
}

/* ───────────────────────────────────────────────────── */

@media (max-width: 980px) {
  .hero,
  .intro-grid,
  .company-panel,
  .contact,
  .page-hero,
  .lead-news,
  .authority-grid {
    grid-template-columns: 1fr;
  }

  .authority-copy {
    text-align: center;
  }

  .authority-copy h2,
  .authority-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .authority-points {
    justify-content: center;
  }

  .hero {
    min-height: auto;
    text-align: center;
  }

  .hero-media img {
    min-height: 360px;
  }

  .service-grid,
  .timeline,
  .team-grid,
  .news-grid,
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reputation-grid,
  .services-2col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .news-carousel-track {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .news-modal-panel {
    grid-template-columns: 1fr;
  }

  .news-modal-media {
    min-height: 220px;
  }

  .page-hero-inner,
  .page-hero-inner .hero-text {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
  }

  .page-hero-aside {
    width: min(100%, 360px);
    margin: auto;
  }

  .contact-copy {
    position: static;
  }

  .contact-form {
    justify-self: stretch;
    width: 100%;
    margin-top: 0;
  }

  .authority-mobile-priority {
    padding-top: 28px;
  }
}

@media (max-width: 720px) {
  .section-pad {
    padding: 44px 14px;
  }

  .topbar {
    top: 10px;
    width: calc(100% - 20px);
    padding: 9px 10px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    right: 10px;
    left: 10px;
    display: grid;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    padding-top: 108px;
    gap: 24px;
  }

  h1 {
    font-size: clamp(1.6rem, 7.4vw, 2.15rem);
    line-height: 1.1;
  }

  h2 {
    font-size: clamp(1.35rem, 6.2vw, 1.85rem);
    line-height: 1.14;
  }

  .brand-logo {
    width: 116px;
    height: 38px;
  }

  .brand {
    max-width: calc(100vw - 86px);
  }

  .timeline,
  .team-grid,
  .news-grid,
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .service-grid,
  .reputation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading h2,
  .section-heading p,
  .section-heading .eyebrow {
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }

  .service-card {
    min-height: 0;
    padding: 18px 16px;
    text-align: left;
  }

  .step {
    text-align: left;
  }

  .reputation-card {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
  }

  .reputation-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .reputation-icon svg {
    width: 20px;
    height: 20px;
  }

  .step {
    min-height: 0;
    padding: 16px 14px;
  }

  .team-card {
    min-height: 0;
    padding: 18px 12px;
  }

  .avatar {
    width: 80px;
    height: 80px;
    margin-bottom: 14px;
    font-size: 1.6rem;
  }

  .news-grid .news-card {
    min-height: 0;
    padding: 16px 14px;
  }

  .media-card {
    padding: 12px;
    gap: 10px;
  }

  .news-carousel {
    grid-template-columns: 1fr;
  }

  .news-carousel-track {
    grid-auto-columns: calc((100% - 10px) / 2);
  }

  .carousel-btn {
    display: none;
  }

  .news-modal-panel {
    width: calc(100% - 18px);
    max-height: calc(100vh - 18px);
    margin: 9px auto;
  }

  .news-modal-content {
    padding: 22px;
  }

  .service-row,
  .featured-service-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .services-2col {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .svc-card {
    padding: 16px;
  }

  .svc-card .svc-body {
    font-size: 0.83rem;
    line-height: 1.55;
  }

  .service-row p,
  .featured-service-card p:last-child {
    margin-right: auto;
    margin-left: auto;
  }

  .page-hero {
    padding-top: 120px;
  }

  .hero-copy h1,
  .services-hero h1 {
    max-width: 10.5ch;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-copy .hero-text,
  .services-hero .page-hero-inner .hero-text {
    max-width: 30ch;
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .home-main {
    display: flex;
    flex-direction: column;
  }

  .home-main > section {
    order: 10;
  }

  .home-main > .hero {
    order: 1;
  }

  .home-main > .intro-band {
    order: 2;
  }

  .home-services {
    order: 3;
    padding-bottom: 28px;
  }

  .authority-mobile-priority {
    order: 4;
    padding-top: 24px;
    padding-bottom: 40px;
  }

  .authority-copy {
    text-align: left;
  }

  .authority-copy h2,
  .authority-copy p {
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }

  .authority-copy h2 {
    max-width: none;
  }

  .authority-copy p {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .authority-points {
    margin-top: 18px;
    gap: 8px;
  }

  .authority-points span {
    font-size: 0.8rem;
    padding: 8px 12px;
  }

  .leader-photo {
    width: min(100%, 240px);
  }

  .leader-meta {
    max-width: 280px;
    padding-bottom: 0;
  }

  .home-process {
    order: 5;
  }

  .home-company {
    order: 6;
  }

  .home-reputation {
    order: 7;
  }

  .home-media {
    order: 8;
  }

  .home-news {
    order: 9;
  }

  .metric-card {
    position: static;
    width: 100%;
    margin-top: 12px;
    animation: none;
  }

  .hero-media::before {
    inset: 12% -12% 20% 22%;
  }

  .hero-media img {
    min-height: 280px;
    border-radius: 22px;
  }

  .footer {
    display: grid;
  }

  .footer-spacer {
    display: none;
  }

  .footer-copy {
    text-align: center;
  }

  .jazz-statement-grid {
    grid-template-columns: 1fr;
  }

  .jazz-sponsors {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tic-content {
    grid-template-columns: 1fr;
  }

  .tic-hero h1 {
    max-width: 12ch;
  }

  .tic-block h2 {
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }

  .tic-block > p,
  .tic-compact-summary,
  .tic-highlight-card p,
  .tic-expand-panel p,
  .reputation-card p {
    font-size: 0.98rem;
    line-height: 1.56;
  }

  .reputation-card h3,
  .tic-highlight-card strong {
    font-size: 1.02rem;
    line-height: 1.28;
  }

  .reputation-card p,
  .tic-highlight-card p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .news-card p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .reputation-stat {
    margin-top: 12px;
  }

  .tic-stats {
    gap: 8px;
  }

  .tic-stat {
    flex: 1 1 80px;
    padding: 12px 14px;
  }

  .tic-stat strong {
    font-size: 1.3rem;
  }

  .tic-highlight-card {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    padding: 14px 16px;
  }

  .tic-highlight-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .tic-highlight-icon svg {
    width: 20px;
    height: 20px;
  }

  .chat-widget {
    right: 12px;
    bottom: 12px;
  }

  .chat-launcher {
    min-height: 54px;
    padding-right: 16px;
  }

  .chat-panel {
    right: 0;
    bottom: 68px;
    width: min(100vw - 16px, 390px);
  }
}

@media (max-width: 560px) {
  .news-carousel-track {
    grid-auto-columns: calc((100% - 10px) / 2);
  }

  .page-hero-aside {
    width: 100%;
  }

  .hero-copy h1,
  .services-hero h1,
  .tic-hero h1 {
    max-width: 9.5ch;
  }

  .authority-copy h2,
  .tic-block h2 {
    max-width: none;
  }

  .service-card h3,
  .svc-card h3,
  .team-card h3,
  .news-card h3 {
    font-size: 0.88rem;
    line-height: 1.3;
  }

  .service-card p,
  .svc-card .svc-summary,
  .team-card p,
  .step p {
    font-size: 0.82rem;
    line-height: 1.52;
  }

  .svc-card {
    padding: 13px;
  }

  .svc-card .svc-body {
    display: none;
  }

  .service-card {
    padding: 14px 12px;
    text-align: left;
  }

  .media-card {
    padding: 10px;
    gap: 8px;
  }

  .media-card h3 {
    font-size: 0.88rem;
    line-height: 1.3;
  }

  .media-card p {
    font-size: 0.82rem;
  }

  .reputation-card p {
    font-size: 0.82rem;
    line-height: 1.52;
    -webkit-line-clamp: 3;
  }

  .news-grid .news-card {
    padding: 12px 11px;
  }

  .news-card h3 {
    font-size: 0.88rem;
  }

  .news-card p {
    font-size: 0.82rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
