/* ============================================================
   AIKEN AITBAY — Website Stylesheet
   Palette: #1C1C1E (near-black), #F5F0EA (cream), #C9A96E (gold)
   Fonts:  Cormorant Garamond (headings) + DM Sans (body)
   ============================================================ */

/* === RESET & BASE === */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 300;
  background-color: #F5F0EA;
  color: #1C1C1E;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* === UTILITIES === */

.hidden {
  display: none !important;
}

/* === CSS VARIABLES === */

:root {
  --black:     #1C1C1E;
  --dark-gray: #2D2D2D;
  --gray:      #8A8A8A;
  --gold:      #C9A96E;
  --gold-light:#D4B882;
  --cream:     #F5F0EA;
  --cream-dark:#EDE8E1;
  --white:     #FFFFFF;

  --nav-h:     72px;
  --section-v: clamp(80px, 10vw, 140px);
  --max-w:     1200px;
  --pad-h:     clamp(24px, 6vw, 100px);
}

/* === NAVIGATION === */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background-color: rgba(245, 240, 234, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(28, 28, 30, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
  gap: 40px;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo img {
  height: 48px;
  width: auto;
  border-radius: 6px;
  display: block;
}

.nav__links {
  display: flex;
  gap: 36px;
  margin-left: auto;
}

.nav__links a {
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 234, 0.85);
  transition: color 0.25s ease;
}

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

.nav.scrolled .nav__links a {
  color: var(--dark-gray);
}

.nav.scrolled .nav__links a:hover {
  color: var(--gold);
}

/* === LANGUAGE SWITCHER === */

.lang-switcher {
  position: relative;
  flex-shrink: 0;
}

.lang-switcher__trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: none;
  border: 1px solid rgba(245, 240, 234, 0.4);
  color: rgba(245, 240, 234, 0.85);
  padding: 6px 12px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lang-switcher__trigger-flag {
  font-size: 0.9rem;
  line-height: 1;
}

.lang-switcher__caret {
  font-size: 0.65rem;
  opacity: 0.7;
}

.lang-switcher__trigger:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.nav.scrolled .lang-switcher__trigger {
  border-color: rgba(28, 28, 30, 0.3);
  color: var(--dark-gray);
}

.nav.scrolled .lang-switcher__trigger:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 170px;
  background-color: var(--cream);
  border: 1px solid rgba(28, 28, 30, 0.12);
  box-shadow: 0 12px 32px rgba(28, 28, 30, 0.14);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 6px;
}

.lang-switcher__menu[hidden] {
  display: none;
}

.lang-switcher__option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--dark-gray);
  background: none;
  border: none;
  text-align: left;
  padding: 10px 12px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-switcher__option .flag {
  font-size: 1rem;
}

.lang-switcher__option:hover {
  background-color: rgba(201, 169, 110, 0.12);
  color: var(--black);
}

.lang-switcher__option[aria-current="true"] {
  color: var(--black);
  font-weight: 500;
}

.lang-switcher__option[aria-current="true"]::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--gold);
  margin-left: auto;
}

.lang-switcher-mobile {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.lang-switcher-mobile__option {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: none;
  border: 1px solid rgba(28, 28, 30, 0.2);
  color: var(--dark-gray);
  padding: 8px 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-switcher-mobile__option[aria-current="true"] {
  border-color: var(--gold);
  color: var(--black);
}

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

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

.nav.scrolled .nav__toggle span {
  background-color: var(--black);
}

/* Mobile nav */
.nav__mobile {
  background-color: var(--cream);
  border-top: 1px solid rgba(28, 28, 30, 0.08);
  padding: 24px var(--pad-h) 32px;
}

.nav__mobile ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nav__mobile a {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-gray);
  display: block;
}

/* === HERO === */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__image-wrap {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28, 28, 30, 0.15) 0%,
    rgba(28, 28, 30, 0.05) 40%,
    rgba(28, 28, 30, 0.55) 75%,
    rgba(28, 28, 30, 0.80) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--pad-h) clamp(64px, 8vw, 100px);
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero__text {
  max-width: 680px;
}

.hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.hero__tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.hero__subtitle {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 300;
  color: rgba(245, 240, 234, 0.78);
  letter-spacing: 0.04em;
  margin-bottom: 40px;
  max-width: 480px;
}

/* === BUTTONS === */

.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(201, 169, 110, 0.6);
  padding: 14px 36px;
  transition: all 0.3s ease;
  background: transparent;
  cursor: pointer;
}

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

/* === GOLD RULE === */

.rule-gold {
  width: clamp(60px, 8vw, 100px);
  height: 1px;
  background-color: var(--gold);
  margin: 0 auto;
  opacity: 0.6;
}

/* === SECTIONS: SHARED === */

.section {
  padding: var(--section-v) 0;
}

.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}

.section__label {
  font-size: 0.6875rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.section__heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--black);
  letter-spacing: -0.01em;
}

/* === ABOUT === */

.about__inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: start;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__body p {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  color: var(--dark-gray);
  line-height: 1.75;
  max-width: 680px;
}

.about__langs {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.about__langs span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

.about__langs .divider {
  color: var(--gold);
}

/* === SERVICES === */

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1px;
  background-color: rgba(28, 28, 30, 0.08);
  margin-top: 56px;
  border: 1px solid rgba(28, 28, 30, 0.08);
}

.service-card {
  background-color: var(--cream);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background-color 0.25s ease;
}

.service-card:hover {
  background-color: var(--cream-dark);
}

.service-card__number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  color: var(--black);
  line-height: 1.3;
}

.service-card p {
  font-size: 0.9rem;
  color: #5A5A5C;
  line-height: 1.7;
}

/* === APPROACH === */

.approach__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.approach__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.approach__text p {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  color: var(--dark-gray);
  line-height: 1.75;
}

.approach__network {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 4px;
}

.approach__network-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.01em;
}

.approach__network p {
  font-size: 0.9375rem;
  color: var(--dark-gray);
  line-height: 1.75;
}

.network__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.network__tags li {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-gray);
  border: 1px solid rgba(201, 169, 110, 0.5);
  padding: 6px 14px;
}

.network__note {
  font-size: 0.875rem;
  color: var(--gray);
  font-style: italic;
  line-height: 1.6;
  margin-top: 4px;
}

/* === PARTNERS / SOCIAL PROOF === */

.partners__inner {
  text-align: center;
}

.partners__intro {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  color: var(--dark-gray);
  line-height: 1.75;
  max-width: 560px;
  margin: 20px auto 0;
}

.partners__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 28px 20px;
  align-items: stretch;
  justify-items: center;
}

.partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 220px;
  padding: 16px 18px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.partner--chip {
  border: 1px solid rgba(28, 28, 30, 0.12);
}

.partner--chip:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.partner--text {
  border: none;
  padding: 16px 10px;
}

.partner__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
}

.partner__mark img {
  max-height: 44px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.55;
  transition: filter 0.35s ease, opacity 0.35s ease;
}

.partner:hover .partner__mark img {
  filter: grayscale(0);
  opacity: 1;
}

.partner__wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  letter-spacing: 0.02em;
  color: var(--gray);
  text-align: center;
  line-height: 1.25;
  transition: color 0.3s ease;
}

.partner--text .partner__wordmark {
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
}

.partner:hover .partner__wordmark {
  color: var(--black);
}

.partner--text:hover .partner__wordmark {
  color: var(--gold);
}

.partner__role {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(138, 138, 138, 0.75);
}

/* Open / fillable partner slot */
.partner--placeholder {
  border: 1px dashed rgba(28, 28, 30, 0.22);
  opacity: 0.65;
  transition: opacity 0.3s ease, border-color 0.3s ease;
}

.partner--placeholder:hover {
  opacity: 0.9;
  border-color: rgba(201, 169, 110, 0.6);
}

.partner__plus {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gray);
}

.partner__placeholder-label {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

/* === MEDIA / EVENT VIDEOS === */

.media__inner {
  text-align: center;
}

.media__intro {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  color: var(--dark-gray);
  line-height: 1.75;
  max-width: 560px;
  margin: 20px auto 0;
}

.media__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 300px));
  justify-content: center;
  gap: 28px;
}

.media-item__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background-color: var(--black);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(28, 28, 30, 0.18);
}

.media-item__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: var(--black);
}

.media-item__play {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 28, 30, 0.18);
  border: none;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.media-item__play:hover {
  background: rgba(28, 28, 30, 0.3);
}

.media-item__play-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(28, 28, 30, 0.55);
  border: 1px solid rgba(201, 169, 110, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.media-item__play-icon::before {
  content: '';
  display: block;
  margin-left: 5px;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid var(--gold-light);
}

.media-item__play[hidden] {
  display: none;
}

/* === CONTACT === */

.contact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.contact__intro {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  color: var(--dark-gray);
  max-width: 480px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 8px 0;
}

.contact__email {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: color 0.25s ease, border-color 0.25s ease;
}

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

.contact__locations {
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}

.contact__note {
  font-size: 0.875rem;
  color: var(--gray);
  font-style: italic;
  margin-top: 8px;
}

/* === FOOTER === */

.footer {
  background-color: var(--black);
  padding: 48px var(--pad-h);
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--cream);
}

.footer__tagline {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(245, 240, 234, 0.3);
  letter-spacing: 0.1em;
  margin-top: 8px;
}

/* === RESPONSIVE === */

@media (max-width: 900px) {
  .nav__links,
  .lang-switcher {
    display: none;
  }

  .nav__toggle {
    display: flex;
    margin-left: auto;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about__inner > .section__label {
    display: none;
  }

  .about__content .section__label {
    display: block;
  }

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

  .partners__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  :root {
    --nav-h: 60px;
  }

  .hero__name {
    font-size: clamp(40px, 12vw, 64px);
  }

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

  .section__heading {
    font-size: clamp(28px, 7vw, 40px);
  }

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

  .partners__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 14px;
  }

  .partner {
    max-width: none;
    padding: 12px 8px;
  }

  .media__grid {
    grid-template-columns: minmax(0, 280px);
    gap: 24px;
  }
}

/* === FOCUS STATES (accessibility) === */

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* === REDUCED MOTION === */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
