/*
Theme Name: Andrzej Walter 2026
Theme URI: https://andrzejwalter.pl/
Author: Andrzej Walter / modernizacja 2026
Description: Lekki, responsywny motyw autorski zachowujący dotychczasowe działy: blog, poezję, publicystykę, fotografię i recenzje.
Version: 1.0.2
Requires at least: 6.4
Requires PHP: 7.4
Text Domain: andrzej-walter-2026
*/

:root {
  --aw-black: #0b0b0c;
  --aw-charcoal: #171719;
  --aw-ink: #242427;
  --aw-text: #55545a;
  --aw-muted: #8a8990;
  --aw-line: #e6e3df;
  --aw-paper: #fbfaf8;
  --aw-white: #ffffff;
  --aw-gold: #b79653;
  --aw-gold-dark: #8d713c;
  --aw-radius: 2px;
  --aw-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  --aw-container: 1180px;
  --aw-reading: 760px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--aw-paper);
  color: var(--aw-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: var(--aw-ink); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--aw-gold-dark); }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.screen-reader-text:focus {
  clip: auto !important;
  width: auto; height: auto;
  top: 8px; left: 8px;
  padding: 12px 16px;
  background: #fff;
  color: #000;
  z-index: 99999;
}

.aw-container { width: min(calc(100% - 40px), var(--aw-container)); margin-inline: auto; }
.aw-reading { width: min(calc(100% - 40px), var(--aw-reading)); margin-inline: auto; }
.aw-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--aw-gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.aw-kicker::before { content: ""; width: 42px; height: 1px; background: currentColor; }
.aw-section { padding: clamp(72px, 9vw, 124px) 0; }
.aw-section__head { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.aw-section__title {
  margin: 0;
  color: var(--aw-ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
}
.aw-section__title::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin: 26px auto 0;
  background: var(--aw-gold);
}
.aw-section__lead { max-width: 670px; margin: 24px auto 0; color: var(--aw-muted); font-family: Georgia, "Times New Roman", serif; font-size: 1.12rem; }
.aw-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--aw-ink);
  border-radius: var(--aw-radius);
  background: transparent;
  color: var(--aw-ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.aw-button:hover { background: var(--aw-ink); color: var(--aw-white); border-color: var(--aw-ink); }
.aw-button--light { color: var(--aw-white); border-color: rgba(255,255,255,.72); }
.aw-button--light:hover { background: var(--aw-white); color: var(--aw-black); border-color: var(--aw-white); }

/* Header */
.site-header {
  position: relative;
  z-index: 40;
  background: var(--aw-black) url("assets/images/header.jpg") center / cover no-repeat;
  color: #fff;
}
.site-header__bar {
  min-height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.site-branding { flex: 0 0 auto; }
.site-branding__link { display: inline-block; color: #fff; text-decoration: none; }
.site-branding__name { display: block; font-size: clamp(1.36rem, 2.2vw, 1.8rem); font-weight: 750; letter-spacing: -0.03em; line-height: 1; }
.site-branding__tagline { display: block; margin-top: 8px; color: var(--aw-gold); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; }
.site-nav { margin-left: auto; }
.site-nav ul { display: flex; align-items: center; gap: clamp(14px, 1.7vw, 28px); margin: 0; padding: 0; list-style: none; }
.site-nav a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid transparent;
  color: rgba(255,255,255,.72);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav .current-menu-item > a,
.site-nav .current-menu-parent > a,
.site-nav a:hover { color: #fff; border-bottom-color: var(--aw-gold); }
.nav-toggle {
  display: none;
  width: 46px; height: 42px;
  align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.28);
  background: transparent;
  color: #fff;
}
.nav-toggle__lines, .nav-toggle__lines::before, .nav-toggle__lines::after {
  display: block; width: 20px; height: 1px; background: currentColor; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle__lines { position: relative; }
.nav-toggle__lines::before, .nav-toggle__lines::after { content: ""; position: absolute; left: 0; }
.nav-toggle__lines::before { top: -6px; }
.nav-toggle__lines::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__lines { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__lines::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__lines::after { transform: translateY(-6px) rotate(-45deg); }

/* Hero */
.aw-hero {
  min-height: clamp(520px, 70vh, 690px);
  display: grid;
  align-items: center;
  background: #09090a url("assets/images/hero.jpg") center / cover no-repeat;
  color: #fff;
  position: relative;
}
.aw-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,5,6,.9) 0%, rgba(5,5,6,.5) 44%, rgba(5,5,6,.08) 74%, rgba(5,5,6,.22) 100%);
}
.aw-hero__inner { position: relative; z-index: 1; padding: 78px 0 96px; }
.aw-hero__content { max-width: 590px; }
.aw-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: .92;
}
.aw-hero__role { margin: 22px 0 0; color: var(--aw-gold); font-size: clamp(.9rem, 1.5vw, 1.08rem); font-weight: 650; letter-spacing: .14em; text-transform: uppercase; }
.aw-hero__text { max-width: 550px; margin: 28px 0 0; color: rgba(255,255,255,.75); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.05rem, 2vw, 1.26rem); line-height: 1.75; }
.aw-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.aw-hero__signature { width: 176px; margin-top: 32px; opacity: .78; filter: brightness(1.45); }

/* Home area links */
.aw-areas { background: #fff; border-bottom: 1px solid var(--aw-line); }
.aw-areas__grid { display: grid; grid-template-columns: repeat(4, 1fr); border-left: 1px solid var(--aw-line); }
.aw-area {
  min-height: 225px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  border-right: 1px solid var(--aw-line);
  color: var(--aw-ink);
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.aw-area:hover { background: var(--aw-ink); color: #fff; }
.aw-area__number { color: var(--aw-gold); font-size: .72rem; font-weight: 800; letter-spacing: .18em; }
.aw-area__title { margin: 28px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.45rem, 2.5vw, 2rem); font-weight: 400; line-height: 1.15; }
.aw-area__more { margin-top: 26px; color: inherit; font-size: .73rem; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; }

/* Posts */
.aw-posts-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px; }
.aw-post-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 46px);
  background: #fff;
  border: 1px solid var(--aw-line);
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.aw-post-card:first-child { grid-column: 1 / -1; min-height: 365px; }
.aw-post-card:hover { transform: translateY(-3px); border-color: #d7d1ca; box-shadow: var(--aw-shadow); }
.aw-post-card__meta { margin-bottom: 24px; color: var(--aw-gold-dark); font-size: .72rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.aw-post-card__title { margin: 0; color: var(--aw-ink); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.7rem, 3.3vw, 2.65rem); font-weight: 400; line-height: 1.13; }
.aw-post-card:not(:first-child) .aw-post-card__title { font-size: clamp(1.5rem, 2.5vw, 2.05rem); }
.aw-post-card__title a { color: inherit; text-decoration: none; }
.aw-post-card__excerpt { max-width: 760px; margin: 22px 0 0; color: var(--aw-muted); font-family: Georgia, "Times New Roman", serif; font-size: 1.02rem; }
.aw-post-card__link { margin-top: auto; padding-top: 28px; color: var(--aw-ink); font-size: .73rem; font-weight: 750; letter-spacing: .11em; text-decoration: none; text-transform: uppercase; }
.aw-section__actions { margin-top: 42px; text-align: center; }

/* Photography */
.aw-photo-section {
  background: #111 url("assets/images/photo-bg.jpg") center / cover fixed;
  color: #ddd;
}
.aw-photo-section .aw-section__title { color: #fff; }
.aw-photo-section .aw-section__lead { color: rgba(255,255,255,.66); }
.aw-photo-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.aw-photo {
  aspect-ratio: 4 / 3;
  display: block;
  overflow: hidden;
  background: #222;
}
.aw-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: transform .45s ease, filter .3s ease, opacity .3s ease; }
.aw-photo:hover img { transform: scale(1.035); filter: grayscale(25%); opacity: .88; }
.aw-photo-placeholder { display: grid; place-items: center; min-height: 220px; border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.5); font-family: Georgia, serif; text-align: center; }

/* Bio */
.aw-bio { background: #fff; }
.aw-bio__grid { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); align-items: center; gap: clamp(46px, 8vw, 110px); }
.aw-bio__portrait { min-height: 460px; background: #111 url("assets/images/hero.jpg") 72% center / auto 100% no-repeat; box-shadow: var(--aw-shadow); }
.aw-bio__content h2 { margin: 0; color: var(--aw-ink); font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.2rem, 4vw, 3.7rem); font-weight: 400; line-height: 1.08; }
.aw-bio__content p { margin: 26px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.08rem; }
.aw-bio__content .aw-button { margin-top: 30px; }

/* Inner page header */
.aw-page-hero { padding: clamp(72px, 10vw, 126px) 0; background: #101011 url("assets/images/header.jpg") center / cover no-repeat; color: #fff; }
.aw-page-hero__title { max-width: 920px; margin: 0; color: #fff; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 400; letter-spacing: -.045em; line-height: 1.03; }
.aw-page-hero__meta { margin-top: 20px; color: var(--aw-gold); font-size: .76rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.aw-page-hero__description { max-width: 680px; margin: 22px 0 0; color: rgba(255,255,255,.68); font-family: Georgia, serif; font-size: 1.1rem; }

/* Content */
.aw-main { min-height: 55vh; }
.aw-content-wrap { padding: clamp(64px, 8vw, 112px) 0; }
.entry-content {
  color: #4f4e53;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.04rem, 1.5vw, 1.17rem);
  line-height: 1.92;
}
.entry-content > * { max-width: var(--aw-reading); margin-left: auto; margin-right: auto; }
.entry-content > .alignwide { max-width: 1080px; }
.entry-content > .alignfull { max-width: none; width: 100%; }
.entry-content p, .entry-content ul, .entry-content ol, .entry-content blockquote { margin-top: 0; margin-bottom: 1.45em; }
.entry-content h2, .entry-content h3, .entry-content h4 { max-width: var(--aw-reading); margin-top: 2.1em; margin-bottom: .7em; color: var(--aw-ink); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; line-height: 1.2; }
.entry-content h2 { font-size: 1.75rem; }
.entry-content h3 { font-size: 1.38rem; }
.entry-content blockquote { padding: 3px 0 3px 28px; border-left: 2px solid var(--aw-gold); color: #68666c; font-size: 1.14em; font-style: italic; }
.entry-content img { border-radius: 1px; }
.entry-content figure { margin-top: 2.2em; margin-bottom: 2.2em; }
.entry-content figcaption { margin-top: 10px; color: var(--aw-muted); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; font-size: .78rem; text-align: center; }
.entry-content .gallery { max-width: 1120px; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; }
.entry-content .gallery-item { width: auto !important; margin: 0 !important; }
.entry-content .gallery-icon { height: 100%; }
.entry-content .gallery img { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; border: 0 !important; }
.entry-footer { width: min(calc(100% - 40px), var(--aw-reading)); margin: 50px auto 0; padding-top: 26px; border-top: 1px solid var(--aw-line); color: var(--aw-muted); font-size: .78rem; }

/* Subpages */
.aw-subnav { background: #efede9; border-bottom: 1px solid #e0dcd6; }
.aw-subnav ul { display: flex; flex-wrap: wrap; gap: 8px 30px; margin: 0; padding: 14px 0; list-style: none; }
.aw-subnav a { color: #6c696f; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.aw-subnav .current_page_item a, .aw-subnav a:hover { color: var(--aw-ink); }

/* Archives */
.aw-archive { padding: clamp(62px, 8vw, 108px) 0; }
.aw-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--aw-line); }
.aw-list__item { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 30px; align-items: baseline; padding: 24px 0; border-bottom: 1px solid var(--aw-line); }
.aw-list__title { margin: 0; color: var(--aw-ink); font-family: Georgia, serif; font-size: clamp(1.18rem, 2.2vw, 1.55rem); font-weight: 400; line-height: 1.3; }
.aw-list__title a { color: inherit; text-decoration: none; }
.aw-list__meta { color: var(--aw-muted); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.aw-year { margin-top: 62px; }
.aw-year:first-child { margin-top: 0; }
.aw-year__head { display: flex; justify-content: space-between; align-items: end; gap: 25px; padding-bottom: 15px; border-bottom: 1px solid var(--aw-line); }
.aw-year__book { color: var(--aw-muted); font-size: .78rem; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; }
.aw-year__number { color: #cbc6bf; font-family: Georgia, serif; font-size: clamp(2.7rem, 6vw, 4.8rem); line-height: .9; }
.aw-poem-list { margin: 0; padding: 18px 0 0; list-style: none; columns: 2; column-gap: 55px; }
.aw-poem-list li { break-inside: avoid; margin-bottom: 13px; }
.aw-poem-list a { color: var(--aw-ink); font-family: Georgia, serif; font-size: 1.06rem; text-decoration: none; }
.aw-poem-list a:hover { text-decoration: underline; }
.aw-albums { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
.aw-album { background: #fff; border: 1px solid var(--aw-line); }
.aw-album__image { aspect-ratio: 4/3; display: block; overflow: hidden; background: #161616; }
.aw-album__image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: transform .3s ease, filter .3s ease; }
.aw-album:hover .aw-album__image img { transform: scale(1.025); filter: grayscale(35%); }
.aw-album__body { padding: 24px; }
.aw-album__title { margin: 0; color: var(--aw-ink); font-family: Georgia, serif; font-size: 1.35rem; font-weight: 400; line-height: 1.25; }
.aw-album__title a { color: inherit; text-decoration: none; }
.aw-album__count { display: block; margin-top: 10px; color: var(--aw-muted); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }

/* Blog archive */
.aw-blog-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 26px; }
.aw-blog-item { padding: 32px; background: #fff; border: 1px solid var(--aw-line); }
.aw-blog-item__meta { color: var(--aw-gold-dark); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.aw-blog-item h2 { margin: 16px 0 0; font-family: Georgia, serif; font-size: 1.75rem; font-weight: 400; line-height: 1.2; }
.aw-blog-item h2 a { color: var(--aw-ink); text-decoration: none; }
.aw-blog-item p { margin: 20px 0 0; color: var(--aw-muted); font-family: Georgia, serif; }

.navigation.pagination { margin-top: 48px; }
.nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.page-numbers { min-width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--aw-line); background: #fff; color: var(--aw-ink); text-decoration: none; }
.page-numbers.current, .page-numbers:hover { background: var(--aw-ink); color: #fff; border-color: var(--aw-ink); }

/* Search / empty */
.aw-empty { max-width: 680px; margin: 0 auto; text-align: center; }
.aw-empty h2 { color: var(--aw-ink); font-family: Georgia, serif; font-size: 2rem; font-weight: 400; }
.search-form { display: flex; max-width: 560px; margin: 28px auto 0; }
.search-field { min-width: 0; flex: 1; min-height: 48px; padding: 10px 14px; border: 1px solid #d6d1cb; background: #fff; }
.search-submit { min-height: 48px; padding: 10px 18px; border: 1px solid var(--aw-ink); background: var(--aw-ink); color: #fff; }

/* Footer */
.site-footer { background: #111113; color: rgba(255,255,255,.58); }
.site-footer__top { padding: 58px 0 36px; }
.site-footer__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: start; }
.site-footer__name { color: #fff; font-size: 1.25rem; font-weight: 700; }
.site-footer__text { max-width: 480px; margin: 15px 0 0; font-family: Georgia, serif; }
.site-footer__external { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.site-footer__external a { display: inline-flex; align-items: center; min-height: 38px; padding: 8px 13px; border: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.78); font-size: .69rem; font-weight: 700; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; transition: border-color .2s ease, color .2s ease, background .2s ease; }
.site-footer__external a:hover { border-color: var(--aw-gold); background: rgba(255,255,255,.035); color: #fff; }
.site-footer .site-nav { margin: 0; }
.site-footer .site-nav ul { justify-content: flex-end; flex-wrap: wrap; }
.site-footer__partners { display: flex; justify-content: center; align-items: center; gap: 42px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.07); border-bottom: 1px solid rgba(255,255,255,.07); }
.site-footer__partners img { max-height: 54px; width: auto; opacity: .45; filter: grayscale(100%); }
.site-footer__partners img:hover { opacity: .75; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 30px; padding: 24px 0 32px; font-size: .74rem; }
.site-footer a { color: rgba(255,255,255,.72); }

/* Lightbox */
.aw-lightbox { position: fixed; inset: 0; z-index: 9999; display: none; align-items: center; justify-content: center; padding: 28px; background: rgba(0,0,0,.92); }
.aw-lightbox.is-open { display: flex; }
.aw-lightbox__image { max-width: min(94vw, 1500px); max-height: 88vh; object-fit: contain; }
.aw-lightbox__close { position: absolute; top: 18px; right: 18px; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.35); background: transparent; color: #fff; font-size: 1.7rem; line-height: 1; }

@media (max-width: 960px) {
  .site-header__bar { min-height: 84px; }
  .nav-toggle { display: inline-flex; }
  .site-header .site-nav {
    position: fixed;
    inset: 84px 0 0;
    display: none;
    padding: 28px 20px;
    background: rgba(11,11,12,.985);
    overflow: auto;
  }
  .site-header .site-nav.is-open { display: block; }
  .site-header .site-nav ul { display: block; }
  .site-header .site-nav li { border-bottom: 1px solid rgba(255,255,255,.09); }
  .site-header .site-nav a { padding: 18px 0; font-size: .86rem; }
  .aw-areas__grid { grid-template-columns: repeat(2,1fr); border-bottom: 1px solid var(--aw-line); }
  .aw-photo-grid { grid-template-columns: repeat(2,1fr); }
  .aw-bio__grid { grid-template-columns: 1fr; }
  .aw-bio__portrait { min-height: 430px; background-position: 68% center; }
  .aw-albums { grid-template-columns: repeat(2,1fr); }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer .site-nav ul { justify-content: flex-start; }
}

@media (max-width: 680px) {
  .aw-container, .aw-reading { width: min(calc(100% - 28px), var(--aw-container)); }
  .site-branding__tagline { font-size: .66rem; }
  .aw-hero { min-height: 620px; background-position: 65% center; align-items: end; }
  .aw-hero::after { background: linear-gradient(0deg, rgba(5,5,6,.97) 0%, rgba(5,5,6,.78) 44%, rgba(5,5,6,.12) 100%); }
  .aw-hero__inner { padding: 210px 0 62px; }
  .aw-hero__content { max-width: none; }
  .aw-hero h1 { font-size: clamp(3rem, 17vw, 4.7rem); }
  .aw-hero__text { font-size: 1.03rem; }
  .aw-hero__signature { width: 130px; }
  .aw-areas__grid { grid-template-columns: 1fr; border-left: 0; }
  .aw-area { min-height: 175px; padding: 28px; border-left: 1px solid var(--aw-line); border-bottom: 1px solid var(--aw-line); }
  .aw-posts-grid, .aw-blog-grid { grid-template-columns: 1fr; }
  .aw-post-card:first-child { grid-column: auto; }
  .aw-post-card { min-height: 290px; }
  .aw-photo-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .aw-photo-section { background-attachment: scroll; }
  .aw-bio__portrait { min-height: 360px; }
  .aw-list__item { grid-template-columns: 1fr; gap: 7px; }
  .aw-list__meta { white-space: normal; }
  .aw-poem-list { columns: 1; }
  .aw-albums { grid-template-columns: 1fr; }
  .entry-content .gallery { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .site-footer__partners { flex-wrap: wrap; gap: 24px; }
  .site-footer__bottom { flex-direction: column; }
}
