/* =========================================================
   Navbar (full-width)
   ========================================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg-cream);
  border-bottom: 1px solid var(--header-border);
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.navbar__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
}
.navbar__brand {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 22px;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: 0.005em;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  background: var(--bg-cream);
  padding: 40px 0 56px;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 460px) minmax(0, 540px);
  gap: clamp(48px, 9vw, 130px);
  justify-content: center;
  align-items: center;
}
.hero__media figure { margin: 0; }
.hero__image-wrap {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-beige);
  box-shadow: var(--shadow-soft);
}
.hero__image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero__caption {
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 18px;
  font-weight: 300;
  letter-spacing: 0.01em;
}
.hero__title {
  font-size: 52px;
  line-height: 1.1;
  margin: 12px 0 26px;
  font-weight: 400;
}
.hero__title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 300;
}
.hero__subtext {
  margin: 0 0 36px;
  max-width: 480px;
}

/* =========================================================
   Hero gallery — main image (cross-faded) + thumbnail switcher
   ========================================================= */
.gallery { margin: 0; }
/* Stack the portraits inside the fixed-size frame; the active one fades in. */
.gallery__stage { position: relative; }
.gallery__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.gallery__img.is-active { opacity: 1; }

.gallery__thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.gallery__thumb {
  width: 64px;
  height: 80px;
  padding: 0;
  border: 1px solid var(--header-border);
  background: var(--bg-beige);
  cursor: pointer;
  overflow: hidden;
  opacity: 0.62;
  transition: opacity 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb:hover { opacity: 1; transform: translateY(-2px); }
.gallery__thumb.is-active {
  opacity: 1;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.gallery__thumb:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
/* Caption already styled via .hero__caption; nudge it below the thumbs. */
.gallery .gallery__caption { margin-top: 14px; }

@media (prefers-reduced-motion: reduce) {
  .gallery__img { transition: none; }
  .gallery__thumb { transition: none; }
  .gallery__thumb:hover { transform: none; }
}

/* =========================================================
   Social proof strip (vertical icon-above-text)
   ========================================================= */
.proof {
  background: var(--bg-proof);
  padding: 0;
  min-height: 210px;
  display: flex;
  align-items: center;
}
.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 0;
}
.proof__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
  min-height: 126px;
  padding: 0 40px;
}
.proof__item + .proof__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  bottom: 9px;
  width: 1px;
  background: var(--proof-divider);
}
.proof__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--proof-icon);
}
.proof__icon svg { display: block; width: 100%; height: 100%; }
.proof__text {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  color: #000;
  line-height: 1.45;
  max-width: 330px;
}

/* =========================================================
   Artist section
   ========================================================= */
.artist { background: var(--bg-cream); }
.artist__grid {
  display: grid;
  grid-template-columns: minmax(0, 200px) minmax(0, 560px);
  gap: clamp(36px, 6vw, 70px);
  justify-content: center;
  align-items: start;
}
.artist__media {
  display: flex;
  justify-content: center;
  padding-top: 38px;
}
.artist__image-wrap {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 200 / 260;
  overflow: hidden;
  background: var(--bg-beige);
  box-shadow: var(--shadow-soft);
}
.artist__image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.artist__title {
  font-size: 48px;
  line-height: 1.1;
  margin: 6px 0 30px;
}
.artist__bio {
  margin: 0 0 40px;
  max-width: 520px;
}
.jury {
  border-left: 1px solid var(--accent-soft);
  padding: 8px 0 8px 22px;
}
.jury__label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
}
.jury__row {
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--text-dark);
  padding: 6px 0;
  font-weight: 400;
}
.jury__dash {
  color: var(--accent-soft);
  margin: 0 10px;
}
.jury__country {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 500;
}

/* =========================================================
   Final CTA
   ========================================================= */
.final-cta {
  background: var(--bg-pink);
  text-align: center;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px var(--container-pad);
}
.final-cta__title {
  font-size: 68px;
  line-height: 1.18;
  font-weight: 400;
  margin: 8px 0 30px;
}
.final-cta__subtext {
  max-width: 620px;
  margin: 0 auto 48px;
}

/* =========================================================
   Chat fallback card (only when the chat widget is blocked)
   ========================================================= */
.chat-fallback[hidden] { display: none; }
.chat-fallback {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: min(340px, calc(100vw - 32px));
  background: var(--bg-cream);
  border: 1px solid var(--header-border);
  box-shadow: var(--shadow-soft);
  padding: 26px 24px 22px;
  font-family: var(--font-sans);
}
.chat-fallback__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.chat-fallback__close:hover { color: var(--accent); }
.chat-fallback__text {
  margin: 0 6px 6px 0;
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.55;
}
.chat-fallback__lead {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5;
}
.chat-fallback__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s ease;
}
.chat-fallback__wa:hover { background: #20BD5A; }
.chat-fallback__wa-icon { display: inline-flex; }
.chat-fallback__wa-icon svg { display: block; }
@media (max-width: 700px) {
  .chat-fallback { right: 12px; left: 12px; bottom: 12px; width: auto; }
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--bg-cream);
  text-align: center;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid var(--header-border);
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1400px), (min-width: 1101px) and (max-height: 900px) {
  :root { --header-h: 78px; }
  .hero { padding: 20px 0 22px; }
  .hero__image-wrap { max-width: 405px; }
  .hero__caption { margin-top: 8px; font-size: 11px; line-height: 1.35; }
  .hero__title { font-size: 46px; }
  .proof { min-height: 170px; }
  .proof__grid { padding: 24px 0; }
  .proof__item { gap: 14px; min-height: 122px; }
  .proof__icon { width: 38px; height: 38px; }
  .proof__text { font-size: 17px; line-height: 1.45; }
  .artist__image-wrap { max-width: 180px; }
}
@media (max-width: 1100px) {
  :root { --container-pad: 36px; --section-pad: 96px; }
  .navbar__inner { padding: 0 36px; }
}
@media (max-width: 768px) {
  .hero__grid, .artist__grid {
    grid-template-columns: 1fr;
    gap: 56px;
    justify-content: stretch;
  }
  .hero__image-wrap { max-width: 460px; margin: 0 auto; }
  .artist__image-wrap { max-width: 200px; margin: 0 auto; }
  .artist__media { padding-top: 0; }
  .hero__media { display: flex; justify-content: center; flex-direction: column; align-items: center; }
  .hero__caption { text-align: center; }
  .gallery__thumbs { justify-content: center; }
  .hero__subtext { max-width: 100%; }
}
@media (max-width: 700px) {
  :root { --container-pad: 22px; --section-pad: 72px; --header-h: 76px; }
  .navbar__inner { padding: 0 22px; }
  .navbar__brand { font-size: 18px; }
  .btn--outline { padding: 11px 20px; font-size: 10px; }
  .hero { padding: 40px 0 64px; }
  .hero__title { font-size: 38px; }
  .artist__title { font-size: 38px; }
  .final-cta { min-height: 440px; }
  .final-cta__title { font-size: 42px; }
  .btn--filled { min-width: 220px; padding: 20px 32px; }
  .proof__grid {
    grid-template-columns: 1fr;
    padding: 32px var(--container-pad);
  }
  .proof__item {
    border-left: none;
    border-top: 1px solid var(--proof-divider);
    padding: 28px 0;
  }
  .proof__item + .proof__item::before { display: none; }
  .proof__item:first-child { border-top: none; }
  .proof__text { font-size: 17px; max-width: 290px; }
}
