/* Sir J.J. School of Art - Homepage Theme */
:root {
  --burgundy: hsl(350 65% 24%);
  --burgundy-dark: hsl(350 65% 16%);
  --gold: hsl(40 70% 52%);
  --gold-soft: hsl(40 60% 88%);
  --ivory: hsl(36 30% 97%);
  --ink: hsl(20 15% 15%);
  --muted: hsl(20 10% 45%);
  --line: hsl(20 10% 88%);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--ink); background: var(--ivory); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.eyebrow { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
.section-title { font-family: var(--serif); font-size: 44px; font-weight: 600; color: var(--burgundy); line-height: 1.15; margin-top: 8px; }
.section-sub { color: var(--muted); margin-top: 12px; max-width: 640px; }
.badge-gold { display: inline-block; background: var(--gold-soft); color: var(--burgundy-dark); padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

/* TOPBAR */
.topbar { background: var(--burgundy-dark); color: var(--ivory); font-size: 13px; }
.topbar .container { display: flex; justify-content: space-between; padding: 8px 24px; flex-wrap: wrap; gap: 12px; }
.topbar a:hover { color: var(--gold); }

/* HEADER */
.header { background: #fff; padding: 20px 0; border-bottom: 1px solid var(--line); }
.header .container { display: flex; align-items: center; justify-content: flex-start; }
.letterhead { max-height: 110px; width: auto; height: auto; }
.navbar { background: var(--burgundy); color: var(--ivory); border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold); }
.nav { display: flex; justify-content: space-between; align-items: center; gap: 28px; font-size: 13px; font-weight: 600; padding: 14px 24px; flex-wrap: wrap; row-gap: 8px; max-width: 1200px; margin: 0 auto; }
.nav a { padding: 6px 0; border-bottom: 2px solid transparent; color: var(--ivory); letter-spacing: 1px; text-transform: uppercase; }
.nav a:hover { border-color: var(--gold); color: var(--gold); }

/* HERO */
.hero { position: relative; background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy)); color: var(--ivory); padding: 127px 0 148px; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 30%, hsl(40 70% 52% / .15), transparent 40%), radial-gradient(circle at 80% 70%, hsl(40 70% 52% / .1), transparent 40%); z-index: 2; pointer-events: none; }
.hero-bg { position: absolute; inset: 0; overflow: hidden; z-index: 1; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.65) 30%, rgba(0,0,0,.25) 60%, rgba(0,0,0,0) 85%); z-index: 2; pointer-events: none; }
.hero-bg-track { display: flex; height: 100%; width: 500%; animation: heroScroll 24s ease-in-out infinite; }
.hero-bg-slide { flex: 0 0 20%; height: 100%; background-size: cover; background-position: center; }
@keyframes heroScroll {
  0%, 20.83%   { transform: translateX(0); }
  25%, 45.83%  { transform: translateX(-20%); }
  50%, 70.83%  { transform: translateX(-40%); }
  75%, 95.83%  { transform: translateX(-60%); }
  100%         { transform: translateX(-80%); }
}
@media (prefers-reduced-motion: reduce) { .hero-bg-track { animation: none; } }
.hero-bg-track.manual { animation: none; transition: transform .6s ease; }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.5); background: rgba(0,0,0,.35); color: #fff; font-size: 18px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px); transition: background .2s, border-color .2s; }
.hero-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--burgundy-dark); }
.hero-arrow-prev { left: 65px; }
.hero-arrow-next { right: 65px; }
.hero .container { position: relative; display: block; }
.hero .container { z-index: 3; }
.hero-eyebrow { color: var(--gold); letter-spacing: 4px; font-size: 13px; font-weight: 600; text-transform: uppercase; }
.hero h2 { font-family: var(--serif); font-size: 64px; font-weight: 600; line-height: 1.05; margin: 16px 0 24px; }
.hero h2 em { color: inherit; font-style: normal; font-weight: inherit; }
.hero p { font-size: 17px; opacity: .85; max-width: 520px; }
.hero-cta { display: flex; gap: 14px; margin-top: 32px; }
.btn { display: inline-block; padding: 14px 28px; font-weight: 600; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; border-radius: 2px; transition: all .2s; cursor: pointer; border: 2px solid transparent; }
.btn-gold { background: var(--gold); color: var(--burgundy-dark); }
.btn-gold:hover { background: var(--ivory); }
.btn-outline { border-color: var(--ivory); color: var(--ivory); }
.btn-outline:hover { background: var(--ivory); color: var(--burgundy); }
.hero-side { border: 1px solid hsl(40 70% 52% / .3); padding: 32px; backdrop-filter: blur(4px); background: hsl(0 0% 100% / .04); }
.hero-side h3 { font-family: var(--serif); font-size: 24px; color: var(--gold); margin-bottom: 16px; }
.hero-side ul { list-style: none; }
.hero-side li { padding: 12px 0; border-bottom: 1px solid hsl(40 70% 52% / .2); display: flex; justify-content: space-between; font-size: 14px; }
.hero-side li:last-child { border: 0; }
.hero-side li span:last-child { color: var(--gold); }

/* NEWS */
.news { background: var(--ivory); padding: 0 0 80px; }
.ticker { background: var(--ivory); color: var(--burgundy); padding: 14px 0; overflow: hidden; margin-bottom: 60px; border-top: 0; border-bottom: 1px solid #daa12f; }
.ticker-track { display: flex; gap: 60px; white-space: nowrap; animation: scroll 60s linear infinite; padding-left: 0; width: max-content; padding-right: 60px; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item { font-size: 14px; }
.ticker-item::before { content: '◆'; color: var(--gold); margin-right: 12px; }
.news-wrap { padding-top: 10px; }
.news-head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; margin-bottom: 32px; position: relative; }
.news-all-link { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; color: var(--burgundy); border-bottom: 0; padding-bottom: 4px; transition: color .2s; }
.news-all-link:hover { color: var(--gold); }
.news-all-link.sm { font-size: 11px; letter-spacing: 1.5px; }
.news-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: stretch; }
.news-list { order: 1; }
.featured-col { order: 2; display: flex; flex-direction: column; }
.featured-col .featured-event { flex: 1; }
.news-all-foot { margin-top: 24px; padding-top: 16px; border-top: 0; align-self: flex-end; }
.news-list { justify-content: space-between; }

/* Featured event card */
.featured-event { position: relative; display: block; aspect-ratio: 4/3.4; border-radius: 6px; overflow: hidden; box-shadow: 0 30px 60px -30px hsl(350 65% 24% / .45); isolation: isolate; }
.featured-img { position: absolute; inset: 0; background: url('/heritage-building.jpg') center 85%/cover no-repeat; transition: transform .8s ease; }
.featured-event:hover .featured-img { transform: scale(1.06); }
.featured-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(20,5,10,.55) 70%, rgba(20,5,10,.92) 100%); }
.featured-date { position: absolute; top: 24px; left: 24px; background: var(--ivory); color: var(--burgundy); padding: 12px 16px; border-radius: 4px; text-align: center; font-family: var(--serif); border: 1px solid var(--gold); display: flex; flex-direction: column; line-height: 1; min-width: 60px; }
.featured-date strong { font-size: 28px; font-weight: 700; }
.featured-date span { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; color: var(--gold); font-family: var(--sans); font-weight: 600; }
.featured-content { position: absolute; left: 32px; right: 32px; bottom: 32px; color: var(--ivory); }
.featured-tag { display: inline-block; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--burgundy); background: var(--gold); padding: 4px 10px; border: 1px solid var(--gold); border-radius: 999px; margin-bottom: 14px; font-weight: 700; }
.featured-content h3 { font-family: var(--serif); font-size: 34px; font-weight: 600; line-height: 1.15; margin-bottom: 10px; }
.featured-content p { font-size: 14px; opacity: .85; max-width: 460px; }

/* News list */
.news-list { display: flex; flex-direction: column; }
.news-list-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 16px; margin-bottom: 8px; border-bottom: 1px solid var(--gold); }
.news-list-head h4 { font-family: var(--serif); font-size: 22px; color: var(--burgundy); font-weight: 600; }
.news-list ul { list-style: none; }
.news-list li { position: relative; padding: 22px 16px 22px 38px; border-bottom: 1px solid var(--line); background-color: hsl(40 60% 88% / .35); background-image: linear-gradient(to right, var(--burgundy), var(--burgundy)); background-repeat: no-repeat; background-size: 0% 100%; background-position: left center; transition: background-size .45s ease, color .25s ease, padding-left .25s ease; cursor: pointer; overflow: hidden; }
.news-list li:hover { background-size: 100% 100%; }
.news-list li:hover h5, .news-list li:hover p { color: #fff; }
.news-list li:hover .news-date { color: #daa12f; }
.news-list li::before { content: ''; position: absolute; left: 12px; top: 32px; width: 8px; height: 8px; border-radius: 50%; background: var(--burgundy); box-shadow: 0 0 0 3px hsl(350 65% 24% / .18); transform: scale(1.2); transition: transform .25s ease, background .25s ease, box-shadow .25s ease; z-index: 1; }
.news-list li:hover::before { background: #daa12f; box-shadow: 0 0 0 3px hsl(43 70% 55% / .35); }
.news-list li > * { position: relative; z-index: 1; transition: color .25s ease; }
.news-list li:last-child { border-bottom: 0; }
.news-date { font-size: 13px; color: var(--burgundy); font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; }
.news-list h5 { font-family: var(--serif); font-size: 20px; color: var(--burgundy); font-weight: 600; margin: 4px 0 6px; line-height: 1.25; }
.news-list li p { color: var(--muted); font-size: 16px; line-height: 1.55; margin-top: 2px; }

/* ABOUT */
.about { padding: 100px 0; background: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-img { aspect-ratio: 4/5; background: var(--ivory); position: relative; border: 2px solid var(--gold); overflow: hidden; }
.about-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0; transition: opacity 1s ease; }
.about-slide.is-active { opacity: 1; }
.about-img::after { content: 'EST. 1857'; position: absolute; bottom: -24px; right: -24px; background: var(--gold); color: #fff; font-size: 26px; font-weight: 800; letter-spacing: 2px; padding: 16px 32px 32px; border: 2px solid var(--burgundy); box-shadow: 0 12px 28px rgba(0,0,0,.25), 0 0 0 4px rgba(212,165,82,.25); text-shadow: 0 1px 2px rgba(0,0,0,.25); }
.about-text p { margin-top: 18px; color: var(--muted); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.about-cta { margin-top: 40px; }
.stat { padding: 24px; border-top: 3px solid var(--gold); background: var(--burgundy); }
.stat-num { font-size: 38px; font-weight: 700; color: var(--ivory); letter-spacing: 1px; }
.stat-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-top: 4px; }

/* PROGRAMS */
.programs { padding: 75px 0 100px; background: var(--ivory); }
.programs-head { text-align: center; margin-bottom: 60px; }
.programs-head .section-sub { margin-left: auto; margin-right: auto; }
.school-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.school-card { background: white; padding: 0; border: 1px solid var(--gold); transition: all .3s; }
.school-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: 0 20px 40px -20px hsl(350 65% 24% / .3); }
.school-card:nth-child(2) { margin-top: 40px; }
.school-card:nth-child(3) { margin-top: 0; }
.school-card-top { background: var(--burgundy); color: var(--ivory); padding: 32px; }
.school-card-num { font-family: var(--serif); font-size: 48px; color: var(--gold); line-height: 1; }
.school-card-top h3 { font-family: var(--serif); font-size: 28px; margin-top: 8px; }
.school-card-college { display: block; margin-top: 6px; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); font-weight: 600; }

.quicklinks { position: relative; background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy)); color: var(--ivory); padding: 70px 0; border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold); overflow: hidden; }
.quicklinks::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 15% 20%, rgba(212,165,82,.15), transparent 45%), radial-gradient(circle at 85% 80%, rgba(212,165,82,.1), transparent 45%); pointer-events: none; }
.quicklinks .container { position: relative; z-index: 1; }
.quicklinks-head { text-align: center; margin-bottom: 40px; }
.quicklinks-head .section-title { color: var(--ivory); }
.quicklinks-head .section-sub { color: rgba(255,255,255,.75); margin-top: 10px; }
.ql-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ql-card::after { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 3px; background: var(--gold); transform: scaleY(1); transform-origin: top; transition: transform .25s ease; }
.ql-card { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; padding: 22px 18px 22px 43px; background: var(--burgundy-dark); border: 1px solid hsl(40 70% 52% / .25); border-radius: 0; color: var(--ivory); transition: transform .25s ease, background .25s ease; overflow: hidden; }
.ql-icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; background: rgba(212,165,82,.15); color: var(--gold); border: 1px solid rgba(212,165,82,.4); }
.ql-icon svg { width: 24px; height: 24px; }
.ql-card h4 { font-family: var(--serif); font-size: 19px; color: var(--ivory); margin: 0; }
.ql-arrow { position: absolute; right: 18px; bottom: 16px; color: var(--gold); font-size: 28px; line-height: 1; font-weight: 700; transition: transform .25s ease; transform: translateX(4px); }
.ql-card:hover { background: var(--burgundy); transform: translateY(-4px); }
.ql-card:hover .ql-arrow { transform: translateX(4px); }
@media (max-width: 900px) { .ql-grid { grid-template-columns: repeat(2, 1fr); } }
.school-card-body { padding: 28px 32px 36px; }
.school-card-body p { color: var(--muted); font-size: 15px; }
.school-card-body ul { list-style: none; margin-top: 18px; }
.school-card-body li { padding: 8px 0; font-size: 14px; border-bottom: 1px dashed var(--line); }
.school-card-body li::before { content: '— '; color: var(--gold); }

/* ADMISSIONS */
/* TESTIMONIALS */
.testimonials { position: relative; background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy)); color: var(--ivory); padding: 100px 0; overflow: hidden; }
.testimonials::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 30%, hsl(40 70% 52% / .15), transparent 40%), radial-gradient(circle at 80% 70%, hsl(40 70% 52% / .1), transparent 40%); pointer-events: none; }
.testimonials .container { position: relative; }
.testimonials .section-title { color: var(--ivory); }
.testimonials .section-sub { color: hsl(36 30% 97% / .7); }
.testimonials-head { text-align: center; margin-bottom: 60px; }
.testimonials-head .section-sub { margin-left: auto; margin-right: auto; }

.t-marquee { position: relative; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.t-marquee::after { content: ''; position: absolute; inset: 0; pointer-events: none; }
.t-track { display: flex; gap: 28px; width: max-content; animation: t-scroll 38s linear infinite; }
.t-marquee:hover .t-track { animation-play-state: paused; }
@keyframes t-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 14px)); }
}

.t-card { flex: 0 0 clamp(280px, calc((100vw - 96px - 56px) / 3), 376px); background: var(--burgundy-dark); border: 1px solid hsl(40 70% 52% / .3); padding: 36px 30px 28px; position: relative; display: flex; flex-direction: column; gap: 18px; transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease; }
.t-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 18px 40px -20px hsl(0 0% 0% / .6); }
.t-quote { position: absolute; top: 8px; right: 22px; font-family: var(--serif); font-size: 110px; line-height: 1; color: var(--gold); opacity: .35; pointer-events: none; }
.t-card blockquote { font-family: var(--serif); font-size: 17px; line-height: 1.55; color: var(--ivory); font-style: italic; margin: 0; position: relative; }
.t-card figcaption { display: flex; flex-direction: column; gap: 2px; padding-top: 14px; border-top: 1px solid hsl(40 70% 52% / .25); }
.t-card figcaption strong { font-family: var(--serif); font-size: 16px; color: var(--gold); font-weight: 600; letter-spacing: .3px; }
.t-card figcaption span { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; opacity: .7; }

/* GALLERY */
.gallery { padding: 100px 0; background: white; }
.gallery-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 50px; gap: 40px; flex-wrap: wrap; }
.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 12px; }
.tile { background: linear-gradient(135deg, var(--burgundy), var(--gold)); position: relative; overflow: hidden; background-size: cover; background-position: center; transition: background-size 0.6s ease, box-shadow 0.4s ease, transform 0.4s ease; cursor: pointer; }
.tile:hover { background-size: 115%; box-shadow: 0 18px 40px -12px rgba(0,0,0,0.55); transform: translateY(-3px); z-index: 2; }
.tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(122,28,46,0) 30%, rgba(60,12,22,0.85) 100%); opacity: 0; transition: opacity 0.4s ease; pointer-events: none; }
.tile:hover::after { opacity: 1; }
.tile-label { transition: transform 0.4s ease, color 0.4s ease; text-shadow: 0 2px 8px rgba(0,0,0,0.7); font-weight: 600; }
.tile:hover .tile-label { transform: translateY(-4px); color: #fff; }
.tile:nth-child(1) { grid-column: span 2; grid-row: span 2; background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.55)), url('/heritage-building.jpg') center/cover no-repeat; }
.tile:nth-child(2) { background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.55)), url('/campus/img3.png') center/cover no-repeat; }
.tile:nth-child(3) { background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.55)), url('/campus/img2.png') center/cover no-repeat; }
.tile:nth-child(4) { grid-row: span 2; background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.55)), url('/campus/img6.png') center/cover no-repeat; }
.tile:nth-child(5) { background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.55)), url('/campus/img4.png') center/cover no-repeat; }
.tile:nth-child(6) { grid-column: span 2; background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.55)), url('/campus/img1.png') center/cover no-repeat; }
.tile:nth-child(7) { background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.55)), url('/campus/img5.png') center/cover no-repeat; }
.tile-label { position: absolute; bottom: 16px; left: 16px; color: var(--ivory); font-family: var(--serif); font-size: 18px; z-index: 3; }

/* FOOTER */
.footer { background: var(--burgundy-dark); color: var(--ivory); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer h5 { font-family: var(--serif); color: var(--gold); font-size: 18px; margin-bottom: 18px; }
.footer ul { list-style: none; }
.footer li { padding: 6px 0; font-size: 14px; opacity: .8; }
.footer li:hover { opacity: 1; color: var(--gold); }
.footer-bottom { border-top: 1px solid hsl(40 70% 52% / .2); padding-top: 24px; font-size: 13px; opacity: .8; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom .site-visitors strong { color: hsl(40 70% 60%); font-weight: 600; }
.social-icons { display: flex; gap: 10px; margin-top: 15px; }
.social-icons a { width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid hsl(40 70% 52% / .35); border-radius: 50%; color: var(--ivory); transition: all .2s; }
.social-icons a:hover { background: var(--gold); color: var(--burgundy-dark); border-color: var(--gold); }
.social-icons svg { width: 16px; height: 16px; }
.footer-map { display: block; border: 1px solid hsl(40 70% 52% / .35); border-radius: 4px; overflow: hidden; line-height: 0; height: 140px; }
.footer-map iframe { width: 100%; height: 100%; display: block; border: 0; }
.footer-addr { font-size: 13px; opacity: .8; margin-top: 8px; }
.footer-contact { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 0 0 28px; border-bottom: 1px solid hsl(40 70% 52% / .2); margin-bottom: 40px; }
.fc-item { display: flex; gap: 14px; align-items: flex-start; position: relative; }
.fc-item + .fc-item::before { content: ''; position: absolute; left: -20px; top: 4px; bottom: 4px; width: 1px; background: hsl(40 70% 52% / .25); }
.fc-icon { color: var(--gold); flex-shrink: 0; }
.fc-icon svg { width: 20px; height: 20px; }
.fc-label { display: block; color: var(--gold); font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 6px; }
.fc-body p { font-size: 14px; opacity: .9; line-height: 1.5; }
.fc-map { width: 100%; height: 90px; border: 1px solid hsl(40 70% 52% / .35); overflow: hidden; line-height: 0; }
.fc-map iframe { width: 100%; height: 100%; display: block; filter: grayscale(.2) contrast(1.05); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero .container, .about-grid, .footer-grid { grid-template-columns: 1fr; }
  .school-cards, .admit-grid, .mosaic { grid-template-columns: 1fr 1fr; }
  .hero h2 { font-size: 42px; }
  .section-title { font-size: 32px; }
  .school-card:nth-child(2) { margin-top: 0; }
  .news-grid { grid-template-columns: 1fr; gap: 40px; }
  .featured-content h3 { font-size: 26px; }
  .nav { display: none; }
}