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

:root {
  --blue: #0066cc;
  --blue-dark: #0071e3;
  --blue-sky: #2997ff;
  --ink: #1d1d1f;
  --ink-80: #333333;
  --ink-48: #7a7a7a;
  --body-muted: #cccccc;
  --canvas: #ffffff;
  --parchment: #f5f5f7;
  --pearl: #fafafc;
  --tile-dark: #272729;
  --tile-dark-2: #2a2a2c;
  --tile-dark-3: #252527;
  --surface-black: #000000;
  --on-dark: #ffffff;
  --hairline: #e0e0e0;
  --divider-soft: #f0f0f0;
  --chip-trans: #d2d2d7;
  --font: system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --max-w: 980px;
  --max-w-store: 1240px;
  --r-sm: 8px;
  --r-md: 11px;
  --r-lg: 18px;
  --r-pill: 9999px;
}

html { font-size: 17px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.47;
  letter-spacing: -0.374px;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide {
  width: 100%;
  max-width: var(--max-w-store);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-black);
  height: 64px;
  display: flex;
  align-items: center;
}

.hdr-inner {
  width: 100%;
  max-width: var(--max-w-store);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--on-dark);
  text-decoration: none;
  white-space: nowrap;
}
.brand a:hover { color: var(--blue-sky); text-decoration: none; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.main-nav a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.12px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 6px 14px;
  transition: color 0.12s;
  border-radius: var(--r-sm);
}
.main-nav a:hover { color: var(--on-dark); text-decoration: none; }
.main-nav a.active { color: var(--on-dark); }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none;
  cursor: pointer; padding: 10px;
}
.burger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--on-dark);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--tile-dark-3);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 4px 24px 12px;
}
.mobile-nav a {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--on-dark); }
.mobile-nav.open { display: flex; }

/* ── TILES — light & dark ── */
.tile-light {
  background: var(--canvas);
  padding: 80px 0;
}
.tile-parchment {
  background: var(--parchment);
  padding: 80px 0;
}
.tile-dark {
  background: var(--tile-dark);
  padding: 80px 0;
}
.tile-dark-2 {
  background: var(--tile-dark-2);
  padding: 80px 0;
}

/* ── HERO ── */
.hero {
  background: var(--tile-dark);
  padding: 96px 0 88px;
  text-align: center;
}
.hero .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-sky);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.28px;
  line-height: 1.07;
  color: var(--on-dark);
  max-width: 760px;
  margin: 0 auto 20px;
}
.hero .lead {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 400;
  line-height: 1.47;
  color: var(--body-muted);
  max-width: 580px;
  margin: 0 auto 36px;
  letter-spacing: 0;
}
.hero-ctas { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--on-dark) !important;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.374px;
  padding: 11px 22px;
  border-radius: var(--r-pill);
  text-decoration: none !important;
  transition: background 0.12s, transform 0.1s;
}
.btn-primary:hover { background: var(--blue-dark); }
.btn-primary:active { transform: scale(0.95); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--blue-sky) !important;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.374px;
  padding: 11px 22px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(41,151,255,0.4);
  text-decoration: none !important;
  transition: border-color 0.12s, transform 0.1s;
}
.btn-secondary:hover { border-color: rgba(41,151,255,0.8); }
.btn-secondary:active { transform: scale(0.95); }

.btn-sm {
  font-size: 14px;
  padding: 8px 18px;
}

/* ── SECTION LABELS ── */
.sec-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-48);
  margin-bottom: 12px;
}
.sec-label.on-dark { color: var(--blue-sky); }

.sec-h2 {
  font-size: clamp(22px, 3.5vw, 40px);
  font-weight: 600;
  letter-spacing: -0.374px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 10px;
}
.sec-h2.on-dark { color: var(--on-dark); }

.sec-sub {
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.47;
  color: var(--ink-48);
  margin-bottom: 32px;
  max-width: 560px;
}
.sec-sub.on-dark { color: var(--body-muted); }

/* ── FEATURED COVERAGE ── */
.feat-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  align-items: start;
}
.feat-primary {
  background: var(--tile-dark-2);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.feat-primary img { width: 100%; height: 260px; object-fit: cover; }
.feat-primary-body { padding: 28px; }
.feat-primary-body .art-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-sky);
  margin-bottom: 10px;
}
.feat-primary-body h2 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.374px;
  line-height: 1.2;
  color: var(--on-dark);
  margin-bottom: 10px;
}
.feat-primary-body p { font-size: 15px; color: var(--body-muted); line-height: 1.5; margin-bottom: 20px; }
.feat-secondary { display: flex; flex-direction: column; gap: 0; }
.feat-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.feat-item:last-child { border-bottom: none; }
.feat-item .art-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-sky);
  margin-bottom: 6px;
}
.feat-item h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.374px;
  line-height: 1.3;
  color: var(--on-dark);
  margin-bottom: 6px;
}
.feat-item h3 a { color: var(--on-dark); text-decoration: none; }
.feat-item h3 a:hover { color: var(--blue-sky); }
.feat-item p { font-size: 13px; color: var(--body-muted); line-height: 1.5; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item { border-radius: var(--r-sm); overflow: hidden; }
.gallery-item img { width: 100%; height: 180px; object-fit: cover; display: block; }
.gallery-cap {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.12px;
  line-height: 1.43;
  color: var(--ink-48);
  padding: 8px 0 4px;
}

/* ── CARD GRID ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.art-card {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s;
}
.art-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
.art-card .art-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-48);
  margin-bottom: 8px;
}
.art-card h2, .art-card h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.374px;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 8px;
}
.art-card h2 a, .art-card h3 a { color: var(--ink); text-decoration: none; }
.art-card h2 a:hover, .art-card h3 a:hover { color: var(--blue); }
.art-card p { font-size: 14px; line-height: 1.5; color: var(--ink-48); flex: 1; letter-spacing: -0.224px; }
.read-more { display: inline-block; margin-top: 16px; font-size: 14px; font-weight: 400; color: var(--blue); letter-spacing: -0.224px; }
.read-more:hover { text-decoration: underline; }

/* ── ARTICLE LAYOUT ── */
.article-wrap {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 56px;
  align-items: start;
  padding: 56px 0 80px;
}
.art-h1 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.374px;
  line-height: 1.1;
  color: var(--ink);
  margin: 24px 0 28px;
}
.art-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.art-meta-chip {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.12px;
  color: var(--ink-48);
  background: var(--parchment);
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  padding: 4px 11px;
}
.art-summary {
  background: var(--parchment);
  border-left: 3px solid var(--blue);
  padding: 18px 22px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: 24px 0 28px;
}
.art-summary-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-48);
  margin-bottom: 8px;
}
.art-summary p { font-size: 15px; line-height: 1.6; color: var(--ink); letter-spacing: -0.224px; margin: 0; }

.toc {
  background: var(--parchment);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 18px 20px;
  margin-bottom: 32px;
}
.toc-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-48);
  margin-bottom: 10px;
}
.toc ol { padding-left: 18px; }
.toc li { margin: 5px 0; }
.toc a { font-size: 14px; letter-spacing: -0.224px; color: var(--blue); text-decoration: none; }
.toc a:hover { text-decoration: underline; }

.art-body h2 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.374px;
  line-height: 1.2;
  color: var(--ink);
  margin: 36px 0 12px;
}
.art-body p { font-size: 17px; line-height: 1.47; color: var(--ink); letter-spacing: -0.374px; margin-bottom: 17px; }
.art-body a { color: var(--blue); }

.key-ctx {
  background: #e8f0fe;
  border: 1px solid #b8d0fc;
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin-bottom: 28px;
}
.key-ctx h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.key-ctx p { font-size: 15px; line-height: 1.6; color: var(--ink); margin-bottom: 0; letter-spacing: -0.224px; }

.not-covered {
  background: var(--parchment);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin: 32px 0;
}
.not-covered h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-48);
  margin-bottom: 10px;
}
.not-covered li { font-size: 14px; color: var(--ink-48); line-height: 1.7; letter-spacing: -0.224px; }

.related-sec { border-top: 1px solid var(--hairline); padding-top: 32px; margin-top: 40px; }
.related-sec h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-48);
  margin-bottom: 18px;
}
.rel-grid { display: flex; flex-direction: column; gap: 12px; }
.rel-item { padding-bottom: 12px; border-bottom: 1px solid var(--hairline); }
.rel-item:last-child { border-bottom: none; }
.rel-item .rel-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-48);
  margin-bottom: 4px;
}
.rel-item a { font-size: 15px; font-weight: 400; color: var(--blue); letter-spacing: -0.224px; text-decoration: none; }
.rel-item a:hover { text-decoration: underline; }

.art-sidebar { position: sticky; top: 80px; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: -0.12px;
  color: var(--ink-48);
  padding: 18px 0 0;
}
.breadcrumb a { color: var(--blue); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--chip-trans); }

/* ── PAGE HEADER ── */
.page-header {
  padding: 64px 0 36px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 48px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.page-header h1 {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 600;
  letter-spacing: -0.28px;
  line-height: 1.07;
  color: var(--ink);
  margin: 10px 0 14px;
}
.page-lead {
  font-size: 21px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.5;
  color: var(--ink-48);
  max-width: 560px;
}

/* ── PROSE ── */
.prose-body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 80px;
}
.prose-body h2 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.374px;
  color: var(--ink);
  margin: 36px 0 12px;
  line-height: 1.2;
}
.prose-body p { font-size: 17px; line-height: 1.47; color: var(--ink); letter-spacing: -0.374px; margin-bottom: 17px; }
.prose-body a { color: var(--blue); }
.prose-body ul, .prose-body ol { padding-left: 20px; margin-bottom: 17px; }
.prose-body li { font-size: 17px; line-height: 1.47; color: var(--ink); letter-spacing: -0.374px; margin-bottom: 6px; }

/* ── CONTACT ── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 80px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.224px;
  color: var(--ink);
}
.form-group input, .form-group textarea {
  font-family: var(--font);
  font-size: 17px;
  letter-spacing: -0.374px;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  padding: 11px 15px;
  transition: border-color 0.12s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.req { color: #dc2626; }
.contact-form .btn-submit {
  align-self: flex-start;
  background: var(--blue);
  color: var(--on-dark);
  font-family: var(--font);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.374px;
  padding: 11px 28px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: background 0.12s, transform 0.1s;
}
.contact-form .btn-submit:hover { background: var(--blue-dark); }
.contact-form .btn-submit:active { transform: scale(0.95); }
.contact-form .btn-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.form-conf {
  font-size: 15px;
  color: #165c27;
  background: #e6f4e8;
  border: 1px solid #b2dfbb;
  border-radius: var(--r-sm);
  padding: 12px 16px;
  letter-spacing: -0.224px;
}
.contact-info h3 { font-size: 15px; font-weight: 600; color: var(--ink); margin: 24px 0 8px; letter-spacing: -0.224px; }
.contact-info h3:first-child { margin-top: 0; }
.contact-info p { font-size: 14px; color: var(--ink-48); line-height: 1.6; letter-spacing: -0.224px; }

/* ── FOOTER ── */
.site-footer {
  background: var(--parchment);
}
.ft-wrap {
  max-width: var(--max-w-store);
  margin: 0 auto;
  padding: 0 24px;
}
.ft-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--hairline);
}
.ft-brand span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-80);
  letter-spacing: -0.224px;
  margin-bottom: 8px;
}
.ft-brand p {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.12px;
  line-height: 1.5;
  color: var(--ink-48);
}
.ft-cols { display: flex; gap: 48px; }
.ft-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.224px;
  color: var(--ink-80);
  margin-bottom: 12px;
}
.ft-col ul { list-style: none; }
.ft-col li { margin-bottom: 0; }
.ft-col a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.12px;
  line-height: 2.41;
  color: var(--ink-48);
  text-decoration: none;
  display: block;
}
.ft-col a:hover { color: var(--ink); text-decoration: underline; }
.ft-bottom {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
}
.ft-bottom p {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.12px;
  line-height: 1.5;
  color: var(--ink-48);
}
.ft-bottom a { color: var(--ink-48); text-decoration: underline; }
.ft-bottom a:hover { color: var(--ink); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: var(--surface-black);
  color: var(--on-dark);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  max-width: 560px;
  width: calc(100% - 32px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-banner p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; letter-spacing: -0.12px; }
.cookie-banner a { color: var(--blue-sky); }
.ck-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.btn-ck-accept {
  background: var(--blue);
  color: var(--on-dark);
  border: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.224px;
  padding: 8px 20px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background 0.12s;
}
.btn-ck-accept:hover { background: var(--blue-dark); }
.btn-ck-reject {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.224px;
  padding: 8px 20px;
  border-radius: var(--r-pill);
  cursor: pointer;
}
.btn-ck-reject:hover { border-color: rgba(255,255,255,0.5); color: var(--on-dark); }
.btn-ck-settings {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
  padding: 4px 8px;
}

/* ── COVERAGE ── */
.coverage-header {
  padding: 64px 0 40px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 48px;
}
.coverage-header h1 {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 600;
  letter-spacing: -0.28px;
  line-height: 1.07;
  color: var(--ink);
  margin: 8px 0 12px;
}
.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

/* ── ABOUT BAND ── */
.about-band {
  text-align: center;
  padding: 80px 24px;
}
.about-band h2 {
  font-size: clamp(22px, 3.5vw, 40px);
  font-weight: 600;
  letter-spacing: -0.374px;
  line-height: 1.1;
  color: var(--on-dark);
  max-width: 620px;
  margin: 0 auto 16px;
}
.about-band p {
  font-size: 21px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.5;
  color: var(--body-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 1068px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 833px) {
  .main-nav { display: none; }
  .burger { display: flex; }
  .feat-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .article-wrap { grid-template-columns: 1fr; gap: 32px; }
  .art-sidebar { position: static; }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .ft-top { grid-template-columns: 1fr; }
  .ft-cols { gap: 32px; }
}

@media (max-width: 640px) {
  .card-grid, .card-grid-2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .tile-light, .tile-parchment, .tile-dark, .tile-dark-2 { padding: 52px 0; }
  .hero { padding: 64px 0 56px; }
  .container, .prose-body { padding-left: 16px; padding-right: 16px; }
  .contact-wrap { padding-left: 16px; padding-right: 16px; }
  .ft-cols { flex-direction: column; gap: 24px; }
  .cookie-banner { bottom: 12px; padding: 14px 16px; }
}
