:root {
  --surface: #fcf9f0;
  --surface-low: #f7f3ea;
  --surface-mid: #f1eee5;
  --surface-high: #e5e2d9;
  --paper: #ffffff;
  --ink: #1c1c17;
  --muted: #44474a;
  --faint: #75777a;
  --line: #c5c6ca;
  --gold: #775a19;
  --gold-soft: #e9c176;
  --error: #ba1a1a;
  --ok: #167246;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: Inter, Arial, sans-serif;
  --container: 1280px;
  --gutter: 32px;
  --margin: clamp(20px, 6vw, 80px);
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 24px 60px rgba(28, 28, 23, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }

.container { width: min(calc(100% - var(--margin) * 2), var(--container)); margin: 0 auto; }
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 249, 240, 0.94);
  border-bottom: 1px solid rgba(119, 90, 25, 0.18);
  backdrop-filter: blur(14px);
}
.header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
}
.nav { display: flex; align-items: center; gap: 34px; }
.nav__link {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0;
  padding: 28px 0 24px;
  border-bottom: 1px solid transparent;
}
.nav__link:hover, .nav__link.active { color: var(--ink); border-bottom-color: var(--gold); }
.header__actions { display: flex; align-items: center; gap: 18px; }
.lang { position: relative; }
.lang__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 8px;
}
.lang__menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 112px;
  background: var(--surface-low);
  border: 1px solid rgba(119, 90, 25, .35);
  box-shadow: var(--shadow);
}
.lang.open .lang__menu { display: block; }
.lang__option {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 10px 12px;
  color: var(--ink);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.lang__option:hover, .lang__option.active { background: var(--surface-high); }
.menu-btn {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: transparent;
  font-size: 0;
  line-height: 1;
  z-index: 130;
}
.menu-btn::before,
.menu-btn::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--ink);
  transition: transform .28s ease, box-shadow .28s ease;
}
.menu-btn::before {
  top: 16px;
  box-shadow: 0 6px 0 var(--ink);
}
.menu-btn::after { top: 28px; }
.menu-btn.open::before {
  top: 22px;
  transform: rotate(45deg);
  box-shadow: 0 0 0 transparent;
}
.menu-btn.open::after {
  top: 22px;
  transform: rotate(-45deg);
}

.section { padding: 82px 0; }
.hero { padding: 70px 0 74px; }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(220px, 4fr);
  gap: var(--gutter);
  align-items: end;
}
.eyebrow {
  color: var(--gold);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .22em;
  margin: 0 0 24px;
}
.h1, h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 700;
  margin: 0 0 28px;
  max-width: 890px;
  overflow-wrap: anywhere;
}
.h2, h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.16;
  font-weight: 600;
  margin: 0 0 22px;
}
.h3, h3 {
  font-family: var(--font-serif);
  font-size: 29px;
  line-height: 1.22;
  font-weight: 500;
  margin: 0 0 10px;
}
.lead { max-width: 720px; color: var(--muted); font-size: 18px; margin: 0; }
.editorial-line {
  width: 104px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 0 0 30px;
}
.aside-note { color: var(--faint); font-size: 12px; font-style: italic; text-align: right; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: var(--radius);
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.btn--primary { background: var(--ink); color: white; }
.btn--primary:hover { opacity: .9; }
.btn--gold { border-color: var(--gold); color: var(--gold); }
.btn:disabled { opacity: .55; cursor: not-allowed; }

.filters { border-bottom: 1px solid var(--surface-high); display: flex; flex-wrap: wrap; gap: 18px; padding-bottom: 20px; }
.filter-btn {
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 600;
}
.filter-btn.active { background: var(--ink); color: white; }
.filter-btn:hover:not(.active) { background: var(--surface-mid); }

.team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 66px 34px; }
.member-card { min-width: 0; }
.member-card__image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--surface-mid);
  margin-bottom: 16px;
}
.member-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: transform .7s ease, filter .7s ease;
}
.member-card:hover img { transform: scale(1.04); filter: grayscale(0); }
.member-card__role {
  display: block;
  color: var(--gold);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: 7px;
}
.member-card__bio {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.quote-band {
  background: var(--paper);
  border-top: 1px solid rgba(119, 90, 25, .12);
  border-bottom: 1px solid rgba(119, 90, 25, .12);
  text-align: center;
}
.quote-mark { color: var(--gold); font-family: var(--font-serif); font-size: 74px; line-height: .7; margin-bottom: 24px; }
.quote-text { max-width: 760px; margin: 0 auto 28px; font-family: var(--font-serif); font-size: clamp(26px, 3vw, 38px); line-height: 1.25; font-style: italic; }

.footer { background: var(--surface-high); border-top: 1px solid rgba(28, 28, 23, .08); }
.footer__grid { display: grid; grid-template-columns: 1.25fr .95fr .9fr 1.1fr; gap: 52px; padding: 64px 0; }
.footer__brand { display: grid; gap: 18px; align-content: start; }
.footer h4 { font-family: var(--font-sans); font-size: 12px; line-height: 1; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 18px; }
.footer p, .footer a, .footer li, .footer address { color: var(--muted); font-size: 14px; font-style: normal; }
.footer a:hover { color: var(--ink); }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer__contact { display: grid; gap: 9px; }
[data-site-setting="address"] { white-space: pre-line; }
.company-legal {
  display: grid;
  gap: 5px;
  white-space: normal;
}
.footer__bottom { border-top: 1px solid rgba(28,28,23,.08); color: var(--faint); font-size: 13px; }
.footer__bottom-inner { display: flex; justify-content: space-between; gap: 18px; align-items: center; padding: 26px 0; }
.footer__legal-row { display: flex; gap: 18px; flex-wrap: wrap; justify-content: flex-end; }
.footer__legal-row a { color: var(--faint); font-size: 13px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: start; }
.panel {
  background: var(--paper);
  border: 1px solid rgba(119, 90, 25, .14);
  border-radius: var(--radius-lg);
  padding: 34px;
}
.contact-stack {
  display: grid;
  gap: 22px;
}
.legal-info-card {
  box-shadow: 0 14px 36px rgba(28, 28, 23, .07);
}
.legal-info-card h2 {
  margin-bottom: 28px;
}
.legal-info-list {
  display: grid;
  gap: 18px;
}
.legal-info-row {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 22px;
  align-items: baseline;
  font-size: 18px;
}
.legal-info-row strong {
  color: var(--ink);
  font-weight: 700;
}
.legal-info-row span {
  color: #71809b;
}
.service-list { display: grid; gap: 20px; }
.service-item { border-top: 1px solid var(--surface-high); padding-top: 20px; }
.service-item:first-child { border-top: 0; padding-top: 0; }

.home-hero {
  position: relative;
  min-height: clamp(610px, 74vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(119, 90, 25, .12);
}
.home-hero__media {
  position: absolute;
  inset: 0;
  background: #f4f0e6;
}
.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}
.home-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(252,249,240,.98) 0%, rgba(252,249,240,.88) 38%, rgba(252,249,240,.22) 68%, rgba(252,249,240,0) 100%),
    linear-gradient(0deg, rgba(252,249,240,.12), rgba(252,249,240,.12));
}
.home-hero__content {
  position: relative;
  z-index: 1;
}
.home-hero__content .lead { max-width: 620px; }
.home-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.home-heritage__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 54px;
  align-items: start;
}
.home-heritage__grid > *,
.home-expertise__grid > *,
.consult-hero__grid > *,
.consult-layout > * {
  min-width: 0;
}
.home-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  margin: 0;
}
.home-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 34px;
}
.home-stats strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1;
  margin-bottom: 10px;
}
.home-stats span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.section-head { margin-bottom: 46px; }
.section-head--center { text-align: center; }
.section-head--center .eyebrow { margin-bottom: 16px; }
.home-services { background: var(--surface-low); }
.home-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.home-service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(119, 90, 25, .18);
  background: var(--paper);
  padding: 30px;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.home-service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 22px 46px rgba(28, 28, 23, .08);
}
.home-service-card__mark {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(119, 90, 25, .35);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 28px;
}
.home-service-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
}
.home-service-card p {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 26px;
}
.home-service-card a {
  margin-top: auto;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  border-bottom: 1px solid rgba(119, 90, 25, .5);
  padding-bottom: 4px;
}
.home-expertise__grid {
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(0, 1fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: center;
}
.home-expertise__image {
  position: relative;
}
.home-expertise__image::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 210px;
  height: 210px;
  background: rgba(233, 193, 118, .16);
  z-index: -1;
}
.home-expertise__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(.35);
}
.home-expertise__copy { max-width: 650px; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  gap: 16px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid var(--gold);
  background: var(--gold);
  box-shadow: inset 0 0 0 3px var(--surface);
  flex: 0 0 auto;
}
.text-link {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 5px;
}
.home-quote {
  background: #000101;
  color: white;
  text-align: center;
  padding: 88px 0;
}
.home-quote .quote-text {
  color: white;
  max-width: 850px;
}
.btn--light {
  border-color: white;
  color: white;
}
.btn--light:hover {
  background: white;
  color: var(--ink);
}

.consult-hero {
  padding: 72px 0 64px;
}
.consult-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 560px);
  gap: 56px;
  align-items: center;
}
.consult-hero__image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-mid);
}
.consult-hero__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.consult-section {
  background: var(--surface-low);
  padding: 74px 0;
}
.consult-layout {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 760px);
  gap: 48px;
  align-items: start;
}
.consult-aside {
  position: sticky;
  top: 112px;
}
.consult-aside h2 {
  font-size: 34px;
}
.consult-aside p {
  color: var(--muted);
  margin: 0;
}
.privacy-note {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-top: 1px solid rgba(119, 90, 25, .18);
  margin-top: 32px;
  padding-top: 24px;
}
.privacy-note__icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  flex: 0 0 auto;
}
.privacy-note strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.privacy-note p {
  font-size: 13px;
  line-height: 1.45;
}
.consult-form {
  min-width: 0;
  background: var(--surface);
  border: 1px solid rgba(119, 90, 25, .16);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 56px);
  box-shadow: 0 24px 70px rgba(28, 28, 23, .06);
}
.consult-form .steps {
  margin: 0 0 34px;
}
.consult-form .step.active {
  gap: 22px;
}
.consult-form .step h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 4px;
}
.step-kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin: 0;
}
.consult-form .option {
  min-height: 78px;
  border-color: rgba(119, 90, 25, .18);
  background: rgba(255,255,255,.56);
  padding: 20px;
  font-weight: 700;
}
.consult-form .option:hover,
.consult-form .option.active {
  border-color: var(--gold);
  background: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(119, 90, 25, .18);
}
.field--line input,
.field--line textarea {
  background: transparent;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}
.consult-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.consult-fields .field:last-child {
  grid-column: 1 / -1;
}
.preference-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.preference-grid .checkbox,
.checkbox--privacy {
  border: 1px solid rgba(119, 90, 25, .14);
  background: rgba(255,255,255,.54);
  padding: 14px;
  border-radius: var(--radius);
}
.trust-strip {
  padding: 42px 0;
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.trust-strip__grid span {
  color: var(--gold);
  margin-right: 8px;
}

.form { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 12px; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface-low);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 13px 14px;
  color: var(--ink);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-bottom-color: var(--gold); }
.checkbox { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: 14px; }
.notice { padding: 14px 16px; border-radius: var(--radius); background: var(--surface-mid); color: var(--muted); display: none; }
.notice.show { display: block; }
.notice.ok { color: var(--ok); }
.notice.error { color: var(--error); }

.steps { display: flex; gap: 8px; margin-bottom: 24px; }
.step-dot { flex: 1; height: 3px; background: var(--surface-high); }
.step-dot.active, .step-dot.done { background: var(--gold); }
.step { display: none; }
.step.active { display: grid; gap: 20px; }
.option-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.option {
  border: 1px solid var(--surface-high);
  background: var(--paper);
  text-align: left;
  border-radius: var(--radius);
  padding: 18px;
}
.option.active { border-color: var(--gold); background: var(--surface-low); }
.form-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 10px; }

.agent-profile { display: grid; grid-template-columns: minmax(260px, 380px) minmax(0, 1fr); gap: 56px; align-items: start; }
.agent-photo { aspect-ratio: 3 / 4; background: var(--surface-mid); overflow: hidden; }
.agent-photo img { width: 100%; height: 100%; object-fit: cover; }
.agent-bio { white-space: pre-line; color: var(--muted); font-size: 17px; }

.admin-body { background: #f7f3ea; }
.admin-header { background: var(--ink); color: white; }
.admin-header .header__inner { min-height: 68px; }
.admin-shell { padding: 34px 0 70px; }
.admin-tabs { display: flex; gap: 10px; border-bottom: 1px solid var(--line); margin-bottom: 24px; overflow-x: auto; }
.admin-tab { border: 0; background: transparent; padding: 14px 16px; color: var(--muted); font-weight: 700; }
.admin-tab.active { color: var(--ink); border-bottom: 2px solid var(--gold); }
.admin-view { display: none; }
.admin-view.active { display: block; }
.admin-toolbar { display: flex; justify-content: space-between; gap: 16px; align-items: center; margin-bottom: 18px; }
.admin-card { background: var(--paper); border: 1px solid rgba(119, 90, 25, .14); border-radius: var(--radius-lg); padding: 24px; }
.submission, .team-row { border-top: 1px solid var(--surface-high); padding: 18px 0; }
.submission:first-child, .team-row:first-child { border-top: 0; }
.submission__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin: 12px 0; }
.meta-label { color: var(--gold); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.team-row { display: grid; grid-template-columns: 42px 72px minmax(0, 1fr) auto; gap: 16px; align-items: center; }
.team-row img { width: 72px; height: 92px; object-fit: cover; filter: grayscale(1); background: var(--surface-mid); }
.drag-handle { border: 1px solid var(--line); background: var(--surface-low); width: 34px; height: 34px; border-radius: var(--radius); }
.row-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.open { display: flex; }
.modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.modal__content { position: relative; width: min(760px, 100%); max-height: 92vh; overflow: auto; background: var(--paper); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); }
.modal__head { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 20px; }
.icon-btn { width: 38px; height: 38px; border: 1px solid var(--line); background: var(--paper); border-radius: var(--radius); }
.photo-preview { width: 110px; height: 138px; object-fit: cover; background: var(--surface-mid); display: none; }
.photo-preview.show { display: block; }

@media (max-width: 900px) {
  body.nav-lock { overflow: hidden; }
  body.nav-lock::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 90;
    background: var(--surface);
  }
  body.nav-lock .header {
    z-index: 140;
    background: var(--surface);
    backdrop-filter: none;
  }
  .nav {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 120;
    background: #fcf9f0;
    padding: 112px max(28px, var(--margin)) 42px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    transform: translateX(100%);
    pointer-events: none;
    transition: transform .34s cubic-bezier(.22, .61, .36, 1);
    box-shadow: -18px 0 42px rgba(28, 28, 23, .12);
  }
  .nav.open {
    transform: translateX(0);
    pointer-events: auto;
  }
  .nav__link {
    width: 100%;
    padding: 18px 0;
    font-size: 24px;
    border-bottom: 1px solid rgba(119, 90, 25, .14);
  }
  .menu-btn { display: inline-flex; }
  .hero__grid, .split, .agent-profile, .home-heritage__grid, .home-expertise__grid, .consult-hero__grid, .consult-layout { grid-template-columns: 1fr; }
  .aside-note { text-align: left; }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid, .submission__grid, .home-service-grid, .trust-strip__grid { grid-template-columns: 1fr 1fr; }
  .consult-aside { position: static; }
  .consult-hero__image { max-width: 620px; }
  .preference-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .header__inner { min-height: 66px; }
  .header__actions { gap: 6px; }
  .team-grid, .footer__grid, .option-grid, .submission__grid, .home-service-grid, .home-stats, .consult-fields, .preference-grid, .trust-strip__grid { grid-template-columns: 1fr; }
  .legal-info-row { grid-template-columns: 1fr; gap: 4px; }
  .section { padding: 58px 0; }
  .hero { padding: 46px 0; }
  .home-hero { min-height: 560px; }
  .home-hero__media img { object-position: center 72%; }
  .home-hero__media::after { background: linear-gradient(90deg, rgba(252,249,240,.96), rgba(252,249,240,.76)); }
  .home-hero__actions .btn, .consult-form .form-actions .btn { width: 100%; }
  .consult-hero { padding: 46px 0; }
  .consult-hero h1 { font-size: 34px; }
  .consult-section { padding: 48px 0; }
  .consult-hero__image { display: none; }
  .form-actions { flex-direction: column-reverse; }
  .form-actions span { display: none; }
  .h1, h1 { font-size: 36px; line-height: 1.12; }
  .footer__bottom-inner { align-items: flex-start; flex-direction: column; }
  .footer__legal-row { justify-content: flex-start; }
  .panel, .admin-card, .modal__content { padding: 20px; }
  .team-row { grid-template-columns: 34px 58px minmax(0, 1fr); }
  .team-row img { width: 58px; height: 74px; }
  .row-actions { grid-column: 2 / -1; }
}
