:root {
  --ink: #1c1814;
  --ink-soft: #3f3a34;
  --muted: #6a635a;
  --paper: #f3eee6;
  --paper-2: #e8e0d3;
  --surface: #faf7f2;
  --white: #fffdf8;
  --line: #d7cec0;
  --accent: #8a2e2a;
  --accent-deep: #6a1f1c;
  --gold: #9c7a3c;
  --shadow: 0 18px 50px rgba(28, 24, 20, 0.1);
  --radius: 10px;
  --max: 1180px;
  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", serif;
  --sans: "Manrope", "Segoe UI", system-ui, sans-serif;
  --red-primary: var(--accent);
  --red-light: #f3e7df;
  --red-dark: var(--accent-deep);
  --red-accent: var(--accent);
  --gray: var(--paper);
  --gray-border: var(--line);
  --text: var(--ink);
  --text-muted: var(--muted);
  --font: var(--sans);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-weight: 450;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 28px;
  height: 72px;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo-img {
  width: 52px;
  height: 44px;
  object-fit: contain;
  object-position: left center;
  flex: 0 0 auto;
}

.logo-text {
  white-space: nowrap;
}

.logo-text strong {
  display: block;
  font-size: 15px;
  letter-spacing: 0.04em;
  font-weight: 700;
  line-height: 1.15;
}

.logo-text span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.2;
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 13px;
  line-height: 1;
  color: var(--ink-soft);
  white-space: nowrap;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  height: 40px;
}

.site-nav a:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  line-height: 1.15;
  min-height: 40px;
  min-width: 10.6rem;
}

.header-phone a {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
}

.header-phone small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-top: 3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 650;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 11px 20px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-deep);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: #fff;
  color: var(--ink);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.btn-small {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
}

.btn-small:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-remove {
  background: none;
  border: 0;
  color: var(--accent);
  cursor: pointer;
  font-size: 16px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: stretch;
  color: #f7f1e8;
  overflow: hidden;
}

.hero-photo,
.hero-veil {
  position: absolute;
  inset: 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.hero-veil {
  background:
    linear-gradient(90deg, rgba(18, 14, 12, 0.7) 0%, rgba(18, 14, 12, 0.38) 48%, rgba(18, 14, 12, 0.12) 100%),
    linear-gradient(180deg, rgba(18, 14, 12, 0.12), rgba(18, 14, 12, 0.28));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  gap: 40px;
  align-items: center;
  min-height: 78vh;
  padding: 72px 0;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e4c98a;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 11ch;
  margin-bottom: 18px;
}

.lede {
  font-size: 18px;
  color: rgba(247, 241, 232, 0.84);
  max-width: 38ch;
  margin-bottom: 28px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-facts span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-form {
  background: var(--white);
  color: var(--ink);
  border-radius: 16px;
  padding: 26px 24px 22px;
  box-shadow: 0 28px 70px rgba(12, 9, 7, 0.42);
  border: 1px solid rgba(255, 253, 248, 0.55);
}

.hero-form h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 6px;
}

.lead-intro {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.trust-bar {
  background: var(--ink);
  color: #efe6d8;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  padding: 22px 0;
}

.trust-item {
  font-size: 13px;
}

.trust-item b {
  display: block;
  font-size: 14px;
  color: #fff;
  margin-bottom: 4px;
}

.section {
  padding: 88px 0;
  scroll-margin-top: 80px;
}

.section-tight {
  padding-top: 0;
}

.section-alt {
  background: var(--paper-2);
}

.section-soft {
  background: var(--surface);
}

.certs-kicker {
  margin-top: 36px;
}

.essay-inner {
  max-width: 760px;
}

.calc-add {
  flex: 0 0 auto;
}

.section-kicker {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--muted);
  font-size: 17px;
  max-width: 52ch;
  margin-bottom: 40px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.split img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 18px;
}

.split-photo {
  object-position: 70% 60%;
}

.split p + p {
  margin-top: 16px;
  color: var(--ink-soft);
}

.work-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 18px;
}

.work-card {
  position: relative;
  min-height: 340px;
  border-radius: 16px;
  overflow: hidden;
  color: #fff;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.work-card img.work-on-site {
  object-position: 50% 62%;
}

.work-card .cap {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(16, 13, 11, 0.88));
}

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

.work-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.accreditation {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}

.accreditation img.lab {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
}

.accreditation-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px;
  margin-bottom: 14px;
}

.accreditation-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.accreditation-links .link {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 650;
}

.certificate-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, margin 0.3s ease;
}

.certificate-body.open {
  max-height: 720px;
  margin-top: 16px;
}

.certificate-body img {
  width: 100%;
  border-radius: 10px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  min-height: 100%;
}

.price-card h3 {
  font-size: 16px;
  font-weight: 650;
  margin-bottom: 12px;
}

.price-card .sum {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--accent);
}

.price-card .note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.price-details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 6px 8px;
}

.price-details summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 48px;
  padding: 0 14px;
}

.price-details summary::-webkit-details-marker {
  display: none;
}

.price-details summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(45deg);
  flex: 0 0 auto;
}

.price-details[open] summary::after {
  transform: rotate(-135deg);
}

.price-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, margin 0.3s ease;
}

.price-details[open] .price-content {
  max-height: 6000px;
  margin: 0 6px 10px;
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 14px;
}

.price-table th,
.price-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.price-table th {
  background: var(--paper);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 650;
}

.price-table .num {
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  width: 8.5rem;
}

.price-table .note-col {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  width: 34%;
}

.price-table .price-group td {
  background: var(--paper);
  color: var(--accent-deep);
  font-weight: 700;
  padding-top: 16px;
}

.price-table tbody tr:not(.price-group):not(.price-empty):hover td {
  background: #fff8f1;
}

.price-table.no-notes .note-col {
  display: none;
}

.price-empty td {
  text-align: center;
  color: var(--muted);
  padding: 28px 14px;
}

.calc-wrapper,
.lead-card,
.contacts-card,
.faq-item,
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.calc-wrapper {
  padding: 28px;
}

.calc-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
}

.calc-field {
  flex: 1 1 180px;
}

.calc-field label {
  display: block;
  font-size: 13px;
  font-weight: 650;
  margin-bottom: 6px;
}

.calc-field select,
.calc-field input,
.lead-field input,
.lead-field select,
.lead-field textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  font: inherit;
}

.calc-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 16px) calc(50% - 2px),
    calc(100% - 11px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 32px;
}

.calc-field select:focus,
.calc-field input:focus,
.lead-field input:focus,
.lead-field select:focus,
.lead-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(138, 46, 42, 0.12);
}

.calc-table-wrap {
  overflow-x: auto;
  margin-top: 18px;
}

.calc-table {
  width: 100%;
  border-collapse: collapse;
}

.calc-table th,
.calc-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
}

.calc-empty {
  text-align: center;
  color: var(--muted);
  padding: 18px;
}

.total-row td {
  font-weight: 700;
}

.total-row .sum {
  color: var(--accent);
  font-size: 20px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}

.step {
  padding-top: 8px;
}

.step b {
  display: block;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 10px;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.review-card {
  padding: 24px;
}

.review-card .text {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 18px;
}

.review-card .author {
  font-weight: 700;
}

.review-card .meta {
  color: var(--muted);
  font-size: 13px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 820px;
}

.faq-question {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-weight: 650;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question .arrow {
  color: var(--gold);
  transition: transform 0.25s;
}

.faq-item[open] .faq-question .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px 20px;
  color: var(--muted);
}

.essay p + p {
  margin-top: 14px;
  color: var(--ink-soft);
}

.lead-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

.contacts-card {
  padding: 22px;
}

.contacts-card h3 {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.contacts-card .phone {
  font-family: var(--serif);
  font-size: 28px;
}

.site-footer {
  background: var(--ink);
  color: #d9d0c3;
  padding: 0;
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr 1fr 0.9fr;
  gap: 28px 24px;
  padding: 36px 0 28px;
}

.footer-col h3 {
  color: #f3eee6;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-col p,
.footer-col a {
  display: block;
  margin-bottom: 8px;
  line-height: 1.45;
}

.footer-col a:hover {
  color: #e4c98a;
}

.footer-cookie {
  color: #9c9286;
  font-size: 12px;
  margin-top: 10px;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 16px 0 22px;
  border-top: 1px solid rgba(217, 208, 195, 0.12);
  color: #9c9286;
}

.footer-meta-left {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}

.footer-meta a:hover {
  color: #e4c98a;
}

.studio-lockup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  text-align: right;
  opacity: 0.88;
  transition: opacity 0.2s ease;
}

.studio-lockup:hover {
  opacity: 1;
}

.studio-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 6px rgba(46, 230, 92, 0.25));
}

.studio-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.25;
}

.studio-text span {
  color: #9c9286;
  font-size: 11px;
}

.studio-text strong {
  color: #d9d0c3;
  font-size: 11px;
  font-weight: 650;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: none;
}

.analytics-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: #1c1916;
  color: #d9d0c3;
  padding: 14px 0;
  border-top: 1px solid rgba(228, 201, 138, 0.28);
}

.analytics-bar[hidden] {
  display: none !important;
}

.analytics-bar-inner {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.analytics-bar p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  max-width: 760px;
}

.analytics-bar a {
  color: #e4c98a;
  text-decoration: underline;
}

.analytics-bar-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 14px;
    font-size: 12px;
  }

  .site-nav a:nth-child(n + 5) {
    display: none;
  }
}

@media (max-width: 992px) {
  .header-row {
    grid-template-columns: auto 1fr;
    height: 64px;
  }

  .site-nav,
  .header-phone {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .city-select {
    width: 168px;
    flex-basis: 168px;
  }

  .hero-grid,
  .split,
  .work-grid,
  .accreditation,
  .price-grid,
  .steps,
  .reviews-grid,
  .lead-layout,
  .trust-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    max-width: none;
  }

  .split img,
  .work-card,
  .accreditation img.lab {
    height: 280px;
  }

  .mobile-cta {
    display: block;
    position: sticky;
    bottom: 0;
    z-index: 30;
    padding: 10px 16px 14px;
    background: rgba(250, 247, 242, 0.94);
    border-top: 1px solid var(--line);
  }

  .mobile-cta .btn {
    width: 100%;
  }

  .analytics-bar {
    bottom: 64px;
  }

  .analytics-bar-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .analytics-bar-actions .btn {
    flex: 1;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 56px 0;
  }

  .hero-grid {
    padding: 36px 0 40px;
  }

  .hero-form,
  .calc-wrapper {
    padding: 20px 16px;
  }
}

.city-gate {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(18, 14, 12, 0.62);
  display: grid;
  place-items: center;
  padding: 24px;
}

.city-gate[hidden] {
  display: none;
}

.city-gate-card {
  width: min(460px, 100%);
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.city-gate-card h2 {
  font-family: var(--serif);
  font-weight: 500;
  margin: 8px 0 10px;
}

.city-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.city-select {
  position: relative;
  width: 196px;
  flex: 0 0 196px;
}

.city-select-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 40px;
  padding: 0 14px 0 12px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
}

.city-select-btn [data-city-label] {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.city-select-btn:hover,
.city-select.open .city-select-btn {
  border-color: var(--accent);
}

.city-select-pin {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
}

.city-select-chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  margin-left: auto;
  opacity: 0.5;
  flex: 0 0 auto;
}

.city-select.open .city-select-chevron {
  transform: rotate(-135deg);
  margin-top: 3px;
}

.city-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  list-style: none;
  padding: 6px;
  z-index: 50;
}

.city-select-menu button {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 10px 12px;
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}

.city-select-menu button:hover,
.city-select-menu button[aria-selected="true"] {
  background: var(--paper);
  color: var(--accent);
}

.save-box,
.partner-card,
.cert-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
}

.save-box {
  margin: 18px 0;
}

.save-box label {
  font-size: 13px;
  font-weight: 650;
  color: var(--ink-soft);
}

.save-box input {
  display: block;
  margin-top: 6px;
  width: 120px;
  padding: 8px 10px;
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.inline-phone {
  font-weight: 700;
  border-bottom: 1px solid var(--gold);
}

.partners-grid,
.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.partner-card p,
.cert-card p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 6px;
}

.cert-card .link {
  display: inline-block;
  margin-right: 12px;
  margin-top: 10px;
  color: var(--accent);
  text-decoration: underline;
}

@media (max-width: 992px) {
  .partners-grid,
  .certs-grid {
    grid-template-columns: 1fr;
  }
}
