/* =========================================================
   THOMAS FRATTO — Elite Prospect Theme
   Premium athletic design with Eckerd brand colors
   Mobile-first responsive layout
   ========================================================= */

/* ---- Custom Properties ---- */
:root {
  /* Colors - Eckerd-inspired palette */
  --navy: #0a1628;
  --navy-light: #0f2340;
  --navy-mid: #162d50;
  --teal: #00b4a0;
  --teal-glow: rgba(0, 180, 160, 0.4);
  --white: #ffffff;
  --white-soft: rgba(255, 255, 255, 0.92);
  --white-muted: rgba(255, 255, 255, 0.6);
  --white-faint: rgba(255, 255, 255, 0.08);
  --white-line: rgba(255, 255, 255, 0.12);
  
  /* Typography */
  --font-display: "Bebas Neue", Impact, "Arial Black", sans-serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  
  /* Sizing */
  --container: 1140px;
  --pad: 16px;
  --radius: 16px;
  --radius-sm: 10px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
  --shadow-teal: 0 4px 24px rgba(0, 180, 160, 0.3);
  
  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 200ms;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Noise overlay for texture */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link */
.skip {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 12px 16px;
  background: var(--teal);
  color: var(--navy);
  border-radius: var(--radius-sm);
  font-weight: 600;
  transform: translateY(-200%);
  z-index: 10000;
  transition: transform var(--duration) var(--ease);
}

.skip:focus {
  transform: translateY(0);
}

/* Container */
.container {
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* =========================================================
   TOP BAR
   ========================================================= */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--white-line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.02em;
}

@media (min-width: 480px) {
  .brand-logo {
    width: 36px;
    height: 36px;
  }
  
  .brand-text {
    font-size: 22px;
  }
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

/* Smaller contact button on mobile */
.top-actions .btn.primary {
  padding: 8px 14px;
  font-size: 13px;
}

@media (min-width: 480px) {
  .top-actions {
    gap: 8px;
  }
  
  .top-actions .btn.primary {
    padding: 10px 18px;
    font-size: 14px;
  }
}

.nav-link {
  display: none;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white-muted);
  transition: color var(--duration) var(--ease);
}

.nav-link:hover {
  color: var(--white);
}

@media (min-width: 640px) {
  .nav-link {
    display: block;
  }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.btn.primary {
  background: var(--teal);
  color: var(--navy);
  border-color: var(--teal);
}

.btn.primary:hover {
  background: #00c9b2;
  box-shadow: var(--shadow-teal);
  transform: translateY(-1px);
}

.btn.ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--white-line);
}

.btn.ghost:hover {
  background: var(--white-faint);
  border-color: rgba(255, 255, 255, 0.24);
}

.btn.large {
  padding: 14px 24px;
  font-size: 15px;
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, var(--navy-mid) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 100% 100%, rgba(0, 180, 160, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr auto;
    gap: 60px;
  }
}

/* Hero Content */
.hero-content {
  animation: fadeUp 0.8s var(--ease) both;
  max-width: 100%;
  overflow: hidden;
}

/* Hero intro: Photo + Name side by side on mobile */
.hero-intro {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.hero-portrait-mobile {
  flex-shrink: 0;
}

.portrait-img-mobile {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--teal);
  box-shadow: 0 4px 20px rgba(0, 180, 160, 0.3);
}

.hero-intro-text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.hero-intro-text .hero-badge {
  margin-bottom: 8px;
}

.hero-intro-text .hero-name {
  line-height: 0.95;
  word-break: break-word;
}

.hero-intro-text .name-first {
  font-size: clamp(28px, 8vw, 48px);
}

.hero-intro-text .name-last {
  font-size: clamp(36px, 10vw, 64px);
}

/* Hide mobile portrait on desktop, show large portrait instead */
@media (min-width: 900px) {
  .hero-intro {
    display: block;
    margin-bottom: 24px;
  }
  
  .hero-portrait-mobile {
    display: none;
  }
  
  .hero-intro-text .hero-badge {
    margin-bottom: 24px;
  }
  
  .hero-intro-text .name-first {
    font-size: clamp(48px, 12vw, 100px);
  }
  
  .hero-intro-text .name-last {
    font-size: clamp(64px, 16vw, 140px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(0, 180, 160, 0.12);
  border: 1px solid rgba(0, 180, 160, 0.3);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal);
  margin-bottom: 24px;
}

@media (min-width: 480px) {
  .hero-badge {
    gap: 8px;
    padding: 8px 14px;
    font-size: 12px;
    letter-spacing: 0.08em;
  }
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.9); }
}

.hero-name {
  margin: 0;
  line-height: 0.9;
}

.name-first {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(48px, 12vw, 100px);
  letter-spacing: 0.02em;
  color: var(--white-soft);
}

.name-last {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(64px, 16vw, 140px);
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--white) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin-top: 24px;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.meta-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white-muted);
}

.meta-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.meta-divider {
  display: none;
  width: 1px;
  height: 32px;
  background: var(--white-line);
}

@media (min-width: 480px) {
  .meta-divider {
    display: block;
  }
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
}

@media (min-width: 480px) {
  .hero-stats {
    gap: 32px;
    padding: 24px 0;
  }
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--white);
}

@media (min-width: 480px) {
  .stat-value {
    font-size: 36px;
  }
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* Portrait - Desktop only (hidden on mobile) */
.hero-portrait {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}

@media (min-width: 900px) {
  .hero-portrait {
    display: flex;
  }
}

.portrait-frame {
  position: relative;
  z-index: 2;
}

.portrait-img {
  width: clamp(200px, 50vw, 340px);
  height: clamp(200px, 50vw, 340px);
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--white-line);
}

.portrait-ring {
  position: absolute;
  inset: -12px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  opacity: 0.4;
  animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.05); opacity: 0.2; }
}

.portrait-bg {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
}

/* Social Links */
.hero-socials {
  position: absolute;
  right: var(--pad);
  top: 50%;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 1100px) {
  .hero-socials {
    display: flex;
  }
}

.hero-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--white-faint);
  border: 1px solid var(--white-line);
  border-radius: 50%;
  color: var(--white-muted);
  transition: all var(--duration) var(--ease);
}

.hero-socials a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--navy);
  transform: scale(1.1);
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--navy-light);
}

.section-header {
  margin-bottom: 48px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-label {
  justify-content: center;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
}

.label-line {
  width: 24px;
  height: 2px;
  background: var(--teal);
}

.section-header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 8vw, 56px);
  letter-spacing: 0.02em;
  line-height: 1;
}

.section-desc {
  margin: 12px 0 0;
  color: var(--white-muted);
  font-size: 16px;
  max-width: 480px;
}

.section-header.centered .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.section-footer {
  margin-top: 32px;
  text-align: center;
}

/* =========================================================
   VIDEO GRID
   ========================================================= */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.video-card {
  display: block;
  background: var(--navy-light);
  border: 1px solid var(--white-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
  opacity: 0;
  transform: translateY(20px);
}

.video-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.video-card:nth-child(1) { transition-delay: 0ms; }
.video-card:nth-child(2) { transition-delay: 100ms; }
.video-card:nth-child(3) { transition-delay: 200ms; }

.video-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--teal);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.video-card:hover .video-thumb img {
  transform: scale(1.05);
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 22, 40, 0.3);
  transition: background var(--duration) var(--ease);
}

.video-card:hover .video-overlay {
  background: rgba(10, 22, 40, 0.5);
}

.play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--teal);
  border-radius: 50%;
  color: var(--navy);
  transform: scale(0.9);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.video-card:hover .play-btn {
  transform: scale(1);
  box-shadow: var(--shadow-teal);
}

/* =========================================================
   INFO GRID
   ========================================================= */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-card {
  background: var(--navy);
  border: 1px solid var(--white-line);
  border-radius: var(--radius);
  padding: 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--duration) var(--ease);
}

.info-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.info-card:nth-child(1) { transition-delay: 0ms; }
.info-card:nth-child(2) { transition-delay: 100ms; }
.info-card:nth-child(3) { transition-delay: 200ms; }

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(0, 180, 160, 0.12);
  border-radius: 12px;
  color: var(--teal);
  margin-bottom: 20px;
}

.info-card h3 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
}

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.info-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--white-line);
}

.info-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-label {
  font-size: 14px;
  color: var(--white-muted);
}

.info-value {
  font-size: 14px;
  font-weight: 600;
}

.info-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.info-links li {
  margin-bottom: 8px;
}

.info-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--white-faint);
  border: 1px solid var(--white-line);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--duration) var(--ease);
}

.info-links a:hover {
  background: rgba(0, 180, 160, 0.12);
  border-color: rgba(0, 180, 160, 0.3);
  color: var(--teal);
}

/* =========================================================
   CONTACT SECTION
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.contact-grid.single {
  max-width: 400px;
}

@media (min-width: 640px) {
  .contact-grid:not(.single) {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-card {
  background: var(--navy-light);
  border: 1px solid var(--white-line);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--duration) var(--ease);
}

.contact-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-card:nth-child(1) { transition-delay: 0ms; }
.contact-card:nth-child(2) { transition-delay: 100ms; }

.contact-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--white-line);
}

.contact-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-avatar.school {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 8px;
}

.contact-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.contact-role {
  margin: 4px 0 20px;
  font-size: 14px;
  color: var(--white-muted);
}

.contact-methods {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.contact-methods li {
  display: flex;
}

.contact-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  background: var(--white-faint);
  border: 1px solid var(--white-line);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  transition: all var(--duration) var(--ease);
}

@media (min-width: 480px) {
  .contact-icon-btn {
    padding: 16px 20px;
    font-size: 12px;
  }
}

.contact-icon-btn:hover {
  background: rgba(0, 180, 160, 0.15);
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

.contact-icon-btn svg {
  opacity: 0.9;
}

.contact-icon-btn:hover svg {
  opacity: 1;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--white-line);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-brand {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.footer-copy {
  margin: 0;
  font-size: 13px;
  color: var(--white-muted);
}

/* =========================================================
   SCROLL ANIMATION SUPPORT
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .video-card,
  .info-card,
  .contact-card {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   MOBILE OPTIMIZATIONS
   ========================================================= */

/* Increase padding on larger screens */
@media (min-width: 480px) {
  :root {
    --pad: 24px;
  }
}

@media (min-width: 768px) {
  :root {
    --pad: 32px;
  }
}

/* Small mobile screens (< 380px) */
@media (max-width: 379px) {
  :root {
    --pad: 12px;
    --radius: 12px;
  }
  
  .portrait-img-mobile {
    width: 80px;
    height: 80px;
  }
  
  .hero-intro {
    gap: 12px;
  }
  
  .hero-intro-text .name-first {
    font-size: 24px;
  }
  
  .hero-intro-text .name-last {
    font-size: 32px;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .stat-value {
    font-size: 28px;
  }
  
  .hero-badge {
    font-size: 10px;
    padding: 6px 10px;
  }
  
  .btn.large {
    padding: 12px 18px;
    font-size: 14px;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .play-btn {
    width: 48px;
    height: 48px;
  }
  
  .play-btn svg {
    width: 20px;
    height: 20px;
  }
  
  .info-card {
    padding: 20px;
  }
  
  .contact-card {
    padding: 20px 12px;
  }
  
  .contact-icon-btn {
    padding: 8px 10px;
    font-size: 9px;
  }
  
  .contact-icon-btn svg {
    width: 16px;
    height: 16px;
  }
}

/* Ensure consistent video card sizing on mobile */
@media (max-width: 639px) {
  .video-grid {
    gap: 12px;
  }
  
  .video-card {
    border-radius: var(--radius-sm);
  }
  
  .video-thumb {
    aspect-ratio: 16 / 9;
  }
  
  .play-btn {
    width: 52px;
    height: 52px;
  }
}

/* Hero mobile adjustments */
@media (max-width: 639px) {
  .hero {
    padding-top: 80px;
    padding-bottom: 40px;
    min-height: auto;
  }
  
  .hero-inner {
    gap: 24px;
  }
  
  .hero-meta {
    gap: 8px 16px;
    margin-top: 16px;
  }
  
  .hero-stats {
    padding: 20px 0;
    margin-top: 20px;
  }
  
  .hero-actions {
    flex-direction: column;
    margin-top: 24px;
  }
  
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Section padding mobile */
@media (max-width: 639px) {
  .section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 32px;
  }
}

/* Info grid mobile */
@media (max-width: 639px) {
  .info-grid {
    gap: 12px;
  }
  
  .info-card {
    padding: 24px;
    border-radius: var(--radius-sm);
  }
  
  .info-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
  }
  
  .info-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .info-list li {
    padding: 10px 0;
  }
  
  .info-links a {
    padding: 10px 14px;
  }
}

/* Contact mobile */
@media (max-width: 639px) {
  .contact-card {
    padding: 24px 16px;
    border-radius: var(--radius-sm);
  }
  
  .contact-avatar {
    width: 72px;
    height: 72px;
  }
  
  .contact-card h3 {
    font-size: 18px;
  }
  
  .contact-methods {
    gap: 8px;
  }
  
  .contact-icon-btn {
    padding: 10px 12px;
    font-size: 10px;
    gap: 4px;
  }
  
  .contact-icon-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* Footer mobile */
@media (max-width: 639px) {
  .footer {
    padding: 32px 0;
  }
  
  .footer-brand,
  .footer-copy {
    font-size: 13px;
  }
}
