/* =========================================================
   Advokátní kancelář Bartoš — styles.css
   Classic gravitas: deep navy, ivory, gold hairlines.
   ========================================================= */

:root {
  /* Paleta */
  --navy-900: #0b1826;
  --navy-800: #0e2033;
  --navy-700: #14293f;
  --navy-600: #1d354d;
  --ink: #16202b;
  --ivory: #f5f1e8;
  --ivory-200: #efe9dc;
  --paper: #fbf9f4;
  --cream-card: #ffffff;
  --gold: #b3934f;
  --gold-soft: #c9ad74;
  --gold-line: rgba(179, 147, 79, 0.45);
  --muted: #5c6b78;
  --muted-light: rgba(245, 241, 232, 0.72);
  --line: rgba(22, 32, 43, 0.12);
  --line-light: rgba(245, 241, 232, 0.16);

  /* Typografie */
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Rytmus */
  --wrap: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4.5rem, 9vw, 8rem);
  --radius: 3px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --nav-h: 76px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

::selection { background: var(--gold); color: var(--navy-900); }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.12; letter-spacing: -0.01em; color: var(--navy-800); }
h1 { font-size: clamp(2.4rem, 1.6rem + 3.6vw, 4.25rem); font-weight: 500; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.85rem, 1.3rem + 2.2vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.45rem); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold-line); display: inline-block; }
.eyebrow--light { color: var(--gold-soft); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: var(--section-y); position: relative; }
.section--light { background: var(--paper); }
.section--ivory { background: var(--ivory); }
.section--dark { background: var(--navy-800); color: var(--ivory); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--ivory); }

.section__head { max-width: 680px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section__head--left { text-align: left; margin-inline: 0; }
.section__intro { color: var(--muted); font-size: 1.08rem; margin-top: 1.1rem; }
.section__intro--light { color: var(--muted-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.6rem;
  font-family: var(--sans); font-weight: 500; font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.95rem 1.9rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
  will-change: transform;
}
.btn--gold { background: var(--gold); color: var(--navy-900); }
.btn--gold:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn--navy { background: var(--navy-800); color: var(--ivory); }
.btn--navy:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ivory); border-color: var(--line-light); }
.btn--ghost:hover { border-color: var(--gold-soft); color: #fff; }

/* ---------- Navigace ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), height 0.4s var(--ease);
}
.nav__inner { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.nav.is-scrolled {
  background: rgba(11, 24, 38, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line-light), 0 12px 40px -24px rgba(0,0,0,0.6);
  height: 66px;
}

/* Brand */
.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--ivory); transition: color 0.4s; }
.brand__mark { color: var(--gold-soft); display: inline-flex; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--serif); font-size: 1.32rem; font-weight: 500; letter-spacing: 0.01em; }
.brand__sub { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted-light); font-weight: 500; }

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a {
  font-size: 0.92rem; color: var(--ivory); font-weight: 400; position: relative;
  transition: color 0.3s;
}
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
  background: var(--gold-soft); transition: width 0.4s var(--ease);
}
.nav__links a:not(.nav__cta):hover { color: var(--gold-soft); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  border: 1px solid var(--gold-line); color: var(--gold-soft);
  padding: 0.55rem 1.2rem; border-radius: var(--radius);
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.nav__cta:hover { background: var(--gold); color: var(--navy-900); border-color: var(--gold); }

/* Hamburger */
.nav__toggle {
  display: none; width: 44px; height: 44px; background: transparent; border: 0; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav__toggle span { width: 26px; height: 1.5px; background: var(--ivory); transition: transform 0.4s var(--ease), opacity 0.3s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: var(--ivory); overflow: hidden; padding-top: var(--nav-h);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transform: scale(1.06); }
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,24,38,0.62) 0%, rgba(11,24,38,0.78) 55%, rgba(11,24,38,0.92) 100%),
    linear-gradient(100deg, rgba(11,24,38,0.85) 0%, rgba(11,24,38,0.35) 60%, rgba(11,24,38,0.15) 100%);
}
.hero__content { position: relative; z-index: 2; flex: 1 1 auto; min-width: 0; width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); padding-block: 5rem; }
.hero__content .eyebrow { margin-bottom: 1.6rem; }
.hero h1 { color: #fff; max-width: 16ch; text-shadow: 0 2px 30px rgba(0,0,0,0.25); }
.hero__lede { max-width: 52ch; margin-top: 1.8rem; font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem); color: rgba(245,241,232,0.88); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.hero__meta {
  list-style: none; display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 3rem;
  padding-top: 1.6rem; border-top: 1px solid var(--line-light); max-width: 620px;
}
.hero__meta li { font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-soft); font-weight: 500; }
.hero__meta li + li { position: relative; }

.hero__scroll { position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%); z-index: 3; width: 26px; height: 42px; border: 1px solid var(--line-light); border-radius: 20px; display: flex; justify-content: center; padding-top: 8px; }
.hero__scroll span { width: 3px; height: 8px; background: var(--gold-soft); border-radius: 2px; animation: scrolldot 1.9s var(--ease) infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(-4px);} 40% { opacity: 1;} 80%,100% { opacity: 0; transform: translateY(12px);} }

/* ---------- Cards: oblasti práva ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
  position: relative; background: var(--cream-card); border: 1px solid var(--line);
  padding: 2.4rem 2rem 2.2rem; border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0); transform-origin: left; transition: transform 0.55s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -40px rgba(11,24,38,0.5); border-color: var(--gold-line); }
.card:hover::before { transform: scaleX(1); }
.card__num { font-family: var(--serif); font-size: 0.95rem; color: var(--gold); letter-spacing: 0.1em; display: block; margin-bottom: 1.1rem; }
.card h3 { margin-bottom: 0.7rem; }
.card p { color: var(--muted); font-size: 0.98rem; }

/* ---------- Přístup (dark) ---------- */
.approach__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.approach__list { list-style: none; display: grid; gap: 0; }
.approach__list li { padding: 2rem 0; border-top: 1px solid var(--line-light); }
.approach__list li:last-child { border-bottom: 1px solid var(--line-light); }
.approach__list h3 { margin-bottom: 0.6rem; color: var(--ivory); }
.approach__list p { color: var(--muted-light); max-width: 54ch; }

/* ---------- O advokátovi ---------- */
.advokat__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.portrait { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; background: var(--navy-800); }
.portrait img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.15) contrast(1.02); }
.portrait__note {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 0.9rem 1.1rem;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(245,241,232,0.9); background: linear-gradient(180deg, transparent, rgba(11,24,38,0.85));
  text-align: center;
}
.advokat__portrait { position: relative; }
.portrait__frame { position: absolute; inset: 16px -16px -16px 16px; border: 1px solid var(--gold-line); border-radius: var(--radius); z-index: -1; }
.advokat__role { color: var(--gold); font-weight: 500; letter-spacing: 0.02em; margin: 0.4rem 0 1.6rem; }
.advokat__body p { color: var(--muted); margin-bottom: 1.1rem; max-width: 60ch; }
.creds { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 2rem; margin-top: 2.2rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.creds dt { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.35rem; }
.creds dd { font-family: var(--serif); font-size: 1.05rem; color: var(--navy-800); line-height: 1.4; }

/* ---------- Spolupráce (steps) ---------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; counter-reset: none; }
.step { position: relative; padding: 2.4rem 1.9rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.step__num { font-family: var(--serif); font-size: 1.5rem; color: var(--gold); display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px; border: 1px solid var(--gold-line); border-radius: 50%; margin-bottom: 1.5rem; letter-spacing: 0.05em; }
.step h3 { margin-bottom: 0.6rem; }
.step p { color: var(--muted); font-size: 0.98rem; }

/* ---------- Odměna (dark) ---------- */
.odmena__intro { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.fees { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.fee { padding: 2.2rem 1.9rem; border: 1px solid var(--line-light); border-radius: var(--radius); background: rgba(255,255,255,0.02); transition: border-color 0.5s var(--ease), transform 0.5s var(--ease); }
.fee:hover { border-color: var(--gold-line); transform: translateY(-4px); }
.fee h3 { color: var(--ivory); margin-bottom: 0.7rem; }
.fee p { color: var(--muted-light); font-size: 0.98rem; }
.odmena__note { margin-top: 2.5rem; padding-top: 1.8rem; border-top: 1px solid var(--line-light); color: var(--muted-light); max-width: 70ch; font-size: 0.98rem; }

/* ---------- FAQ ---------- */
.faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.accordion { display: grid; gap: 0; }
.acc { border-top: 1px solid var(--line); }
.acc:last-child { border-bottom: 1px solid var(--line); }
.acc summary {
  list-style: none; cursor: pointer; padding: 1.5rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  font-family: var(--serif); font-size: 1.18rem; color: var(--navy-800); transition: color 0.3s;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary:hover { color: var(--gold); }
.acc summary i { position: relative; width: 16px; height: 16px; flex: 0 0 16px; }
.acc summary i::before, .acc summary i::after { content: ""; position: absolute; background: var(--gold); transition: transform 0.4s var(--ease), opacity 0.3s; }
.acc summary i::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.acc summary i::after { left: 50%; top: 0; width: 1.5px; height: 100%; transform: translateX(-50%); }
.acc[open] summary i::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.acc__body { overflow: hidden; }
.acc__body p { color: var(--muted); padding-bottom: 1.5rem; max-width: 62ch; }

/* ---------- Kontakt ---------- */
.kontakt__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.contact-list { list-style: none; margin-top: 2.2rem; display: grid; gap: 0; }
.contact-list li { display: grid; grid-template-columns: 130px 1fr; gap: 1rem; padding: 1.15rem 0; border-top: 1px solid var(--line); align-items: baseline; }
.contact-list li:last-child { border-bottom: 1px solid var(--line); }
.contact-list__label { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.contact-list a:hover { color: var(--gold); }
.contact-list em { color: var(--muted); font-style: italic; }

/* Form */
.form { background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.6rem); box-shadow: 0 40px 80px -60px rgba(11,24,38,0.4); }
.field { margin-bottom: 1.3rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.field label { display: block; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em; color: var(--navy-800); margin-bottom: 0.5rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 0.98rem; color: var(--ink);
  padding: 0.85rem 1rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); transition: border-color 0.3s, box-shadow 0.3s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(179,147,79,0.14);
}
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #a2402f; box-shadow: 0 0 0 3px rgba(162,64,47,0.1); }
.field__error { display: block; font-size: 0.8rem; color: #a2402f; margin-top: 0.4rem; min-height: 0; opacity: 0; transition: opacity 0.3s; }
.field.is-invalid .field__error, .field__error.is-visible { opacity: 1; }
.consent { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.86rem; color: var(--muted); margin-top: 0.4rem; cursor: pointer; }
.consent input { margin-top: 0.25rem; accent-color: var(--gold); width: 16px; height: 16px; flex: 0 0 16px; }
.form__submit { width: 100%; margin-top: 1.4rem; }
.form__success { margin-top: 1.2rem; padding: 1rem 1.2rem; background: rgba(179,147,79,0.1); border: 1px solid var(--gold-line); border-radius: var(--radius); color: var(--navy-800); font-size: 0.95rem; }
.form__note { margin-top: 1rem; font-size: 0.8rem; color: var(--muted); }

.map { margin-top: clamp(3rem, 6vw, 5rem); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.map iframe { display: block; filter: grayscale(0.25) contrast(1.02); }

/* ---------- Patička ---------- */
.footer { background: var(--navy-900); color: var(--ivory); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(2rem, 4vw, 3rem); padding-bottom: 3.5rem; }
.brand--footer { color: var(--ivory); }
.brand--footer .brand__name { font-size: 1.2rem; }
.brand--footer .brand__sub { text-transform: none; letter-spacing: 0.02em; font-size: 0.8rem; color: var(--muted-light); margin-top: 0.3rem; }
.footer__claim { margin-top: 1.2rem; color: var(--muted-light); max-width: 38ch; font-size: 0.95rem; }
.footer__col h4 { font-family: var(--sans); font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1.1rem; font-weight: 600; }
.footer__col p, .footer__col address { color: var(--muted-light); font-style: normal; font-size: 0.95rem; line-height: 1.9; }
.footer__col a:hover { color: var(--gold-soft); }
.footer__col em { font-style: italic; color: rgba(245,241,232,0.55); }
.footer__bar { border-top: 1px solid var(--line-light); }
.footer__bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 1.6rem; flex-wrap: wrap; }
.footer__bar p { font-size: 0.82rem; color: rgba(245,241,232,0.55); }
.footer__nav { display: flex; gap: 1.6rem; }
.footer__nav a { font-size: 0.82rem; color: var(--muted-light); }
.footer__nav a:hover { color: var(--gold-soft); }

/* ---------- Sticky CTA ---------- */
.sticky-cta {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 90;
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: var(--navy-900); font-weight: 600; font-size: 0.9rem;
  padding: 0.9rem 1.5rem; border-radius: 40px;
  box-shadow: 0 18px 40px -18px rgba(11,24,38,0.7);
  opacity: 0; transform: translateY(24px); pointer-events: none;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), background 0.4s;
}
.sticky-cta.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-cta:hover { background: var(--gold-soft); }
.sticky-cta::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--navy-900); }

/* ---------- Reveal (Intersection Observer) ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; left: 1rem; top: -60px; z-index: 200;
  background: var(--gold); color: var(--navy-900); padding: 0.7rem 1.2rem; border-radius: var(--radius);
  font-weight: 600; font-size: 0.9rem; transition: top 0.3s;
}
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .cards, .steps, .fees { grid-template-columns: repeat(2, 1fr); }
  .approach__grid, .advokat__grid, .faq__grid, .kontakt__grid, .odmena__intro { grid-template-columns: 1fr; }
  .advokat__grid { gap: 3rem; }
  .portrait__frame { inset: 12px -12px -12px 12px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  /* Mobile nav */
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 360px); height: 100dvh;
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.5rem;
    background: var(--navy-900); padding: 5rem 2.2rem 2.2rem;
    transform: translateX(100%); transition: transform 0.55s var(--ease);
    box-shadow: -30px 0 80px -40px rgba(0,0,0,0.7);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { font-size: 1.2rem; font-family: var(--serif); }
  .nav__cta { font-family: var(--sans); font-size: 0.95rem; margin-top: 0.5rem; }
  .nav__toggle { display: flex; z-index: 101; }
  body.menu-open { overflow: hidden; }

  .cards, .steps, .fees { grid-template-columns: 1fr; }
  .creds { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .contact-list li { grid-template-columns: 1fr; gap: 0.25rem; }
  .footer__bar-inner { flex-direction: column; align-items: flex-start; }
  .hero__meta { gap: 1.2rem 1.6rem; }
  .hero h1 br { display: none; }
  .hero h1 { max-width: none; }
}

@media (max-width: 400px) {
  .brand__sub { display: none; }
  .btn { width: 100%; }
  .hero__actions { flex-direction: column; }
}
