
/* ============================================================
   COLOUR PALETTE — light blue family
   ============================================================ */
:root {
  --sky-lightest: #f0f7ff;
  --sky-light:    #d6eaff;
  --sky-pale:     #b8d9ff;
  --sky-mid:      #7ab8f5;
  --sky-main:     #4a9de0;
  --sky-deep:     #2074c0;
  --sky-dark:     #0f4a8a;
  --sky-darkest:  #082d5a;
  --gold:         #c8a84b;
  --gold-light:   #f0e4b8;
  --cream:        #f8fbff;
  --text-dark:    #0a1f3d;
  --text-mid:     #2a4a72;
  --text-light:   #5a7fa8;
  --border:       #c0d8f0;
  --white:        #ffffff;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Mulish', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(240,247,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.nav-brand {
  display: flex; flex-direction: column; text-decoration: none;
}
.nav-brand-main {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--sky-dark); letter-spacing: 0.04em; line-height: 1.1;
}
.nav-brand-sub {
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-light); font-weight: 500;
}
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-mid);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--sky-deep); }
.lang-toggle { display: flex; gap: 0.25rem; }
.lang-btn {
  background: none; border: 1px solid var(--sky-pale);
  color: var(--text-mid); font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em;
  padding: 0.2rem 0.5rem; cursor: pointer; border-radius: 2px; transition: all 0.2s;
}
.lang-btn.active, .lang-btn:hover { background: var(--sky-deep); color: white; border-color: var(--sky-deep); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden; text-align: center;
  padding: 8rem 2rem 6rem;
  background:
    radial-gradient(ellipse 100% 80% at 20% 10%, rgba(122,184,245,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 80% 90%, rgba(74,157,224,0.25) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(214,234,255,0.5) 0%, transparent 70%),
    linear-gradient(180deg, var(--sky-lightest) 0%, #e4f1ff 50%, var(--sky-light) 100%);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 35%, rgba(255,255,255,0.55) 0%, transparent 65%);
  pointer-events: none;
}
/* Decorative circles */
.hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border: 1px solid rgba(74,157,224,0.15);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.hero-ring {
  position: absolute;
  width: 900px; height: 900px;
  border: 1px solid rgba(74,157,224,0.08);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--sky-deep);
  margin-bottom: 1.75rem; position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 40px; height: 1px; background: var(--sky-main);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 400; line-height: 1;
  color: var(--text-dark); position: relative; z-index: 1;
  margin-bottom: 0.15em;
}
.hero-title em {
  font-style: italic; color: var(--sky-deep);
}
.hero-title-sub {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 400; font-style: italic;
  color: var(--sky-main); margin-bottom: 2rem;
  position: relative; z-index: 1; line-height: 1.2;
}
.hero-tagline {
  font-size: clamp(0.9rem, 2vw, 1.1rem); font-weight: 300;
  color: var(--text-mid); max-width: 560px; line-height: 1.8;
  margin-bottom: 3rem; position: relative; z-index: 1;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-primary {
  background: var(--sky-deep); color: white;
  padding: 0.9rem 2.4rem; border-radius: 2px;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; transition: all 0.2s; border: none; cursor: pointer; display: inline-block;
}
.btn-primary:hover { background: var(--sky-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(15,74,138,0.25); }
.btn-outline {
  background: transparent; color: var(--sky-deep);
  border: 1.5px solid var(--sky-deep);
  padding: 0.9rem 2.4rem; border-radius: 2px;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; transition: all 0.2s; display: inline-block;
}
.btn-outline:hover { background: var(--sky-lightest); }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: var(--text-light); font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase;
  animation: bounce 2.5s infinite;
}
.hero-scroll::after { content: '↓'; font-size: 1rem; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(7px)} }
.hero-logo-wrap { margin-bottom: 1.5rem; }
.hero-logo {
  height: 180px; width: auto;
  animation: logoFade 1.2s ease both;
  mix-blend-mode: multiply;
}
@keyframes logoFade { from{opacity:0;transform:scale(0.9)} to{opacity:1;transform:scale(1)} }

/* ── ARTS TICKER ─────────────────────────────────────────────── */
.ticker {
  background: var(--sky-dark); color: rgba(255,255,255,0.75);
  padding: 0.7rem 0; overflow: hidden; white-space: nowrap;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
}
.ticker-inner {
  display: inline-block;
  animation: ticker 28s linear infinite;
}
.ticker-inner span { margin: 0 2rem; }
.ticker-inner span::before { content: '✦'; margin-right: 2rem; color: var(--gold); }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SHARED ──────────────────────────────────────────────────── */
section { padding: 6rem 2rem; }
.container { max-width: 1080px; margin: 0 auto; }
.section-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--sky-main); margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.section-label::before { content: ''; width: 28px; height: 1px; background: var(--sky-main); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 400; line-height: 1.15;
  color: var(--text-dark); margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--sky-deep); }

/* ── MISSION ─────────────────────────────────────────────────── */
.mission-section {
  background: white;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.mission-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.mission-text p {
  color: var(--text-mid); font-size: 1.05rem; line-height: 1.9; margin-bottom: 1.25rem;
  font-weight: 300;
}
.mission-text blockquote {
  border-left: 3px solid var(--sky-main); padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-display); font-size: 1.35rem; font-style: italic;
  color: var(--sky-deep); font-weight: 400; line-height: 1.4;
}
.mission-values { display: flex; flex-direction: column; gap: 1rem; }
.value-card {
  padding: 1.4rem 1.5rem; border-radius: 4px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--sky-lightest), white);
  transition: border-color 0.2s, transform 0.2s;
  display: flex; gap: 1rem; align-items: flex-start;
}
.value-card:hover { border-color: var(--sky-mid); transform: translateX(4px); }
.value-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.value-card h3 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 500;
  color: var(--sky-dark); margin-bottom: 0.3rem;
}
.value-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; font-weight: 300; }

/* ── DISCIPLINES ─────────────────────────────────────────────── */
.disciplines-section {
  background: linear-gradient(180deg, var(--sky-lightest) 0%, var(--sky-light) 100%);
}
.disciplines-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem;
}
.discipline {
  background: white; border-radius: 6px;
  border: 1px solid var(--border);
  padding: 2rem 1.5rem; text-align: center;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.discipline::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sky-main), var(--sky-deep));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.discipline:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(32,116,192,0.12); border-color: var(--sky-pale); }
.discipline:hover::before { transform: scaleX(1); }
.discipline-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.discipline h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 500;
  color: var(--sky-dark); margin-bottom: 0.6rem;
}
.discipline p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; font-weight: 300; }

/* ── PROJECTS ────────────────────────────────────────────────── */
.projects-section { background: var(--sky-darkest); color: white; }
.projects-section .section-label { color: var(--sky-mid); }
.projects-section .section-label::before { background: var(--sky-mid); }
.projects-section .section-title { color: white; }
.projects-section .section-title em { color: var(--gold); }
.projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 1.5rem; margin-top: 3rem; }
.project-card {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; padding: 2rem;
  background: rgba(255,255,255,0.05);
  transition: all 0.3s; text-decoration: none; display: block;
}
.project-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); transform: translateY(-3px); }
.project-tag {
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 0.85rem;
}
.project-name {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 400;
  color: white; line-height: 1.2; margin-bottom: 0.75rem;
}
.project-name em { font-style: italic; color: var(--sky-mid); }
.project-desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.7; font-weight: 300; margin-bottom: 1.5rem; }
.project-link {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600; color: var(--sky-mid); text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap 0.2s;
}
.project-card:hover .project-link { gap: 0.7rem; }

/* ── ACTIVITIES ──────────────────────────────────────────────── */
.activities-section { background: white; border-top: 1px solid var(--border); }
.activities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 3rem; }
.activity {
  padding: 1.5rem; border-radius: 4px;
  border-left: 3px solid var(--sky-main);
  background: var(--sky-lightest);
  transition: border-color 0.2s;
}
.activity:hover { border-left-color: var(--sky-deep); }
.activity h3 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 500;
  color: var(--sky-dark); margin-bottom: 0.4rem;
}
.activity p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; font-weight: 300; }

/* ── ABOUT ───────────────────────────────────────────────────── */
.about-section {
  background: linear-gradient(160deg, var(--sky-lightest) 0%, white 100%);
  border-top: 1px solid var(--border);
}
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: center; }
.about-text p { color: var(--text-mid); font-size: 1rem; line-height: 1.85; margin-bottom: 1.1rem; font-weight: 300; }
.stat-row { display: flex; gap: 2.5rem; margin-top: 2.5rem; flex-wrap: wrap; }
.stat-number {
  font-family: var(--font-display); font-size: 3rem; font-weight: 400;
  color: var(--sky-deep); line-height: 1;
}
.stat-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); margin-top: 0.25rem; font-weight: 500; }
.about-visual {
  background: linear-gradient(145deg, var(--sky-light), var(--sky-pale));
  border-radius: 8px; padding: 3rem 2.5rem;
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.about-visual::before {
  content: 'ARTimi';
  position: absolute; bottom: -1rem; right: -0.5rem;
  font-family: var(--font-display); font-size: 6rem; font-weight: 700;
  color: rgba(32,116,192,0.07); line-height: 1; pointer-events: none;
  white-space: nowrap;
}
.about-visual-title {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 400;
  font-style: italic; color: var(--sky-dark); margin-bottom: 0.5rem;
}
.about-visual-sub {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 2rem; font-weight: 500;
}
.principles { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.principles li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.9rem; color: var(--text-mid); font-weight: 400;
}
.principles li::before { content: '✦'; color: var(--sky-main); flex-shrink: 0; margin-top: 0.18rem; font-size: 0.6rem; }

/* ── SUPPORT ─────────────────────────────────────────────────── */
.support-section {
  background: linear-gradient(135deg, var(--sky-dark) 0%, var(--sky-darkest) 100%);
  color: white; text-align: center;
}
.support-section .section-label { color: var(--sky-mid); justify-content: center; }
.support-section .section-label::before { background: var(--sky-mid); }
.support-inner { max-width: 680px; margin: 0 auto; }
.support-inner .section-title { color: white; }
.support-inner .section-title em { color: var(--gold); }
.support-inner p { color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.85; margin-bottom: 2.5rem; font-weight: 300; }
.support-options { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.btn-gold { background: var(--gold); color: white; }
.btn-gold:hover { background: #b8943d; transform: translateY(-2px); }
.btn-white-outline {
  background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.4);
  padding: 0.9rem 2.4rem; border-radius: 2px;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; transition: all 0.2s; display: inline-block;
}
.btn-white-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-section { background: white; border-top: 1px solid var(--border); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info-item { margin-bottom: 1.75rem; }
.contact-info-label {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sky-main); font-weight: 600; margin-bottom: 0.4rem;
}
.contact-info-value {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 400;
  color: var(--text-dark); line-height: 1.5;
}
.contact-info-value a { color: var(--sky-deep); text-decoration: none; }
.contact-info-value a:hover { text-decoration: underline; }
.contact-projects { margin-top: 0.5rem; }
.contact-projects-label {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sky-main); font-weight: 600; margin-bottom: 0.75rem;
}
.project-links-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.project-links-list li a {
  color: var(--sky-deep); text-decoration: none; font-size: 0.9rem; font-weight: 500;
  display: flex; align-items: center; gap: 0.4rem; transition: gap 0.2s;
}
.project-links-list li a:hover { gap: 0.7rem; }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  background: var(--sky-darkest); color: rgba(255,255,255,0.45);
  padding: 3rem 2rem; text-align: center;
  font-size: 0.78rem; letter-spacing: 0.06em; line-height: 2;
}
footer a { color: var(--sky-mid); text-decoration: none; }
footer strong { color: rgba(255,255,255,0.8); }
.footer-brand {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 400;
  font-style: italic; color: rgba(255,255,255,0.8); margin-bottom: 0.25rem;
}
.footer-divider {
  width: 40px; height: 1px; background: var(--sky-main);
  margin: 1rem auto;
}

/* ── LANGUAGE ────────────────────────────────────────────────── */
body.it .lang-en { display: none !important; }
body.en .lang-it { display: none !important; }

/* ── FADE IN ─────────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.fade-in-delay { transition-delay: 0.15s; }
.fade-in-delay-2 { transition-delay: 0.3s; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 860px) {
  .mission-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .disciplines-grid { grid-template-columns: repeat(2,1fr); }
  .activities-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  nav { padding: 1rem 1.25rem; flex-wrap: wrap; gap: 0.75rem; }
  section { padding: 4rem 1.25rem; }
}
@media (max-width: 520px) {
  .disciplines-grid { grid-template-columns: 1fr; }
}

/* ── HAMBURGER MENU ─────────────────────────────────────────── */


.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 150; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  backdrop-filter: blur(16px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.5rem; font-weight: 500; letter-spacing: 0.08em;
  text-decoration: none; text-transform: uppercase;
  transition: opacity 0.2s;
}
.mobile-menu a:hover { opacity: 0.7; }
.mobile-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; font-size: 2rem;
  cursor: pointer; line-height: 1;
}



/* ── HAMBURGER ── */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; cursor: pointer; background: none; border: none;
  padding: 6px; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--sky-dark); border-radius: 2px; transition: all 0.3s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobile-menu {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 350; background: #fff;
  flex-direction: column; align-items: flex-start;
  justify-content: center; padding: 5rem 2.5rem 3rem;
}
#mobile-menu.is-open { display: flex; }
.mob-top {
  position: absolute; top: 1.1rem; right: 1.25rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.mob-close {
  background: none; border: none; font-size: 2rem;
  cursor: pointer; color: var(--sky-dark); line-height: 1; padding: 0;
}
#mobile-menu a {
  display: block; width: 100%; padding: 1rem 0;
  font-family: var(--font-b); font-size: 1.2rem;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; color: var(--sky-dark);
  border-bottom: 1px solid var(--border);
  transition: color 0.15s, padding-left 0.15s;
}
#mobile-menu a:first-of-type { border-top: 1px solid var(--border); margin-top: 0.5rem; }
#mobile-menu a:hover { color: var(--sky-deep); padding-left: 0.5rem; }

/* lang-toggle always visible — hamburger replaces nav-links only */
@media (max-width: 860px) {
  nav { padding: 0.85rem 1.25rem; }
  .nav-links { display: none !important; }
  .hamburger { display: flex !important; }
}


/* ── ACTIVE NAV INDICATOR ────────────────────────────────────────────────── */
.nav-links a.nav-active {
  color: var(--sky-deep);
  border-bottom: 2px solid var(--sky-main);
  padding-bottom: 2px;
}

/* ── DISCOVER SECTION (homepage gateway cards) ───────────────────────────── */
.discover-section {
  background: white;
  border-top: 1px solid var(--border);
}
.discover-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.discover-card {
  display: block; text-decoration: none;
  padding: 2rem 1.5rem; border-radius: 6px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--sky-lightest), white);
  transition: all 0.3s; position: relative; overflow: hidden;
}
.discover-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sky-main), var(--sky-deep));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.discover-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(32,116,192,0.12);
  border-color: var(--sky-pale);
}
.discover-card:hover::before { transform: scaleX(1); }
.discover-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.discover-card h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 500;
  color: var(--sky-dark); margin-bottom: 0.6rem;
}
.discover-card p {
  font-size: 0.85rem; color: var(--text-mid); line-height: 1.7;
  font-weight: 300; margin-bottom: 1rem;
}
.discover-link {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600; color: var(--sky-deep);
}

/* ── SUB-PAGE FIRST SECTION (clears fixed nav) ──────────────────────────── */
.subpage-first { padding-top: 8rem; }
