/* =========================================================
   СКЛАД 22 — дизайн-система
   Шрифт заголовков: Etude Noire (CC BY 4.0, автор Dimitri Antonov / Blue Curve Designstudio)
   ========================================================= */

@font-face {
  font-family: "Etude Noire";
  src: url("../fonts/EtudeNoire-Light.woff2") format("woff2"),
       url("../fonts/EtudeNoire-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Etude Noire";
  src: url("../fonts/EtudeNoire-Regular.woff2") format("woff2"),
       url("../fonts/EtudeNoire-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Etude Noire";
  src: url("../fonts/EtudeNoire-Medium.woff2") format("woff2"),
       url("../fonts/EtudeNoire-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Etude Noire";
  src: url("../fonts/EtudeNoire-Bold.woff2") format("woff2"),
       url("../fonts/EtudeNoire-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #100201;
  --ink-soft: #1c1613;
  --charcoal: #24201c;
  --paper: #f3ede1;
  --paper-dim: #e7ddc9;
  --amber: #fbba00;
  --amber-deep: #d99a00;
  --cream-text: #f3ede1;
  --muted-on-dark: #b9ae9c;
  --muted-on-light: #6f6656;
  --line-on-dark: rgba(243, 237, 225, 0.16);
  --line-on-light: rgba(16, 2, 1, 0.12);

  --font-display: "Etude Noire", "Arial Narrow", sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.01em;
  margin: 0;
  text-transform: uppercase;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--amber);
  display: inline-block;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--amber);
  color: var(--ink);
  padding: 12px 18px;
  font-weight: 700;
  z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--ink);
  border-bottom: 1px solid var(--line-on-dark);
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
.footer-col .logo img,
footer .logo img {
  height: 64px;
}

.nav-desktop { display: none; }
@media (min-width: 960px) {
  .nav-desktop {
    display: flex;
    gap: clamp(16px, 2vw, 34px);
  }
  .nav-desktop a {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--paper);
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
  }
  .nav-desktop a:hover,
  .nav-desktop a[aria-current="page"] { color: var(--amber); border-color: var(--amber); }
}

.header-cta { display: none; }
@media (min-width: 960px) {
  .header-cta { display: inline-flex; }
}

.burger {
  background: none;
  border: none;
  color: var(--paper);
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (min-width: 960px) { .burger { display: none; } }
.burger__box { width: 24px; height: 16px; position: relative; }
.burger__box span {
  position: absolute;
  left: 0; right: 0; height: 2px;
  background: currentColor;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease), top 0.25s var(--ease);
}
.burger__box span:nth-child(1) { top: 0; }
.burger__box span:nth-child(2) { top: 7px; }
.burger__box span:nth-child(3) { top: 14px; }
.burger[aria-expanded="true"] .burger__box span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.burger[aria-expanded="true"] .burger__box span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger__box span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--ink);
  z-index: 400;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px var(--gutter) 32px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.nav-mobile.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav-mobile__links { display: flex; flex-direction: column; gap: 4px; margin-top: 12px; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(30px, 9vw, 42px);
  text-transform: uppercase;
  color: var(--paper);
  padding: 12px 0;
  border-bottom: 1px solid var(--line-on-dark);
}
.nav-mobile a[aria-current="page"] { color: var(--amber); }
.nav-mobile__foot {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--muted-on-dark);
  font-size: 14px;
}
.nav-mobile__foot a { color: var(--paper); font-weight: 700; }
@media (min-width: 960px) { .nav-mobile { display: none !important; } }

body.nav-open { overflow: hidden; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
  min-height: 48px;
}
.btn:active { transform: translateY(1px); }
a.btn-primary, .btn-primary {
  background: var(--amber);
  color: var(--ink);
}
a.btn-primary:hover, .btn-primary:hover { background: var(--amber-deep); }
a.btn-outline-light, .btn-outline-light {
  background: transparent;
  border-color: rgba(243,237,225,0.5);
  color: var(--paper);
}
a.btn-outline-light:hover, .btn-outline-light:hover { border-color: var(--amber); color: var(--amber); }
a.btn-outline-dark, .btn-outline-dark {
  background: transparent;
  border-color: rgba(16,2,1,0.35);
  color: var(--ink);
}
a.btn-outline-dark:hover, .btn-outline-dark:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,2,1,0.45) 0%, rgba(16,2,1,0.5) 40%, rgba(16,2,1,0.92) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  color: var(--paper);
  padding-top: 120px;
  padding-bottom: clamp(40px, 6vw, 72px);
  width: 100%;
}
.hero__eyebrow { color: var(--amber); }
.hero__title {
  font-size: clamp(40px, 9vw, 96px);
  margin-top: 18px;
  color: var(--paper);
  text-shadow: 0 4px 28px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.45);
}
.hero__title em {
  font-style: normal;
  color: var(--amber);
  display: block;
  font-size: clamp(24px, 4.4vw, 46px);
  margin-top: 10px;
  line-height: 1.05;
}
.hero__sub {
  max-width: 560px;
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted-on-dark);
  margin-top: 22px;
  line-height: 1.5;
  text-shadow: 0 2px 14px rgba(0,0,0,0.55);
}
.hero__cta { margin-top: 32px; }
.hero__meta {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  font-size: 13px;
  color: var(--muted-on-dark);
  border-top: 1px solid var(--line-on-dark);
  padding-top: 18px;
}
.hero__meta strong { color: var(--paper); font-weight: 700; }

/* ---------- Sections ---------- */
.section { padding: clamp(56px, 9vw, 120px) 0; }
.section-dark { background: var(--ink); color: var(--paper); }
.section-charcoal { background: var(--charcoal); color: var(--paper); }
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(28px, 4vw, 52px);
}
.section-title {
  font-size: clamp(34px, 5.4vw, 62px);
  margin-top: 14px;
}
.section-lede {
  max-width: 640px;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
}
.section-dark .section-lede,
.section-charcoal .section-lede { color: var(--muted-on-dark); }
.section:not(.section-dark):not(.section-charcoal) .section-lede { color: var(--muted-on-light); }

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  white-space: nowrap;
}
.link-more::after { content: "→"; transition: transform 0.2s var(--ease); }
.link-more:hover::after { transform: translateX(4px); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .about-grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 60px; }
}
.about-copy p { font-size: clamp(18px, 2.4vw, 24px); line-height: 1.45; margin: 0 0 18px; }
.about-copy p:last-child { margin-bottom: 0; }
.about-copy .line { color: var(--muted-on-light); font-size: 17px; }
.about-photo { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.today-card {
  margin-top: 28px;
  border: 1px solid var(--line-on-light);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.today-card__label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber-deep); font-weight: 700; }
.today-card__status { font-size: 18px; font-weight: 700; }
.today-card__note { font-size: 14px; color: var(--muted-on-light); }

/* ---------- Cards grid generic ---------- */
.grid { display: grid; gap: clamp(16px, 2.4vw, 28px); }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 700px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-2 { grid-template-columns: 1fr; }
@media (min-width: 760px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Resident card ---------- */
.resident-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  min-height: 380px;
  isolation: isolate;
}
.resident-card__img { position: absolute; inset: 0; z-index: 0; }
.resident-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.resident-card__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(16,2,1,0.05) 0%, rgba(16,2,1,0.88) 78%);
}
.resident-card__body { position: relative; z-index: 2; margin-top: auto; padding: 22px; }
.resident-card__cat { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); font-weight: 700; }
.resident-card__name { font-family: var(--font-display); font-size: 30px; text-transform: uppercase; margin-top: 6px; display: flex; align-items: center; gap: 10px; }
.resident-card__desc { font-size: 14px; color: var(--muted-on-dark); margin-top: 10px; line-height: 1.5; }
.resident-card__ext { color: var(--amber); font-size: 20px; line-height: 1; }
a.resident-card { cursor: pointer; }
a.resident-card:hover .resident-card__img img { transform: scale(1.05); }
a.resident-card:hover .resident-card__name { color: var(--amber); }
.resident-card.is-static { cursor: default; }

/* ---------- Event card ---------- */
.event-card {
  border: 1px solid var(--line-on-dark);
  background: var(--ink-soft);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.event-card__img { aspect-ratio: 4/3; overflow: hidden; }
.event-card__img img { width: 100%; height: 100%; object-fit: cover; }
.event-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.event-card__date { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); font-weight: 700; }
.event-card__title { font-family: var(--font-display); font-size: 24px; text-transform: uppercase; }
.event-card__desc { font-size: 14px; color: var(--muted-on-dark); line-height: 1.5; flex: 1; }
.event-card__meta { display: flex; gap: 14px; font-size: 13px; color: var(--muted-on-dark); flex-wrap: wrap; }
.event-card__cta { margin-top: 6px; }

.empty-state {
  border: 1px dashed var(--line-on-dark);
  padding: clamp(30px, 6vw, 56px);
  text-align: center;
  color: var(--muted-on-dark);
}
.section:not(.section-dark):not(.section-charcoal) .empty-state { border-color: var(--line-on-light); color: var(--muted-on-light); }
.empty-state__title { font-family: var(--font-display); font-size: clamp(22px, 3vw, 30px); text-transform: uppercase; color: inherit; margin-bottom: 10px; }
.empty-state__title { color: var(--paper); }
.section:not(.section-dark):not(.section-charcoal) .empty-state__title { color: var(--ink); }

/* ---------- Rental zone cards ---------- */
.zone-card {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line-on-light);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.zone-card__img { aspect-ratio: 5/4; overflow: hidden; }
.zone-card__img img { width: 100%; height: 100%; object-fit: cover; }
.zone-card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.zone-card__title { font-family: var(--font-display); font-size: 28px; text-transform: uppercase; }
.zone-card__area { font-size: 13px; color: var(--muted-on-light); text-transform: uppercase; letter-spacing: 0.06em; }
.zone-card__price { font-size: 20px; font-weight: 700; margin-top: auto; padding-top: 12px; }
.zone-card__price span { color: var(--muted-on-light); font-weight: 400; font-size: 14px; display: block; }

.tariff-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.tariff-table th, .tariff-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line-on-light); font-size: 15px; }
.tariff-table th { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-on-light); font-weight: 700; }
.tariff-table td strong { font-weight: 700; }
.tariff-note { font-size: 13px; color: var(--muted-on-light); margin-top: 12px; }

.format-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.format-tags span {
  border: 1px solid var(--line-on-light);
  padding: 9px 16px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.section-dark .format-tags span, .section-charcoal .format-tags span { border-color: var(--line-on-dark); }

.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .check-list.cols-2 { grid-template-columns: 1fr 1fr; } }
.check-list li { display: flex; gap: 10px; font-size: 15px; align-items: flex-start; }
.check-list li::before { content: "—"; color: var(--amber); flex-shrink: 0; }

/* ---------- Quick actions (mobile sticky) ---------- */
.quick-actions {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 300;
  display: flex;
  gap: 1px;
  background: var(--line-on-dark);
  border-top: 1px solid var(--line-on-dark);
}
.quick-actions a {
  flex: 1;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.quick-actions a.is-amber { background: var(--amber); color: var(--ink); }
@media (min-width: 960px) { .quick-actions { display: none; } }
body.has-quick-actions { padding-bottom: 58px; }
@media (min-width: 960px) { body.has-quick-actions { padding-bottom: 0; } }

/* ---------- Reviews ---------- */
.rating-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-on-light);
}
.rating-strip__score { font-family: var(--font-display); font-size: 44px; color: var(--ink); line-height: 1; }
.rating-strip__stars { color: var(--amber-deep); font-size: 15px; letter-spacing: 2px; }
.rating-strip__meta { font-size: 13px; color: var(--muted-on-light); }
.rating-strip__link { margin-left: auto; }
.review-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line-on-light);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -20px rgba(16,2,1,0.35);
  border-color: var(--amber-deep);
}
.review-card__quotemark {
  position: absolute;
  top: -18px;
  right: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 96px;
  line-height: 1;
  color: var(--amber);
  opacity: 0.14;
  pointer-events: none;
  user-select: none;
}
.review-card__stars { display: flex; gap: 3px; color: var(--amber-deep); position: relative; z-index: 1; }
.review-card__quote { font-size: 15px; line-height: 1.6; color: var(--ink); position: relative; z-index: 1; }
.review-card__foot { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-top: auto; position: relative; z-index: 1; }
.review-card__author { font-weight: 700; font-size: 14px; }
.review-card__date { font-size: 12px; color: var(--muted-on-light); }

/* ---------- Archive (past events) ---------- */
.archive-block { margin-bottom: clamp(40px, 6vw, 64px); }
.archive-block:last-child { margin-bottom: 0; }
.archive-block__head { max-width: 640px; margin-bottom: 18px; }
.archive-block__title { font-family: var(--font-display); font-size: clamp(22px, 3vw, 30px); text-transform: uppercase; margin-bottom: 8px; }
.archive-block__desc { font-size: 15px; color: var(--muted-on-light); line-height: 1.55; }
.section-dark .archive-block__desc, .section-charcoal .archive-block__desc { color: var(--muted-on-dark); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1040px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-grid button {
  background: none; border: none; padding: 0; margin: 0; cursor: zoom-in;
  aspect-ratio: 1; overflow: hidden; position: relative; display: block; width: 100%;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.gallery-grid button:hover img { transform: scale(1.06); }

.lightbox {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(16,2,1,0.96);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 86vh; object-fit: contain; }
.lightbox__close {
  position: absolute; top: 18px; right: 18px;
  width: 46px; height: 46px;
  background: none; border: 1px solid var(--line-on-dark); color: var(--paper);
  font-size: 22px; cursor: pointer;
}
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px;
  background: none; border: 1px solid var(--line-on-dark); color: var(--paper);
  font-size: 20px; cursor: pointer;
}
.lightbox__nav--prev { left: 18px; }
.lightbox__nav--next { right: 18px; }

/* ---------- Cooperation ---------- */
.coop-hero { display: grid; gap: 32px; align-items: center; }
@media (min-width: 860px) { .coop-hero { grid-template-columns: 1fr 1fr; gap: 60px; } }
.coop-hero__title { font-size: clamp(34px, 6vw, 68px); }
.coop-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px; margin-top: 24px; }
@media (min-width: 600px) { .coop-list { grid-template-columns: repeat(3, 1fr); } }
.coop-list span { font-size: 14px; color: var(--muted-on-dark); border-top: 1px solid var(--line-on-dark); padding-top: 10px; display: block; }

/* ---------- Contacts ---------- */
.contact-grid { display: grid; gap: 40px; }
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-block { display: flex; flex-direction: column; gap: 22px; }
.contact-item__label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber-deep); font-weight: 700; margin-bottom: 6px; }
.contact-item__value { font-size: 19px; font-weight: 500; }
.contact-item__value a:hover { color: var(--amber-deep); }
.map-frame { border: 1px solid var(--line-on-light); aspect-ratio: 4/3; overflow: hidden; }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.15); }

.social-row { display: flex; gap: 12px; flex-wrap: wrap; }
.social-row a {
  border: 1px solid currentColor;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.social-row a:hover { background: var(--amber); color: var(--ink); border-color: var(--amber); }

/* ---------- Form ---------- */
.form-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted-on-light); }
.section-dark .field label, .section-charcoal .field label { color: var(--muted-on-dark); }
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 16px;
  padding: 14px 14px;
  border: 1px solid var(--line-on-light);
  background: transparent;
  color: inherit;
  border-radius: var(--radius);
}
.section-dark .field input, .section-dark .field select, .section-dark .field textarea,
.section-charcoal .field input, .section-charcoal .field select, .section-charcoal .field textarea {
  border-color: var(--line-on-dark);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--amber); outline-offset: 1px; }
.field textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 13px; color: var(--muted-on-light); }
.section-dark .form-note, .section-charcoal .form-note { color: var(--muted-on-dark); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--paper); padding: clamp(48px, 7vw, 80px) 0 28px; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.footer-col h4 { font-family: var(--font-body); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--amber); margin-bottom: 16px; font-weight: 700; }
.footer-col a, .footer-col p { color: var(--muted-on-dark); font-size: 14px; line-height: 1.7; }
.footer-col a:hover { color: var(--paper); }
.footer-links { display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; margin: 0; }
.footer-bottom {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--line-on-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted-on-dark);
}
.footer-bottom a { color: var(--muted-on-dark); }
.footer-bottom a:hover { color: var(--amber); }

/* ---------- Reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.noindex-banner { background: var(--amber); color: var(--ink); text-align: center; font-size: 13px; font-weight: 700; padding: 8px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
