/* Spectr Cleaning — premium cleaning service UI */

:root {
  --bg: #f4f7fb;
  --bg-elevated: #ffffff;
  --bg-muted: #e8eef6;
  --bg-dark: #0c1f33;
  --bg-dark-soft: #132a45;
  --text: #0f2238;
  --text-soft: #3d5470;
  --muted: #5f7389;
  --line: #d7e2ef;
  --line-strong: #b8c9dc;
  --primary: #0d8f7f;
  --primary-dark: #067a6c;
  --primary-light: #e6f7f4;
  --accent: #1a6fd4;
  --accent-dark: #1256a8;
  --accent-soft: #e8f2fc;
  --gold: #c9a227;
  --ok: #16a34a;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 4px 16px rgba(12, 31, 51, 0.06);
  --shadow-md: 0 12px 40px rgba(12, 31, 51, 0.1);
  --shadow-lg: 0 24px 60px rgba(12, 31, 51, 0.14);
  --font: "Manrope", "Inter", system-ui, sans-serif;
  --header-h: 76px;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 100% -10%, rgba(13, 143, 127, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 0%, rgba(26, 111, 212, 0.08), transparent 50%),
    var(--bg);
}

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

a {
  color: var(--accent-dark);
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* ——— Header ——— */
.topbar {
  font-size: 0.88rem;
  padding: 8px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.topbar--dark {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.75);
}

.topbar--dark a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar--dark a:hover {
  color: #7ee8d8;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--transition);
}

.header.is-scrolled {
  box-shadow: var(--shadow-md);
}

.nav {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  color: var(--text);
  font-size: 1.02rem;
  flex-shrink: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(13, 143, 127, 0.35);
}

.logo img {
  max-height: 44px;
  width: auto;
}

.menu {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  margin-left: auto;
  align-items: center;
  min-width: 0;
}

.menu > a,
.menu-item > a {
  text-decoration: none;
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.menu > a:hover,
.menu-item > a:hover {
  color: var(--text);
  background: var(--primary-light);
}

.menu-item {
  position: relative;
}

.has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--muted);
  vertical-align: middle;
}

.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 300px;
  max-width: min(92vw, 420px);
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 30;
}

.has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
}

.dropdown-title {
  margin: 4px 8px 8px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: normal;
}

.dropdown a:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  display: block;
}

.menu-toggle {
  display: none;
}

/* ——— Buttons ——— */
.btn {
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, #0aa38f 50%, var(--accent) 100%);
  color: #fff;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(13, 143, 127, 0.35);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(13, 143, 127, 0.4);
  filter: brightness(1.03);
  color: #fff;
}

.btn-ghost {
  background: var(--bg-elevated);
  border: 1px solid var(--line-strong);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: var(--primary-light);
}

.btn-small {
  margin-left: 8px;
  padding: 11px 18px;
  font-size: 0.88rem;
  min-height: 44px;
  flex-shrink: 0;
}

/* ——— Typography ——— */
h1,
h2,
h3 {
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.35rem);
}

h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
}

h3 {
  font-size: 1.15rem;
}

.eyebrow,
.label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-dark);
  background: var(--primary-light);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--text-soft);
  max-width: 52ch;
  margin: 0 0 16px;
}

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 62ch;
  margin: 0 0 28px;
}

.section-head {
  margin-bottom: 36px;
}

.section-head--center {
  text-align: center;
}

.section-head--center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.small-note {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ——— Hero ——— */
.hero {
  padding: 48px 0 32px;
  position: relative;
}

.hero--home {
  padding: 56px 0 0;
  background: linear-gradient(165deg, #0c1f33 0%, #123a5c 42%, #0d4a5e 100%);
  color: #fff;
  overflow: hidden;
}

.hero--home::after {
  content: "";
  position: absolute;
  right: -15%;
  top: -30%;
  width: 70%;
  height: 140%;
  background: radial-gradient(circle, rgba(13, 143, 127, 0.35) 0%, transparent 65%);
  pointer-events: none;
}

.hero--home .label {
  background: rgba(255, 255, 255, 0.12);
  color: #a8f0e6;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero--home h1 {
  color: #fff;
}

.hero--home .lead {
  color: rgba(255, 255, 255, 0.82);
}

.hero--home .checks--icons li {
  color: rgba(255, 255, 255, 0.9);
}

.hero--home .check-icon {
  background: rgba(13, 143, 127, 0.5);
  color: #fff;
}

.hero--home .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.hero--home .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Checks */
.checks {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.checks--icons li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--text-soft);
  font-weight: 600;
}

.check-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary-dark);
  display: grid;
  place-items: center;
}

.check-icon svg {
  width: 14px;
  height: 14px;
}

/* Stats strip */
.stats-strip {
  background: var(--bg-elevated);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 48px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 20px 0;
}

.stat-pill {
  text-align: center;
  padding: 8px 12px;
}

.stat-pill strong {
  display: block;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}

.stat-pill span {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

/* Media frames */
.media-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(145deg, #1a3a5c, #0d5e6e);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.media-frame--hero {
  min-height: 360px;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.media-frame__placeholder {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 12px,
      rgba(255, 255, 255, 0.03) 12px,
      rgba(255, 255, 255, 0.03) 24px
    );
  color: rgba(255, 255, 255, 0.7);
}

.media-frame__placeholder .spectr-icon {
  opacity: 0.5;
  color: #fff;
}

.media-frame__placeholder p {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
}

.photo-placeholder {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(160deg, var(--accent-soft), var(--primary-light));
  border: 1px dashed var(--line-strong);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
}

.photo-placeholder .spectr-icon {
  color: var(--primary);
  opacity: 0.7;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

/* ——— Sections ——— */
.section {
  padding: 80px 0;
  position: relative;
}

.alt {
  background: linear-gradient(180deg, #eef3f9 0%, #e8eef6 100%);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

/* Cards */
.card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(13, 143, 127, 0.35);
}

.card--feature {
  padding-top: 28px;
}

.card-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-soft));
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.card h3 a {
  text-decoration: none;
  color: inherit;
}

.card h3 a:hover {
  color: var(--primary-dark);
}

.card-more-links {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.card-more-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.card-more-links a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.service-index {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.service-index__title {
  margin: 0 0 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.service-index__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.service-index__list a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.service-index__list a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
}

.service-quick-facts {
  background: linear-gradient(160deg, #fff 0%, var(--primary-light) 100%);
  border-color: rgba(13, 143, 127, 0.2);
}

.service-quick-facts h2 {
  font-size: 1.15rem;
  color: var(--primary-dark);
}

.service-steps .step {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--primary);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

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

th,
td {
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

th {
  background: var(--bg-muted);
  color: var(--text);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

tbody tr:hover td {
  background: var(--primary-light);
}

tbody tr:last-child td {
  border-bottom: 0;
}

/* FAQ */
.faq details {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  padding: 0;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 18px 20px;
  list-style: none;
  color: var(--text);
}

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

.faq details[open] summary {
  border-bottom: 1px solid var(--line);
  color: var(--primary-dark);
}

.faq details p {
  margin: 0;
  padding: 16px 20px 20px;
  color: var(--text-soft);
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.spectr-cf7-wrap.card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.section--cta {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #123a5c 100%);
  color: #fff;
}

.section--cta h2,
.section--cta .contacts-list {
  color: #fff;
}

.section--cta .contacts-list a {
  color: #a8f0e6;
}

.section--cta .section-lead,
.section--cta .small-note {
  color: rgba(255, 255, 255, 0.75);
}

.contacts-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.contacts-list li {
  margin-bottom: 10px;
  font-weight: 600;
}

.contacts-list a {
  color: var(--accent-dark);
  text-decoration: none;
}

.contacts-list a:hover {
  text-decoration: underline;
}

/* Breadcrumbs */
.service-breadcrumbs {
  padding: 20px 0 8px;
}

.service-breadcrumbs p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-breadcrumbs a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 600;
}

.service-breadcrumbs a:hover {
  text-decoration: underline;
}

.service-breadcrumbs span {
  margin: 0 8px;
  opacity: 0.5;
}

.service-hero {
  padding: 24px 0 48px;
  background: linear-gradient(180deg, rgba(230, 247, 244, 0.9) 0%, transparent 85%);
}

.service-hero .hero-grid {
  align-items: stretch;
}

/* Footer */
.footer {
  padding: 56px 0 32px;
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.75);
  border-top: 0;
}

.footer .logo,
.footer p:first-child {
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}

.footer-copy {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

.footer .footer-col > p {
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer a {
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  font-size: 0.92rem;
  transition: color var(--transition);
}

.footer a:hover {
  color: #7ee8d8;
}

/* Mobile CTA bar */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(12, 31, 51, 0.1);
  gap: 10px;
}

.mobile-cta a {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
}

.mobile-cta .mobile-cta__phone {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.mobile-cta .mobile-cta__order {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
}

/* CF7 */
.spectr-cf7-wrap .wpcf7 {
  margin: 0;
}

.spectr-cf7-wrap form.wpcf7-form {
  display: grid;
  gap: 16px;
  margin: 0;
}

.spectr-cf7-field {
  margin: 0;
}

.spectr-cf7-label {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
}

.spectr-cf7-wrap .wpcf7-form-control-wrap {
  display: block;
}

.spectr-cf7-wrap .spectr-input,
.spectr-cf7-wrap .spectr-select,
.spectr-cf7-wrap input.spectr-input,
.spectr-cf7-wrap select.spectr-select,
.spectr-cf7-wrap textarea.spectr-input,
.spectr-cf7-wrap .wpcf7-form input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]),
.spectr-cf7-wrap .wpcf7-form select,
.spectr-cf7-wrap .wpcf7-form textarea {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--line-strong);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.spectr-cf7-wrap .wpcf7-form input:focus,
.spectr-cf7-wrap .wpcf7-form select:focus,
.spectr-cf7-wrap .wpcf7-form textarea:focus {
  outline: 0;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 143, 127, 0.15);
}

.spectr-cf7-wrap input[type="hidden"],
.spectr-cf7-wrap .wpcf7-form .hidden-fields-container {
  display: none !important;
}

.spectr-cf7-btn,
.spectr-cf7-wrap .wpcf7-submit {
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  padding: 14px 22px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  font: inherit;
}

.spectr-cf7-accept {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.4;
}

.spectr-cf7-accept .wpcf7-form-control-wrap {
  display: block;
  width: auto;
  max-width: 100%;
}

.spectr-cf7-accept .wpcf7-acceptance,
.spectr-cf7-accept .wpcf7-list-item {
  margin: 0;
  display: inline-block;
  width: auto;
  max-width: 100%;
}

.spectr-cf7-accept .wpcf7-acceptance label,
.spectr-cf7-accept .wpcf7-list-item label {
  display: inline-flex;
  gap: 8px;
  align-items: flex-start;
  width: auto;
  max-width: 100%;
  cursor: pointer;
  font-weight: 500;
  color: var(--text-soft);
}

.spectr-cf7-accept .wpcf7-list-item-label {
  flex: 1 1 auto;
  min-width: 0;
}

.spectr-cf7-accept input[type="checkbox"],
.spectr-cf7-accept input.spectr-accept {
  box-sizing: border-box;
  width: 1.125rem !important;
  height: 1.125rem !important;
  min-width: 1.125rem !important;
  max-width: 1.125rem !important;
  margin: 0.1rem 0 0;
  padding: 0;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: #fff;
  box-shadow: none;
  accent-color: var(--primary);
  cursor: pointer;
}

.spectr-cf7-wrap .wpcf7-response-output {
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.spectr-cf7-wrap .wpcf7-spinner {
  margin: 8px auto 0;
}

.section--cta .spectr-cf7-wrap {
  background: #fff;
  color: var(--text);
}

.section--cta .spectr-cf7-label {
  color: var(--muted);
}

.section--cta .spectr-cf7-accept {
  color: var(--text-soft);
}

.wpcf7-not-valid-tip {
  color: #dc2626;
  font-size: 0.85rem;
  margin-top: 4px;
}

/* ——— Contacts & legal ——— */
.contact-lines {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-lines__item {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-lines__item:last-child {
  border-bottom: 0;
}

.contact-lines__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-lines__item a {
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--primary-dark);
}

.contact-lines__item a:hover {
  text-decoration: underline;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.requisites-block--aside {
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

.requisites-list {
  margin: 0;
}

.requisites-list__row {
  display: grid;
  grid-template-columns: minmax(140px, 38%) 1fr;
  gap: 12px 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.requisites-list__row:last-child {
  border-bottom: 0;
}

.requisites-list dt {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.requisites-list dd {
  margin: 0;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}

.footer-legal {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-legal__name {
  margin: 0 0 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.footer-legal__meta {
  margin: 0 0 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-legal__meta span {
  white-space: nowrap;
}

.footer-legal__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: #7ee8d8 !important;
  display: inline-block;
}

.footer-region {
  display: block;
  margin-top: 10px;
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.5) !important;
}

@media (max-width: 1100px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .requisites-block--aside {
    position: static;
  }

  .requisites-list__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.spectr-icon {
  display: inline-flex;
  line-height: 0;
}

/* Article */
.article-content {
  max-width: 72ch;
}

.article-content p {
  color: var(--text-soft);
}

/* Responsive */
@media (max-width: 1240px) {
  .menu > a,
  .menu-item > a {
    font-size: 0.86rem;
    padding: 8px 8px;
  }
}

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

  .hero-grid,
  .grid-3,
  .grid-2,
  .grid-4,
  .photo-grid,
  .contact,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-weight: 700;
    cursor: pointer;
  }

  .menu {
    display: none;
    position: absolute;
    left: 4%;
    right: 4%;
    top: calc(100% + 8px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow-lg);
  }

  .menu.open {
    display: flex;
  }

  .menu-item,
  .dropdown {
    position: static;
    width: 100%;
    box-shadow: none;
    border: 0;
    padding: 0;
    display: block;
  }

  .dropdown {
    margin: 4px 0 12px 8px;
    padding: 8px;
    background: var(--bg-muted);
  }

  .btn-small {
    display: none;
  }

  .mobile-cta {
    display: flex;
  }

  body {
    padding-bottom: 72px;
  }

  .hero--home {
    padding-bottom: 0;
  }

  .media-frame--hero,
  .media-frame__placeholder {
    min-height: 260px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}
