/* ===================================
   COACH TERRY — Professional Website
   Light Gold Theme
   =================================== */

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

:root {
  --y-950: #3A2400;   /* deep dark bronze — text, borders */
  --y-900: #6B4200;   /* dark rich gold — headings */
  --y-800: #8C5E00;   /* medium amber gold */
  --y-700: #AA7800;   /* warm gold */
  --y-600: #C49200;   /* bright gold */
  --y-500: #D4A418;   /* golden accent */
  --y-400: #E0B838;   /* light gold */
  --y-300: #EDCC6A;   /* pale gold */
  --y-200: #F5DFA4;   /* very pale gold */
  --y-100: #FAF0D0;   /* cream gold */
  --y-50:  #FFFAF0;   /* near-white gold */

  /* Keep these names so existing selectors still work */
  --blue-950: var(--y-950);
  --blue-900: var(--y-900);
  --blue-800: var(--y-800);
  --blue-700: var(--y-700);
  --blue-600: var(--y-600);
  --blue-500: var(--y-500);
  --blue-400: var(--y-400);
  --blue-300: var(--y-300);
  --blue-200: var(--y-200);
  --blue-100: var(--y-100);
  --blue-50:  var(--y-50);

  --gold:       #C88000;
  --gold-light: #E8A830;
  --white:      #FFFFFF;
  --gray-100:   #FBF6EC;
  --gray-200:   #F0E6CC;
  --gray-400:   #B09868;
  --gray-600:   #7A5C28;
  --gray-800:   #3A2800;

  --font-body: 'Inter', system-ui, sans-serif;
  --font-head: 'Oswald', 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(140,94,0,0.1), 0 1px 2px rgba(140,94,0,0.06);
  --shadow-md: 0 4px 16px rgba(140,94,0,0.14), 0 2px 6px rgba(140,94,0,0.09);
  --shadow-lg: 0 12px 40px rgba(140,94,0,0.18), 0 4px 12px rgba(140,94,0,0.1);
  --shadow-blue: 0 8px 30px rgba(196,146,0,0.35);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--y-950);
  background: var(--y-50);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

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

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--y-900);
  background: var(--y-100);
  border: 1px solid var(--y-300);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-tag.light {
  color: var(--y-900);
  background: rgba(255,255,255,0.55);
  border-color: var(--y-400);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--y-950);
  margin-bottom: 16px;
}

.section-title.light { color: var(--y-950); }

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  margin-bottom: 0;
}

.section-desc.light { color: var(--y-900); }

.section-header.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 56px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--y-900);
  color: var(--white);
  border-color: var(--y-900);
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  background: var(--y-950);
  border-color: var(--y-950);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(120,100,0,0.35);
}

.btn-outline {
  background: rgba(255,255,255,0.6);
  color: var(--y-950);
  border-color: var(--y-700);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.85);
  border-color: var(--y-900);
}

.btn.full-width { width: 100%; justify-content: center; }

.btn-icon {
  width: 18px;
  height: 18px;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}

.navbar.scrolled {
  background: rgba(255, 252, 225, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(120,100,0,0.15);
  border-bottom: 1px solid var(--y-300);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--y-950);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.logo-icon { font-size: 1.4rem; }

.nav-logo strong { font-weight: 800; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: var(--y-950);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--y-700);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--y-900); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--y-900) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem !important;
  box-shadow: var(--shadow-blue);
}

.nav-cta:hover {
  background: var(--y-950) !important;
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

.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: 2px;
  background: var(--y-950);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FFF8E8 0%, #FFF0C8 40%, #FFE49A 100%);
}

/* Decorative court lines */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(180,150,0,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180,150,0,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,146,0,0.22) 0%, transparent 70%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(180,120,0,0.1) 0%, transparent 70%);
}

.hero-content {
  text-align: left;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--y-900);
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--y-500);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--y-950);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-title .accent {
  background: linear-gradient(135deg, var(--y-800) 0%, var(--y-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--y-800);
  max-width: 480px;
  margin: 0 0 40px;
  line-height: 1.7;
}

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

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--y-700);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--y-600);
  border-bottom: 2px solid var(--y-600);
  transform: rotate(45deg);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--y-400);
  padding: 32px 0;
}

.stats-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}

.stat-number {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--y-950);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--y-900);
  font-weight: 500;
  margin-top: 4px;
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(74,56,0,0.2);
}

/* ---------- About ---------- */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--y-400) 0%, var(--y-600) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: var(--shadow-lg), 0 0 0 4px var(--y-200);
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: inherit;
}

.image-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--gold);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(200,150,0,0.4);
}

.badge-icon { font-size: 1rem; }

.about-text-col { padding-top: 8px; }

.about-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--y-900);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-body {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-highlights {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--y-900);
}

.highlight-icon { font-size: 1.1rem; }

/* ---------- Experience ---------- */
.experience {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--y-100) 0%, var(--y-200) 100%);
}

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

.exp-card {
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--y-300);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}

.exp-card:hover {
  background: rgba(255,255,255,0.95);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.exp-card.featured {
  background: var(--y-900);
  border-color: var(--y-800);
  box-shadow: var(--shadow-blue);
}

.exp-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.exp-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.exp-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--y-950);
  margin-bottom: 12px;
}

.exp-card.featured h3 { color: var(--white); }

.exp-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 20px;
}

.exp-card.featured p { color: var(--y-200); }

.exp-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.exp-list li {
  font-size: 0.85rem;
  color: var(--gray-600);
  padding-left: 18px;
  position: relative;
}

.exp-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--y-700);
  font-weight: 700;
}

.exp-card.featured .exp-list li { color: var(--y-200); }
.exp-card.featured .exp-list li::before { color: var(--gold-light); }

/* Experience card with video */
.exp-card-video {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.exp-shorts-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex: 1;
}

.exp-shorts-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Timeline */
.timeline {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--y-300);
  border-radius: var(--radius-xl);
  padding: 48px;
}

.timeline-header {
  margin-bottom: 40px;
  border-bottom: 1px solid var(--y-300);
  padding-bottom: 20px;
}

.timeline-header h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--y-950);
}

.timeline-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline-items::before {
  content: '';
  position: absolute;
  left: 60px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--y-500), transparent);
}

.timeline-item {
  display: grid;
  grid-template-columns: 60px 20px 1fr;
  gap: 0 20px;
  align-items: start;
  padding: 16px 0;
  position: relative;
}

.timeline-year {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--y-700);
  padding-top: 2px;
  text-align: right;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  background: var(--y-600);
  border-radius: 50%;
  border: 2px solid var(--y-100);
  margin-top: 5px;
  position: relative;
  z-index: 1;
}

.timeline-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--y-200);
}

.timeline-item:last-child .timeline-content { border-bottom: none; }

.timeline-content strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--y-950);
}

.timeline-content span {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* ---------- Videos ---------- */
.videos {
  padding: 100px 0;
  background: var(--gray-100);
}

.video-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.video-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.video-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.video-card.featured-video {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
}

.video-thumb {
  position: relative;
  background: linear-gradient(145deg, var(--y-600), var(--y-800));
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}

.video-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg, transparent, transparent 40px,
    rgba(255,255,255,0.05) 40px, rgba(255,255,255,0.05) 41px
  );
}

.video-thumb.small { aspect-ratio: 16/7; }

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}

.play-btn svg { width: 28px; height: 28px; margin-left: 4px; }

.play-btn.small {
  width: 44px;
  height: 44px;
}

.play-btn.small svg { width: 20px; height: 20px; margin-left: 3px; }

.video-thumb:hover .play-btn {
  background: var(--y-900);
  border-color: var(--y-800);
  transform: scale(1.1);
}

.video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.55);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
}

.video-info {
  padding: 24px;
  flex: 1;
}

.video-info.small { padding: 16px 20px; }

.video-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--y-900);
  background: var(--y-100);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.video-info h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--y-950);
  margin-bottom: 8px;
  line-height: 1.3;
}

.video-info.small h3 { font-size: 0.95rem; }

.video-info p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.55;
}

.video-info.small p { display: none; }

.video-card-embed {
  grid-column: auto;
}

.video-embed-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}

.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.videos-cta {
  text-align: center;
  margin-top: 44px;
}

/* ---------- Resources ---------- */
.resources {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--y-200) 0%, var(--y-100) 100%);
}

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

.resource-category {
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--y-300);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.resource-cat-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--y-950);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cat-icon { font-size: 1.1rem; }

.resource-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.resource-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--y-50);
  border: 1px solid var(--y-200);
  transition: var(--transition);
  cursor: pointer;
}

.resource-link:hover {
  background: var(--white);
  border-color: var(--y-400);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.resource-link-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.resource-link-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.resource-link-text strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--y-950);
  line-height: 1.3;
}

.resource-link-text span {
  font-size: 0.75rem;
  color: var(--gray-600);
  line-height: 1.4;
}

.resource-link-arrow {
  color: var(--y-600);
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.resource-link:hover .resource-link-arrow {
  color: var(--y-900);
  transform: translateX(2px);
}

/* ---------- Contact ---------- */
.contact {
  padding: 100px 0;
  background: var(--white);
}

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

.contact-text .section-title { margin-bottom: 20px; }

.contact-text p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.detail-icon { font-size: 1.1rem; }

.contact-detail a {
  color: var(--y-900);
  font-weight: 500;
}

.contact-detail a:hover { text-decoration: underline; }

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link svg { width: 20px; height: 20px; }

.social-link.youtube {
  background: #FF0000;
  color: var(--white);
}

.social-link.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
}

.social-link.facebook {
  background: #1877F2;
  color: var(--white);
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Contact Form */
.contact-form {
  background: var(--y-50);
  border: 1px solid var(--y-200);
  border-radius: var(--radius-xl);
  padding: 36px;
}

.contact-form h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--y-950);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--y-900);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--y-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--y-950);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--y-600);
  box-shadow: 0 0 0 3px rgba(180,150,0,0.12);
}

.google-form-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--y-200);
  background: var(--y-50);
}

.google-form-wrap iframe {
  display: block;
  border: none;
}

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: #D1FAE5;
  border: 1px solid #6EE7B7;
  border-radius: var(--radius-sm);
  color: #065F46;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--y-200);
  padding: 60px 0 30px;
  border-top: 1px solid var(--y-300);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--y-300);
}

.footer-brand .nav-logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.88rem;
  color: var(--y-800);
  line-height: 1.6;
  max-width: 260px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--y-700);
  margin-bottom: 16px;
}

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-size: 0.88rem;
  color: var(--y-900);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--y-950); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--y-800);
}

/* ---------- Slideshow (hero portrait frame) ---------- */
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  padding: 120px 24px 80px;
  margin: 0 auto;
}

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

.slideshow-frame {
  position: relative;
  width: 100%;
  max-width: 300px;
  border-radius: var(--radius-xl);
  padding: 12px;
  background: linear-gradient(145deg, #f5d96a, #c8960a, #f0cc50, #a87800, #e8c040);
  box-shadow:
    0 0 0 3px #a87800,
    0 10px 50px rgba(140,94,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.45);
}

.slideshow-track {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: calc(var(--radius-xl) - 8px);
  overflow: hidden;
  background: var(--y-950);
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Prev / Next buttons */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.88);
  color: var(--y-950);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  z-index: 10;
}

.slide-btn.prev { left: 18px; }
.slide-btn.next { right: 18px; }

.slide-btn:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-lg);
}

/* Dot indicators */
.slide-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.slide-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.slide-dot.active {
  background: var(--white);
  transform: scale(1.35);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .exp-card:last-child { grid-column: 1 / -1; }
  .resources-grid { grid-template-columns: 1fr 1fr; }
  .resource-category:last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 40px;
    padding: 110px 24px 60px;
  }
  .hero-content { text-align: center; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-frame-col {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .slideshow-frame {
    width: min(260px, 60vw);
    max-width: none;
  }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--y-50);
    border-left: 1px solid var(--y-300);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right var(--transition);
    box-shadow: -4px 0 20px rgba(120,100,0,0.1);
  }

  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; }

  .stats-container { gap: 24px; }
  .stat-item { padding: 0 20px; }
  .stat-divider { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image-col { max-width: 320px; margin: 0 auto; }

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

  .timeline { padding: 28px 24px; }
  .timeline-items::before { left: 50px; }
  .timeline-item { grid-template-columns: 50px 20px 1fr; }

  .video-grid { grid-template-columns: 1fr; }
  .video-card.featured-video { grid-row: auto; }
  .video-info.small p { display: block; }

  .resources-grid { grid-template-columns: 1fr; }
  .resource-category:last-child { grid-column: auto; }

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

  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.8rem; }
  .hero-title { font-size: 2.6rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .timeline-item { grid-template-columns: 40px 16px 1fr; font-size: 0.85rem; }
  .timeline-items::before { left: 40px; }
}
