/*
Theme Name:  David Jacobs – Actor & Voice Talent
Theme URI:   https://davidjacobsvo.com
Author:      David Jacobs
Author URI:  https://davidjacobsvo.com
Description: Custom single-page portfolio theme for David Jacobs, Actor and Voice Talent. Teal, charcoal, and warm off-white palette with Playfair Display and DM Sans typography.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: david-jacobs
Tags:        portfolio, one-page, actor, voiceover, custom-colors
*/

/* ─────────────────────────────────────────────
   CSS CUSTOM PROPERTIES (Design Tokens)
   ───────────────────────────────────────────── */
:root {
  --teal:           #3a9e9e;
  --teal-light:     #4dbdbd;
  --teal-dark:      #2a7a7a;
  --black:          #0f0f0f;
  --charcoal:       #1c1c1c;
  --warm-off-white: #f5f2ee;
  --cream:          #ede9e3;
  --mid-gray:       #888;
  --text-dark:      #1a1a1a;
}

/* ─────────────────────────────────────────────
   RESET & BASE
   ───────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-off-white);
  color: var(--text-dark);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ─────────────────────────────────────────────
   WORDPRESS CORE OVERRIDES
   ───────────────────────────────────────────── */
.wp-block-image img { border-radius: 4px; }
.alignnone, .alignleft, .alignright, .aligncenter { margin-bottom: 1.5rem; }
.alignleft  { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { display: block; margin: 0 auto 1.5rem; }

/* ─────────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────────── */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15,15,15,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(58,158,158,0.2);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-icon { display: flex; align-items: center; color: var(--teal); }
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

/* WP nav menu */
#site-nav .nav-menu {
  display: flex; gap: 36px; list-style: none;
}
#site-nav .nav-menu a {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}
#site-nav .nav-menu a:hover,
#site-nav .nav-menu .current-menu-item a { color: var(--teal-light); }
#site-nav .nav-menu .menu-item-hire a {
  background: var(--teal);
  color: white !important;
  padding: 9px 22px;
  border-radius: 2px;
  transition: background 0.2s;
}
#site-nav .nav-menu .menu-item-hire a:hover { background: var(--teal-dark); }

/* ─────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────── */
.btn-primary {
  background: var(--teal);
  color: white;
  padding: 14px 36px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
  border: none; cursor: pointer;
  display: inline-block;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); color: white; }
.btn-outline {
  background: transparent;
  color: white;
  padding: 14px 36px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }

/* ─────────────────────────────────────────────
   SECTION SHARED STYLES
   ───────────────────────────────────────────── */
.site-section { padding: 75px 5%; }
.section-label {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.section-label-line { width: 32px; height: 2px; background: var(--teal); flex-shrink: 0; }
.section-label span {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title.light { color: white; }
.section-subtitle {
  font-size: 1rem;
  color: var(--mid-gray);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 60px;
}
.section-subtitle.light { color: rgba(255,255,255,0.5); }

/* ─────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────── */
#hero {
  min-height: 75vh;          /* was 100vh — reduced by 25% */
  background: var(--charcoal);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px 8% 60px;   /* was 120px top / 80px bottom */
  position: relative; z-index: 2;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;       /* was 24px */
}
.hero-eyebrow-line { width: 40px; height: 2px; background: var(--teal); }
.hero-eyebrow span {
  font-size: 0.78rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--teal); font-weight: 500;
}
.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 4rem); /* was clamp(3rem, 5vw, 5rem) */
  color: white; line-height: 1.0; margin-bottom: 8px;
}
.hero-name span { color: var(--teal); }
.hero-title {
  font-size: 0.9rem; color: rgba(255,255,255,0.45);
  letter-spacing: 0.25em; text-transform: uppercase;
  margin-bottom: 28px; font-weight: 300; /* was 40px */
}
.hero-description {
  font-size: 0.95rem; line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 460px; margin-bottom: 36px; /* was 48px */
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-right { position: relative; overflow: hidden; }
.hero-image-wrap { position: absolute; inset: 0; overflow: hidden; }
.hero-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  filter: brightness(0.85);
}
.hero-image-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--charcoal) 0%, transparent 35%),
              linear-gradient(to top, rgba(58,158,158,0.18) 0%, transparent 60%);
}
.hero-stats {
  position: absolute; bottom: 32px; left: 0; right: 0; /* was 48px */
  display: flex; justify-content: center; gap: 28px;    /* was 40px */
  z-index: 10; padding: 0 40px;
}
.hero-stat {
  text-align: center;
  background: rgba(15,15,15,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(58,158,158,0.25);
  padding: 12px 20px; border-radius: 4px; min-width: 90px; /* was 16px 24px / 100px */
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; color: var(--teal);  /* was 2rem */
  font-weight: 700; display: block; line-height: 1;
}
.hero-stat-label {
  font-size: 0.62rem; letter-spacing: 0.15em; /* was 0.68rem */
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-top: 4px; display: block;
}

/* ─────────────────────────────────────────────
   ABOUT
   ───────────────────────────────────────────── */
#about {
  background: white;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: center;
  padding-top: 56px;    /* 75px × 0.75 */
  padding-bottom: 56px;
}
.about-image-wrap { position: relative; }
.about-image-wrap img {
  width: 100%; border-radius: 4px;
  box-shadow: 20px 20px 0 var(--cream);
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--teal); color: white;
  padding: 20px 24px;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  border-radius: 4px; text-align: center; line-height: 1.2;
}
.about-badge small {
  display: block; font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 400;
  opacity: 0.8; margin-top: 2px;
}
.about-skills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.skill-tag {
  background: var(--cream); color: var(--teal-dark);
  font-size: 0.78rem; letter-spacing: 0.08em;
  padding: 6px 16px; border-radius: 2px; font-weight: 500;
  border: 1px solid rgba(58,158,158,0.2);
}

/* ─────────────────────────────────────────────
   VOICE DEMOS
   ───────────────────────────────────────────── */
#demos { background: var(--charcoal); }

/* Four-across fixed grid */
.demos-grid.demos-grid--four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

/* Card as flex column so bottom controls always stick to the bottom */
.demo-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(58,158,158,0.18);
  border-radius: 4px;
  display: flex; flex-direction: column;
  transition: border-color 0.25s, background 0.25s;
}
.demo-card:hover { border-color: var(--teal); background: rgba(58,158,158,0.07); }

.demo-card-top {
  padding: 24px 24px 16px;
  flex: 1;
}
.demo-card-bottom {
  padding: 0 24px 20px;
  display: flex; flex-direction: column; gap: 10px;
}

.demo-icon {
  width: 44px; height: 44px;
  background: rgba(58,158,158,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; color: var(--teal);
}
.demo-label {
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--teal);
  font-weight: 500; margin-bottom: 6px;
}
.demo-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; color: white; margin-bottom: 8px; line-height: 1.3;
}
.demo-desc {
  font-size: 0.83rem; color: rgba(255,255,255,0.4);
  line-height: 1.65;
}

/* Audio Player */
.audio-player { display: flex; align-items: center; gap: 10px; }
.play-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--teal); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.2s, transform 0.15s;
}
.play-btn:hover { background: var(--teal-dark); transform: scale(1.05); }
.play-btn svg { margin-left: 2px; }
.audio-track { flex: 1; min-width: 0; }
.audio-progress-bg {
  width: 100%; height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px; cursor: pointer;
  position: relative; margin-bottom: 5px;
}
.audio-progress-fill {
  height: 100%; width: 0%;
  background: var(--teal); border-radius: 2px;
  transition: width 0.1s linear;
}
.audio-time { font-size: 0.68rem; color: rgba(255,255,255,0.35); letter-spacing: 0.05em; }

/* Download button */
.demo-download-btn {
  display: flex; align-items: center; gap: 7px;
  background: transparent;
  border: 1px solid rgba(58,158,158,0.35);
  color: rgba(255,255,255,0.6);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  width: 100%;
  justify-content: center;
}
.demo-download-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(58,158,158,0.06);
}
.demo-download-btn--placeholder {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

@media (max-width: 1100px) {
  .demos-grid.demos-grid--four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .demos-grid.demos-grid--four { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   VIDEO REEL
   ───────────────────────────────────────────── */
#reel {
  background: var(--warm-off-white);
  text-align: center;
  padding-top: 56px;    /* 75px × 0.75 */
  padding-bottom: 56px;
}
#reel .section-label { justify-content: center; }
#reel .section-subtitle { margin: 0 auto 36px; } /* was 48px */
.video-wrapper {
  max-width: 900px; margin: 0 auto;
  border-radius: 6px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
  background: #000; position: relative; aspect-ratio: 16/9;
}
.video-wrapper iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
}
.video-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, #2a4a4a 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
}
.video-placeholder p { color: rgba(255,255,255,0.5); font-size: 0.85rem; letter-spacing: 0.1em; }
.video-placeholder .video-title {
  font-family: 'Playfair Display', serif;
  color: white; font-size: 1.4rem; font-weight: 700; margin-top: -8px;
}

/* ─────────────────────────────────────────────
   SERVICES
   ───────────────────────────────────────────── */
#services { background: var(--charcoal); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px; margin-top: 52px;
  background: rgba(58,158,158,0.1);
  border: 1px solid rgba(58,158,158,0.15);
  border-radius: 4px; overflow: hidden;
}

/* Each card is an <a> tag — reset link styles, keep card look */
a.service-item {
  background: var(--charcoal);
  padding: 36px 28px 28px;
  display: flex; flex-direction: column;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s;
  position: relative;
}
a.service-item:hover { background: rgba(58,158,158,0.1); }

/* Teal left-border reveal on hover */
a.service-item::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--teal);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.25s ease;
}
a.service-item:hover::before { transform: scaleY(1); }

.service-icon {
  color: var(--teal);
  opacity: 0.7;
  margin-bottom: 18px;
  display: block;
  transition: opacity 0.25s, transform 0.25s;
}
a.service-item:hover .service-icon { opacity: 1; transform: translateY(-2px); }

.service-name {
  font-weight: 500; color: white; margin-bottom: 10px; font-size: 1rem;
  transition: color 0.2s;
}
a.service-item:hover .service-name { color: var(--teal-light); }

.service-desc {
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
  line-height: 1.65;
  flex: 1;
}

/* Arrow — slides in from left on hover */
.service-arrow {
  display: flex; align-items: center;
  margin-top: 20px;
  color: var(--teal);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
a.service-item:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ─────────────────────────────────────────────
   TESTIMONIALS
   ───────────────────────────────────────────── */
#testimonials { background: white; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px; margin-top: 48px;
}
.testimonial-card {
  background: var(--warm-off-white); border-radius: 4px;
  padding: 36px 32px; position: relative;
  border-left: 3px solid var(--teal);
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.07); }
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; color: var(--teal);
  line-height: 0.5; margin-bottom: 20px; opacity: 0.5;
}
.testimonial-text {
  font-size: 0.95rem; line-height: 1.8; color: #444;
  margin-bottom: 24px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal); display: flex;
  align-items: center; justify-content: center;
  color: white; font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; flex-shrink: 0;
}
.author-name { font-weight: 500; font-size: 0.9rem; color: var(--text-dark); }
.author-role { font-size: 0.75rem; color: var(--mid-gray); margin-top: 2px; }
.testimonial-stars {
  position: absolute; top: 28px; right: 28px;
  color: var(--teal); font-size: 0.75rem; letter-spacing: 2px;
}

/* ─────────────────────────────────────────────
   ORGANIZATIONS
   ───────────────────────────────────────────── */
#organizations { background: var(--cream); text-align: center; }
#organizations .section-label { justify-content: center; }
#organizations .section-subtitle { margin: 0 auto 52px; }

.orgs-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.org-badge {
  background: white;
  border: 1px solid rgba(58,158,158,0.15);
  border-radius: 6px;
  padding: 24px 28px 18px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  min-width: 160px;
  flex: 1 1 160px;
  max-width: 200px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.org-badge:hover {
  border-color: var(--teal);
  box-shadow: 0 6px 24px rgba(58,158,158,0.12);
  transform: translateY(-2px);
}

/* Image container — fixed height so all cards are uniform */
.org-logo-wrap {
  width: 100%;
  height: 64px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.org-logo-wrap img {
  max-width: 100%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.2s;
}
.org-badge:hover .org-logo-wrap img { filter: grayscale(0%); }

/* Placeholder SVG styling */
.org-placeholder-svg {
  width: 100%;
  height: 64px;
}

.org-name {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.4;
}

/* ─────────────────────────────────────────────
   CONTACT
   ───────────────────────────────────────────── */
#contact {
  background: var(--charcoal);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
}
.contact-details { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 42px; height: 42px;
  background: rgba(58,158,158,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--teal);
}
.contact-item-label {
  font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--teal);
  font-weight: 500; margin-bottom: 4px;
}
.contact-item-value { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.contact-social { display: flex; gap: 12px; margin-top: 40px; }
.social-btn {
  width: 44px; height: 44px;
  border: 1px solid rgba(58,158,158,0.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  font-size: 16px;
}
.social-btn:hover { border-color: var(--teal); color: var(--teal); background: rgba(58,158,158,0.08); }
/* Contact Form */
.contact-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(58,158,158,0.15);
  border-radius: 4px; padding: 44px 40px;
}
.form-title {
  font-family: 'Playfair Display', serif;
  color: white; font-size: 1.4rem; margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.72rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 8px; font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: white; font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; padding: 12px 16px;
  border-radius: 2px; outline: none;
  transition: border-color 0.2s; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); background: rgba(58,158,158,0.06); }
.form-group select option { background: #1c1c1c; }
.form-group textarea { resize: vertical; min-height: 120px; }
/* WP Contact Form 7 overrides */
.wpcf7-form .form-group input,
.wpcf7-form .form-group textarea,
.wpcf7-form .form-group select { color: white; }
.wpcf7-submit, .form-submit {
  width: 100%; background: var(--teal); color: white;
  border: none; padding: 15px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 500;
  border-radius: 2px; cursor: pointer;
  transition: background 0.2s; margin-top: 8px;
}
.wpcf7-submit:hover, .form-submit:hover { background: var(--teal-dark); }

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
#site-footer {
  background: var(--black);
  padding: 40px 5%;
  display: flex; align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(58,158,158,0.12);
  flex-wrap: wrap; gap: 20px;
}
.footer-logo { font-family: 'Playfair Display', serif; color: white; font-size: 1.1rem; }
.footer-logo span { color: var(--teal); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); letter-spacing: 0.05em; }
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  color: rgba(255,255,255,0.3); font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--teal); }

/* ─────────────────────────────────────────────
   SCROLL REVEAL
   ───────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ─────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────── */
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 50vh; }
  #about { grid-template-columns: 1fr; }
  .about-image-wrap { max-width: 400px; margin: 0 auto; }
  #contact { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  #site-nav .nav-menu { display: none; }
  .hero-stats { gap: 12px; padding: 0 20px; }
}
@media (max-width: 600px) {
  .site-section { padding: 70px 5%; }
  .contact-form { padding: 28px 20px; }
  #site-footer { flex-direction: column; text-align: center; }
}
