:root {
  --bg: #f5f1eb;
  --surface: #fffdf9;
  --surface-strong: #ffffff;
  --ink: #1f2a28;
  --muted: #5a6966;
  --line: #d7d0c4;
  --brand: #0f4c53;
  --brand-soft: #dceceb;
  --accent: #b88a3b;
  --accent-soft: #efe2cb;
  --shadow: 0 18px 48px rgba(31, 42, 40, 0.08);
  --max: 1180px;
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, p, ul, ol, dl { margin: 0; }
ul, ol { padding-left: 1.2rem; }
.wrap { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 249, 0.92);
  border-bottom: 1px solid rgba(215, 208, 196, 0.8);
  backdrop-filter: blur(12px);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.85rem; min-width: 0; }
.brand img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--surface-strong);
}
.brand span { font-size: 0.98rem; font-weight: 600; }
.site-nav { display: flex; align-items: center; gap: 1.25rem; }
.site-nav a { font-size: 0.96rem; color: var(--muted); }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--brand); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 600;
}
.button-primary { background: var(--brand); color: #fff; }
.button-primary:hover, .button-primary:focus-visible { background: #0b3d42; }
.site-nav a.button-primary,
.site-nav a.button-primary:hover,
.site-nav a.button-primary:focus-visible {
  color: #fff;
}
.button-secondary { background: var(--surface-strong); border-color: rgba(15, 76, 83, 0.22); color: var(--brand); }
.button-secondary:hover, .button-secondary:focus-visible { background: var(--brand-soft); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface-strong);
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
}
.menu-toggle span + span { margin-top: 6px; }

.hero {
  position: relative;
  overflow: clip;
  background:
    linear-gradient(90deg, rgba(16, 24, 23, 0.86) 0%, rgba(16, 24, 23, 0.72) 44%, rgba(16, 24, 23, 0.18) 72%, rgba(16, 24, 23, 0.08) 100%),
    linear-gradient(180deg, #d9e6e0 0%, #efe7da 100%);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 74% 18%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.24) 100%); }
.hero-content {
  position: relative;
  z-index: 1;
  padding: 6.5rem 0 4.25rem;
  min-height: 78svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}
.hero-content h1, .section h2 {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  letter-spacing: 0;
}
.hero-content h1 { max-width: 11ch; font-size: 4.5rem; line-height: 0.95; color: #fff; }
.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: #fff;
  color: var(--brand);
  border: 1px solid rgba(15, 76, 83, 0.12);
  box-shadow: 0 8px 18px rgba(31, 42, 40, 0.04);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}
.hero .eyebrow {
  background: rgba(255,255,255,0.14);
  color: #f4efe6;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: none;
}
.lead { max-width: 54ch; color: rgba(255,255,255,0.88); font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  list-style: none;
  padding: 0;
  color: #f4efe6;
  font-size: 0.95rem;
}
.hero-points li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
}

.trust-strip { background: var(--surface-strong); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; padding: 1.1rem 0; }
.trust-grid p { color: var(--muted); font-size: 0.95rem; }

.section { padding: 5.5rem 0; }
.section-alt { background: #f1ece4; }
.section-accent {
  background: linear-gradient(180deg, var(--brand-soft) 0%, #f0efe9 100%);
  border-top: 1px solid rgba(15, 76, 83, 0.1);
  border-bottom: 1px solid rgba(15, 76, 83, 0.1);
}

.profile-grid, .credentials-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2rem;
  align-items: start;
}
.credentials-grid {
  grid-template-columns: 1fr;
  gap: 2rem;
}
.section-copy, .section-heading { display: grid; gap: 1rem; }
.section-heading {
  justify-items: center;
  text-align: center;
}
.section h2 { font-size: 3rem; line-height: 0.98; }
.section-copy p:not(.eyebrow), .section-heading p:last-child, .credentials-list p, .service p, .contact-copy p:last-child { color: var(--muted); }

.profile-panel, .contact-panel {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.profile-panel { padding: 1.4rem; }
.profile-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,253,249,0.98) 100%);
}
.profile-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #e5d3ac, transparent);
}
.profile-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 0.4rem;
  border-bottom: 1px solid rgba(215, 208, 196, 0.7);
}
.panel-logo {
  width: 118px;
  height: 118px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(184, 138, 59, 0.24);
  box-shadow: 0 16px 28px rgba(31, 42, 40, 0.08);
  padding: 0.35rem;
}
.profile-badge-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
}
.profile-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.84rem;
  font-weight: 700;
}
.facts { display: grid; gap: 1rem; }
.facts div { padding-top: 1rem; border-top: 1px solid var(--line); }
.facts dt {
  font-weight: 700;
  margin-bottom: 0.3rem;
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--brand);
}
.fact-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.fact-label-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(180deg, #eef8f7 0%, #dcefee 100%);
  box-shadow: inset 0 0 0 1px rgba(15, 76, 83, 0.08);
}
.fact-label-icon svg {
  width: 15px;
  height: 15px;
}
.facts dd {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.45;
}
.attention-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}
.attention-points li {
  display: grid;
  gap: 0.12rem;
  padding-left: 1rem;
  position: relative;
}
.attention-points li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.attention-points strong {
  color: var(--ink);
  font-size: 1rem;
}
.attention-item-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
}
.attention-points span {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}
.attention-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.4rem;
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}
.attention-link::after {
  content: "↗";
  font-size: 0.88rem;
}
.attention-link:hover,
.attention-link:focus-visible {
  color: #0b3d42;
}
.fact-channels {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.fact-channel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(180deg, #eef8f7 0%, #dcefee 100%);
  color: var(--brand);
  box-shadow: inset 0 0 0 1px rgba(15, 76, 83, 0.08);
}
.fact-channel:hover,
.fact-channel:focus-visible {
  background: linear-gradient(180deg, #dff3f1 0%, #cfe9e7 100%);
  box-shadow: inset 0 0 0 1px rgba(15, 76, 83, 0.14), 0 8px 18px rgba(15, 76, 83, 0.08);
  transform: translateY(-1px);
}
.fact-channel svg {
  width: 19px;
  height: 19px;
}

.service-grid, .credentials-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.4rem;
}
.credentials-grid .section-copy {
  justify-items: center;
  text-align: center;
}
.credentials-grid .section-copy .eyebrow {
  justify-self: center;
}
.credentials-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}
.service {
  display: grid;
  align-content: start;
  gap: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 252, 246, 0.98) 100%);
  border: 1px solid rgba(184, 138, 59, 0.2);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem 1.55rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.service::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(184, 138, 59, 0.95) 0%, rgba(184, 138, 59, 0.24) 65%, transparent 100%);
}
.service-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #f5fffd 0%, #dcefee 62%, #d0e6e4 100%);
  color: var(--brand);
  font-size: 1.05rem;
  font-weight: 700;
  justify-self: center;
  padding: 0.52rem;
  box-shadow: inset 0 0 0 1px rgba(15, 76, 83, 0.08), 0 14px 26px rgba(15, 76, 83, 0.08);
  margin-top: 0.15rem;
}
.service-mark svg {
  width: 100%;
  height: 100%;
}
.service-mark img {
  width: 84%;
  height: 84%;
  object-fit: contain;
  display: block;
}
.service-icon {
  transform-origin: center;
  filter: drop-shadow(0 2px 6px rgba(15, 76, 83, 0.08));
}
.service-icon-face {
  transform: scale(1.36);
}
.service-icon-body {
  transform: scale(1.24);
}
.service-icon-capilar {
  transform: scale(1.32);
}
.service h3, .credentials-list h3 { margin-bottom: 0.55rem; font-size: 1.15rem; }
.service h3 {
  text-align: center;
  font-family: "Instrument Serif", serif;
  font-size: 2.05rem;
  font-weight: 400;
  line-height: 0.96;
  margin-bottom: 0.2rem;
}
.service p {
  min-height: 6.7rem;
  font-size: 1.04rem;
  line-height: 1.58;
}
.service ul {
  margin-top: 0.15rem;
  color: var(--ink);
  display: grid;
  gap: 0.3rem;
}
.service li::marker {
  color: var(--brand);
}
.credentials-list article {
  display: grid;
  justify-items: start;
  align-content: start;
  gap: 0.8rem;
  padding: 1.3rem;
  border-top: 3px solid var(--accent);
  background: var(--surface-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.credential-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 1.35rem;
  font-weight: 700;
  justify-self: center;
}
.credentials-list h3 {
  text-align: center;
  justify-self: center;
}

.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.process-list { display: grid; gap: 0.9rem; color: var(--ink); }
.process-list li { padding: 1rem 1rem 1rem 0.4rem; border-bottom: 1px solid rgba(15, 76, 83, 0.14); }

.category-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.6rem;
  margin-bottom: 0.8rem;
}
.category-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 76, 83, 0.16);
  background: #fff;
  color: var(--brand);
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 12px 24px rgba(31, 42, 40, 0.05);
}
.category-nav a:hover,
.category-nav a:focus-visible {
  background: var(--brand-soft);
}

.media-section {
  margin-top: 2.8rem;
}
.media-heading {
  display: grid;
  gap: 0.7rem;
  justify-items: center;
  text-align: center;
  margin-bottom: 1.5rem;
}
.media-kicker {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
}
.media-heading h3 {
  font-family: "Instrument Serif", serif;
  font-size: 3.1rem;
  font-weight: 400;
  line-height: 0.98;
  max-width: 22ch;
}
.media-heading p:last-child {
  color: var(--muted);
  max-width: 68ch;
  font-size: 1.08rem;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}
.media-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.media-card {
  display: grid;
  align-content: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}
.media-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #101817;
}
.media-body {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
}
.media-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.media-share {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: auto;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  min-width: 36px;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 76, 83, 0.12);
  background: #fff;
  color: var(--brand);
  box-shadow: 0 6px 14px rgba(31, 42, 40, 0.04);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}
.share-btn:hover,
.share-btn:focus-visible {
  background: var(--brand-soft);
}
.share-btn.is-share::before {
  content: "↗";
  margin-right: 0.35rem;
  font-size: 0.9rem;
}
.share-btn.is-copy::before {
  content: "⧉";
  margin-right: 0.35rem;
  font-size: 0.86rem;
}
.media-body h4 {
  font-size: 1.18rem;
  line-height: 1.2;
}
.media-body p:last-child {
  color: var(--muted);
}
.media-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: fit-content;
  min-height: 40px;
  margin-top: 0.25rem;
  padding: 0.52rem 0.9rem;
  border-radius: 8px;
  background: #e8f6ef;
  color: #166534;
  border: 1px solid rgba(22, 101, 52, 0.14);
  font-weight: 700;
}
.media-wa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex: 0 0 32px;
  position: relative;
  overflow: hidden;
}
.media-wa-static,
.media-wa-gif {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.media-wa-static {
  background: #22c55e;
  color: #fff;
  opacity: 1;
}
.media-wa-static svg {
  width: 18px;
  height: 18px;
}
.media-wa-gif {
  width: 32px;
  height: 32px;
  object-fit: cover;
  display: block;
  opacity: 0;
}
.media-wa:hover .media-wa-static,
.media-wa:focus-visible .media-wa-static {
  opacity: 0;
}
.media-wa:hover .media-wa-gif,
.media-wa:focus-visible .media-wa-gif {
  opacity: 1;
}
.media-wa:hover,
.media-wa:focus-visible {
  background: #dff3e8;
}
.media-tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-panel { display: grid; overflow: hidden; }
.contact-link {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 0.9rem;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--line);
}
.contact-link:last-child { border-bottom: 0; }
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(180deg, #eef8f7 0%, #dcefee 100%);
  color: var(--brand);
  box-shadow: inset 0 0 0 1px rgba(15, 76, 83, 0.08);
}
.contact-icon svg {
  width: 24px;
  height: 24px;
}
.contact-text {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}
.contact-link strong { color: var(--brand); font-size: 1.05rem; }
.contact-text span { color: var(--muted); }
.contact-link:hover, .contact-link:focus-visible { background: var(--brand-soft); }
.contact-note {
  max-width: 52ch;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  padding: 1rem 1.1rem;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--ink);
  padding-right: 1.5rem;
  position: relative;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--brand);
  font-size: 1.2rem;
  line-height: 1;
}
.faq-item[open] summary::after {
  content: "-";
}
.faq-item p {
  margin-top: 0.85rem;
  color: var(--muted);
}

.site-footer { background: #15211f; color: #e9e2d7; }
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .menu-toggle { display: inline-block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .hero-content { min-height: 68svh; padding-top: 5rem; }
  .hero-content h1 { max-width: 9ch; font-size: 3.4rem; }
  .trust-grid, .profile-grid, .process-grid, .contact-grid, .service-grid { grid-template-columns: 1fr; }
  .credentials-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .media-grid,
  .media-grid-two,
  .faq-grid { grid-template-columns: 1fr 1fr; }
  .profile-panel-head {
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .brand span { font-size: 0.9rem; }
  .header-row { min-height: 74px; }
  .hero { background: linear-gradient(180deg, rgba(16,24,23,0.72) 0%, rgba(16,24,23,0.52) 44%, rgba(16,24,23,0.7) 100%); }
  .hero-media img { object-position: 49% 14%; }
  .hero-content { padding: 4.2rem 0 3rem; justify-content: end; gap: 1rem; }
  .hero-content h1 { max-width: 8ch; font-size: 2.3rem; line-height: 0.93; }
  .lead { font-size: 1rem; }
  .hero-actions {
    width: 100%;
  }
  .hero-actions .button {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 0;
  }
  .hero-points {
    display: grid;
    gap: 0.65rem;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 0.95rem 0;
  }
  .section { padding: 4rem 0; }
  .section h2 { font-size: 2.1rem; line-height: 1; }
  .profile-panel {
    padding: 1.2rem;
  }
  .panel-logo {
    width: 102px;
    height: 102px;
  }
  .facts dd {
    font-size: 1rem;
  }
  .attention-points {
    gap: 0.7rem;
  }
  .attention-points span {
    font-size: 0.95rem;
  }
  .attention-link {
    font-size: 0.9rem;
  }
  .service {
    padding: 1.5rem 1.2rem 1.25rem;
  }
  .service-mark {
    width: 88px;
    height: 88px;
  }
  .service h3 {
    font-size: 1.7rem;
  }
  .service p {
    min-height: auto;
  }
  .category-nav {
    gap: 0.65rem;
    justify-content: center;
  }
  .category-nav a {
    min-height: 50px;
    padding: 0.8rem 1.05rem;
    font-size: 0.98rem;
  }
  .media-heading {
    justify-items: start;
    text-align: left;
  }
  .media-heading h3 {
    font-size: 2.2rem;
    max-width: 100%;
  }
  .media-kicker {
    font-size: 0.95rem;
  }
  .media-heading p:last-child {
    font-size: 1rem;
  }
  .profile-panel-head {
    flex-direction: column;
  }
  .profile-badge-group {
    justify-content: flex-start;
  }
  .process-grid {
    gap: 1.4rem;
  }
  .process-list li {
    padding: 0.95rem 0 0.95rem 0.25rem;
  }
  .contact-link {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 0.8rem;
    padding: 1rem;
  }
  .contact-icon {
    width: 50px;
    height: 50px;
  }
  .credentials-list { grid-template-columns: 1fr; }
  .media-grid,
  .media-grid-two,
  .faq-grid { grid-template-columns: 1fr; }
  .footer-row { flex-direction: column; }
}

@media (max-width: 540px) {
  .wrap {
    width: min(calc(100% - 1.25rem), var(--max));
  }
  .brand {
    gap: 0.65rem;
  }
  .brand img {
    width: 56px;
    height: 56px;
  }
  .brand span {
    font-size: 0.84rem;
    line-height: 1.25;
  }
  .menu-toggle {
    width: 42px;
    height: 42px;
  }
  .hero-media img {
    object-position: 43% 14%;
  }
  .hero-content {
    min-height: 74svh;
    padding: 3.6rem 0 2.4rem;
    gap: 0.9rem;
  }
  .hero .eyebrow {
    font-size: 0.72rem;
    padding: 0.36rem 0.58rem;
  }
  .hero-content h1 {
    max-width: 7.2ch;
    font-size: 2.02rem;
  }
  .lead {
    max-width: 24ch;
    font-size: 0.96rem;
  }
  .hero-actions {
    gap: 0.7rem;
  }
  .hero-actions .button {
    min-height: 44px;
    padding-inline: 0.9rem;
  }
  .hero-points {
    gap: 0.5rem;
    font-size: 0.92rem;
  }
  .trust-grid p {
    font-size: 0.92rem;
  }
  .section {
    padding: 3.5rem 0;
  }
  .section h2 {
    font-size: 1.82rem;
    line-height: 1.02;
  }
  .section-copy,
  .section-heading,
  .contact-copy,
  .media-heading {
    gap: 0.8rem;
  }
  .profile-panel {
    padding: 1rem;
  }
  .panel-logo {
    width: 88px;
    height: 88px;
  }
  .profile-badge-group {
    gap: 0.45rem;
  }
  .profile-badge {
    min-height: 34px;
    padding: 0.48rem 0.72rem;
    font-size: 0.78rem;
  }
  .facts {
    gap: 0.8rem;
  }
  .facts div {
    padding-top: 0.85rem;
  }
  .fact-label {
    gap: 0.45rem;
  }
  .fact-label-icon {
    width: 28px;
    height: 28px;
  }
  .fact-label-icon svg {
    width: 14px;
    height: 14px;
  }
  .fact-channels {
    gap: 0.55rem;
  }
  .attention-points li {
    gap: 0.08rem;
  }
  .attention-item-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.15rem;
  }
  .attention-points strong {
    font-size: 0.96rem;
  }
  .attention-points span {
    font-size: 0.92rem;
  }
  .attention-link {
    font-size: 0.88rem;
  }
  .fact-channel {
    width: 40px;
    height: 40px;
  }
  .service {
    padding: 1.35rem 1rem 1.15rem;
    gap: 0.85rem;
  }
  .service-mark {
    width: 82px;
    height: 82px;
  }
  .service h3 {
    font-size: 1.52rem;
  }
  .service p {
    font-size: 0.98rem;
    line-height: 1.55;
  }
  .service ul {
    gap: 0.22rem;
    padding-left: 1rem;
  }
  .media-section {
    margin-top: 2.2rem;
  }
  .media-heading {
    margin-bottom: 1.1rem;
  }
  .media-heading h3 {
    font-size: 1.88rem;
    line-height: 1.02;
  }
  .media-heading p:last-child {
    font-size: 0.98rem;
  }
  .category-nav {
    gap: 0.55rem;
  }
  .category-nav a {
    min-height: 46px;
    padding: 0.7rem 0.9rem;
    font-size: 0.92rem;
  }
  .media-body {
    padding: 0.9rem;
  }
  .media-body h4 {
    font-size: 1.08rem;
  }
  .media-tag {
    font-size: 0.72rem;
  }
  .process-list {
    gap: 0.5rem;
  }
  .process-list li {
    padding: 0.85rem 0 0.85rem 0.15rem;
  }
  .contact-link {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 0.75rem;
    padding: 0.9rem;
  }
  .contact-icon {
    width: 46px;
    height: 46px;
  }
  .contact-icon svg {
    width: 21px;
    height: 21px;
  }
  .contact-link strong {
    font-size: 0.98rem;
  }
  .faq-item {
    padding: 0.95rem 0.95rem;
  }
}
