/* ═══════════════════════════════════════════════════════════
   June Knudson 2028 — Recruiting Profile
   Fonts:  Playfair Display (headings) + Inter (body)
   Palette: Navy · Warm Cream · Muted Gold · Soft Sage
   ═══════════════════════════════════════════════════════════ */

:root {
  --navy:        #141237;
  --navy-mid:    #1e1b4b;
  --navy-light:  #312e81;
  --gold:        #b69d62;
  --gold-light:  #d4c092;
  --gold-faint:  rgba(182,157,98,0.12);
  --cream:       #f8f5f0;
  --cream-dark:  #efe9e0;
  --warm-white:  #fdfcfa;
  --purple:      #4c3d8f;
  --purple-soft: #f3f0fa;
  --purple-faint:rgba(76,61,143,0.07);
  --text:        #2d2a3e;
  --text-light:  #6b6880;
  --text-faint:  #9e9bb0;
  --border:      #e4dfd6;

  --ff-heading:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-h: 60px;
  --max-w: 1100px;
  --ease:  cubic-bezier(0.23, 1, 0.32, 1);
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); overflow-x: hidden; }
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--warm-white);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--navy); }
ul { list-style: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

/* ─── Scroll Reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Immediately show if JS hasn't loaded, reduced-motion, or print */
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none !important; } }
@media print { .reveal { opacity: 1 !important; transform: none !important; } }

/* ─── Navigation ────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(253, 252, 250, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 1px 16px rgba(0,0,0,0.06); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}

.nav-name {
  font-family: var(--ff-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 1px;
  text-decoration: none;
}
.nav-name:hover { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--purple);
  background: var(--purple-faint);
}

.nav-cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--navy); color: #fff; }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--navy);
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  text-align: center;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover { background: var(--navy-light); color: #fff; }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-full { width: 100%; }
.btn-small { padding: 8px 18px; font-size: 11px; }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  margin-top: var(--nav-h);
  background: var(--cream);
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 28px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 64px;
  align-items: center;
}

.hero-photo {
  position: relative;
}
.hero-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(20,18,55,0.15);
}
.hero-photo::after {
  content: '';
  position: absolute;
  top: 16px; left: 16px; right: -16px; bottom: -16px;
  border: 1.5px solid var(--gold);
  border-radius: 2px;
  z-index: -1;
}

.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-name {
  font-family: var(--ff-heading);
  font-size: 72px;
  font-weight: 700;
  line-height: 0.95;
  color: var(--navy);
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.hero-tagline {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 36px;
  font-weight: 400;
}

/* Stats Card */
.stats-card {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px 0;
  margin-bottom: 20px;
}
.stat {
  flex: 1;
  text-align: center;
}
.stat-value {
  display: block;
  font-family: var(--ff-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}
.stat-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.hero-ids {
  font-size: 12px;
  color: var(--text-faint);
  margin-bottom: 28px;
  line-height: 1.8;
}
.hero-ids span { margin-right: 16px; white-space: nowrap; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-actions .btn { flex: 1; min-width: 180px; text-align: center; }

/* ═══════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════ */
.section { padding: 56px 0; }

.section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.section-number {
  font-family: var(--ff-heading);
  font-size: 14px;
  font-weight: 400;
  color: var(--purple);
  font-style: italic;
}
.section-title {
  font-family: var(--ff-heading);
  font-size: 32px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.section-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ─── About ─────────────────────────────────────────────── */
.section-about { background: var(--warm-white); }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.about-text p {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.75;
}
.about-photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 2px;
}

/* ─── Resume ────────────────────────────────────────────── */
.section-resume { background: var(--cream); }

.resume-intro {
  max-width: 800px;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 36px;
  color: var(--text);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 180px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 160px;
  top: 8px;
  bottom: 8px;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--gold-light), var(--border));
}

.timeline-block {
  position: relative;
  padding-bottom: 40px;
  padding-left: 40px;
}
.timeline-block:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -27px;
  top: 6px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 2px solid var(--gold);
  z-index: 1;
  transition: background 0.3s, transform 0.3s;
}
.timeline-block.visible .timeline-dot {
  background: var(--gold);
  transform: scale(1.15);
}

.timeline-label {
  position: absolute;
  left: -180px;
  top: 3px;
  width: 140px;
  text-align: right;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

.timeline-content {
  font-size: 14px;
  line-height: 1.7;
}
.timeline-content ul { padding-left: 0; }
.timeline-content li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-left: 18px;
  position: relative;
}
.timeline-content li:last-child { border-bottom: none; }

.results-list li::before {
  content: '\2022';
  color: var(--gold);
  font-size: 1.2em;
  position: absolute;
  left: 0;
  top: 6px;
}

/* ─── Photo Gallery — polaroid cards with purple floral flair ─── */
.photo-gallery {
  margin-top: 48px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}
.polaroid {
  background: #fff;
  border-radius: 6px;
  padding: 8px 8px 0;
  box-shadow: 0 2px 16px rgba(20,18,55,0.08), 0 1px 3px rgba(20,18,55,0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.polaroid:hover {
  transform: translateY(-5px) rotate(-0.5deg);
  box-shadow: 0 10px 32px rgba(20,18,55,0.12), 0 2px 6px rgba(20,18,55,0.08);
}
.polaroid:nth-child(even):hover {
  transform: translateY(-5px) rotate(0.5deg);
}
.polaroid-img {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.polaroid-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.polaroid-foot {
  padding: 10px 0 12px;
  text-align: center;
}
.polaroid-fleur {
  color: var(--purple);
  font-size: 16px;
  opacity: 0.35;
  letter-spacing: 4px;
}

/* ─── Academic ──────────────────────────────────────────── */
.section-academic { background: linear-gradient(180deg, var(--warm-white) 0%, var(--purple-soft) 100%); }

.academic-intro {
  max-width: 800px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.academic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.academic-card {
  background: var(--cream);
  padding: 32px;
  border-radius: 6px;
  border: 1px solid var(--border);
}
.academic-card:last-child {
  grid-column: 1 / -1;
}

.academic-card h3 {
  font-family: var(--ff-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}

.academic-card dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  font-size: 14px;
}
.academic-card dt { font-weight: 600; color: var(--navy); }
.academic-card dd { margin: 0; }

.academic-card p { font-size: 14px; line-height: 1.7; }

.activity-block {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.activity-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.activity-name { font-weight: 600; color: var(--navy); font-size: 14px; }
.activity-meta { font-size: 12px; color: var(--text-faint); margin: 2px 0 6px; }
.activity-desc { font-size: 14px; }
.awards-list { padding-left: 16px; margin-top: 8px; }
.awards-list li { font-size: 13px; margin-bottom: 4px; position: relative; padding-left: 12px; }
.awards-list li::before {
  content: '·';
  position: absolute; left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ─── Videos ────────────────────────────────────────────── */
.section-videos { background: var(--cream); }

.video-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.video-thumb {
  position: relative;
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.video-thumb:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.video-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.video-thumb .play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20,18,55,0.35);
  transition: background 0.2s;
}
.video-thumb:hover .play-icon { background: rgba(20,18,55,0.55); }
.play-icon svg { width: 36px; height: 36px; fill: #fff; opacity: 0.9; }

.video-thumb-title {
  padding: 8px 0 0;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
}

.videos-cta {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  margin-top: 16px;
}
.videos-cta a { font-weight: 600; text-decoration: underline; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.88);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-close {
  position: absolute; top: 20px; right: 28px;
  background: none; border: none;
  color: #fff; font-size: 36px;
  cursor: pointer; z-index: 2001;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-content {
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
}
.lightbox-content iframe {
  width: 100%; height: 100%;
  border: none; border-radius: 4px;
}

/* ─── Testimonials ──────────────────────────────────────── */
.section-testimonials { background: var(--purple-soft); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--warm-white);
  padding: 36px 28px;
  border-radius: 6px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--purple);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--ff-heading);
  font-size: 72px;
  color: rgba(76,61,143,0.2);
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
}

.testimonial-card .t-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
  padding-top: 24px;
}
.testimonial-card .t-name {
  font-family: var(--ff-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
}
.testimonial-card .t-role {
  font-size: 12px;
  color: var(--text-faint);
  line-height: 1.5;
}

/* ─── Schedule ──────────────────────────────────────────── */
.section-schedule { padding: 0; }

.schedule-bg {
  min-height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.schedule-overlay {
  background: linear-gradient(135deg, rgba(20,18,55,0.82), rgba(30,27,75,0.75));
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.schedule-invite {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 40px;
}
.schedule-invite a { color: var(--gold-light); text-decoration: underline; }

.schedule-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.schedule-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 28px 36px;
  min-height: 140px;
  color: #fff;
}
.schedule-card .sc-event {
  font-family: var(--ff-heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}
.schedule-card .sc-location { font-size: 14px; opacity: 0.7; }
.schedule-card .sc-dates { font-size: 14px; margin-top: 2px; opacity: 0.9; }

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

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

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

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--warm-white);
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-faint);
}

.form-status { margin-top: 12px; font-size: 14px; text-align: center; }

.contact-info h3 {
  font-family: var(--ff-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 8px;
}
.contact-info > p { color: var(--text-light); margin-bottom: 24px; }
.contact-email-line { font-size: 14px; margin-bottom: 24px; }
.contact-email-line a { color: var(--navy); font-weight: 500; }

.contact-social { display: flex; gap: 12px; }
.contact-social a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  color: var(--navy);
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: all 0.2s;
}
.contact-social a:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.contact-social svg { width: 18px; height: 18px; }

/* ─── Footer ────────────────────────────────────────────── */
.footer {
  text-align: center;
  padding: 24px;
  font-size: 12px;
  color: var(--text-faint);
  background: var(--warm-white);
}

/* ─── Sticky Bar ────────────────────────────────────────── */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--navy);
  padding: 10px 20px;
  align-items: center;
  justify-content: space-between;
}
.sticky-bar.show { display: flex; }
.sticky-bar-name { color: rgba(255,255,255,0.8); font-size: 13px; font-weight: 500; }
.sticky-bar .btn-small { background: var(--gold); color: var(--navy); border: none; }
.sticky-bar .btn-small:hover { background: var(--gold-light); color: var(--navy); }

/* ─── Thank You (inline in form area) ────────────────── */
.thankyou-inline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 340px;
  padding: 48px 24px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.thankyou-inline.visible {
  opacity: 1;
  transform: translateY(0);
}

.thankyou-envelope {
  margin: 0 auto 28px;
  width: 88px;
  height: 88px;
  animation: envelopeBounce 0.6s 0.3s var(--ease) both;
}
.thankyou-envelope svg {
  width: 100%;
  height: 100%;
}

@keyframes envelopeBounce {
  0% { transform: scale(0.3) translateY(20px); opacity: 0; }
  60% { transform: scale(1.08) translateY(-4px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.thankyou-heading {
  font-family: var(--ff-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.2;
}

.thankyou-message {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.6;
}

.thankyou-close {
  min-width: 160px;
}

/* ─── PDF Flyer (hidden, rendered for PDF export) ────── */
.pdf-flyer { display: none; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--warm-white);
    flex-direction: column;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    padding: 8px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 28px; font-size: 13px; }
  .nav-cta { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 28px;
  }
  .hero-photo img { height: 400px; }
  .hero-photo::after { display: none; }
  .hero-name { font-size: 52px; }

  .stats-card { flex-wrap: wrap; }
  .stat { min-width: 45%; padding: 8px 0; }
  .stat-divider { display: none; }

  .about-layout { grid-template-columns: 1fr; }
  .about-photo img { height: 280px; }

  .timeline { padding-left: 0; }
  .timeline::before { left: 0; }
  .timeline-label {
    position: static;
    width: auto;
    text-align: left;
    margin-bottom: 8px;
    margin-left: 28px;
  }
  .timeline-block { padding-left: 28px; }
  .timeline-dot { left: -7px; }

  .academic-grid { grid-template-columns: 1fr; }
  .academic-card:last-child { grid-column: auto; }

  /* Mobile: stack polaroids vertically */
  .photo-gallery { margin-top: 28px; }
  .gallery-grid { grid-template-columns: 1fr; max-width: 400px; gap: 16px; }
  .polaroid:hover { transform: none; box-shadow: 0 2px 16px rgba(20,18,55,0.08); }

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

  .contact-layout { grid-template-columns: 1fr; gap: 40px; }

  .section-title { font-size: 26px; }
  .section { padding: 44px 0; }

  .sticky-bar.show { display: flex; }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .hero-name { font-size: 40px; }
  .hero-inner { padding: 28px 16px; overflow: hidden; }
  .stats-card { padding: 12px 0; }
  .stat-value { font-size: 18px; }
  .section-title { font-size: 22px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-ids { display: flex; flex-wrap: wrap; gap: 4px 16px; }
  .hero-ids span { margin-right: 0; font-size: 11px; }
  .hero-actions .btn { min-width: 0; flex: 1 1 auto; }
  .nav-inner { padding: 0 16px; }
}

/* ═══════════════════════════════════════════════════════════
   PRINT / PDF
   ═══════════════════════════════════════════════════════════ */
@media print {
  .nav, .sticky-bar, .lightbox, .nav-toggle, .hero-actions,
  .contact-form, .form-status, .photo-gallery { display: none !important; }

  body { font-size: 11px; color: #000; }
  .section { padding: 24px 0; page-break-inside: avoid; }
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 200px 1fr; gap: 24px; padding: 24px 0; }
  .hero-photo img { height: 260px; }
  .hero-photo::after { display: none; }
  .hero-name { font-size: 36px; }
  .stats-card { border: 1px solid #ccc; }

  .section-header { margin-bottom: 16px; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
