/* ============================================================
   Aron Branckaert – Klinisch Psycholoog
   Main stylesheet
   ============================================================ */

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --green-900: #1a3028;
  --green-800: #2C4A3E;
  --green-600: #3d6154;
  --green-500: #4A7C6B;
  --green-300: #6EA395;
  --green-200: #B8D4D0;
  --green-100: #E8F4F1;
  --cream-200: #F5F0E8;
  --cream-100: #FAFAF7;
  --white: #ffffff;
  --text-900: #1E2D2A;
  --text-600: #5A6E69;
  --text-400: #8FA09C;
  --border: #D6E8E4;

  --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 1080px;
  --header-h: 72px;

  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;
  --radius-pill: 999px;

  --shadow-s: 0 1px 4px rgba(44,74,62,.07), 0 1px 2px rgba(44,74,62,.05);
  --shadow-m: 0 4px 18px rgba(44,74,62,.10), 0 2px 6px rgba(44,74,62,.06);
  --shadow-l: 0 12px 48px rgba(44,74,62,.13), 0 4px 14px rgba(44,74,62,.08);

  --ease: cubic-bezier(.25,.46,.45,.94);
  --dur: .22s;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text-900);
  background: var(--cream-100);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { font-family: var(--font-serif); line-height: 1.2; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 6rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-300);
  margin-bottom: .5rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  color: var(--green-800);
  letter-spacing: -.02em;
}

.section-subtitle {
  margin-top: .85rem;
  font-size: 1.05rem;
  color: var(--text-600);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .72rem 1.7rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: .92rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-800);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-m);
}

.btn-outline {
  background: transparent;
  color: var(--green-800);
  border-color: var(--green-800);
}
.btn-outline:hover {
  background: var(--green-800);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--green-800);
}
.btn-white:hover {
  background: var(--cream-200);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(250,250,247,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--dur) var(--ease);
}
.header.scrolled { box-shadow: var(--shadow-s); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  flex-shrink: 0;
}
.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-800);
}
.nav-logo-title {
  font-size: .7rem;
  color: var(--text-600);
  letter-spacing: .04em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: .2rem;
}

.nav-link {
  padding: .38rem .82rem !important;
  border-radius: var(--radius-pill);
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-600);
  transition: background var(--dur), color var(--dur);
}
.nav-link:hover,
.nav-link.active {
  color: var(--green-800);
  background: var(--green-100);
}

.nav-cta {
  background: var(--green-800);
  color: var(--white) !important;
  margin-left: .5rem;
}
.nav-cta:hover {
  background: var(--green-600) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-s);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-800);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 30%, var(--green-100) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 90% 80%, var(--cream-200) 0%, transparent 50%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem 1rem;
  background: var(--green-100);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-pill);
  font-size: .8rem;
  font-weight: 500;
  color: var(--green-600);
  margin-bottom: 1.75rem;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #3aad6b;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.85); }
}

.hero-title {
  font-size: clamp(2.6rem, 6.5vw, 4.2rem);
  font-weight: 600;
  color: var(--green-800);
  margin-bottom: 1.4rem;
  letter-spacing: -.03em;
  line-height: 1.08;
}
.hero-title em {
  font-style: italic;
  color: var(--green-500);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-600);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

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

/* ===== HERO PHOTO LAYOUT ===== */
.hero-container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.hero-photo {
  flex-shrink: 0;
  width: 380px;
}

.hero-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50% 50% 48% 52% / 40% 40% 60% 60%;
  box-shadow: var(--shadow-l);
  display: block;
}

@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-photo { display: none; }
}

/* ===== PROFILE PHOTO ===== */
.profile-photo-wrap {
  margin-bottom: 1.25rem;
  border-radius: var(--radius-m);
  overflow: hidden;
}
.profile-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ===== APPROACHES ===== */
.approaches { background: var(--cream-200); }

.approaches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}

.approach-card {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-s);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.approach-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-m);
}

.approach-icon {
  width: 48px;
  height: 48px;
  background: var(--green-100);
  border-radius: var(--radius-m);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.approach-card h3 {
  font-size: 1.1rem;
  color: var(--green-800);
  margin-bottom: .65rem;
}
.approach-card p {
  font-size: .9rem;
  color: var(--text-600);
  line-height: 1.7;
}

/* ===== FOR WHOM ===== */
.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 2rem;
}

.for-whom-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 2.5rem;
  background: var(--white);
  transition: box-shadow var(--dur) var(--ease);
}
.for-whom-card:hover { box-shadow: var(--shadow-m); }

.for-whom-tag {
  display: inline-block;
  padding: .28rem .85rem;
  background: var(--green-100);
  color: var(--green-600);
  border-radius: var(--radius-pill);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.for-whom-card h3 {
  font-size: 1.4rem;
  color: var(--green-800);
  margin-bottom: .65rem;
}
.for-whom-card .desc {
  font-size: .9rem;
  font-style: italic;
  color: var(--text-600);
  margin-bottom: 1.25rem;
}
.for-whom-card ul { display: flex; flex-direction: column; gap: .48rem; }
.for-whom-card li {
  font-size: .92rem;
  color: var(--text-900);
  padding-left: 1.25rem;
  position: relative;
}
.for-whom-card li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--green-300);
  font-weight: 600;
}

/* ===== LOCATION ===== */
.location { background: var(--cream-200); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.location-info .label { display: block; margin-bottom: .4rem; }
.location-info .section-title { text-align: left; margin-bottom: 2rem; }

.location-items { display: flex; flex-direction: column; gap: 1.4rem; }

.location-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.location-item-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: var(--radius-m);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-s);
  flex-shrink: 0;
}

.location-item-body strong {
  display: block;
  font-size: .92rem;
  font-weight: 600;
  color: var(--green-800);
  margin-bottom: .25rem;
}
.location-item-body p {
  font-size: .9rem;
  color: var(--text-600);
  line-height: 1.55;
}

.location-map {
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-l);
  background: var(--border);
  min-height: 340px;
  display: flex;
  flex-direction: column;
}

.location-map iframe {
  width: 100%;
  flex: 1;
  min-height: 280px;
  border: 0;
  display: block;
}

.map-link {
  display: block;
  padding: .85rem 1.25rem;
  background: var(--white);
  font-size: .85rem;
  font-weight: 500;
  color: var(--green-500);
  text-align: center;
  transition: background var(--dur);
}
.map-link:hover { background: var(--green-100); color: var(--green-800); }

/* ===== HOW IT WORKS ===== */
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 3.5rem;
}

.step {
  flex: 1;
  text-align: center;
  padding: 1.5rem;
}

.step-num {
  width: 3rem;
  height: 3rem;
  background: var(--green-800);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 auto 1.2rem;
}

.step-connector {
  flex-shrink: 0;
  width: 50px;
  height: 2px;
  background: var(--border);
  margin-top: 1.5rem;
  position: relative;
}
.step-connector::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--border);
  border-right: 2px solid var(--border);
  transform: rotate(45deg);
}

.step h3 {
  font-size: 1.05rem;
  color: var(--green-800);
  margin-bottom: .65rem;
}
.step p { font-size: .88rem; color: var(--text-600); line-height: 1.7; }

.steps-cta { text-align: center; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-600) 100%);
  padding: 5rem 0;
}
.cta-banner-inner {
  text-align: center;
  color: var(--white);
}
.cta-banner-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white);
  margin-bottom: .75rem;
}
.cta-banner-inner p {
  font-size: 1.08rem;
  opacity: .8;
  margin-bottom: 2.2rem;
}
.cta-banner-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--green-900);
  color: rgba(255,255,255,.75);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: .3rem;
}
.footer-brand-title { font-size: .82rem; opacity: .65; margin-bottom: 1rem; }
.footer-reg { font-size: .75rem; opacity: .45; line-height: 1.65; }

.footer h4 {
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-nav-list { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav-list a,
.footer-contact p a,
.footer-social a {
  font-size: .88rem;
  opacity: .7;
  transition: opacity var(--dur);
}
.footer-nav-list a:hover,
.footer-contact p a:hover,
.footer-social a:hover { opacity: 1; }

.footer-contact p { font-size: .88rem; margin-bottom: .55rem; opacity: .75; }
.footer-social { display: flex; flex-direction: column; gap: .55rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.75rem;
  font-size: .78rem;
  opacity: .45;
  text-align: center;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: calc(var(--header-h) + 4rem) 0 4rem;
  background: linear-gradient(160deg, var(--cream-100) 55%, var(--green-100) 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero .label { display: block; margin-bottom: .5rem; }
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--green-800);
  margin-bottom: .85rem;
  letter-spacing: -.03em;
}
.page-hero p {
  font-size: 1.1rem;
  color: var(--text-600);
  max-width: 580px;
  line-height: 1.72;
}

/* ===== OVER MIJ PAGE ===== */
.profile-section { background: var(--white); }

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.profile-sidebar { position: sticky; top: calc(var(--header-h) + 2rem); }

.profile-card {
  background: var(--cream-200);
  border-radius: var(--radius-l);
  padding: 2rem;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--green-200), var(--green-300));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--green-800);
  margin-bottom: 1.25rem;
}

.profile-card h3 {
  font-size: 1.2rem;
  color: var(--green-800);
  margin-bottom: .25rem;
}
.profile-card .role {
  font-size: .85rem;
  color: var(--text-600);
  margin-bottom: 1.5rem;
}

.profile-meta { display: flex; flex-direction: column; gap: .6rem; }
.profile-meta-item {
  display: flex;
  gap: .75rem;
  font-size: .82rem;
  color: var(--text-600);
}
.profile-meta-item strong { color: var(--green-800); min-width: 50px; }

.profile-content h2 {
  font-size: 1.7rem;
  color: var(--green-800);
  margin-bottom: .85rem;
  margin-top: 2.5rem;
}
.profile-content h2:first-child { margin-top: 0; }

.profile-content p {
  font-size: .97rem;
  color: var(--text-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.cv-section { margin-top: 2rem; }
.cv-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-800);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: var(--font-sans);
  margin-bottom: 1rem;
}

.cv-list { display: flex; flex-direction: column; gap: .85rem; }
.cv-item { display: flex; gap: 1.25rem; align-items: flex-start; }

.cv-dot {
  width: 10px;
  height: 10px;
  background: var(--green-300);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .45rem;
}

.cv-item-body { font-size: .9rem; }
.cv-item-body strong { color: var(--text-900); display: block; }
.cv-item-body span { color: var(--text-600); font-size: .85rem; }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 2rem;
  border-left: 4px solid var(--green-200);
  transition: border-color var(--dur), box-shadow var(--dur);
}
.value-card:hover {
  border-left-color: var(--green-300);
  box-shadow: var(--shadow-m);
}

.value-card h3 {
  font-size: 1.05rem;
  color: var(--green-800);
  margin-bottom: .7rem;
}
.value-card p { font-size: .9rem; color: var(--text-600); line-height: 1.72; }

/* Mission/Vision */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mv-card {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 2.5rem;
  box-shadow: var(--shadow-s);
}
.mv-card .label { display: block; margin-bottom: .5rem; }
.mv-card h3 { font-size: 1.3rem; color: var(--green-800); margin-bottom: 1rem; }
.mv-card p { font-size: .93rem; color: var(--text-600); line-height: 1.78; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-section h2 {
  font-size: 1.6rem;
  color: var(--green-800);
  margin-bottom: 1.75rem;
}

.contact-items { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--green-100);
  border-radius: var(--radius-m);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-body strong {
  display: block;
  font-size: .92rem;
  font-weight: 600;
  color: var(--green-800);
  margin-bottom: .2rem;
}
.contact-item-body p, .contact-item-body a {
  font-size: .9rem;
  color: var(--text-600);
  line-height: 1.55;
}
.contact-item-body a:hover { color: var(--green-500); text-decoration: underline; }

.contact-hours {
  background: var(--cream-200);
  border-radius: var(--radius-l);
  padding: 1.75rem;
  margin-bottom: 2rem;
}
.contact-hours h3 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--green-800);
  margin-bottom: 1rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: .88rem;
  padding: .45rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-600);
}
.hours-row:last-child { border-bottom: none; }
.hours-row strong { color: var(--text-900); }

.contact-form-section {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 2.5rem;
  box-shadow: var(--shadow-m);
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.contact-form-section h2 {
  font-size: 1.4rem;
  color: var(--green-800);
  margin-bottom: .5rem;
}
.contact-form-section .sub {
  font-size: .88rem;
  color: var(--text-600);
  margin-bottom: 1.75rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-900);
  margin-bottom: .45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .72rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-m);
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--text-900);
  background: var(--cream-100);
  transition: border-color var(--dur), box-shadow var(--dur);
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-400); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-300);
  box-shadow: 0 0 0 3px rgba(110,163,149,.15);
  background: var(--white);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-submit { width: 100%; margin-top: .5rem; justify-content: center; }

.form-note {
  text-align: center;
  font-size: .78rem;
  color: var(--text-400);
  margin-top: .85rem;
  line-height: 1.5;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: var(--green-100);
  border-radius: var(--radius-m);
  color: var(--green-600);
}
.form-success h3 { font-size: 1.2rem; margin-bottom: .5rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .location-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-sidebar { position: static; }
  .mv-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-section { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--cream-100);
    flex-direction: column;
    padding: 1.25rem 1.5rem 1.75rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-m);
    gap: .35rem;
    z-index: 190;
    /* Hidden state — fully invisible and non-interactive */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  }
  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-link { width: 100%; text-align: center; padding: .65rem 1rem; }
  .nav-cta { margin-left: 0; }

  .steps-row { flex-direction: column; align-items: center; }
  .step-connector {
    width: 2px;
    height: 28px;
    margin-top: 0;
  }
  .step-connector::after {
    right: -4px;
    top: auto;
    bottom: -5px;
    transform: rotate(135deg);
  }
}

@media (max-width: 600px) {
  .section { padding: 4rem 0; }
  .hero { padding-bottom: 3rem; }
  .hero-content { padding: 3.5rem 0 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
}
