/* ========================================
   ANNETTE GAYNOR — annettegaynor.com
   Luxury + Mission + Investor-Ready
   ======================================== */

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

:root {
  --charcoal: #2C2C2C;
  --cream: #F8F8F8;
  --gold: #C4A484;
  --gold-hover: #b08f6f;
  --white: #FFFFFF;
  --text: #2C2C2C;
  --text-light: #666666;
  --text-muted: #999999;
  --nav-height: 72px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

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

ul {
  list-style: none;
}

/* --- UTILITY --- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44, 44, 44, 0.06);
  transition: box-shadow 0.3s ease;
}

.nav--scrolled {
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.nav__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--charcoal);
}

.nav__links {
  display: flex;
  gap: 32px;
}

.nav__links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
  padding: 4px 0;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav__links a:hover {
  color: var(--charcoal);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn--primary {
  background: var(--charcoal);
  color: var(--white);
}

.btn--primary:hover {
  background: #1a1a1a;
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}

.btn--outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
}

.btn--gold:hover {
  background: var(--gold-hover);
}

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

/* Hero slideshow layers */
.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--charcoal);
  opacity: 0;
  transition: opacity 1500ms ease-in-out;
  will-change: opacity, transform;
  transform: scale(1.02);
}

.hero__slide.is-active {
  opacity: 1;
  animation: kenBurns 20s ease-in-out forwards;
}

@keyframes kenBurns {
  0%   { transform: scale(1.02); }
  100% { transform: scale(1.08); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 44, 44, 0.25) 0%,
    rgba(44, 44, 44, 0.42) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1140px;
  padding: 120px 24px 80px;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4), 0 1px 4px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 64px;
}

.hero__text {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.hero__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  margin-bottom: 12px;
  color: var(--gold);
}

.hero__tagline {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.hero__title {
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  background: linear-gradient(180deg, #FFFFFF 30%, #C4A484 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.hero__title-top {
  display: block;
  font-size: 4rem;
}

.hero__title-bottom {
  display: block;
  font-size: 2.6rem;
  font-weight: 700;
}

/* Fallback for browsers without background-clip: text */
@supports not (background-clip: text) {
  .hero__title {
    background: none;
    -webkit-text-fill-color: #FFFFFF;
    color: #FFFFFF;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
  }
}

.hero__micro {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

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

.hero__social-link {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.hero__social-link:hover {
  color: var(--gold);
}

/* Hero portrait */
.hero__portrait {
  flex-shrink: 0;
  width: 320px;
  height: 320px;
}

.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(196, 164, 132, 0.4);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

/* --- POSITIONING STATEMENT --- */
.positioning {
  padding: 48px 24px 32px;
  text-align: center;
  background: var(--white);
}

.statement-band {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 48px;
  background:
    radial-gradient(ellipse 700px 300px at 50% 50%, rgba(196, 164, 132, 0.06), transparent 60%),
    #FAFAF8;
  border-top: 1px solid rgba(44, 44, 44, 0.08);
  border-bottom: 1px solid rgba(44, 44, 44, 0.08);
}

.positioning__quote {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--charcoal);
  margin: 0 auto 14px;
  border: none;
  max-width: 920px;
  text-wrap: balance;
}

.positioning__sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  letter-spacing: 0.02em;
}

/* --- FILMSTRIP --- */
.filmstrip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.filmstrip__item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.filmstrip__item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.filmstrip__item:hover img {
  transform: scale(1.04);
}

/* --- SECTIONS --- */
.section {
  padding: 100px 0;
}

.positioning + .section {
  padding-top: 48px;
  border-top: 1px solid rgba(44, 44, 44, 0.05);
}

.section--cream {
  background:
    radial-gradient(ellipse 1100px 500px at 15% 0%, rgba(196, 164, 132, 0.07), transparent 60%),
    radial-gradient(ellipse 800px 400px at 85% 100%, rgba(196, 164, 132, 0.05), transparent 55%),
    var(--cream);
}

.section--dark {
  background: #363636;
}

.section__title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section__title--light {
  color: var(--white);
}

.section__intro {
  text-align: center;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 56px;
  font-size: 1rem;
}

.section__intro--light {
  color: rgba(255, 255, 255, 0.65);
}

.section__cta {
  text-align: center;
  margin-top: 48px;
}

/* --- ABOUT --- */
.about__body {
  max-width: 64ch;
  margin: 20px auto 0;
  text-align: center;
}

.about__body p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

.about__body p + p {
  margin-top: 12px;
}

/* --- DEVELOPMENT FOCUS --- */
.focus__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 56px;
}

.focus__item {
  text-align: center;
  padding: 0 12px;
}

.focus__heading {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.focus__item p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* --- WAYS TO WORK --- */
.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.work__card {
  background: var(--white);
  padding: 44px 36px;
  border: 1px solid rgba(44, 44, 44, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.work__card:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.work__card-title {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.work__card-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.work__card-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.work__card-caps {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-top: 20px;
  border-top: 1px solid rgba(44, 44, 44, 0.08);
}

/* --- PROJECTS (minimalist CTA) --- */
#projects {
  padding: 72px 0;
}

.projects-cta {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.projects-cta__line {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* --- SECTION PHOTOS (shared) --- */
.section-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(196, 164, 132, 0.2);
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.1);
}

.section-photo--sm {
  max-width: 360px;
}

/* --- DEVELOPER ACADEMY --- */
.academy__split {
  display: flex;
  align-items: flex-start;
  gap: 56px;
}

.academy__copy {
  flex: 1;
  min-width: 0;
}

.academy__heading {
  text-align: left;
}

.academy__intro {
  text-align: left;
  margin-left: 0;
}

.academy__visual {
  flex-shrink: 0;
  width: 380px;
  padding-top: 8px;
}

.academy__tiers {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.academy__tier {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 28px;
  transition: background 0.3s ease;
}

.academy__tier:hover {
  background: rgba(255, 255, 255, 0.08);
}

.academy__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.academy__level {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  font-style: italic;
}

.academy__desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

/* --- PHILOSOPHY --- */
.philosophy {
  padding: 100px 24px;
  text-align: center;
  background:
    radial-gradient(ellipse 900px 400px at 80% 20%, rgba(196, 164, 132, 0.06), transparent 55%),
    var(--cream);
}

.philosophy__quote {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--charcoal);
  max-width: 780px;
  margin: 0 auto;
  border: none;
}

.philosophy__figure {
  max-width: 560px;
  margin: 56px auto 0;
}

.philosophy__caption {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  letter-spacing: 0.03em;
}

/* --- PARTNERSHIPS --- */
.partners__split {
  display: flex;
  align-items: center;
  gap: 56px;
  margin-top: 40px;
}

.partners__copy {
  flex: 1;
  min-width: 0;
}

.partners__copy > p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

.partners__visual {
  flex-shrink: 0;
}

.partners__list {
  text-align: left;
}

.partners__list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.6;
}

.partners__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* --- BOOKING --- */
.booking {
  padding: 72px 24px;
  background:
    radial-gradient(ellipse 800px 350px at 50% 80%, rgba(196, 164, 132, 0.06), transparent 55%),
    var(--cream);
}

.booking__card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(44, 44, 44, 0.06);
  border-radius: 12px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.04);
  padding: 48px 40px;
  text-align: center;
}

.booking__title {
  font-size: 1.75rem;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.booking__sub {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 28px;
}

.booking__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.booking__note {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.booking__note a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.booking__note a:hover {
  border-bottom-color: var(--gold);
}

/* --- CONTACT FORM --- */
.contact-wrap {
  max-width: 560px;
  margin: 56px auto 0;
  text-align: center;
}

.contact-wrap__heading {
  font-size: 1.75rem;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.contact-wrap__sub {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 6px;
}

.contact-wrap__email {
  font-size: 0.82rem;
  margin-bottom: 36px;
}

.contact-wrap__email a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.contact-wrap__email a:hover {
  border-bottom-color: var(--gold);
}

.contact-form {
  text-align: left;
}

.contact-form .field {
  margin-bottom: 22px;
}

.contact-form label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(44, 44, 44, 0.15);
  border-radius: 6px;
  padding: 14px 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 164, 132, 0.15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__btn {
  width: 100%;
  margin-top: 8px;
  text-align: center;
}

.form-status {
  text-align: center;
  font-size: 0.88rem;
  margin-top: 16px;
  min-height: 1.4em;
}

.form-status--success {
  color: #2e7d32;
}

.form-status--error {
  color: #c62828;
}

/* --- FOOTER --- */
.footer {
  padding: 48px 24px;
  text-align: center;
  background: #363636;
  color: rgba(255, 255, 255, 0.5);
}

.footer__line {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer__social {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.footer__social span {
  color: rgba(255, 255, 255, 0.25);
}

.footer__social a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.footer__social a:hover {
  border-bottom-color: var(--gold);
}

.footer__copy {
  font-size: 0.8rem;
}

.footer__copy a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.footer__copy a:hover {
  border-bottom-color: var(--gold);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .hero__portrait {
    width: 260px;
    height: 260px;
  }

  .hero__content {
    gap: 40px;
  }

  .academy__visual {
    width: 300px;
  }

  .section-photo--sm {
    max-width: 280px;
  }

  .focus__grid,
  .work__grid,
  .academy__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 40px 24px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav__links.is-open {
    transform: translateX(0);
  }

  .nav__links a {
    font-size: 1.1rem;
    padding: 16px 0;
    border-bottom: 1px solid rgba(44, 44, 44, 0.06);
  }

  .nav__toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav__toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero__content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero__text {
    text-align: center;
  }

  .hero__micro {
    text-align: center;
    font-size: 0.95rem;
  }

  .hero__ctas {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .hero__ctas .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .hero__social {
    justify-content: center;
  }

  .hero__portrait {
    width: 220px;
    height: 220px;
    margin: 0 auto;
  }

  .hero__title-top {
    font-size: 2.6rem;
  }
  .hero__title-bottom {
    font-size: 1.7rem;
  }

  .section {
    padding: 72px 0;
  }

  .section__title {
    font-size: 1.65rem;
  }

  .positioning__quote,
  .philosophy__quote {
    font-size: 1.25rem;
  }

  .positioning,
  .philosophy {
    padding: 36px 16px 24px;
  }

  .statement-band {
    padding: 32px 20px;
  }

  .filmstrip {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }

  .filmstrip__item img {
    height: 200px;
  }

  .focus__grid,
  .work__grid,
  .academy__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .booking {
    padding: 56px 16px;
  }

  .booking__card {
    padding: 32px 20px;
  }

  .booking__ctas {
    flex-direction: column;
    align-items: center;
  }

  .booking__ctas .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .contact-wrap {
    margin-top: 40px;
  }

  .academy__split {
    flex-direction: column;
    gap: 40px;
  }

  .academy__visual {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .academy__heading,
  .academy__intro {
    text-align: center;
  }

  .academy__copy .section__cta {
    text-align: center !important;
  }

  .partners__split {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .partners__visual {
    margin: 0 auto;
  }

  .section-photo--sm {
    max-width: 320px;
    margin: 0 auto;
  }

  .partners__copy .section__cta {
    text-align: center !important;
  }

  .philosophy__figure {
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .hero__title-top {
    font-size: 2.1rem;
  }
  .hero__title-bottom {
    font-size: 1.4rem;
  }

  .hero__eyebrow {
    font-size: 0.75rem;
  }

  .hero__portrait {
    width: 180px;
    height: 180px;
  }

  .work__card {
    padding: 32px 24px;
  }

  .academy__tier {
    padding: 32px 24px;
  }
}

/* --- ACCESSIBILITY --- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  /* Show only the first hero slide, no crossfade or Ken Burns */
  .hero__slide {
    opacity: 0 !important;
    transition: none !important;
    animation: none !important;
    transform: scale(1) !important;
  }
  .hero__slide:first-child {
    opacity: 1 !important;
  }
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--charcoal);
  color: var(--white);
  padding: 12px 24px;
  z-index: 9999;
  font-size: 0.9rem;
}

.skip-link:focus {
  top: 8px;
}
