/*!
Theme Name: Volik
Theme URI: http://underscores.me/
Author: RuBik
Description: Description
Version: 1.0.0
Tested up to: 8.2
Requires PHP: 8.2
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: volik

*/

@font-face {
  font-family: "Oranienbaum";
  src: url("fonts/Oranienbaum-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #050505;
  --surface: #101010;
  --surface-strong: #f4f4f4;
  --text: #f5f5f5;
  --text-soft: #b1b1b1;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.14);
  --accent: #c41212;
  --accent-dark: #8f0e0e;
  --font-accent: "Oranienbaum", "Times New Roman", serif;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1400px;
  --header-height: 92px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-accent);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(196, 18, 18, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(180deg, #090909 0%, var(--bg) 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-shell {
  overflow: clip;
}

.section {
  padding: 96px 0;
  scroll-margin-top: 120px;
}

.about-item {
  scroll-margin-top: 120px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(5, 5, 5, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 18px;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-text {
  display: grid;
  gap: 4px;
}

.brand-text strong,
.hero-card-caption strong,
.hero-stats strong,
.contact-phone {
  font-family: var(--font-accent);
  letter-spacing: 0.01em;
}

.brand-text strong {
  font-size: 2.1rem;
  line-height: 1;
}

.brand-text span:last-child {
  color: var(--text-soft);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav ul,
.footer-nav ul,
.header-actions,
.social-links {
  display: flex;
  align-items: center;
}

.site-nav ul,
.footer-nav ul {
  gap: 35px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.site-nav a,
.footer-nav a {
  position: relative;
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a::after,
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.footer-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  gap: 16px;
}

.social-links {
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
  color: var(--accent);
  border-color: rgba(196, 18, 18, 0.35);
  transform: translateY(-2px);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.header-phone {
  font-size: 1.35rem;
  white-space: nowrap;
}

.button,
.button-ghost,
.button-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border: none;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button {
  background: var(--surface-strong);
  color: #111;
}

.button:hover,
.button:focus-visible {
  background: var(--accent);
  transform: translateY(-2px);
}

.button-small {
  min-height: 46px;
  padding: 0 20px;
  font-size: 0.85rem;
}

.button-ghost {
  border: 1px solid var(--line);
  background: transparent;
  color: #fff;
}

.button-light {
  background: #fff;
  color: #111;
}

.button-ghost:hover,
.button-light:hover {
  transform: translateY(-2px);
}

.burger {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #111;
  position: relative;
  flex-shrink: 0;
}

.burger span {
  position: absolute;
  left: 50%;
  display: block;
  width: 20px;
  height: 2px;
  margin: 0;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}

.burger span:nth-child(1) {
  top: 16px;
  transform: translateX(-50%);
}

.burger span:nth-child(2) {
  top: 23px;
  transform: translateX(-50%);
}

.burger span:nth-child(3) {
  top: 30px;
  transform: translateX(-50%);
}

.site-header.is-open .burger span:nth-child(1) {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}

.site-header.is-open .burger span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .burger span:nth-child(3) {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}

.hero {
  padding-top: 72px;
  position: relative;
}

.hero-grid,
.split-section,
.contact-block {
  display: grid;
  gap: 40px;
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.hero-copy h1,
.section-copy h2,
.section-heading h2,
.modal-dialog h2 {
  margin: 0;
  font-family: var(--font-accent);
  line-height: 1;
  letter-spacing: 0.01em;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
}

.hero-text,
.section-copy p,
.info-card p,
.quote-card span,
.modal-text {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
}

.section-copy .eyebrow {
  margin-bottom: 24px;
}

.hero-actions,
.hero-points,
.hero-stats,
.cards-grid {
  display: grid;
}

.hero-actions {
  grid-template-columns: repeat(2, max-content);
  gap: 14px;
  margin: 34px 0 30px;
}

.hero-points {
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 22px;
  font-weight: 600;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 20px;
}

.hero-card,
.info-card,
.quote-card,
.contact-panel,
.modal-dialog,
.media-card {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

/*.hero-card-main {
  min-height: 480px;
  padding: 34px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    linear-gradient(140deg, #121212 20%, #1c1c1c 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-logo-wrap {
  height: 100%;
  min-height: 320px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background:
    radial-gradient(circle at center, rgba(196, 18, 18, 0.2), transparent 35%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.06) 0,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px,
      transparent 36px
    ),
    #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.08);
}*/

/*.hero-logo {
  object-fit: contain;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.18));
}*/

.hero-card-caption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

.hero-card-caption span,
.hero-stats span {
  color: var(--text-soft);
}

.hero-card-caption strong {
  font-size: 2rem;
}

.hero-card-accent {
  margin-left: auto;
  max-width: 280px;
  padding: 24px;
  background: var(--accent);
  color: #fff;
}

.hero-card-accent span,
.card-index {
  font-family: var(--font-accent);
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.hero-card-accent p {
  margin: 10px 0 0;
  line-height: 1.5;
}

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

.hero-stats article {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stats strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.8rem;
}

.section-dark {
  background: #090909;
  color: #ffffff;
}

.section-dark .section-copy p,
.section-dark .section-copy h2 + p {
  color: rgba(255, 255, 255, 0.72);
}

.split-section {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
}

.about-repeat {
  display: grid;
  gap: 72px;
}

.about-item {
  align-items: center;
  display: flex;
}

.about-item.reverse {
  flex-direction: row-reverse;
}

.about-item .section-copy {
  flex: 1 1 30%;
}

.media-card {
/*  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    #161616;
  border: 1px solid var(--line-strong);*/
  flex: 1 1 320px;
}

@media(max-width: 769px) {
  .about-item, .about-item.reverse {
    flex-direction: column;
  }
  .media-card {
    flex: initial;
    width: 100%;
  }
}

/*.media-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}*/

.media-card-label {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.section-copy h2,
.section-heading h2,
.modal-dialog h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.section-copy p,
.modal-text {
  margin: 10px 0 0;
  max-width: 58ch;
}

.section-copy .button,
.contact-panel .button,
.contact-panel .button-light,
.contact-panel .button-ghost {
  margin-top: 28px;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.schedule-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.schedule-head .section-heading {
  margin-bottom: 0;
}

.slider-controls {
  display: flex;
  gap: 12px;
}

.slider-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.slider-button:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 18, 18, 0.45);
  background: rgba(196, 18, 18, 0.16);
}

.slider-button span {
  font-size: 1.35rem;
  line-height: 1;
}

.schedule-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(340px, 32vw, 430px);
  gap: 24px;
  align-items: start;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 2px;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.schedule-slider::-webkit-scrollbar {
  display: none;
}

.schedule-story-card {
  position: relative;
  display: block;
  padding: 22px 22px 28px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.25), rgba(12, 12, 12, 0.72)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 48%),
    url("img/logo.webp") center 18% / 70% auto no-repeat,
    linear-gradient(180deg, #4b4b4b 0%, #171717 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  overflow: hidden;
  width: auto;
  min-width: 0;
}

.schedule-story-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.55)),
    radial-gradient(circle at center, transparent 24%, rgba(0, 0, 0, 0.54) 100%);
  pointer-events: none;
}

.schedule-story-top,
.schedule-story-body {
  position: relative;
  z-index: 1;
}

.schedule-story-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 44px;
}

.schedule-badge,
.schedule-date {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.schedule-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.schedule-story-body h3 {
  margin: 0;
  font-family: var(--font-accent);
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.schedule-season {
  margin: 6px 0 38px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.schedule-day-block + .schedule-day-block {
  margin-top: 34px;
}

.schedule-day-block h4 {
  margin: 0 0 16px;
  font-family: var(--font-accent);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.schedule-row {
  display: grid;
  grid-template-columns: minmax(108px, 126px) minmax(0, 1fr) minmax(112px, 138px);
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.82);
}

.schedule-row span,
.schedule-row strong {
  color: #fff;
}

.schedule-row span:first-child,
.schedule-row span:last-child {
  font-size: 0.9rem;
  line-height: 1.35;
}

.schedule-row strong {
  font-size: 1rem;
  font-weight: 800;
}

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

.info-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.info-card h3 {
  margin: 24px 0 14px;
  font-size: 1.45rem;
}

.text-link {
  padding: 0;
  margin-top: 18px;
  border: none;
  background: none;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-accent {
  background:
    linear-gradient(135deg, rgba(196, 18, 18, 0.96), rgba(120, 0, 0, 0.96)),
    #930d0d;
  color: #fff;
}

.section-accent .eyebrow,
.section-accent .section-copy p,
.section-accent .quote-card span {
  color: rgba(255, 255, 255, 0.82);
}

.quote-card {
  padding: 38px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.quote-card p {
  margin: 0 0 20px;
  font-family: var(--font-accent);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: 0.02em;
}

.contact-block {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.contact-panel {
  padding: 34px;
  background: #101010;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-phone {
  display: inline-block;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.social-links-large {
  margin: 8px 0 28px;
}

.social-links-large a {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.site-footer {
  padding: 26px 0 40px;
  background: #050505;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-nav a::after {
  background: #fff;
}

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

.brand-footer .brand-text span:last-child,
.site-footer .header-phone {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer .social-links a {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.modal-dialog {
  position: relative;
  width: min(100%, 560px);
  padding: 34px;
  background: #111;
  color: #fff;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
}

.modal-form form {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.modal-form label {
  display: grid;
  gap: 8px;
}

.consent-field label {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 12px;
}

.consent-field input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
}

.consent-field {
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.4;
}
.consent-field .wpcf7-list-item {
  margin: 0;
}

.modal-form span {
  font-weight: 700;
}

.policy-link {
  display: inline;
  padding: 0;
  border: none;
  background: none;
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.modal-form input,
.modal-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: #1a1a1a;
  color: #fff;
  resize: vertical;
}

.modal-dialog-policy {
  width: min(100%, 760px);
}

.policy-content {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.policy-content p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 1120px) {
  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .site-nav {
    display: none;
  }

  .burger {
    display: inline-block;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: center;
  }


  .site-header.is-open .site-nav,
  .site-header.is-open .header-actions {
    display: flex;
    width: 100%;
    grid-column: 1 / -1;
    justify-self: stretch;
    padding-bottom: 8px;
  }

  .site-header.is-open .site-nav {
    grid-row: 2;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .site-header.is-open .header-actions {
    grid-row: 3;
    flex-wrap: wrap;
  }

  .hero-grid,
  .split-section,
  .reverse,
  .contact-block {
    grid-template-columns: 1fr;
  }

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

  .schedule-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .schedule-slider {
    grid-auto-columns: minmax(320px, 380px);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .about-repeat {
    gap: 30px;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand-text span:last-child,
  .footer-nav {
    display: none;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .button,
  .button-ghost,
  .button-light {
    width: 100%;
  }

  .hero-stats,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .schedule-slider {
    display: flex;
    gap: 16px;
  }

  .schedule-story-card {
    flex: 0 0 100%;
    width: 100%;
    min-height: auto;
    padding: 16px 16px 22px;
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.56)),
      linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 48%),
      url("img/logo.webp") center 12% / 62% auto no-repeat,
      linear-gradient(180deg, #3f3f3f 0%, #151515 100%);
  }

  .schedule-story-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 28px;
  }

  .schedule-badge,
  .schedule-date {
    font-size: 0.8rem;
  }

  .schedule-story-body h3 {
    font-size: 2.6rem;
  }

  .schedule-season {
    margin: 4px 0 24px;
    font-size: 0.8rem;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }

  .schedule-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 12px;
    align-items: end;
    padding: 12px 0;
    border-bottom-width: 1px;
  }

  .schedule-row span:first-child {
    grid-column: 1 / -1;
    font-size: 0.95rem;
    opacity: 0.92;
  }

  .schedule-row strong {
    font-size: 1.02rem;
    line-height: 1.3;
  }

  .schedule-row span:last-child {
    font-size: 0.82rem;
    text-align: right;
    color: rgba(255, 255, 255, 0.8);
  }

  .schedule-day-block h4 {
    margin-bottom: 12px;
    font-size: 2.15rem;
  }

  .contact-panel,
  .quote-card,
  .info-card,
  .modal-dialog {
    padding: 24px;
  }

  .header-phone,
  .contact-phone {
    font-size: 1.7rem;
  }
  .hero-card-main {
    min-height: 360px;
  }
}

@media(max-width: 575px) {
   .site-nav ul {
    flex-direction: column;
    gap: 20px;
    width: 100%;
   }
   .section-copy .eyebrow {
    margin-bottom: 10px;
  }
}

.singlePage {
  min-height: calc(100vh - 252px);
  padding: 70px 0;
  font-size: 20px;
}
.singlePage h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}
@media(max-width: 769px) {
  .singlePage {
    min-height: calc(100vh - 283px);
  }
  .header-actions .button {
    display: none;
  }
  .site-header .brand-text {
    display: none;
  }
  .header-phone {
        font-size: 1.2rem;
    }
}

@media(max-width: 575px) {
  .header-actions .social-links a {
    width: 30px;
    height: 30px;
  }
  .header-actions .social-links svg {
    width: 15px;
    height: 15px;
  }
  .header-inner, .header-actions {
    gap: 10px;
  }
  .burger {
    width: 35px;
    height: 35px;
  }
  .burger span:nth-child(1) {
    top: 9px;
  }
  .burger span:nth-child(2) {
    top: 16px;
  }
  .burger span:nth-child(3) {
    top: 23px;
  }
  .site-header.is-open .burger span:nth-child(1), .site-header.is-open .burger span:nth-child(3) {
    top: 16px;
  }
  .header-actions .social-links {
    gap: 5px;
  }
  header .brand-logo {
    width: 45px;
    height: 45px;
  }
}
