/* ============================================================
   Resonant Waves — Shared Stylesheet v3
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600;1,700&family=Jost:wght@300;400;500&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #080a0e;
  --dark:     #0e1118;
  --mid:      #161b26;
  --aqua:     #2dd4c8;
  --orange:   #f27133;
  --violet:   #b07fe8;
  --white:    #f0ede8;
  --muted:    #8a92a3;
  --nav-h:    72px;
  --max-w:    1100px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Jost', sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }

/* ── Nav ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: linear-gradient(to bottom, rgba(8,10,14,0.92) 0%, rgba(8,10,14,0) 100%);
  transition: background 0.4s var(--ease-out);
}
.nav.scrolled {
  background: rgba(8,10,14,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo img { height: 36px; width: auto; }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links a {
  color: rgba(240,237,232,0.72);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--aqua);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none; border: none;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white); transition: all 0.3s;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(8,10,14,0.98);
  backdrop-filter: blur(16px);
  padding: 32px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 99;
  flex-direction: column;
  gap: 24px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(240,237,232,0.7); transition: color 0.2s;
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--white); }

/* ── Home Hero (with text overlay) ───────────────────────── */
.hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.65;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(8,10,14,0.2) 0%, rgba(8,10,14,0.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 24px 60px;
  max-width: 860px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s var(--ease-out) forwards;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s var(--ease-out) forwards;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}
.hero h1 em { font-style: italic; color: var(--aqua); }
.hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: rgba(240,237,232,0.85);
  max-width: 580px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s var(--ease-out) forwards;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}

/* ── Page Hero (inner pages — full brightness, no text) ───── */
.hero-page {
  position: relative;
  height: 52vh;
  overflow: hidden;
}
.hero-page .hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1;
}
/* subtle top fade so nav stays readable */
.hero-page::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(8,10,14,0.7) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* ── Page Intro (title block below hero on inner pages) ───── */
.page-intro-block {
  padding: 56px 0 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 0;
}
.page-intro-block .container {
  padding-bottom: 48px;
}
.page-intro-block .page-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 14px;
}
.page-intro-block h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.12;
  margin-bottom: 18px;
}
.page-intro-block h1 em { font-style: italic; color: var(--aqua); }
.page-intro-block .page-sub {
  font-size: 18px;
  font-weight: 400;
  color: rgba(240,237,232,0.75);
  max-width: 620px;
  line-height: 1.7;
}

/* ── Container ────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Sections ─────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--aqua); }
.section-body {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(240,237,232,0.78);
  max-width: 680px;
}

.divider {
  width: 60px; height: 1px;
  background: linear-gradient(to right, var(--aqua), transparent);
  margin: 28px 0;
}

/* ── Hear / Feel / See ────────────────────────────────────── */
.sense-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
}
.sense-card {
  background: var(--dark);
  padding: 60px 40px;
  text-align: center;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.sense-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.4s;
}
.sense-card:hover { background: var(--mid); }
.sense-card:hover::before { background: var(--aqua); }
.sense-icon {
  width: 80px; height: 80px;
  margin: 0 auto 28px;
  color: var(--aqua);
  opacity: 0.85;
}
.sense-card h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  color: var(--white);
}
.sense-card p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(240,237,232,0.7);
  line-height: 1.75;
}

/* ── Promo Video (full-width Play section) ────────────────── */
.promo-section { padding: 80px 0 0; }
.promo-video-outer {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #000;
}
.promo-text {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 40px 80px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.promo-text h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  margin-bottom: 20px;
}
.promo-text p {
  font-size: 17px;
  font-weight: 400;
  color: rgba(240,237,232,0.75);
  line-height: 1.8;
  max-width: 680px;
}

/* ── Mailing List ─────────────────────────────────────────── */
.mailing {
  background: var(--mid);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.mailing::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(45,212,200,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.mailing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.mailing-text h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.mailing-text p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(240,237,232,0.65);
  line-height: 1.8;
}
.mailing-form { padding-top: 8px; }
.form-row {
  display: flex;
  margin-bottom: 16px;
}
.form-row input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.25s;
  border-radius: 2px 0 0 2px;
}
.form-row input[type="email"]:focus {
  border-color: var(--aqua);
  background: rgba(45,212,200,0.04);
}
.form-row input::placeholder { color: var(--muted); }
.btn-submit {
  padding: 14px 28px;
  background: var(--aqua);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none; cursor: pointer;
  border-radius: 0 2px 2px 0;
  transition: background 0.25s;
}
.btn-submit:hover { background: #5de8e0; }
.form-note {
  font-size: 14px;
  font-weight: 400;
  color: rgba(240,237,232,0.5);
  line-height: 1.6;
  margin-top: 8px;
}
.form-success, .form-error { display: none; font-size: 15px; padding: 12px 0; font-weight: 400; }
.form-success { color: var(--aqua); }
.form-error { color: var(--orange); }

/* ── Contact Form ─────────────────────────────────────────── */
.contact-section { padding: 100px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  outline: none;
  border-radius: 2px;
  transition: border-color 0.25s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--aqua);
  background: rgba(45,212,200,0.03);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form .form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.required-note {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 24px;
}
.btn-primary {
  padding: 14px 36px;
  background: transparent;
  color: var(--aqua);
  border: 1px solid var(--aqua);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s;
}
.btn-primary:hover { background: var(--aqua); color: var(--black); }
.privacy-note {
  font-size: 13px;
  font-weight: 400;
  color: rgba(240,237,232,0.35);
  line-height: 1.6;
  margin-top: 14px;
}
.privacy-note a { color: rgba(45,212,200,0.55); text-decoration: underline; }
.privacy-note a:hover { color: var(--aqua); }

/* ── Project page ─────────────────────────────────────────── */
.project-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 80px 0;
}
.project-intro-image { position: relative; }
.project-intro-image img { width: 100%; object-fit: cover; display: block; }
.project-intro-image::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(45,212,200,0.15);
}
.blockquote {
  border-left: 2px solid var(--aqua);
  padding: 20px 24px;
  margin: 28px 0;
  background: rgba(45,212,200,0.04);
  border-radius: 0 2px 2px 0;
}
.blockquote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(240,237,232,0.82);
}

/* ── Components ───────────────────────────────────────────── */
.components-section { padding: 80px 0; background: var(--mid); }
.components-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  margin-top: 48px;
}
.component-item {
  background: var(--mid);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: background 0.25s;
}
.component-item:hover { background: #1a2033; }
.component-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--aqua);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}
.component-text {
  font-size: 16px;
  font-weight: 400;
  color: rgba(240,237,232,0.75);
  line-height: 1.7;
}
.component-text strong { color: var(--white); font-weight: 500; }

/* ── Team ─────────────────────────────────────────────────── */
.team-section { padding: 100px 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.team-card { text-align: center; }
.team-img-wrap {
  width: 100%; aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  background: var(--mid);
}
.team-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(45,212,200,0.15);
}
.team-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
  transition: filter 0.4s, transform 0.4s;
}
.team-card:hover .team-img-wrap img { filter: grayscale(0%); transform: scale(1.04); }
.team-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--mid);
  color: var(--muted);
  font-size: 13px; letter-spacing: 0.08em;
}
.team-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.team-role {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Exhibitions ──────────────────────────────────────────── */
.exhibition-section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.exhibition-header { margin-bottom: 32px; }
.exhibition-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 6px;
}
.exhibition-header .date {
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--aqua); opacity: 0.85;
}
.exhibition-header .location {
  font-size: 14px; font-weight: 400; color: var(--muted); margin-top: 4px;
}
.exhibition-desc {
  font-size: 16px;
  font-weight: 400;
  color: rgba(240,237,232,0.72);
  max-width: 660px;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* ── Gallery ──────────────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}
/* First image is always featured: 2 cols × 2 rows */
.gallery-item { aspect-ratio: 1; overflow: hidden; cursor: zoom-in; position: relative; background: var(--dark); }
.gallery-item-featured { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out), filter 0.4s;
  filter: brightness(0.88) saturate(0.9);
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1) saturate(1.05); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.95);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  color: var(--white); font-size: 32px; cursor: pointer;
  background: none; border: none; line-height: 1; opacity: 0.7;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  padding: 20px 16px;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover { opacity: 1; transform: translateY(-50%) scale(1.15); }
.lightbox-next:hover { opacity: 1; transform: translateY(-50%) scale(1.15); }
.lightbox-prev svg,
.lightbox-next svg { display: block; }
.lightbox-prev.dimmed,
.lightbox-next.dimmed { opacity: 0.2; pointer-events: none; }
.lightbox-caption {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-size: 14px; color: rgba(240,237,232,0.5); text-align: center;
  max-width: 600px; pointer-events: none;
}
/* Logo hover effect */
.nav-logo img {
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.nav-logo:hover img {
  transform: scale(1.12);
  opacity: 1;
}

/* ── News ─────────────────────────────────────────────────── */
.news-grid { display: flex; flex-direction: column; gap: 1px; background: rgba(255,255,255,0.05); }
.news-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: var(--dark);
  transition: background 0.25s;
}
.news-item:hover { background: var(--mid); }
.news-img { aspect-ratio: 4/3; overflow: hidden; }
.news-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.85) saturate(0.85); transition: filter 0.4s;
}
.news-item:hover .news-img img { filter: brightness(1) saturate(1); }
.news-body { padding: 40px 48px; display: flex; flex-direction: column; justify-content: center; }
.news-meta {
  font-size: 12px; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--aqua); margin-bottom: 12px;
}
.news-title {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 700; line-height: 1.2; margin-bottom: 14px;
}
.news-text {
  font-size: 16px; font-weight: 400;
  color: rgba(240,237,232,0.7); line-height: 1.8;
}
.news-link {
  display: inline-block; margin-top: 16px;
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--aqua);
  border-bottom: 1px solid rgba(45,212,200,0.3); padding-bottom: 2px;
  transition: border-color 0.2s;
}
.news-link:hover { border-color: var(--aqua); }

/* ── Footer ───────────────────────────────────────────────── */
.footer { padding: 64px 0 48px; border-top: 1px solid rgba(255,255,255,0.07); }
.footer-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px; }
.footer-logo img { height: 32px; opacity: 0.7; }
.footer-name {
  font-family: var(--font-display);
  font-size: 1rem; letter-spacing: 0.08em;
  color: rgba(240,237,232,0.4);
}
.footer-copy { font-size: 13px; color: rgba(240,237,232,0.28); line-height: 2; }
.footer-patent { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--aqua); opacity: 0.5; }
.footer-nav {
  display: flex; gap: 32px; list-style: none;
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(240,237,232,0.38);
}
.footer-nav a { transition: color 0.2s; }
.footer-nav a:hover { color: var(--white); }

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Utilities ────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mailing-inner, .contact-grid, .project-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-item-featured { grid-column: span 2; grid-row: span 1; aspect-ratio: 2/1; }
  .news-item { grid-template-columns: 1fr; }
  .news-img { aspect-ratio: 16/9; }
  .hero-page { height: 38vh; }
}
@media (max-width: 600px) {
  .nav { padding: 0 20px; }
  .container { padding: 0 20px; }
  .nav-mobile { padding: 24px 20px; }
  .sense-grid { grid-template-columns: 1fr; gap: 1px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-item-featured { grid-column: span 2; }
  .news-body { padding: 24px; }
  .section { padding: 64px 0; }
  .components-grid { grid-template-columns: 1fr; }
  .contact-form .form-row-2 { grid-template-columns: 1fr; }
  .promo-text { padding: 32px 20px 64px; }
}
