/* ============================================================
   NOÈ MULTIMEDIA — Stylesheet
   Version: 1.0 | 2026-03-16
   ============================================================ */

/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  --color-black:   #1C1C1C;
  --color-red:     #E63329;
  --color-white:   #FFFFFF;
  --color-gray-light: #F4F4F2;
  --color-gray-mid:   #888888;
  --color-gray-border: #E0E0E0;
  --color-green:   #4A6741;

  --font-display: 'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;

  --max-width: 1280px;
  --gutter: 24px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 300ms var(--ease);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--color-black);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }

p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-black);
}
.text-large { font-size: 1.25rem; line-height: 1.65; }
.text-small { font-size: 0.875rem; color: var(--color-gray-mid); }

.overline {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gray-mid);
}
.overline-red { color: var(--color-red); }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--lg { padding: 128px 0; }
.section--dark {
  background: var(--color-black);
  color: var(--color-white);
}
.section--dark p,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--color-white); }
.section--gray { background: var(--color-gray-light); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-7 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(12px);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-gray-border);
}
.nav.scrolled .nav__links a {
  color: var(--color-black);
}
.nav.scrolled .nav__lang a {
  color: var(--color-black);
}
.nav.scrolled .nav__lang span {
  color: var(--color-black);
  opacity: 0.35;
}
.nav.scrolled .nav__lang-btn { color: var(--color-black); }
.nav.scrolled .nav__lang-btn.active { color: var(--color-black); }
.nav.scrolled .nav__lang-btn:hover { color: var(--color-red); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo img { height: 50px; width: auto; }
.nav__logo .logo--dark  { display: none; }
.nav__logo .logo--white { display: block; }
.nav.scrolled .logo--dark  { display: block; }
.nav.scrolled .logo--white { display: none; }
.nav__links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav__links a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-white);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--color-red); }
.nav__lang {
  display: flex;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
}
.nav__lang a { color: var(--color-white); transition: color var(--transition); }
.nav__lang a.active,
.nav__lang a:hover { color: var(--color-red); }
.nav__lang span { color: var(--color-white); opacity: 0.35; }
/* language toggle buttons */
.nav__lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 2px 6px;
  border-radius: 3px;
  transition: color var(--transition), background var(--transition);
  line-height: inherit;
  opacity: 0.55;
}
.nav__lang-btn.active {
  color: var(--color-white);
  opacity: 1;
}
.nav__lang-btn:hover { opacity: 1; }
.nav__lang-btn[aria-current="true"] { text-decoration: underline; text-underline-offset: 3px; }
.nav__cta {
  background: var(--color-red);
  color: var(--color-white) !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition);
}
.nav__cta:hover { background: #c42c23; transform: translateY(-1px); color: var(--color-white) !important; }

/* Mobile nav */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-black);
  transition: var(--transition);
}
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-white);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-black);
}
.nav__mobile a:hover { color: var(--color-red); }

/* Mobile submenu */
.nav__mobile-sub {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: -16px;
  padding-left: 20px;
  border-left: 2px solid var(--color-gray-border);
}
.nav__mobile-sub a {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--color-gray-mid) !important;
}
.nav__mobile-sub a:hover { color: var(--color-red) !important; }

/* ── NAV DROPDOWN ───────────────────────────────────────────── */
.nav__has-dropdown { position: relative; }
.nav__has-dropdown > a::after {
  content: ' ▾';
  font-size: 0.75em;
  opacity: 0.7;
  transition: transform var(--transition);
  display: inline-block;
}
.nav__has-dropdown:hover > a::after { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--color-white);
  border: 1px solid var(--color-gray-border);
  border-radius: 6px;
  min-width: 240px;
  padding: 8px 0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  pointer-events: none;
  list-style: none;
}
/* Ponte invisibile che copre il gap tra link e dropdown */
.nav__dropdown::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 14px;
}
.nav__has-dropdown:hover .nav__dropdown,
.nav__has-dropdown:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav__dropdown li a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-black);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav__dropdown li a:hover {
  color: var(--color-red);
  background: var(--color-gray-light);
}
.nav__dropdown .nav__dropdown-sep {
  height: 1px;
  background: var(--color-gray-border);
  margin: 6px 0;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero--photo {
  background: var(--color-black);
  color: var(--color-white);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero__overline {
  margin-bottom: 24px;
  color: var(--color-red);
}
.hero h1 { margin-bottom: 28px; }
.hero--photo h1 { color: var(--color-white); }
.hero__sub {
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--color-gray-mid);
  max-width: 580px;
  margin-bottom: 44px;
}
.hero--photo .hero__sub { color: rgba(255,255,255,0.75); }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 4px;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--color-red);
  color: var(--color-white);
}
.btn--primary:hover { background: #c42c23; transform: translateY(-2px); }
.btn--outline {
  border-color: var(--color-black);
  color: var(--color-black);
}
.btn--outline:hover { background: var(--color-black); color: var(--color-white); }
.btn--outline-white {
  border-color: var(--color-white);
  color: var(--color-white);
}
.btn--outline-white:hover { background: var(--color-white); color: var(--color-black); }
.btn--link {
  padding: 0;
  color: var(--color-red);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
}
.btn--link::after { content: ' →'; }
.btn--link:hover { gap: 12px; }

/* ── POSITIONING STRIP ──────────────────────────────────────── */
.positioning {
  border-top: 1px solid var(--color-gray-border);
  border-bottom: 1px solid var(--color-gray-border);
}
.positioning__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--color-gray-border);
}
.positioning__item {
  padding: 40px 32px;
  border-right: 1px solid var(--color-gray-border);
}
.positioning__item:last-child { border-right: none; }
.positioning__item h3 { margin-bottom: 16px; }
.positioning__item p { color: var(--color-gray-mid); font-size: 0.95rem; line-height: 1.65; }
.positioning__accent {
  display: block;
  width: 32px;
  height: 3px;
  background: var(--color-red);
  margin-bottom: 20px;
}

/* ── SERVICES ───────────────────────────────────────────────── */
.services__intro {
  max-width: 560px;
  margin-bottom: 56px;
}
.services__intro h2 { margin-bottom: 16px; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--color-gray-border);
}
.service-card {
  background: var(--color-white);
  padding: 40px 36px;
  transition: background var(--transition);
  cursor: default;
}
.service-card:hover { background: var(--color-gray-light); }
.service-card__num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-red);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.service-card h4 { margin-bottom: 12px; font-size: 1.05rem; }
.service-card p { font-size: 0.9rem; color: var(--color-gray-mid); line-height: 1.65; }

/* ── CAMPUS TEASER ──────────────────────────────────────────── */
.campus-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.campus-teaser__image {
  background: var(--color-black);
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 400px;
}
.campus-teaser__image::after {
  display: none;
}
.campus-teaser__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
}
.campus-teaser__content h2 { margin-bottom: 24px; }
.campus-teaser__content p { color: var(--color-gray-mid); margin-bottom: 36px; max-width: 440px; }

/* ── NUMBERS ────────────────────────────────────────────────── */
.numbers { background: var(--color-black); }
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}
.number-item {
  padding: 56px 40px;
  background: var(--color-black);
  text-align: center;
}
.number-item__value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 8px;
}
.number-item__value span { color: var(--color-red); }
.number-item__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── QUOTE SECTION ──────────────────────────────────────────── */
.quote-section {
  background: var(--color-black);
  text-align: center;
  padding: 96px 0;
}
.quote-section blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--color-white);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.quote-section blockquote em {
  font-style: normal;
  color: var(--color-red);
}

/* ── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 96px 0;
}
.cta-section h2 { margin-bottom: 20px; }
.cta-section p { color: var(--color-gray-mid); margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-section .cta-note {
  display: block;
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--color-gray-mid);
}

/* ── ABOUT SPECIFICS ────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-item__icon {
  width: 4px;
  height: 32px;
  background: var(--color-red);
  margin-bottom: 20px;
}
.value-item h4 { margin-bottom: 8px; font-size: 1rem; }
.value-item p { font-size: 0.9rem; color: var(--color-gray-mid); }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}
.approach-grid--4 { grid-template-columns: repeat(4, 1fr); gap: 24px; }
.approach-item { padding: 40px; background: var(--color-gray-light); border-radius: 4px; }
.approach-item__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-red);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}
.approach-item h4 { margin-bottom: 12px; }
.approach-item p { font-size: 0.9rem; color: var(--color-gray-mid); line-height: 1.65; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.team-card__photo {
  aspect-ratio: 3/4;
  background: var(--color-gray-light);
  margin-bottom: 16px;
  overflow: hidden;
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms var(--ease); }
.team-card:hover .team-card__photo img { transform: scale(1.04); }
.team-card h4 { font-size: 1rem; margin-bottom: 4px; }
.team-card__role { font-size: 0.85rem; color: var(--color-gray-mid); font-family: var(--font-display); font-weight: 600; }

/* ── CAMPUS ─────────────────────────────────────────────────── */
.campus-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--color-gray-border);
  margin-top: 64px;
}
.campus-feature {
  background: var(--color-white);
  padding: 48px;
  transition: background var(--transition);
}
.campus-feature:hover { background: var(--color-gray-light); }
.campus-feature__icon {
  width: 48px;
  height: 48px;
  background: var(--color-gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.25rem;
}
.campus-feature h3 { font-size: 1.2rem; margin-bottom: 12px; }
.campus-feature p { font-size: 0.95rem; color: var(--color-gray-mid); line-height: 1.65; }

/* ── WORKSHOP ───────────────────────────────────────────────── */
.method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.method-card {
  padding: 48px;
  border: 1px solid var(--color-gray-border);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.method-card:hover {
  border-color: var(--color-red);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.method-card h3 { margin-bottom: 16px; }
.method-card p { font-size: 0.95rem; color: var(--color-gray-mid); line-height: 1.65; margin-bottom: 20px; }
.method-card__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-red);
  border: 1px solid var(--color-red);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 8px;
  margin-right: 4px;
}

/* ── CONTACT FORM ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 24px; }
.contact-info p { color: var(--color-gray-mid); margin-bottom: 40px; }
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-detail__item { display: flex; flex-direction: column; gap: 4px; }
.contact-detail__label { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-gray-mid); }
.contact-detail__value { font-size: 1rem; color: var(--color-black); }

.form { display: flex; flex-direction: column; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { display: flex; flex-direction: column; gap: 6px; }
.form__label { font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; color: var(--color-black); }
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-gray-border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-black);
  background: var(--color-white);
  transition: border-color var(--transition);
  outline: none;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--color-black);
}
.form__textarea { resize: vertical; min-height: 120px; }
.form__privacy { display: flex; gap: 12px; align-items: flex-start; font-size: 0.85rem; color: var(--color-gray-mid); }
.form__privacy input { margin-top: 3px; flex-shrink: 0; accent-color: var(--color-red); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: 64px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.footer__brand img { height: 28px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer__tagline { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.65; max-width: 240px; }
.footer__col h5 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: var(--color-white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer__bottom a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer__bottom a:hover { color: rgba(255,255,255,0.7); }

/* ── ANIMATIONS ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 100ms; }
.fade-up:nth-child(3) { transition-delay: 200ms; }
.fade-up:nth-child(4) { transition-delay: 300ms; }
.fade-up:nth-child(5) { transition-delay: 400ms; }
.fade-up:nth-child(6) { transition-delay: 500ms; }
.fade-up:nth-child(7) { transition-delay: 600ms; }

/* ── UTILITIES ──────────────────────────────────────────────── */
.text-red { color: var(--color-red); }
.text-center { text-align: center; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.section-header { max-width: 600px; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--color-gray-mid); }
.section-header--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --gutter: 20px; }
  .section { padding: 64px 0; }
  .section--lg { padding: 80px 0; }

  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero { min-height: 90vh; padding-top: 72px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }

  .positioning__grid,
  .grid-2, .grid-3,
  .campus-teaser,
  .contact-grid,
  .values-grid,
  .approach-grid, .approach-grid--4,
  .method-grid,
  .campus-features { grid-template-columns: 1fr; }

  .services__grid { grid-template-columns: 1fr; }

  .campus-teaser__image { min-height: 300px; }
  .campus-teaser__image::after { display: none; }
  .campus-teaser__content { padding: 48px 20px; }

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

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

  .form__row { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .positioning__item { border-right: none; border-bottom: 1px solid var(--color-gray-border); padding: 32px 20px; }
  .positioning__item:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }
  .numbers__grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; }
}
