:root {
  --font-head: "Libre Baskerville", Georgia, serif;
  --font-body: "Work Sans", Arial, sans-serif;

  --mahogany: #3d0c02;
  --mahogany-deep: #260701;
  --gold: #daa520;
  --gold-soft: #f1d28a;

  --radius-sm: clamp(0.45rem, 0.35rem + 0.35vw, 0.75rem);
  --radius-md: clamp(0.75rem, 0.6rem + 0.7vw, 1.25rem);

  --shadow-soft: 0 1rem 2.4rem rgba(0, 0, 0, 0.18);
  --shadow-card: 0 0.65rem 1.5rem rgba(0, 0, 0, 0.14);

  --space-1: clamp(0.45rem, 0.4rem + 0.2vw, 0.65rem);
  --space-2: clamp(0.7rem, 0.6rem + 0.45vw, 1rem);
  --space-3: clamp(1rem, 0.85rem + 0.8vw, 1.45rem);
  --space-4: clamp(1.25rem, 1rem + 1.35vw, 2.25rem);
  --space-5: clamp(2rem, 1.4rem + 3vw, 4rem);
  --space-6: clamp(2.5rem, 1.8rem + 4.5vw, 6rem);
}

[data-theme="dark"] {
  --bg: #170604;
  --bg-soft: #220905;
  --bg-muted: #2c0b05;
  --surface: #321008;
  --surface-raised: #3a120a;
  --surface-contrast: #f8efd9;
  --text: #f7ead1;
  --text-soft: #e7d5b6;
  --text-muted: #cbb58e;
  --heading: #fff3d8;
  --line: rgba(218, 165, 32, 0.34);
  --line-soft: rgba(248, 239, 217, 0.16);
  --accent: #daa520;
  --accent-strong: #f1c85c;
  --accent-text: #1b0703;
  --danger: #ffb2a3;
  --success: #b9e7b7;
  --input-bg: #230905;
  --focus: #f1d28a;
  --overlay: rgba(61, 12, 2, 0.15);
}

[data-theme="light"] {
  --bg: #fbf5e8;
  --bg-soft: #f5ead4;
  --bg-muted: #efe0c4;
  --surface: #fffaf0;
  --surface-raised: #fffdf7;
  --surface-contrast: #260701;
  --text: #2c160f;
  --text-soft: #493025;
  --text-muted: #684b3d;
  --heading: #230b05;
  --line: rgba(61, 12, 2, 0.2);
  --line-soft: rgba(61, 12, 2, 0.13);
  --accent: #8b6508;
  --accent-strong: #6f5005;
  --accent-text: #fff8e7;
  --danger: #8d1d10;
  --success: #236a2f;
  --input-bg: #fffdf7;
  --focus: #8b6508;
  --overlay: rgba(61, 12, 2, 0.15);
}

/* BASE RESET */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-width: 0;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--text);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 0.9rem + 0.22vw, 1.05rem);
  line-height: 1.62;
  background:
    radial-gradient(circle at top left, rgba(218, 165, 32, 0.12), transparent 34rem),
    linear-gradient(180deg, var(--bg), var(--bg-soft));
  color: var(--text);
}

main,
section,
header,
footer,
div,
article,
nav,
form,
figure,
figcaption,
ul,
ol,
li,
p,
a,
span,
strong,
em,
label,
button,
h1,
h2,
h3,
h4 {
  min-width: 0;
}

img,
svg,
video,
canvas,
iframe {
  display: block;
  max-width: 100%;
}

img {
  width: 100%;
  height: auto;
}

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

p,
li,
figcaption,
summary,
label,
a {
  overflow-wrap: normal;
  word-break: normal;
}

a[href^="mailto:"],
a[href^="tel:"],
.contact-list a,
.legal-card a {
  overflow-wrap: break-word;
  word-break: normal;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-head);
  color: var(--heading);
  line-height: 1.18;
  letter-spacing: -0.018em;
  overflow-wrap: normal;
  word-break: normal;
}

h1 {
  font-size: clamp(1.85rem, 1.35rem + 3vw, 4.25rem);
}

h2 {
  font-size: clamp(1.45rem, 1.15rem + 1.45vw, 2.65rem);
}

h3 {
  font-size: clamp(1.08rem, 0.98rem + 0.55vw, 1.45rem);
}

p {
  margin: 0;
  color: var(--text-soft);
}

ul,
ol {
  margin: 0;
  padding: 0;
}

/* LAYOUT */

.container {
  width: 100%;
  max-width: 76rem;
  margin-inline: auto;
  padding-inline: clamp(1rem, 3.5vw, 2.25rem);
  min-width: 0;
}

.narrow {
  max-width: 52rem;
}

.center {
  text-align: center;
}

.section {
  padding-block: var(--space-6);
  overflow-x: hidden;
}

.section-muted {
  background:
    linear-gradient(180deg, var(--bg-muted), var(--bg-soft));
}

.section-accent {
  background:
    radial-gradient(circle at top right, rgba(218, 165, 32, 0.18), transparent 24rem),
    linear-gradient(135deg, var(--mahogany), var(--mahogany-deep));
  border-block: 0.0625rem solid var(--line);
}

.section-head {
  display: grid;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  text-align: center;
}

.section-head p {
  max-width: 46rem;
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 0.68rem + 0.18vw, 0.86rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: clamp(2.55rem, 2.3rem + 0.9vw, 3.1rem);
  padding-block: clamp(0.58rem, 0.5rem + 0.32vw, 0.82rem);
  padding-inline: clamp(0.95rem, 0.75rem + 0.8vw, 1.45rem);
  border: 0.0625rem solid var(--accent);
  border-radius: 999rem;
  background: var(--accent);
  color: var(--accent-text);
  font-size: clamp(0.86rem, 0.82rem + 0.16vw, 0.98rem);
  font-weight: 700;
  line-height: 1.18;
  text-align: center;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-0.08rem);
  box-shadow: 0 0.6rem 1.4rem rgba(218, 165, 32, 0.22);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 0.18rem solid var(--focus);
  outline-offset: 0.18rem;
}

.btn-ghost {
  background: transparent;
  color: var(--accent-strong);
}

.btn-ghost:hover {
  background: rgba(218, 165, 32, 0.12);
}

.btn-small {
  min-height: clamp(2.25rem, 2.05rem + 0.7vw, 2.7rem);
  padding-block: clamp(0.45rem, 0.4rem + 0.25vw, 0.65rem);
  padding-inline: clamp(0.75rem, 0.65rem + 0.5vw, 1.15rem);
  font-size: clamp(0.78rem, 0.75rem + 0.12vw, 0.9rem);
}

.text-link {
  display: inline;
  color: var(--accent-strong);
  font-weight: 700;
  border-bottom: 0.0625rem solid currentColor;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: clamp(56px, 5vw + 44px, 72px);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  border-bottom: 0.0625rem solid var(--line-soft);
  backdrop-filter: blur(1rem);
}

.nav-wrap {
  min-height: clamp(56px, 5vw + 44px, 72px);
  padding-inline: clamp(16px, 4vw, 40px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.55rem, 0.85vw, 1.2rem);
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.4rem, 0.35rem + 0.45vw, 0.75rem);
  min-width: 0;
  color: var(--heading);
  font-weight: 700;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(1.85rem, 1.55rem + 1.25vw, 2.65rem);
  height: clamp(1.85rem, 1.55rem + 1.25vw, 2.65rem);
  flex: 0 0 auto;
  border: 0.0625rem solid var(--line);
  border-radius: 50%;
  color: var(--accent-strong);
  font-size: clamp(0.95rem, 0.85rem + 0.75vw, 1.45rem);
}

.brand-text {
  font-family: var(--font-head);
  font-size: clamp(0.98rem, 0.82rem + 0.85vw, 1.6rem);
  line-height: 1;
  white-space: nowrap;
}

.main-nav {
  display: none;
  align-items: center;
  gap: clamp(0.35rem, 0.65vw, 0.95rem);
  min-width: 0;
}

.main-nav a {
  padding-block: clamp(0.3rem, 0.28rem + 0.18vw, 0.45rem);
  padding-inline: clamp(0.12rem, 0.1rem + 0.25vw, 0.4rem);
  color: var(--text-soft);
  font-size: clamp(0.78rem, 0.74rem + 0.16vw, 0.92rem);
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--accent-strong);
}

.site-header .hdr-cta {
  display: none;
  flex: 0 0 auto;
  white-space: nowrap;
}

.menu-toggle {
  width: clamp(44px, 4vw + 28px, 52px);
  height: clamp(44px, 4vw + 28px, 52px);
  min-width: 44px;
  min-height: 44px;
  flex: 0 0 auto;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.22rem, 0.2rem + 0.2vw, 0.35rem);
  border: 0.0625rem solid var(--line);
  border-radius: clamp(0.65rem, 0.55rem + 0.55vw, 0.9rem);
  background: var(--surface-raised);
  color: var(--text);
}

.menu-toggle span {
  width: clamp(1.1rem, 1rem + 0.5vw, 1.5rem);
  height: 0.125rem;
  border-radius: 99rem;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(0.42rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-0.42rem) rotate(-45deg);
}

.mobile-drawer {
  display: none;
  padding-inline: clamp(16px, 4vw, 40px);
  padding-block: clamp(0.75rem, 0.6rem + 0.8vw, 1.2rem);
  background: var(--surface);
  border-top: 0.0625rem solid var(--line-soft);
}

.mobile-drawer.is-open {
  display: block;
}

.mobile-drawer nav {
  display: grid;
  gap: clamp(0.4rem, 0.35rem + 0.4vw, 0.65rem);
}

.mobile-drawer a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding-block: clamp(0.5rem, 0.45rem + 0.25vw, 0.7rem);
  padding-inline: clamp(0.65rem, 0.55rem + 0.35vw, 0.9rem);
  border-radius: var(--radius-sm);
  color: var(--text-soft);
  background: var(--surface-raised);
}

.mobile-drawer a:hover {
  color: var(--accent-strong);
}

/* HERO */

.hero {
  position: relative;
  min-height: clamp(31rem, 66vh, 46rem);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--mahogany-deep);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-3);
  padding-block: var(--space-6);
}

.hero-content h1,
.hero-content p {
  max-width: 54rem;
}

.hero-lead {
  font-size: clamp(0.98rem, 0.92rem + 0.35vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  min-width: 0;
}

.page-hero {
  padding-block: var(--space-6);
  background:
    radial-gradient(circle at top left, rgba(218, 165, 32, 0.16), transparent 24rem),
    linear-gradient(135deg, var(--mahogany-deep), var(--mahogany));
  border-bottom: 0.0625rem solid var(--line);
  overflow-x: hidden;
}

.page-hero .narrow {
  display: grid;
  gap: var(--space-2);
}

/* GRIDS */

.card-grid,
.service-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-3);
  width: 100%;
  min-width: 0;
}

.card-grid > *,
.service-grid > *,
.gallery-grid > *,
.split > *,
contact-grid > *,
.form-grid > *,
.footer-grid > * {
  min-width: 0;
}

/* CARDS */

.info-card,
.service-card,
.panel,
.contact-form,
.map-card,
.faq-list details,
.legal-card {
  min-width: 0;
  max-width: 100%;
  border: 0.0625rem solid var(--line-soft);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface) 96%, var(--accent) 4%), var(--surface));
  box-shadow: var(--shadow-card);
}

.info-card,
.service-card,
.panel,
.contact-form,
.legal-card {
  padding: clamp(1rem, 0.85rem + 0.9vw, 1.7rem);
}

.info-card,
.service-card {
  display: grid;
  gap: var(--space-2);
  align-content: start;
}

.info-card p,
.service-card p,
.panel p,
.legal-card p,
.faq-list p {
  max-width: none;
}

.card-icon {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  min-width: 0;
  min-height: clamp(2.25rem, 2rem + 1vw, 3rem);
  align-items: center;
  justify-content: center;
  padding-block: clamp(0.35rem, 0.3rem + 0.2vw, 0.55rem);
  padding-inline: clamp(0.65rem, 0.55rem + 0.45vw, 0.9rem);
  border-radius: 999rem;
  background: rgba(218, 165, 32, 0.12);
  border: 0.0625rem solid var(--line);
  color: var(--accent-strong);
  font-size: clamp(0.82rem, 0.78rem + 0.18vw, 0.95rem);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  white-space: normal;
}

.service-card-highlight {
  background:
    radial-gradient(circle at top right, rgba(218, 165, 32, 0.22), transparent 18rem),
    linear-gradient(135deg, var(--mahogany), var(--mahogany-deep));
}

/* SPLIT / CONTENT */

.split,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-4);
  align-items: start;
  width: 100%;
  min-width: 0;
}

.split > div,
.panel {
  display: grid;
  gap: var(--space-2);
}

.clean-list,
.check-list,
.contact-list {
  display: grid;
  gap: var(--space-1);
  list-style: none;
}

.check-list li,
.clean-list li,
.contact-list li {
  position: relative;
  padding-left: clamp(1.05rem, 0.95rem + 0.45vw, 1.4rem);
  color: var(--text-soft);
}

.check-list li::before,
.clean-list li::before,
.contact-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-strong);
  font-weight: 700;
}

.contact-list li {
  display: grid;
  gap: clamp(0.12rem, 0.1rem + 0.15vw, 0.3rem);
}

.contact-list strong {
  color: var(--heading);
}

.contact-list a,
.panel a {
  color: var(--accent-strong);
}

/* GALLERY / MAP */

.gallery-grid figure,
.map-card {
  overflow: hidden;
  margin: 0;
}

.gallery-grid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-grid figcaption,
.map-card figcaption {
  padding: var(--space-2);
  color: var(--text-soft);
  background: var(--surface);
  border-top: 0.0625rem solid var(--line-soft);
}

.map-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* STEPS */

.step-list {
  display: grid;
  gap: var(--space-2);
  list-style: none;
}

.step-list li {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
  padding: var(--space-3);
  border: 0.0625rem solid var(--line-soft);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  min-width: 0;
}

.step-list span {
  flex: 0 0 auto;
  display: inline-flex;
  width: clamp(1.85rem, 1.65rem + 0.8vw, 2.35rem);
  height: clamp(1.85rem, 1.65rem + 0.8vw, 2.35rem);
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-text);
  font-size: clamp(0.82rem, 0.78rem + 0.15vw, 0.95rem);
  font-weight: 800;
}

/* FAQ */

.faq-list {
  display: grid;
  gap: var(--space-2);
}

.faq-list details {
  padding: var(--space-3);
}

.faq-list summary {
  cursor: pointer;
  color: var(--heading);
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 0.96rem + 0.42vw, 1.35rem);
  font-weight: 700;
}

.faq-list details p {
  margin-top: var(--space-2);
}

/* FORM */

.contact-form {
  display: grid;
  gap: var(--space-3);
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-2);
  min-width: 0;
}

label {
  display: grid;
  gap: clamp(0.28rem, 0.24rem + 0.18vw, 0.45rem);
  color: var(--heading);
  font-weight: 700;
  min-width: 0;
}

input,
textarea,
select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding-block: clamp(0.65rem, 0.58rem + 0.3vw, 0.85rem);
  padding-inline: clamp(0.75rem, 0.65rem + 0.4vw, 1rem);
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--input-bg);
  color: var(--text);
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

input.is-invalid,
textarea.is-invalid,
select.is-invalid {
  border-color: var(--danger);
}

.consent-line {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: var(--space-1);
  color: var(--text-soft);
  font-weight: 500;
}

.consent-line input {
  width: clamp(1.05rem, 1rem + 0.25vw, 1.25rem);
  height: clamp(1.05rem, 1rem + 0.25vw, 1.25rem);
  margin-top: 0.25em;
}

.form-message {
  min-height: 1.5em;
  font-weight: 700;
}

.form-message.is-error {
  color: var(--danger);
}

.form-message.is-success {
  color: var(--success);
}

/* LEGAL */

.legal-layout {
  display: grid;
  gap: var(--space-3);
}

.legal-card {
  display: grid;
  gap: var(--space-2);
}

.legal-card ul,
.legal-card ol {
  display: grid;
  gap: var(--space-1);
  padding-left: clamp(1.05rem, 1rem + 0.45vw, 1.4rem);
  color: var(--text-soft);
}

/* FOOTER */

.site-footer {
  padding-block: var(--space-5) var(--space-3);
  background: var(--mahogany-deep);
  border-top: 0.0625rem solid var(--line);
  overflow-x: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-4);
}

.footer-grid > div {
  display: grid;
  gap: var(--space-2);
}

.footer-brand {
  width: auto;
  max-width: 100%;
}

.footer-grid nav {
  display: grid;
  gap: var(--space-1);
  align-content: start;
}

.footer-grid a {
  color: var(--text-soft);
}

.footer-grid a:hover {
  color: var(--accent-strong);
}

.footer-bottom {
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 0.0625rem solid var(--line-soft);
}

/* COOKIE */

.cookie-banner {
  position: fixed;
  z-index: 80;
  left: clamp(0.75rem, 0.5rem + 1.2vw, 1.5rem);
  right: clamp(0.75rem, 0.5rem + 1.2vw, 1.5rem);
  bottom: clamp(0.75rem, 0.5rem + 1.2vw, 1.5rem);
  display: none;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-2);
  align-items: center;
  padding: var(--space-3);
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-raised);
  box-shadow: var(--shadow-soft);
}

.cookie-banner.is-visible {
  display: grid;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  min-width: 0;
}

.cookie-actions .btn {
  flex: 1 1 auto;
}

/* MOBILE */

@media (max-width: 767.98px) {
  .hero-actions .btn,
  .contact-form .btn {
    width: 100%;
  }

  .card-grid,
  .service-grid,
  .gallery-grid,
  .split,
  .contact-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .info-card,
  .service-card,
  .panel,
  .contact-form,
  .legal-card {
    padding: clamp(0.95rem, 4.5vw, 1.25rem);
  }

  .section {
    padding-block: clamp(2.25rem, 10vw, 3.5rem);
  }
}

/* TABLET */

@media (min-width: 768px) {
  .site-header .hdr-cta {
    display: inline-flex;
  }

  .card-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cookie-banner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .cookie-actions .btn {
    flex: 0 0 auto;
  }
}

/* DESKTOP NAV */

@media (min-width: 1023px) {
  .main-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-drawer,
  .mobile-drawer.is-open {
    display: none;
  }

  .split,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* LARGE DESKTOP — 3 колонки тільки тут, щоб текст не стискався */

/* @media (min-width: 1280px) {
  .card-grid,
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
} */
.home-cards.card-grid {
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 768px) {
  .home-cards.card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .home-cards.card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


.info-card h2,
.service-card h2 {
  font-size: clamp(1.25rem, 1.05rem + 0.9vw, 2rem);
  line-height: 1.2;
}

/* Конкретно довгий заголовок "Профессиональный инструмент" */
.benefits-page .info-card h2,
.benefits-page .info-card h3 {
  font-size: clamp(1.18rem, 1rem + 0.75vw, 1.75rem);
}