:root {
  --cream: #F7F3EE;
  --milk: #FDFAF6;
  --beige: #E8DDD0;
  --warm-gray: #C4B9AD;
  --dusty-rose: #C9A99A;
  --sage: #A8B5A0;
  --text-dark: #3D3530;
  --text-mid: #6B5E55;
  --text-light: #9B8F87;
  --accent: #B8906E;
  --shadow: rgba(61, 53, 48, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--milk);
  color: var(--text-dark);
  font-weight: 300;
  overflow-x: hidden;
}

/* ─── PAGES ─── */
.page { display: none; min-height: 100vh; }
.page.active { display: block; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(253, 250, 246, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 185, 173, 0.3);
  transition: all 0.4s ease;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: color 0.3s;
}
.nav-logo:hover { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active-link { color: var(--accent); }
.nav-links a.active-link::after { width: 100%; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text-dark);
  transition: all 0.3s;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

p {
  line-height: 1.8;
  color: var(--text-mid);
  font-size: 0.95rem;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.35s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(184, 144, 110, 0.3);
}
.btn-primary:hover {
  background: #a07858;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184, 144, 110, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--beige);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 0.75rem 1.8rem;
}
.btn-ghost:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ─── SECTIONS ─── */
section { padding: 6rem 3rem; }

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  display: block;
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.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; }

/* ══════════════════════════════════════════
   PAGE 1 — HOME
══════════════════════════════════════════ */

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 3rem 5rem;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw; height: 80vh;
  background: radial-gradient(ellipse, rgba(201,169,154,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -5%;
  width: 40vw; height: 50vh;
  background: radial-gradient(ellipse, rgba(168,181,160,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.hero-content h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-content p {
  font-size: 1rem;
  margin-bottom: 2.5rem;
  max-width: 420px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  overflow: hidden;
  background: linear-gradient(145deg, var(--beige), var(--dusty-rose) 60%, var(--warm-gray));
  box-shadow: 0 20px 60px var(--shadow);
  position: relative;
}

.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(61,53,48,0.15));
}

.hero-decor {
  position: absolute;
  width: 120px; height: 120px;
  border: 1.5px solid var(--warm-gray);
  border-radius: 50%;
  top: -30px; right: -20px;
  opacity: 0.5;
}

.hero-decor-2 {
  position: absolute;
  width: 60px; height: 60px;
  background: var(--sage);
  border-radius: 50%;
  bottom: 20px; left: -20px;
  opacity: 0.4;
}

/* Directions Section */
.directions {
  background: var(--milk);
}

.directions-header {
  text-align: center;
  margin-bottom: 4rem;
}

.directions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.direction-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 30px var(--shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.direction-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 50px rgba(61,53,48,0.12);
}

.direction-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 160px; height: 160px;
  border-radius: 0 0 0 100%;
  opacity: 0.12;
}

.direction-card.photo::before { background: var(--dusty-rose); }
.direction-card.gestalt::before { background: var(--sage); }

.direction-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.direction-card.photo .direction-icon { background: rgba(201,169,154,0.25); }
.direction-card.gestalt .direction-icon { background: rgba(168,181,160,0.25); }

.direction-card h3 { margin-bottom: 1rem; }
.direction-card p { margin-bottom: 2rem; }

/* Help Section */
.help {
  background: var(--cream);
}

.help-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.help-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.help-list li {
  background: var(--milk);
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  border-left: 3px solid var(--dusty-rose);
  line-height: 1.5;
  transition: transform 0.3s, box-shadow 0.3s;
}

.help-list li:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px var(--shadow);
}

.help-list li:nth-child(even) { border-color: var(--sage); }

/* About Section */
.about {
  background: var(--milk);
}

.about-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: center;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 60% 40% 50% 50% / 40% 50% 50% 60%;
  background: linear-gradient(160deg, var(--beige) 0%, var(--warm-gray) 50%, var(--dusty-rose) 100%);
  box-shadow: 0 16px 60px var(--shadow);
  position: relative;
  overflow: hidden;
}

.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Ccircle cx='100' cy='100' r='80' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='2'/%3E%3C/svg%3E") center/cover;
}

.about-photo-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

.about-content h2 { margin-bottom: 1.5rem; }
.about-content p { margin-bottom: 1.2rem; }

.credentials {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.credential {
  background: var(--cream);
  border-radius: 12px;
  padding: 1rem 1.4rem;
  text-align: center;
  box-shadow: 0 2px 12px var(--shadow);
}

.credential strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--accent);
  line-height: 1;
}

.credential span {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Contact Section */
.contact {
  background: var(--cream);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.form-group input,
.form-group textarea {
  background: var(--milk);
  border: 1.5px solid var(--beige);
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(184,144,110,0.1);
}

.form-group textarea { height: 120px; }

.messengers {
  margin-top: 2rem;
}

.messengers h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.messenger-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.messenger-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.4rem;
  background: var(--milk);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.88rem;
  border: 1.5px solid var(--beige);
  transition: all 0.3s;
}

.messenger-link:hover {
  border-color: var(--accent);
  transform: translateX(6px);
  box-shadow: 0 4px 16px var(--shadow);
}

.messenger-link .m-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   PAGE 2 — PHOTOTHERAPY
══════════════════════════════════════════ */

.page-hero {
  min-height: 65vh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 3rem 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero.photo-hero {
  background: linear-gradient(160deg, var(--cream) 0%, #EDD5C5 50%, #D9B5A0 100%);
}

.page-hero.gestalt-hero {
  background: linear-gradient(160deg, var(--cream) 0%, #D5DDD2 50%, #B5C4B1 100%);
}

.page-hero-orb {
  position: absolute;
  top: 10%; right: 8%;
  width: 45vw; height: 45vw;
  max-width: 500px; max-height: 500px;
  border-radius: 50%;
  opacity: 0.3;
}

.photo-hero .page-hero-orb {
  background: radial-gradient(circle, var(--dusty-rose), transparent 70%);
}

.gestalt-hero .page-hero-orb {
  background: radial-gradient(circle, var(--sage), transparent 70%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.page-hero-content h1 { margin-bottom: 1rem; }
.page-hero-content p {
  max-width: 500px;
  font-size: 1rem;
}

/* How-it-works cards */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 24px var(--shadow);
  transition: transform 0.3s;
}

.step-card:hover { transform: translateY(-4px); }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: rgba(184,144,110,0.2);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-style: italic;
}

.step-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  font-weight: 400;
}

/* Benefits grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  background: var(--milk);
  border-radius: 14px;
  transition: box-shadow 0.3s;
}

.benefit-item:hover { box-shadow: 0 4px 20px var(--shadow); }

.benefit-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 7px;
  flex-shrink: 0;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  transition: transform 0.4s;
  cursor: pointer;
}

.gallery-item:first-child { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item:hover { transform: scale(1.02); }

.gallery-item div {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.gallery-item:nth-child(1) div { background: linear-gradient(135deg, #E8D0C4, #C9A99A); }
.gallery-item:nth-child(2) div { background: linear-gradient(135deg, #D4C4B8, #B09080); }
.gallery-item:nth-child(3) div { background: linear-gradient(135deg, #ECD8CC, #C8A898); }
.gallery-item:nth-child(4) div { background: linear-gradient(135deg, #C4B4A8, #A08878); }
.gallery-item:nth-child(5) div { background: linear-gradient(135deg, #D8C8BC, #B8A090); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(30, 24, 20, 0.92);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }

.lightbox-content {
  position: relative;
  max-width: min(90vw, 800px);
  max-height: 85vh;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.lightbox-img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  display: block;
}

.lightbox-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  gap: 1rem;
}

.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10000;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10000;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  font-family: 'Jost', sans-serif;
}

/* CTA section */
.cta-section {
  background: linear-gradient(135deg, var(--text-dark), #5C4E45);
  color: var(--cream);
  text-align: center;
  padding: 6rem 3rem;
}

.cta-section h2 {
  color: var(--cream);
  margin-bottom: 1.2rem;
}

.cta-section p {
  color: rgba(247,243,238,0.7);
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  background: var(--accent);
  color: #fff;
  padding: 1.1rem 3rem;
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  font-family: 'Jost', sans-serif;
  transition: all 0.35s;
  box-shadow: 0 6px 30px rgba(184,144,110,0.4);
}

.btn-cta:hover {
  background: #cda07a;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(184,144,110,0.5);
}

/* Two-col content */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.tag {
  background: var(--cream);
  border: 1.5px solid var(--beige);
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
  color: var(--text-mid);
  transition: all 0.3s;
}

.tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(184,144,110,0.06);
}

/* Principles */
.principles-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.principle {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: 16px;
  box-shadow: 0 2px 16px var(--shadow);
  transition: transform 0.3s;
}

.principle:hover { transform: translateX(6px); }

.principle-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(168,181,160,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.principle h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.principle p { font-size: 0.85rem; }

/* Footer */
footer {
  background: var(--text-dark);
  color: var(--warm-gray);
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

footer a {
  color: var(--dusty-rose);
  text-decoration: none;
  cursor: pointer;
}

/* Divider */
.divider {
  width: 60px; height: 1.5px;
  background: var(--accent);
  margin: 1.5rem 0;
}

/* ─── MOBILE MENU ─── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--milk);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.nav-overlay.open { display: flex; }

.nav-overlay a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--text-dark);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s;
}

.nav-overlay a:hover { color: var(--accent); }

.close-menu {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none; border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .burger { display: flex; }

  section { padding: 4rem 1.5rem; }
  .hero { padding: 7rem 1.5rem 4rem; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 280px; margin: 0 auto; }
  .hero-content h1 { font-size: 2.4rem; }
  .hero-btns { justify-content: center; }
  .hero-content p { max-width: 100%; text-align: center; }
  .hero-content { text-align: center; }

  .directions-grid { grid-template-columns: 1fr; }
  .help-inner { grid-template-columns: 1fr; gap: 2rem; }
  .help-list { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-photo { max-width: 260px; margin: 0 auto; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: span 2; aspect-ratio: 2/1; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .credentials { justify-content: center; }
  .page-hero { padding: 7rem 1.5rem 3rem; min-height: 50vh; }
}
