/* ============================================
   Molly Tait Tanen — Personal Website
   Bold & Dramatic Dark Theme
   ============================================ */

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

:root {
  /* Palette D: Blush + Sage */
  --color-bg: #0e0b0c;
  --color-bg-elevated: #141112;
  --color-bg-card: #1a1617;
  --color-bg-card-hover: #201c1d;
  --color-surface: #1c1819;
  --color-text: #f0eae8;
  --color-text-secondary: #a8a09c;
  --color-text-muted: #b8a09a;
  --color-accent: #c69c8c;
  --color-accent-hover: #d4ad9e;
  --color-accent-dim: rgba(198, 156, 140, 0.12);
  --color-secondary: #a8b0a0;
  --color-secondary-hover: #b8c0b0;
  --color-secondary-dim: rgba(168, 176, 160, 0.12);
  --color-border: #2a2526;
  --color-border-light: #1f1b1c;
  /* Typography A: Playfair Display + Inter */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --nav-height: 72px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: border-color 0.3s, background 0.3s;
}

.nav.scrolled {
  border-bottom-color: var(--color-border);
  background: rgba(10, 10, 10, 0.95);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-text);
  letter-spacing: 0.08em;
  font-weight: 500;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-text-secondary);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--color-text);
}

.nav-cta {
  background: var(--color-accent) !important;
  color: var(--color-bg) !important;
  padding: 7px 18px !important;
  border-radius: 6px;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
}

.nav-cta:hover {
  background: var(--color-accent-hover) !important;
  color: var(--color-bg) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-bg);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  color: var(--color-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(198, 156, 140, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
}

.btn-secondary:hover {
  border-color: var(--color-secondary-hover);
  color: var(--color-secondary-hover);
  background: var(--color-secondary-dim);
  transform: translateY(-2px);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 60px) 32px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(198, 156, 140, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(168, 176, 160, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-greeting {
  font-size: 1rem;
  color: var(--color-accent);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  line-height: 1.05;
  color: var(--color-text);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  font-weight: 400;
}

.hero-title {
  font-size: 1rem;
  color: var(--color-text-secondary);
  font-weight: 300;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero-summary {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1;
}

.hero-scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-secondary), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* --- Image Placeholders --- */
.image-placeholder {
  background: var(--color-bg-card);
  border: 1px dashed var(--color-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.headshot {
  width: 380px;
  height: 460px;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  filter: contrast(1.05);
}

.headshot-placeholder {
  width: 380px;
  height: 460px;
  border-radius: 12px;
}

.about-photo-placeholder {
  width: 100%;
  height: 480px;
}

/* --- About Carousel --- */
.about-carousel {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.carousel-track {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--color-surface);
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  bottom: 44px;
  right: 12px;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.03em;
  font-family: var(--font-body);
  z-index: 2;
}

.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, border-color 0.3s;
}

.carousel-dot.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.carousel-dot:hover {
  border-color: var(--color-accent);
}

/* --- Sections --- */
.section {
  padding: 120px 0;
}

.section-label {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  color: var(--color-text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  font-weight: 400;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.8;
  font-weight: 300;
}

/* --- About --- */
.about {
  background: var(--color-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.about-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.about-text p {
  color: var(--color-text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
  font-weight: 300;
}

.about-details {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}

.detail {
  display: flex;
  gap: 20px;
}

.detail-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  min-width: 80px;
}

.detail-value {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  font-weight: 300;
}

/* --- Brands --- */
.brands {
  padding: 56px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.brands-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 16px;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-text-muted);
  transition: color 0.3s;
  font-weight: 400;
  text-decoration: none;
}

.brand-name:hover {
  color: var(--color-accent);
}

.brand-divider {
  color: var(--color-secondary);
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.4;
}

/* --- Resume / Timeline --- */
.resume {
  background: var(--color-bg-elevated);
}

.timeline {
  position: relative;
  padding-left: 40px;
  max-width: 800px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-secondary) 50%, var(--color-border) 90%, transparent);
}

.timeline-item {
  position: relative;
  padding-bottom: 48px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -44px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 12px rgba(198, 156, 140, 0.4);
}

.timeline-date {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-text);
  margin-bottom: 4px;
  font-weight: 400;
}

.timeline-company {
  font-weight: 400;
  color: var(--color-text-secondary);
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.timeline-location {
  font-weight: 300;
  color: var(--color-text-muted);
}

.timeline-content > p:last-child {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
}

.resume-download {
  margin-top: 56px;
}

/* --- Work Grid (Advertising + Film/TV) --- */
.work {
  background: var(--color-bg);
}

.work-alt {
  background: var(--color-bg-elevated);
}

.work-alt .work-card-role {
  color: var(--color-secondary);
}

.work-alt .work-card:hover {
  box-shadow: 0 20px 60px rgba(168, 176, 160, 0.12);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.work-card {
  background: var(--color-bg-card);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border-color: var(--color-border);
}

/* --- Video Embeds --- */
.work-card-video {
  overflow: hidden;
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  background: var(--color-surface);
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  background: var(--color-surface);
  pointer-events: none;
}

/* Hide placeholder when iframe has a src */
.video-embed iframe[src]:not([src=""]) ~ .video-placeholder {
  display: none;
}

/* Clickable video link (for non-embeddable YouTube videos) */
.video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.video-link:hover img {
  transform: scale(1.03);
  filter: brightness(0.7);
}

.video-link .play-overlay {
  position: absolute;
  width: 64px;
  height: 64px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.video-link:hover .play-overlay {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.video-link .play-overlay::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.9);
  margin-left: 4px;
}

/* Portrait (9:16) video embed */
.video-embed.portrait {
  padding-bottom: 125%; /* 4:5 crop — shows the key frame without excess height */
}

/* Stacked dual-video card (no text, just two 16:9 videos) */
.work-card-stacked {
  display: flex;
  flex-direction: column;
}

.work-card-stacked .work-card-video + .work-card-video {
  margin-top: 24px;
}

.work-card-info {
  padding: 24px 28px 28px;
}

.work-card-info h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--color-text);
  font-weight: 400;
}

.work-card-role {
  font-size: 0.8rem;
  color: var(--color-secondary);
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.work-card-info > p:last-child {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 300;
}

/* --- Awards --- */
.awards {
  background: var(--color-bg);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 12px;
}

.award-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 28px;
  background: var(--color-bg-card);
  border-radius: 8px;
  border: 1px solid var(--color-border-light);
  transition: transform 0.2s, border-color 0.3s;
}

.award-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-border);
}

.award-year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-accent);
  min-width: 56px;
  line-height: 1.2;
  font-weight: 400;
}

.award-info h3 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 4px;
  line-height: 1.5;
}

.award-info p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  font-weight: 300;
}

/* --- Testimonials --- */
.testimonials {
  background: var(--color-bg-elevated);
}

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

.testimonial-card {
  background: var(--color-bg-card);
  border-radius: 10px;
  padding: 36px 32px;
  border: 1px solid var(--color-border-light);
  transition: transform 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-border);
}

.quote-icon {
  color: var(--color-accent);
  opacity: 0.4;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.testimonial-quote p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.testimonial-author-info h4 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 2px;
}

.testimonial-author-info p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 300;
}

/* --- Contact --- */
.contact {
  background: var(--color-bg);
}

.contact-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--color-text);
  margin-bottom: 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.contact .section-subtitle {
  margin-bottom: 48px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 960px;
}

.contact-card {
  background: var(--color-bg-card);
  border-radius: 10px;
  padding: 28px 24px;
  border: 1px solid var(--color-border-light);
  transition: transform 0.2s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent);
  color: inherit;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--color-accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.contact-card h4 {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact-card span {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  word-break: break-word;
  font-weight: 300;
}

.contact-card:hover span {
  color: var(--color-accent);
}

/* --- Footer --- */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 300;
}

.footer-tagline {
  font-style: italic;
  color: var(--color-text-muted);
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-image {
    order: -1;
  }

  .headshot,
  .headshot-placeholder {
    width: 280px;
    height: 340px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-photo-placeholder {
    height: 360px;
  }

  .carousel-track {
    aspect-ratio: 4 / 3;
  }

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

@media (max-width: 680px) {
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 32px;
    gap: 24px;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .section {
    padding: 80px 0;
  }

  .container {
    padding: 0 20px;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--nav-height) + 40px) 20px 80px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-scroll-hint {
    display: none;
  }

  .brands-grid {
    gap: 6px 12px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-divider {
    font-size: 0.9rem;
  }

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

  .footer-inner {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .headshot,
  .headshot-placeholder {
    width: 220px;
    height: 280px;
  }
}
