:root {
  --wine: #5b2135;
  --wine-dark: #35101f;
  --wine-soft: #7b3850;
  --gold: #c79b56;
  --cream: #f7f0e8;
  --paper: #fffdf9;
  --ink: #241d20;
  --muted: #71656a;
  --border: rgba(91, 33, 53, 0.16);
  --shadow: 0 22px 60px rgba(53, 16, 31, 0.14);
  --shadow-soft: 0 12px 34px rgba(53, 16, 31, 0.09);
  --radius: 22px;
  --container: 1160px;
  --header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}
body.lightbox-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 300;
  padding: 10px 16px;
  color: #fff;
  background: var(--wine);
  border-radius: 10px;
}
.skip-link:focus { top: 18px; }

.container { width: min(calc(100% - 36px), var(--container)); margin-inline: auto; }
.section { padding: 100px 0; }
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .18em;
}
.section-heading { max-width: 720px; margin: 0 auto 46px; text-align: center; }
.section-heading h2,
.about-title h2,
.faq-intro h2,
.closing-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.12;
  font-weight: 500;
  text-wrap: balance;
}
.section-heading > p:last-child,
.faq-intro > p:last-child { margin: 16px auto 0; color: var(--muted); }

/* Intro */
.page-intro {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  pointer-events: none;
  overflow: hidden;
}
.curtain {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 51%;
  background:
    linear-gradient(90deg, rgba(255,255,255,.06), transparent 30%, rgba(0,0,0,.08) 70%, transparent),
    var(--wine-dark);
  transition: transform .9s cubic-bezier(.7,0,.2,1) .55s;
}
.curtain--left { left: 0; transform-origin: left; }
.curtain--right { right: 0; transform-origin: right; }
.intro-mark {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 126px;
  height: 126px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  transition: opacity .35s ease .42s, transform .35s ease .42s;
}
.intro-mark span { font-family: Georgia, serif; font-size: 2.6rem; }
.intro-mark small { margin-top: -24px; color: #ead8c2; font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
body.intro-done .curtain--left { transform: translateX(-101%); }
body.intro-done .curtain--right { transform: translateX(101%); }
body.intro-done .intro-mark { opacity: 0; transform: scale(.84); }
body.intro-finished .page-intro { display: none; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(255, 253, 249, .92);
  border-bottom: 1px solid rgba(91,33,53,.1);
  backdrop-filter: blur(16px);
}
.navbar {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.logo { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; }
.logo__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--wine-soft), var(--wine-dark));
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1.05rem;
  box-shadow: 0 10px 24px rgba(91,33,53,.2);
}
.logo__text { font-family: Georgia, serif; font-size: 1.12rem; white-space: nowrap; }
.nav-menu { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.nav-link {
  display: inline-flex;
  padding: 10px 9px;
  border-radius: 10px;
  color: #4b4145;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .045em;
  transition: color .2s ease, background .2s ease;
}
.nav-link:hover,
.nav-link.active { color: var(--wine); background: rgba(91,33,53,.08); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--wine); }

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  padding-top: 78px;
  padding-bottom: 84px;
  background:
    radial-gradient(circle at 14% 18%, rgba(199,155,86,.22), transparent 27%),
    radial-gradient(circle at 90% 20%, rgba(123,56,80,.16), transparent 30%),
    linear-gradient(135deg, #fffaf5 0%, #f5e9df 52%, #efe1e4 100%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 100px;
  background: linear-gradient(to top, var(--paper), transparent);
}
.hero__ornament { position: absolute; border: 1px solid rgba(91,33,53,.13); border-radius: 50%; }
.hero__ornament--one { width: 420px; height: 420px; right: -180px; top: 50px; }
.hero__ornament--two { width: 190px; height: 190px; left: -70px; bottom: 40px; }
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, .98fr);
  align-items: center;
  gap: 76px;
}
.hero h1 {
  margin: 0;
  color: var(--wine-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.4vw, 5rem);
  line-height: .98;
  font-weight: 500;
  letter-spacing: -.035em;
}
.hero__lead { max-width: 650px; margin: 24px 0 0; color: #4f4348; font-family: Georgia, serif; font-size: clamp(1.18rem, 2vw, 1.55rem); line-height: 1.48; }
.hero__quote { margin: 25px 0 0; padding-left: 18px; border-left: 3px solid var(--gold); color: var(--wine); font-size: 1rem; font-style: italic; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { color: #fff; background: var(--wine); box-shadow: 0 14px 30px rgba(91,33,53,.23); }
.btn--secondary { color: var(--wine); border-color: rgba(91,33,53,.28); background: rgba(255,255,255,.55); }
.btn--outline { color: var(--wine); border-color: var(--wine); background: transparent; }
.btn--light { color: var(--wine-dark); background: #fff; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 28px; color: #6b5d63; font-size: .86rem; font-weight: 750; }
.hero__meta span { position: relative; }
.hero__meta span:not(:last-child)::after { content: "•"; position: absolute; right: -13px; color: var(--gold); }
.hero__visual { position: relative; min-height: 590px; }
.portrait-frame {
  position: absolute;
  inset: 12px 34px 26px 18px;
  padding: 14px;
  border: 1px solid rgba(91,33,53,.18);
  border-radius: 46% 46% 24px 24px;
  background: rgba(255,255,255,.62);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; border-radius: 43% 43% 16px 16px; }
.character-sticker {
  position: absolute;
  left: -28px;
  bottom: 48px;
  width: 164px;
  padding: 10px;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transform: rotate(-5deg);
}
.character-sticker img { width: 100%; border-radius: 17px; }
.hero-card {
  position: absolute;
  right: -12px;
  bottom: 4px;
  width: 255px;
  padding: 19px 21px;
  color: #fff;
  background: rgba(53,16,31,.93);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.hero-card strong { display: block; font-family: Georgia, serif; font-size: 1.16rem; }
.hero-card span { display: block; margin-top: 4px; color: #ead9df; font-size: .78rem; }

/* About */
.about-section { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; }
.about-title { position: sticky; top: calc(var(--header-height) + 35px); }
.about-title h2 { color: var(--wine-dark); }
.title-line { width: 90px; height: 3px; margin-top: 27px; background: var(--gold); }
.about-copy { color: var(--muted); font-size: 1.03rem; }
.about-copy p { margin: 0 0 18px; }
.about-copy__lead { color: var(--ink); font-family: Georgia, serif; font-size: 1.35rem; line-height: 1.55; }
.journey-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; margin-top: 66px; }
.journey-card {
  position: relative;
  min-height: 240px;
  padding: 31px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.journey-card::after { content: ""; position: absolute; width: 120px; height: 120px; right: -50px; bottom: -50px; border-radius: 50%; background: rgba(199,155,86,.14); }
.journey-card__number { color: var(--gold); font-family: Georgia, serif; font-size: 2rem; }
.journey-card h3 { margin: 16px 0 8px; color: var(--wine); font-family: Georgia, serif; font-size: 1.35rem; }
.journey-card p { margin: 0; color: var(--muted); }

/* Works */
.works-section { background: var(--cream); }
.works-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.work-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid rgba(91,33,53,.11);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.work-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.work-card__image { aspect-ratio: 4/4.7; overflow: hidden; background: #eee5df; }
.work-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.work-card:hover .work-card__image img { transform: scale(1.03); }
.work-card__content { padding: 27px; }
.work-card__tag { display: inline-block; margin-bottom: 10px; color: var(--gold); font-size: .72rem; font-weight: 900; letter-spacing: .15em; }
.work-card h3 { margin: 0; color: var(--wine-dark); font-family: Georgia, serif; font-size: 1.48rem; line-height: 1.25; }
.work-card p { margin: 13px 0 0; color: var(--muted); }

.books-series {
  margin-top: 34px;
  padding: 30px;
  border: 1px solid rgba(91,33,53,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-soft);
}
.books-series__intro h3 {
  margin: 0;
  color: var(--wine-dark);
  font-family: Georgia, serif;
  font-size: 1.9rem;
}
.books-series__intro p { margin: 10px 0 0; color: var(--muted); }
.books-series__list {
  margin: 20px 0 0;
  padding-left: 22px;
  display: grid;
  gap: 12px;
  color: var(--ink);
}
.books-series__list li {
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(91,33,53,.09);
}

/* Manifesto */
.manifesto-section {
  position: relative;
  padding: 112px 0;
  color: #fff;
  background:
    linear-gradient(rgba(53,16,31,.92), rgba(53,16,31,.94)),
    url("img/gallery/gallery-10.webp") center/cover no-repeat;
  overflow: hidden;
}
.manifesto-section::before { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(255,255,255,.17); }
.manifesto-grid { position: relative; z-index: 1; max-width: 940px; text-align: center; }
.manifesto-mark { height: 70px; color: var(--gold); font-family: Georgia, serif; font-size: 7rem; line-height: 1; }
.manifesto-quote { margin: 12px auto 0; font-family: Georgia, serif; font-size: clamp(1.45rem, 3vw, 2.35rem); line-height: 1.55; font-weight: 400; }
.manifesto-author { margin: 26px 0 0; color: #e7ccd5; font-weight: 800; letter-spacing: .08em; }

/* Characters */
.characters-section { background: #fffaf5; }
.character-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 16px; align-items: stretch; }
.character-card {
  margin: 0;
  padding: 13px 13px 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transform-origin: center bottom;
  transition: transform .25s ease;
}
.character-card:nth-child(2n) { transform: rotate(1.6deg); }
.character-card:nth-child(2n+1) { transform: rotate(-1.2deg); }
.character-card:hover { transform: rotate(0) translateY(-6px); }
.character-card img { width: 100%; aspect-ratio: 1/1.05; object-fit: contain; border-radius: 14px; background: #fbf7f3; }
.character-card figcaption { margin-top: 14px; color: var(--wine); font-family: Georgia, serif; font-weight: 700; text-align: center; }

/* Video */
.video-section { background: var(--paper); }
.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 25px; }
.video-card { border: 1px solid var(--border); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-soft); overflow: hidden; }
.video-frame { aspect-ratio: 16/9; display: grid; place-items: center; background: #1d1217; overflow: hidden; }
.video-frame--portrait { background: linear-gradient(135deg, #2a171f, #6b3348); }
.video-frame video { width: 100%; height: 100%; object-fit: contain; }
.video-card__content { padding: 25px 27px 28px; }
.video-card__content span { color: var(--gold); font-size: .72rem; font-weight: 900; letter-spacing: .14em; }
.video-card__content h3 { margin: 8px 0 7px; color: var(--wine); font-family: Georgia, serif; font-size: 1.45rem; }
.video-card__content p { margin: 0; color: var(--muted); }

/* Gallery */
.gallery-section { background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.gallery-item {
  position: relative;
  aspect-ratio: 4/5;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: #e8ddd5;
  box-shadow: 0 8px 24px rgba(53,16,31,.08);
  overflow: hidden;
  cursor: zoom-in;
}
.gallery-item:nth-child(6n+1),
.gallery-item:nth-child(6n+4) { aspect-ratio: 1/1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .45s ease; }
.gallery-item::after {
  content: "BÜYÜT";
  position: absolute;
  inset: auto 12px 12px;
  padding: 8px 10px;
  color: #fff;
  background: rgba(53,16,31,.78);
  border-radius: 999px;
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}
.gallery-item:hover img { transform: scale(1.055); filter: saturate(1.05); }
.gallery-item:hover::after { opacity: 1; transform: none; }
.gallery-actions { display: flex; justify-content: center; margin-top: 35px; }

/* FAQ */
.faq-section { background: #fff; }
.faq-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 68px; align-items: start; }
.faq-intro h2 { color: var(--wine-dark); }
.faq-list { display: grid; gap: 13px; }
.faq-item { border: 1px solid var(--border); border-radius: 16px; background: #fff; overflow: hidden; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}
.faq-question span { flex: 0 0 30px; height: 30px; display: grid; place-items: center; color: #fff; background: var(--wine); border-radius: 50%; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-answer p { overflow: hidden; margin: 0; padding: 0 22px; color: var(--muted); transition: padding .3s ease; }
.faq-item.active .faq-answer { grid-template-rows: 1fr; }
.faq-item.active .faq-answer p { padding: 0 22px 22px; }
.faq-item.active { box-shadow: var(--shadow-soft); }

/* Contact */
.contact-section { background: #fffaf6; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.contact-card {
  padding: 26px 24px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.contact-card__label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
}
.contact-card h3 {
  margin: 0;
  color: var(--wine-dark);
  font-family: Georgia, serif;
  font-size: 1.28rem;
  line-height: 1.32;
  word-break: break-word;
}
.contact-card h3 a { text-decoration: underline; text-decoration-thickness: .08em; text-underline-offset: .14em; }
.contact-card p { margin: 10px 0 0; color: var(--muted); }

/* Closing + footer */
.closing-section { padding: 0 0 90px; background: #fff; }
.closing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 48px 52px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 15%, rgba(199,155,86,.23), transparent 30%),
    linear-gradient(135deg, var(--wine-dark), var(--wine));
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.closing-card h2 { max-width: 700px; color: #fff; font-size: clamp(1.9rem, 3.6vw, 3rem); }
.closing-card p:not(.section-kicker) { max-width: 720px; margin: 13px 0 0; color: #eadbe0; }
.site-footer { color: #eadfe3; background: #241219; }
.footer-grid { display: flex; justify-content: space-between; gap: 50px; padding: 60px 0 36px; }
.logo--footer { color: #fff; }
.footer-brand p { max-width: 480px; margin: 17px 0 0; color: #bfaeb4; }
.footer-links { display: grid; grid-template-columns: repeat(2, auto); gap: 10px 25px; align-content: start; }
.footer-links a { color: #d9c9cf; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 20px 0 28px; border-top: 1px solid rgba(255,255,255,.1); color: #a9959d; font-size: .88rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #fff; font-weight: 800; }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 12px 12px;
  color: #fff;
  background: #25d366;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(10, 120, 55, .28);
}
.whatsapp-float:hover { transform: translateY(-2px); }
.whatsapp-float__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
}
.whatsapp-float__icon svg { width: 24px; height: 24px; }
.whatsapp-float__text { font-size: .95rem; font-weight: 900; letter-spacing: .01em; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  padding: 30px 76px;
  background: rgba(20,8,13,.93);
  backdrop-filter: blur(10px);
}
.lightbox[hidden] { display: none; }
.lightbox figure { max-width: min(100%, 1050px); max-height: 88vh; margin: 0; display: grid; place-items: center; }
.lightbox img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 14px; box-shadow: 0 24px 70px rgba(0,0,0,.4); }
.lightbox figcaption { margin-top: 14px; color: #e9dde1; text-align: center; }
.lightbox__close,
.lightbox__nav {
  position: absolute;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.08);
  cursor: pointer;
}
.lightbox__close { top: 20px; right: 22px; font-size: 2rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); font-size: 2.2rem; }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal--delay { transition-delay: .11s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1060px) {
  .nav-link { padding-inline: 7px; font-size: .67rem; }
  .hero__grid { gap: 42px; grid-template-columns: 1fr .9fr; }
  .hero__visual { min-height: 530px; }
  .character-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
  :root { --header-height: 70px; }
  .section { padding: 78px 0; }
  .menu-toggle { display: block; }
  .nav-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 18px;
    right: 18px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 0 0 18px 18px;
    background: rgba(255,253,249,.98);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: .2s ease;
  }
  .nav-menu.open { opacity: 1; visibility: visible; transform: none; }
  .nav-link { width: 100%; padding: 11px 12px; }
  .hero { min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: 560px; max-width: 560px; width: 100%; margin-inline: auto; }
  .about-grid,
  .faq-grid { grid-template-columns: 1fr; gap: 35px; }
  .about-title { position: static; }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-card { min-height: auto; }
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .works-grid .work-card:last-child { grid-column: 1 / -1; max-width: 520px; margin-inline: auto; }
  .video-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .closing-card { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section { padding: 65px 0; }
  .logo__text { font-size: 1rem; }
  .hero { padding-top: 54px; padding-bottom: 58px; }
  .hero h1 { font-size: clamp(2.8rem, 16vw, 4.2rem); }
  .hero__lead { font-size: 1.12rem; }
  .hero__meta { display: grid; gap: 4px; }
  .hero__meta span::after { display: none; }
  .hero__visual { min-height: 450px; }
  .portrait-frame { inset: 0 12px 24px; }
  .character-sticker { width: 118px; left: -2px; bottom: 35px; }
  .hero-card { width: 210px; right: 0; padding: 15px 17px; }
  .hero-card strong { font-size: 1rem; }
  .works-grid { grid-template-columns: 1fr; }
  .works-grid .work-card:last-child { grid-column: auto; max-width: none; }
  .character-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .character-card:last-child { grid-column: 1 / -1; width: calc(50% - 6px); justify-self: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-item,
  .gallery-item:nth-child(6n+1),
  .gallery-item:nth-child(6n+4) { aspect-ratio: 4/5; border-radius: 14px; }
  .manifesto-section { padding: 82px 0; }
  .manifesto-quote { font-size: 1.35rem; line-height: 1.55; }
  .closing-section { padding-bottom: 55px; }
  .closing-card { padding: 34px 25px; border-radius: 22px; }
  .footer-grid,
  .footer-bottom { flex-direction: column; }
  .footer-grid { padding-top: 45px; }
  .footer-bottom { gap: 8px; }
  .footer-links { grid-template-columns: 1fr; }
  .lightbox { padding: 72px 12px 28px; }
  .lightbox__nav { width: 42px; height: 42px; top: auto; bottom: 16px; transform: none; }
  .lightbox__nav--prev { left: calc(50% - 52px); }
  .lightbox__nav--next { right: calc(50% - 52px); }
  .whatsapp-float { right: 12px; bottom: 12px; padding-right: 14px; }
  .whatsapp-float__text { font-size: .88rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .page-intro { display: none; }
  .reveal { opacity: 1; transform: none; }
}
