/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--navy);
  z-index: 100;
  display: flex;
  align-items: center;
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__name {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: .02em;
}
.nav__name:hover { color: var(--gold); }

.nav__links {
  display: none;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .nav__links { display: flex; }
}

.nav__links a {
  font-family: var(--ff-heading);
  font-size: .85rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  opacity: .85;
  transition: opacity .2s;
}
.nav__links a:hover { opacity: 1; color: var(--gold); }

.nav__lang {
  font-family: var(--ff-heading);
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: .25rem .6rem;
  border-radius: 4px;
}
.nav__lang:hover { background: var(--gold); color: var(--navy); }

.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
@media (min-width: 768px) {
  .nav__burger { display: none; }
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all .3s;
}

/* ── Mobile menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 200;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-menu.is-open { transform: translateX(0); }

.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
.mobile-menu__close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}
.mobile-menu__links a {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  color: var(--white);
  text-decoration: none;
}
.mobile-menu__links a:hover { color: var(--gold); }
.mobile-menu__footer {
  margin-top: auto;
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: var(--nav-height);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,27,45,.7) 0%, rgba(15,27,45,.85) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 2rem;
}
.hero__name {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  margin-bottom: .5rem;
}
.hero__tagline {
  font-family: var(--ff-heading);
  font-size: clamp(.95rem, 2vw, 1.15rem);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: .08em;
  margin-bottom: 1.5rem;
}
.hero__intro {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── About grid ── */
.about__portrait {
  border-radius: var(--border-radius);
  width: 100%;
  max-width: 400px;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.about__quote {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-light);
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.5rem;
}
.pill {
  font-family: var(--ff-heading);
  font-size: .75rem;
  font-weight: 600;
  padding: .35rem .85rem;
  border-radius: 20px;
  background: var(--offwhite);
  color: var(--navy);
  border: 1px solid var(--border);
}
.section--dark .pill {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.2);
}

/* ── Service cards ── */
.service-card {
  padding: 2rem;
  border-radius: var(--border-radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: box-shadow .25s;
}
.service-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
}
.service-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.service-card h3 { margin-bottom: .75rem; }
.service-card p { color: var(--text-light); font-size: .95rem; }
.service-card ul {
  margin-top: .75rem;
  color: var(--text-light);
  font-size: .9rem;
}
.service-card li {
  padding: .25rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.service-card li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── Event org ── */
.event-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border-radius: var(--border-radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
}
.event-card h3 { color: var(--gold); }
.event-card p { color: rgba(255,255,255,.8); font-size: .95rem; }

/* ── Logo grids ── */
.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 3rem;
}
.logo-grid img {
  height: 40px;
  width: auto;
  opacity: .7;
  transition: opacity .3s;
  filter: grayscale(100%);
}
.logo-grid img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.logo-grid--dark img {
  filter: grayscale(100%) brightness(10);
  opacity: .5;
}
.logo-grid--dark img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

.logo-grid--cv img {
  height: 44px;
  filter: grayscale(100%);
  opacity: .65;
}
.logo-grid--cv img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.logo-placeholder {
  font-family: var(--ff-heading);
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-light);
  padding: .5rem 1rem;
  border: 1px dashed var(--border);
  border-radius: 4px;
  white-space: nowrap;
}

/* ── Timeline ── */
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline__item {
  position: relative;
  padding-bottom: 2rem;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: .5rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  transform: translateX(-4px);
}
.timeline__period {
  font-family: var(--ff-heading);
  font-size: .75rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.timeline__item h3 {
  font-size: 1.05rem;
  margin: .25rem 0 .35rem;
}
.timeline__item p {
  font-size: .9rem;
  color: var(--text-light);
}

/* ── CTA band ── */
.cta-band {
  padding: var(--section-pad);
  background: var(--navy);
  text-align: center;
  color: var(--white);
}
.cta-band h2 {
  color: var(--white);
  margin-bottom: .75rem;
}
.cta-band p {
  color: rgba(255,255,255,.75);
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  padding: 2.5rem 0;
  text-align: center;
  font-size: .85rem;
}
.footer a { color: var(--gold); }
.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: center;
}
.footer__links {
  display: flex;
  gap: 1.5rem;
}
.footer__links a {
  font-family: var(--ff-heading);
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.footer__links a:hover { color: var(--gold); }

/* ── Photo gallery (event org) ── */
.photo-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .photo-row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .photo-row { grid-template-columns: 1fr 1fr 1fr; }
}
.photo-row img {
  border-radius: var(--border-radius);
  width: 100%;
  height: 220px;
  object-fit: cover;
}
