/* ============================================================
   BARS for KINGS — inner pages: heroes, bar detail, cities,
   rankings, journal, about
   ============================================================ */

/* ---- Page hero (text-led) ---- */
.page-hero { padding: 164px 0 72px; }

.page-hero .display { font-size: clamp(52px, 6.4vw, 104px); }
.page-hero .display em { font-style: italic; color: var(--accent-deep); }

.page-hero .page-sub {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 52ch;
  text-wrap: pretty;
}

/* ---- Breadcrumbs ---- */
.crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 28px;
}

.crumbs a { transition: color 0.25s; }
.crumbs a:hover { color: var(--accent-deep); }
.crumbs span.sep { color: var(--line); }

/* ---- Filter pills ---- */
.filter-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }

.filter-pills button {
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}

.filter-pills button:hover { border-color: var(--ink); }

.filter-pills button.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

[data-cat].is-filtered-out { display: none; }

/* ============================================================
   BAR DETAIL
   ============================================================ */
.bar-head { padding: 148px 0 48px; }

.bar-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.bar-head .display { font-size: clamp(48px, 5.8vw, 92px); }

.bar-meta-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin-top: 20px;
  font-size: 15px;
  color: var(--muted);
}

.bar-meta-line .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line); }

.rank-badge {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  color: var(--accent-deep);
  text-align: center;
}

.rank-badge strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}

.rank-badge span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  max-width: 11ch;
}

/* ---- Gallery ---- */
.bar-gallery {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: repeat(2, 280px);
  gap: 16px;
}

.bar-gallery .shot { border-radius: 18px; overflow: hidden; position: relative; background: var(--cream); }
.bar-gallery .shot:first-child { grid-row: span 2; }
.bar-gallery .shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.bar-gallery .shot:hover img { transform: scale(1.05); }

/* ---- Body layout ---- */
.bar-body { padding: 88px 0 128px; }

.bar-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
}

.bar-article h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  margin: 56px 0 20px;
}

.bar-article h2:first-child { margin-top: 0; }

.bar-article p { font-size: 17px; line-height: 1.75; color: #3c3830; margin-bottom: 18px; text-wrap: pretty; }

.bar-article .lede {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.45;
  color: var(--ink);
}

.order-list { list-style: none; border-top: 1px solid var(--line); margin-top: 8px; }

.order-list li {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.order-list .order-num { font-family: var(--serif); font-style: italic; font-size: 28px; color: var(--accent); }
.order-list h4 { font-family: var(--serif); font-weight: 400; font-size: 22px; }
.order-list p { font-size: 14px; color: var(--muted); margin: 4px 0 0; line-height: 1.5; }
.order-list .price { font-size: 15px; font-weight: 600; }

/* ---- Essentials sidebar ---- */
.essentials {
  position: sticky;
  top: 104px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.essentials h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  margin-bottom: 8px;
}

.fact-list { list-style: none; margin-top: 16px; }

.fact-list li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  line-height: 1.5;
}

.fact-list li:last-child { border-bottom: none; }

.fact-list .k {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 3px;
}

.map-ph {
  margin-top: 8px;
  border-radius: 14px;
  height: 170px;
  background:
    linear-gradient(0deg, rgba(201,162,39,0.06), rgba(201,162,39,0.06)),
    repeating-linear-gradient(0deg, transparent, transparent 28px, var(--line) 28px, var(--line) 29px),
    repeating-linear-gradient(90deg, transparent, transparent 28px, var(--line) 28px, var(--line) 29px),
    var(--cream);
  position: relative;
}

.map-ph .pin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -100%);
  width: 26px;
  height: 26px;
  border-radius: 50% 50% 50% 0;
  background: var(--accent);
  rotate: -45deg;
}

.map-ph .pin::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: #fff;
}

.essentials .btn-ink { width: 100%; justify-content: center; margin-top: 20px; padding: 14px; font-size: 14px; }
.essentials .btn-ghost { width: 100%; justify-content: center; margin-top: 10px; padding: 13px; font-size: 14px; }

/* ---- Also ranked strip ---- */
.also-ranked { padding: 0 0 128px; }

.also-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.also-card { border-radius: 18px; overflow: hidden; position: relative; aspect-ratio: 4 / 3; background: var(--ink); display: block; }
.also-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.also-card:hover img { transform: scale(1.06); }
.also-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,9,7,0) 40%, rgba(10,9,7,0.78) 100%); }

.also-card .meta { position: absolute; left: 22px; right: 22px; bottom: 18px; z-index: 2; color: #fff; display: flex; align-items: baseline; gap: 14px; }
.also-card .meta .n { font-family: var(--serif); font-style: italic; font-size: 30px; color: var(--accent); }
.also-card .meta h3 { font-family: var(--serif); font-weight: 400; font-size: 24px; }
.also-card .meta p { font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-top: 3px; }

/* ============================================================
   CITY HERO (image-led)
   ============================================================ */
.city-hero { height: 72vh; min-height: 520px; position: relative; overflow: hidden; display: flex; align-items: flex-end; }
.city-hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.city-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,9,7,0.35) 0%, rgba(10,9,7,0.15) 45%, rgba(10,9,7,0.72) 100%); }
.city-hero .wrap { position: relative; z-index: 2; color: #fff; padding-bottom: 64px; width: 100%; }
.city-hero .display { font-size: clamp(64px, 9vw, 148px); }
.city-hero .eyebrow { color: var(--accent); }
.city-hero .eyebrow::before { background: var(--accent); }

.city-stats { display: flex; gap: 48px; margin-top: 28px; }
.city-stats div strong { display: block; font-family: var(--serif); font-size: 32px; font-weight: 400; }
.city-stats div span { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.72); }

/* ---- Neighborhoods ---- */
.hood-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.hood-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  display: block;
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.hood-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.hood-card h3 { font-family: var(--serif); font-weight: 400; font-size: 23px; }
.hood-card p { font-size: 13px; color: var(--muted); margin-top: 6px; line-height: 1.5; }
.hood-card .count { display: inline-block; margin-top: 14px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-deep); }

/* ---- Quote block ---- */
.local-take { padding: 128px 0; background: var(--cream); }
.local-take blockquote { font-family: var(--serif); font-size: clamp(30px, 3.4vw, 48px); line-height: 1.25; max-width: 26ch; margin: 28px auto 0; text-align: center; text-wrap: balance; }
.local-take blockquote em { font-style: italic; color: var(--accent-deep); }
.local-take cite { display: block; margin-top: 28px; font-style: normal; font-size: 14px; color: var(--muted); text-align: center; }
.local-take .eyebrow { justify-content: center; }

/* ============================================================
   CITIES INDEX
   ============================================================ */
.featured-cities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.featured-cities .city-card { width: auto; aspect-ratio: 3 / 3.6; }

.region-block { margin-top: 72px; }

.region-block h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.region-block h3 span { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

.city-rows { list-style: none; columns: 3; column-gap: 48px; }

.city-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  break-inside: avoid;
  transition: background 0.25s, padding 0.25s var(--ease-out);
}

.city-row:hover { background: var(--cream); padding-left: 12px; }
.city-row .name { font-family: var(--serif); font-size: 21px; }
.city-row .n { font-size: 12.5px; color: var(--muted); white-space: nowrap; }

/* ============================================================
   RANKINGS PAGE — collections
   ============================================================ */
.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.collection-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  background: var(--ink);
  display: block;
}

.collection-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: transform 0.8s var(--ease-out), opacity 0.4s; }
.collection-card:hover img { transform: scale(1.06); opacity: 1; }
.collection-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,9,7,0.1) 30%, rgba(10,9,7,0.85) 100%); }

.collection-card .meta { position: absolute; left: 26px; right: 26px; bottom: 24px; z-index: 2; color: #fff; }
.collection-card .meta .kicker { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.collection-card .meta h3 { font-family: var(--serif); font-weight: 400; font-size: 28px; line-height: 1.12; margin-top: 10px; text-wrap: balance; }
.collection-card .meta p { font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 10px; }

/* ============================================================
   JOURNAL PAGE
   ============================================================ */
.story-feature {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 88px;
}

.story-feature .media { border-radius: 20px; overflow: hidden; aspect-ratio: 16 / 11; display: block; }
.story-feature .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.story-feature .media:hover img { transform: scale(1.04); }
.story-feature h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 3.6vw, 52px); line-height: 1.08; margin: 18px 0; text-wrap: balance; }
.story-feature p { font-size: 16.5px; line-height: 1.7; color: var(--muted); text-wrap: pretty; }
.story-feature .byline { margin-top: 24px; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }

.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 24px; }

.story-card { display: block; }
.story-card .media { border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 3; margin-bottom: 18px; background: var(--cream); }
.story-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.story-card:hover .media img { transform: scale(1.06); }
.story-card .kicker { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-deep); }
.story-card h3 { font-family: var(--serif); font-weight: 400; font-size: 25px; line-height: 1.15; margin-top: 10px; text-wrap: balance; transition: color 0.25s; }
.story-card:hover h3 { color: var(--accent-deep); }
.story-card .byline { margin-top: 10px; font-size: 13px; color: var(--muted); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.manifesto { padding: 180px 0 96px; }
.manifesto .display { font-size: clamp(44px, 5.6vw, 88px); max-width: 18ch; }
.manifesto .display em { font-style: italic; color: var(--accent-deep); }

.principles { padding: 96px 0; background: var(--cream); }

.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }

.principle .n { font-family: var(--serif); font-style: italic; font-size: 64px; color: var(--accent); line-height: 1; }
.principle h3 { font-family: var(--serif); font-weight: 400; font-size: 28px; margin: 18px 0 12px; }
.principle p { font-size: 15.5px; line-height: 1.7; color: var(--muted); text-wrap: pretty; }

.stat-band { padding: 96px 0; }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-row strong { display: block; font-family: var(--serif); font-weight: 400; font-size: clamp(48px, 4.6vw, 72px); }
.stat-row strong em { font-style: italic; color: var(--accent-deep); }
.stat-row span { font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

.about-note { padding: 32px 0 128px; }
.about-note .inner { max-width: 720px; margin: 0 auto; }
.about-note p { font-size: 18px; line-height: 1.8; color: #3c3830; margin-bottom: 22px; text-wrap: pretty; }
.about-note .sig { font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--ink); }

/* ---- Generic CTA band ---- */
.cta-band { padding: 112px 0; background: var(--ink); color: #fff; text-align: center; }
.cta-band .display { font-size: clamp(36px, 4.4vw, 64px); max-width: 20ch; margin: 0 auto 36px; }
.cta-band .display em { font-style: italic; color: var(--accent); }
.cta-band .btn-ink { background: var(--accent); border-color: var(--accent); color: var(--ink); font-weight: 700; padding: 15px 32px; font-size: 15px; }
.cta-band .btn-ink:hover { background: #fff; border-color: #fff; }

/* ---- Section spacing helper for inner pages ---- */
.page-section { padding: 96px 0; }
.page-section.tight { padding: 48px 0 96px; }

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .bar-gallery { grid-template-columns: 1fr; grid-template-rows: 260px 200px 200px; }
  .bar-gallery .shot:first-child { grid-row: span 1; }
  .bar-layout, .story-feature { grid-template-columns: 1fr; gap: 48px; }
  .essentials { position: static; }
  .also-grid, .collection-grid, .story-grid, .featured-cities, .principle-grid { grid-template-columns: 1fr; }
  .hood-grid { grid-template-columns: repeat(2, 1fr); }
  .city-rows { columns: 1; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .bar-title-row { flex-direction: column; align-items: flex-start; }
}


/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(250, 248, 243, 0.82);
  backdrop-filter: blur(26px) saturate(1.1);
  -webkit-backdrop-filter: blur(26px) saturate(1.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
  overflow-y: auto;
}

.search-overlay.is-open { opacity: 1; visibility: visible; }

.so-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 16vh 32px 80px;
  transform: translateY(22px) scale(0.985);
  opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.4s var(--ease-out);
}

.search-overlay.is-open .so-inner { transform: translateY(0) scale(1); opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .search-overlay,
  .so-inner { transition-duration: 0.001s; }
  .so-inner { transform: none; }
}

.so-close {
  position: fixed;
  top: 28px;
  right: 36px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background 0.25s, border-color 0.25s, transform 0.3s var(--ease-out);
}

.so-close:hover { background: var(--ink); border-color: var(--ink); color: #fff; transform: rotate(90deg); }

.so-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 18px;
}

.so-input {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--ink);
  outline: none;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 54px);
  padding: 6px 0 18px;
  color: var(--ink);
}

.so-input::placeholder { color: #c8c2b4; font-style: italic; }

.so-hint { margin-top: 14px; font-size: 13px; color: var(--muted); }
.so-hint kbd {
  font-family: var(--sans);
  font-size: 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2px 7px;
  background: #fff;
}

.so-section { margin-top: 44px; }

.so-section h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.so-results { list-style: none; }

.so-row {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px 12px;
  border-bottom: 1px solid var(--line);
  border-radius: 10px;
  transition: background 0.2s, padding 0.25s var(--ease-out);
}

.so-row:hover, .so-row.is-hilite { background: #fff; padding-left: 22px; }

.so-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 4px 0;
  text-align: center;
}

.so-row .t { font-family: var(--serif); font-size: 22px; }
.so-row .s { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.so-row .go { color: var(--muted); transition: transform 0.3s var(--ease-out), color 0.25s; }
.so-row:hover .go { transform: translateX(4px); color: var(--accent-deep); }

.so-empty {
  margin-top: 44px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--muted);
}

.so-chips { display: flex; flex-wrap: wrap; gap: 10px; }

.so-chips button {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 13.5px;
  font-weight: 500;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}

.so-chips button:hover { border-color: var(--ink); }

body.so-locked { overflow: hidden; }

/* ============================================================
   SUBMIT A BAR — form
   ============================================================ */
.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.form-aside .display { font-size: clamp(44px, 4.6vw, 72px); }
.form-aside .display em { font-style: italic; color: var(--accent-deep); }
.form-aside p { margin-top: 24px; font-size: 16.5px; line-height: 1.7; color: var(--muted); max-width: 40ch; text-wrap: pretty; }

.form-aside .fine {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  line-height: 1.7;
}

.bar-form {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  padding: 44px;
  box-shadow: var(--shadow-card);
}

.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.f-field { margin-bottom: 26px; }

.f-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 9px;
}

.f-field input, .f-field textarea, .f-field select {
  width: 100%;
  font-family: var(--sans);
  font-size: 15.5px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
}

.f-field input:focus, .f-field textarea:focus, .f-field select:focus { border-color: var(--accent); background: #fff; }
.f-field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.f-chips { display: flex; flex-wrap: wrap; gap: 8px; }

.f-chips button {
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 9px 17px;
  font-size: 13px;
  font-weight: 500;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}

.f-chips button:hover { border-color: var(--line); }
.f-chips button.is-on { background: var(--ink); color: #fff; }

.bar-form .btn-ink { width: 100%; justify-content: center; padding: 16px; font-size: 15px; margin-top: 6px; }

.form-success { text-align: center; padding: 48px 24px; display: none; }
.form-success.is-shown { display: block; }
.bar-form.is-done form { display: none; }

.form-success .crown {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  color: var(--accent-deep);
}

.form-success h3 { font-family: var(--serif); font-weight: 400; font-size: 34px; margin-bottom: 12px; }
.form-success p { color: var(--muted); font-size: 15.5px; line-height: 1.65; max-width: 38ch; margin: 0 auto; }

@media (max-width: 960px) {
  .form-layout { grid-template-columns: 1fr; gap: 48px; }
  .f-row { grid-template-columns: 1fr; gap: 0; }
  .bar-form { padding: 28px; }
}
