/*==================================================================
  CCE · IIT Hyderabad — Landing page components
  ------------------------------------------------------------------
  Loaded ONLY by index.html, after css/style.css. Uses the Heritage
  Warm tokens defined in style.css (:root). No colours are hard-coded
  here except white/transparent — edit the tokens to re-skin.
==================================================================*/

/*==================================================================
  Section rhythm & headers
==================================================================*/
.lp-section { padding: 88px 0; }
.lp-section--alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.lp-section--tight { padding: 64px 0; }

.lp-head { max-width: 720px; margin-bottom: 44px; }
.lp-head--center { margin-left: auto; margin-right: auto; text-align: center; }

.lp-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--font-body); font-size: .74rem; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase;
    color: var(--iith-vermillion); margin-bottom: 14px;
}
.lp-eyebrow::before { content: ""; width: 28px; height: 3px; border-radius: 3px; background: var(--sunrise-bar); }
.lp-head--center .lp-eyebrow::after { content: ""; width: 28px; height: 3px; border-radius: 3px; background: var(--sunrise-bar); }

.lp-title {
    font-family: var(--font-head); font-weight: 700; color: var(--iith-indigo);
    font-size: clamp(1.75rem, 3vw, 2.5rem); line-height: 1.12; letter-spacing: -.015em;
    margin: 0 0 10px;
}
.lp-sub { color: var(--muted); font-size: 1.02rem; line-height: 1.7; margin: 0; }

/*==================================================================
  HERO — split stage: statement left, announcement deck right
==================================================================*/
.lp-hero {
    position: relative;
    background: var(--hero-bg);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}
/* faint indigo dot texture, same signature as the old hero */
.lp-hero::before {
    content: ""; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(43, 37, 81, .05) 1px, transparent 1.4px);
    background-size: 26px 26px; pointer-events: none;
}
/* sunrise arc glow behind the deck */
.lp-hero::after {
    content: ""; position: absolute; top: -220px; right: -180px;
    width: 560px; height: 560px; border-radius: 50%;
    background: radial-gradient(closest-side, rgba(224, 118, 42, .16), transparent 70%);
    pointer-events: none;
}

.lp-hero-grid {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
    gap: 56px; align-items: center;
    padding: 72px 0 76px;
}

.lp-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: .76rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
    color: var(--iith-vermillion); margin-bottom: 18px;
}
.lp-hero-eyebrow::before { content: ""; width: 34px; height: 3px; border-radius: 3px; background: var(--sunrise-bar); }

.lp-hero-title {
    font-family: var(--font-head); font-weight: 700; color: var(--iith-indigo);
    font-size: clamp(2.3rem, 4.6vw, 3.7rem); line-height: 1.05; letter-spacing: -.02em;
    margin: 0 0 20px;
}
.lp-hero-title em {
    font-style: italic;
    background: var(--sunrise-bar);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.lp-hero-lead {
    color: var(--ink); font-size: 1.09rem; line-height: 1.75;
    max-width: 34em; margin: 0 0 28px;
}

.lp-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.lp-hero-cta .btn { padding: .8rem 1.7rem; font-size: 1rem; }

.lp-hero-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.lp-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 14px; border-radius: 999px;
    background: var(--surface); border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    font-size: .85rem; font-weight: 600; color: var(--iith-indigo);
}
.lp-tag i { color: var(--iith-vermillion); font-size: .95rem; }

/*------------------------------------------------------------------
  Announcement deck (Bootstrap carousel re-dressed as a card)
------------------------------------------------------------------*/
.announce-deck {
    background: var(--surface);
    border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    align-self: start;   /* pin to the hero top — the header arrows never move */
}

/* Equal-height slides: every item stays in the layout (stacked with
   negative margins, hidden ones invisible), so the deck is always as
   tall as its TALLEST slide — no height jumps between announcements.
   Because the items are stacked in place, Bootstrap's horizontal slide
   would drag two texts across each other — so transforms are disabled
   and the transition is a plain opacity crossfade instead (the opacity
   transitionend keeps Bootstrap's slide lifecycle in sync). */
.announce-deck .carousel-inner { display: flex; }
.announce-deck .carousel-item {
    display: block;
    flex: 0 0 100%;
    width: 100%;
    margin-right: -100%;
    visibility: hidden;
    transform: none !important;
    opacity: 0;
    transition: opacity .45s ease;
}
/* incoming slide (either direction) + resting active slide: fade to 1 */
.announce-deck .carousel-item.active,
.announce-deck .carousel-item-next.carousel-item-start,
.announce-deck .carousel-item-prev.carousel-item-end {
    visibility: visible;
    opacity: 1;
}
/* freshly-staged incoming slide: visible but still transparent */
.announce-deck .carousel-item-next,
.announce-deck .carousel-item-prev { visibility: visible; }
/* outgoing slide during the fade */
.announce-deck .active.carousel-item-start,
.announce-deck .active.carousel-item-end {
    visibility: visible;
    opacity: 0;
}
@media (prefers-reduced-motion: reduce) {
    .announce-deck .carousel-item { transition: none; }
}
.announce-deck__bar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 22px;
    background: var(--iith-indigo);
}
.announce-deck__bar::after { display: none; }
.announce-deck__label {
    display: inline-flex; align-items: center; gap: 10px;
    color: #fff; font-family: var(--font-body);
    font-size: .74rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
}
.announce-deck__label i { color: var(--iith-yellow); font-size: .95rem; }
.announce-deck__nav { display: flex; gap: 8px; }
.announce-deck__nav .deck-btn {
    width: 30px; height: 30px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255, 255, 255, .35); background: transparent;
    color: #fff; font-size: .8rem; padding: 0;
    transition: background .25s, border-color .25s;
}
.announce-deck__nav .deck-btn:hover { background: var(--iith-vermillion); border-color: var(--iith-vermillion); }

/* top sunrise rule under the bar */
.announce-deck__rule { height: 3px; background: var(--sunrise-bar); }

.announce-deck .carousel-item { padding: 30px 30px 58px; }

.ann-logos { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.ann-logos img {
    height: 46px; width: auto; max-width: 150px; object-fit: contain;
    background: #fff; border: 1px solid var(--line); border-radius: 10px;
    padding: 6px 10px; box-shadow: var(--shadow-sm);
}

.ann-title {
    font-family: var(--font-head); font-weight: 700; color: var(--iith-indigo);
    font-size: clamp(1.15rem, 1.7vw, 1.45rem); line-height: 1.22; letter-spacing: -.01em;
    margin: 0 0 10px;
}
.ann-sub { color: var(--iith-vermillion); font-family: var(--font-head); font-weight: 600; font-size: .98rem; margin: 0 0 8px; }
.ann-text { color: var(--ink); font-size: .95rem; line-height: 1.65; margin: 0 0 12px; }

.ann-meta { list-style: none; display: flex; flex-direction: column; gap: 6px; margin: 0 0 12px; padding: 0; }
.ann-meta li { display: flex; gap: 9px; align-items: baseline; font-size: .9rem; color: var(--muted); }
.ann-meta li i { color: var(--iith-amber); font-size: .9rem; transform: translateY(1px); }
.ann-meta li strong { color: var(--iith-indigo); font-weight: 600; }

.ann-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px; border-radius: 999px;
    background: rgba(214, 67, 28, .08); border: 1px solid rgba(214, 67, 28, .3);
    color: var(--iith-indigo); font-size: .85rem; margin: 0 6px 12px 0;
}
.ann-pill i { color: var(--iith-vermillion); }
.ann-pill strong { color: var(--iith-vermillion); font-weight: 700; }

.ann-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.ann-actions .btn { padding: .55rem 1.25rem; font-size: .92rem; }

/* dots */
.announce-deck .carousel-indicators {
    margin: 0 0 16px; z-index: 5;
}
.announce-deck .carousel-indicators [data-bs-target] {
    width: 8px; height: 8px; border-radius: 50%;
    border: 0; margin: 0 5px;
    background: var(--line); opacity: 1;
    transition: background .25s, transform .25s;
}
.announce-deck .carousel-indicators .active { background: var(--iith-vermillion); transform: scale(1.35); }

/* "Launching" flag inside an announcement slide */
.ann-flag {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 5px 13px; border-radius: 999px; margin-bottom: 12px;
    background: var(--sunrise-bar); color: #fff;
    font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    box-shadow: 0 6px 14px rgba(214, 67, 28, .30);
}
.ann-flag i { font-size: .85rem; }

/*==================================================================
  Launching FAST-E — feature band
==================================================================*/
.launch-band {
    position: relative;
    background:
        radial-gradient(90% 160% at 100% 0, rgba(196, 136, 28, .20), transparent 55%),
        radial-gradient(70% 140% at 0 100%, rgba(214, 67, 28, .18), transparent 55%),
        var(--iith-indigo-900);
    padding: 40px 0;
    overflow: hidden;
}
.launch-band::before, .launch-band::after {
    content: ""; position: absolute; left: 0; right: 0; height: 3px;
    background: var(--sunrise-bar);
}
.launch-band::before { top: 0; }
.launch-band::after { bottom: 0; }

.launch-band__grid {
    display: grid; grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 30px; align-items: center;
}
.launch-band__icon {
    width: 74px; height: 74px; border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .16);
    color: var(--iith-yellow); font-size: 2rem;
}
.launch-band__chip {
    display: inline-block; padding: 4px 12px; border-radius: 999px;
    background: var(--sunrise-bar); color: #fff;
    font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
    margin-bottom: 10px;
}
.launch-band__title {
    font-family: var(--font-head); font-weight: 700; color: #fff !important;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem); letter-spacing: -.015em; margin: 0 0 8px;
}
.launch-band__text {
    color: rgba(255, 255, 255, .85); font-size: 1rem; line-height: 1.65;
    max-width: 46em; margin: 0 0 14px;
}
.launch-band__meta {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-wrap: wrap; gap: 8px 22px;
}
.launch-band__meta li {
    display: inline-flex; align-items: center; gap: 8px;
    color: rgba(255, 255, 255, .78); font-size: .88rem;
}
.launch-band__meta li i { color: var(--iith-yellow); font-size: .95rem; }

.btn-launch {
    background: #fff; color: var(--iith-indigo);
    border: 2px solid #fff; font-weight: 700;
    padding: .8rem 1.6rem; white-space: nowrap;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .30);
}
.btn-launch:hover, .btn-launch:focus {
    background: var(--iith-vermillion); border-color: var(--iith-vermillion);
    color: #fff; transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(214, 67, 28, .40);
}

@media (max-width: 991.98px) {
    .launch-band__grid { grid-template-columns: auto minmax(0, 1fr); }
    .launch-band__cta { grid-column: 1 / -1; }
    .launch-band__cta .btn-launch { width: 100%; justify-content: center; display: inline-flex; }
}
@media (max-width: 575.98px) {
    .launch-band { padding: 34px 0; }
    .launch-band__grid { grid-template-columns: 1fr; gap: 20px; }
    .launch-band__icon { width: 58px; height: 58px; border-radius: 16px; font-size: 1.6rem; }
}

/*==================================================================
  Overview — text + intro video
==================================================================*/
.lp-overview-grid {
    display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 52px; align-items: center;
}
.lp-overview-grid .lp-head { margin-bottom: 20px; }
.lp-body-text { color: var(--ink); font-size: 1.02rem; line-height: 1.8; text-align: justify; }
.lp-textlink {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--iith-vermillion-600); font-weight: 600; margin-top: 16px;
}
.lp-textlink:hover { color: var(--iith-indigo); }
.lp-textlink i { transition: transform .25s; }
.lp-textlink:hover i { transform: translateX(4px); }

/* framed media (video / iframe / img) with sunrise top bar */
.media-frame {
    position: relative;
    border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--line); box-shadow: var(--shadow-md);
    background: var(--surface);
}
.media-frame::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--sunrise-bar); z-index: 2;
}
.media-frame > video, .media-frame > img { display: block; width: 100%; height: auto; }
.media-frame--ratio { aspect-ratio: 16 / 9; }
.media-frame--ratio > iframe, .media-frame--ratio > img, .media-frame--ratio > video {
    position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover;
}

/*==================================================================
  Scope & functions — portrait image + stacked feature rows
==================================================================*/
.lp-scope-grid {
    display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: 52px; align-items: stretch;
}
.lp-scope-figure {
    position: relative; min-height: 320px;
    border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--line); box-shadow: var(--shadow-md);
}
.lp-scope-figure img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lp-scope-figure::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(27, 23, 56, .45), transparent 55%);
}

.lp-scope-list { display: flex; flex-direction: column; gap: 18px; justify-content: center; }
.scope-item {
    display: flex; gap: 20px; align-items: flex-start;
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius); box-shadow: var(--shadow-sm);
    padding: 22px 24px;
    transition: transform .3s ease, box-shadow .3s ease;
}
.scope-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.scope-item__icon {
    flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(214, 67, 28, .09); border: 1px solid rgba(214, 67, 28, .22);
    color: var(--iith-vermillion); font-size: 1.4rem;
}
.scope-item:nth-child(2) .scope-item__icon { background: rgba(196, 136, 28, .12); border-color: rgba(196, 136, 28, .3); color: var(--iith-amber); }
.scope-item:nth-child(3) .scope-item__icon { background: rgba(43, 37, 81, .07); border-color: rgba(43, 37, 81, .2); color: var(--iith-indigo); }
.scope-item p { margin: 0; color: var(--ink); line-height: 1.7; }

/*==================================================================
  Programme rows (alternating feature rows)
==================================================================*/
.prog-row {
    display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 52px; align-items: center;
    padding: 44px 0;
}
.prog-row + .prog-row { border-top: 1px dashed var(--line); }
.prog-row--flip .prog-row__media { order: 2; }
.prog-row--flip .prog-row__body { order: 1; }
.prog-row__body .lp-eyebrow { margin-bottom: 10px; }
.prog-row__body h3 {
    font-family: var(--font-head); font-weight: 700; color: var(--iith-indigo);
    font-size: clamp(1.4rem, 2.2vw, 1.85rem); letter-spacing: -.01em; margin: 0 0 14px;
}
.prog-row__body p { color: var(--ink); line-height: 1.8; text-align: justify; margin: 0 0 22px; }
.prog-row__body .btn { padding: .7rem 1.6rem; }

/*==================================================================
  Chairman message — indigo quote panel
==================================================================*/
.chair-panel {
    position: relative;
    background:
        radial-gradient(90% 140% at 100% 0, rgba(196, 136, 28, .18), transparent 55%),
        radial-gradient(80% 120% at 0 100%, rgba(214, 67, 28, .14), transparent 55%),
        var(--iith-indigo);
    border-radius: calc(var(--radius) + 4px);
    box-shadow: var(--shadow-lg);
    padding: 56px 60px 52px;
    overflow: hidden;
}
.chair-panel::before {
    content: "\201C";
    position: absolute; top: -34px; left: 26px;
    font-family: var(--font-head); font-size: 13rem; line-height: 1;
    color: rgba(255, 255, 255, .08); pointer-events: none;
}
.chair-panel .lp-eyebrow { color: var(--iith-yellow); }
.chair-panel .lp-eyebrow::before { background: var(--iith-yellow); }
.chair-panel h2 {
    font-family: var(--font-head); color: #fff !important;
    font-size: clamp(1.5rem, 2.4vw, 2rem); margin: 0 0 20px;
}
.chair-panel p {
    color: rgba(255, 255, 255, .88); font-size: 1.04rem; line-height: 1.85;
    text-align: justify; margin: 0 0 14px;
}
.chair-panel p:last-child { margin-bottom: 0; }
.chair-panel .chair-sign {
    font-family: var(--font-head); font-style: italic; font-size: 1.08rem;
    color: var(--iith-yellow); text-align: left;
}

/*==================================================================
  News + Newsletters
==================================================================*/
.lp-cardgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; }

.nl-card {
    position: relative;
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius); box-shadow: var(--shadow-sm);
    padding: 24px 24px 22px;
    display: flex; flex-direction: column; gap: 4px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}
.nl-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--sunrise-bar);
    transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.nl-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.nl-card:hover::before { transform: scaleX(1); }
.nl-card__issue {
    font-family: var(--font-head); font-weight: 700;
    font-size: 2rem; line-height: 1; color: var(--iith-indigo);
}
.nl-card__period { color: var(--muted); font-size: .92rem; margin-bottom: 16px; }
.nl-card .btn { align-self: flex-start; padding: .45rem 1.2rem; font-size: .9rem; }
.nl-card__glyph {
    position: absolute; right: 14px; top: 14px;
    font-size: 1.5rem; color: var(--line);
    transition: color .3s;
}
.nl-card:hover .nl-card__glyph { color: var(--iith-amber); }

/*==================================================================
  Contact
==================================================================*/
.lp-contact-grid {
    display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 32px; align-items: stretch;
}
.contact-card {
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius); box-shadow: var(--shadow-sm);
    padding: 34px 36px;
    display: flex; flex-direction: column; gap: 22px; justify-content: center;
}
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-item__icon {
    flex-shrink: 0; width: 48px; height: 48px; border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(214, 67, 28, .09); border: 1px solid rgba(214, 67, 28, .22);
    color: var(--iith-vermillion); font-size: 1.25rem;
}
.contact-item h5 { margin: 0 0 3px; font-size: 1.05rem; }
.contact-item span, .contact-item a { color: var(--muted); font-size: .95rem; }
.contact-item a { color: var(--iith-vermillion-600); font-weight: 600; }
.contact-item a:hover { color: var(--iith-indigo); }
/* max-width guard: aspect-ratio would otherwise turn the min-height into a
   533px+ minimum WIDTH and give phones a horizontal scrollbar */
.lp-map { min-height: 380px; max-width: 100%; }

/*==================================================================
  Rich footer (landing page)
==================================================================*/
.footer-rich {
    background:
        radial-gradient(80% 120% at 100% 0, rgba(196, 136, 28, .12), transparent 55%),
        var(--iith-indigo-900);
    color: rgba(255, 255, 255, .78);
}
.footer-rich__top {
    display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, .85fr) minmax(0, 1fr);
    gap: 48px; padding: 60px 0 44px;
}
.footer-rich h5 {
    font-family: var(--font-head); color: #fff !important;
    font-size: 1.1rem; margin-bottom: 18px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-brand img {
    height: 52px; width: auto; background: #fff;
    border-radius: 10px; padding: 6px 9px;
}
.footer-brand span {
    font-family: var(--font-head); font-weight: 700; font-size: 1.15rem;
    color: #fff; line-height: 1.25;
}
.footer-rich p { color: rgba(255, 255, 255, .72); line-height: 1.75; font-size: .95rem; }

.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    color: rgba(255, 255, 255, .78); font-size: .95rem;
    display: inline-flex; align-items: center; gap: 9px;
    transition: color .25s, transform .25s;
}
.footer-links a i { font-size: .7rem; color: var(--iith-amber); }
.footer-links a:hover { color: #fff; transform: translateX(4px); }

.footer-contact { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; }
.footer-contact li i { color: var(--iith-amber); font-size: 1.05rem; transform: translateY(2px); }
.footer-contact a { color: rgba(255, 255, 255, .82); }
.footer-contact a:hover { color: #fff; }

.footer-rich__bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 20px 0;
    display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; align-items: center;
    font-size: .9rem; color: rgba(255, 255, 255, .6);
}
.footer-rich__bottom a { color: rgba(255, 255, 255, .85); }
.footer-rich__bottom a:hover { color: var(--iith-amber); }

/*==================================================================
  Responsive
==================================================================*/
@media (max-width: 1199.98px) {
    .lp-hero-grid { gap: 40px; }
}
@media (max-width: 991.98px) {
    .lp-section { padding: 64px 0; }
    .lp-hero-grid { grid-template-columns: 1fr; padding: 52px 0 60px; gap: 40px; }
    .lp-hero-lead { max-width: none; }
    .lp-overview-grid, .lp-scope-grid, .prog-row, .lp-contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .prog-row--flip .prog-row__media { order: 0; }
    .prog-row--flip .prog-row__body { order: 0; }
    .footer-rich__top { grid-template-columns: 1fr 1fr; gap: 36px; padding: 48px 0 36px; }
    .chair-panel { padding: 44px 36px 40px; }
}
@media (max-width: 767.98px) {
    .lp-section { padding: 52px 0; }
    .lp-hero-grid { padding: 40px 0 48px; }
    .announce-deck .carousel-item { padding: 24px 20px 54px; }
    .ann-logos img { height: 40px; }
    .footer-rich__top { grid-template-columns: 1fr; gap: 32px; }
    .chair-panel { padding: 36px 24px 34px; }
    .chair-panel::before { font-size: 9rem; top: -22px; left: 12px; }
    .lp-map { min-height: 300px; }
    .contact-card { padding: 24px 20px; gap: 18px; }
}
