@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Work+Sans:wght@400;500;600&display=swap");
:root {
  --brand-primary: #C0392B;
  --brand-primary-hover: #a93226;
  --brand-primary-light: #f8ecea;
  --brand-secondary: #44403C;
  --brand-secondary-hover:#37342f;
  --brand-accent: #C09C2B;
  --brand-accent-light: #f7f0d8;
  --brand-white: #FFFFFF;
  --brand-off-white: #F8F6F4;
  --brand-border: #E8E5E2;
  --brand-text: #1a1a1a;
  --brand-text-mid: #4a4744;
  --brand-text-light: #8a8480;
  --company-background-color: var(--brand-primary);
  --company-text-color: #FFFFFF;
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;
  --max-width: 1280px;
  --responsive-padding: 24px;
  --transition-fast: 150ms ease;
  --transition-base: 220ms ease;
  --transition-slow: 350ms ease;
  --shadow-sm: 0 1px 3px rgba(68, 64, 60, 0.10);
  --shadow-md: 0 4px 16px rgba(68, 64, 60, 0.12);
  --shadow-lg: 0 8px 32px rgba(68, 64, 60, 0.14);
  --shadow-xl: 0 16px 48px rgba(68, 64, 60, 0.16);
}

@media (min-width: 1280px) {
  :root {
    --responsive-padding: 0px;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  color: var(--brand-text);
  background: var(--brand-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h1, h2, h3, h4 {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--brand-text);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
}

h2 {
  font-size: clamp(24px, 3.5vw, 40px);
}

h3 {
  font-size: clamp(18px, 2.5vw, 24px);
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--brand-text-mid);
}

.eyebrow, .site-hero .hero-eyebrow {
  font-family: "Work Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-primary);
}

.section-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: var(--brand-text);
}

.section-subtitle {
  font-size: 15px;
  color: var(--brand-text-mid);
  max-width: 560px;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--responsive-padding);
}

.section-pad {
  padding-block: var(--space-8);
}
@media (min-width: 1024px) {
  .section-pad {
    padding-block: var(--space-9);
  }
}

.section-pad-sm {
  padding-block: var(--space-7);
}
@media (min-width: 1024px) {
  .section-pad-sm {
    padding-block: var(--space-8);
  }
}

.bg-white {
  background: var(--brand-white);
}

.bg-off-white {
  background: var(--brand-off-white);
}

.bg-dark {
  background: var(--brand-secondary);
  color: var(--brand-white);
}

.bg-primary {
  background: var(--brand-primary);
  color: var(--brand-white);
}

.btn, .btn-phone, .btn-ghost, .btn-dark, .btn-secondary, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: background-color var(--transition-base), border-color var(--transition-base), color var(--transition-base), box-shadow var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn:focus-visible, .btn-phone:focus-visible, .btn-ghost:focus-visible, .btn-dark:focus-visible, .btn-secondary:focus-visible, .btn-primary:focus-visible {
  outline: 3px solid var(--brand-primary);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: var(--brand-white);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--brand-primary-hover);
  border-color: var(--brand-primary-hover);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--brand-primary-light);
  box-shadow: var(--shadow-sm);
}

.btn-dark {
  background: var(--brand-secondary);
  border-color: var(--brand-secondary);
  color: var(--brand-white);
}
.btn-dark:hover, .btn-dark:focus {
  background: var(--brand-secondary-hover);
  border-color: var(--brand-secondary-hover);
}

.btn-ghost {
  background: transparent;
  border-color: var(--brand-white);
  color: var(--brand-white);
}
.btn-ghost:hover, .btn-ghost:focus {
  background: rgba(255, 255, 255, 0.12);
}

.btn-lg {
  font-size: 15px;
  padding: 15px 36px;
}

.btn-sm {
  font-size: 13px;
  padding: 10px 20px;
}

.btn-full {
  width: 100%;
}

.btn-phone {
  background: var(--brand-secondary);
  border-color: var(--brand-secondary);
  color: var(--brand-white);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
}
.btn-phone:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
}

.badge, .badge-new, .badge-outline, .badge-accent, .badge-primary {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  line-height: 1;
}

.badge-primary {
  background: var(--brand-primary);
  color: white;
}

.badge-accent {
  background: var(--brand-accent);
  color: #1a1a1a;
}

.badge-outline {
  border: 1px solid var(--brand-border);
  color: var(--brand-text-mid);
}

.badge-new {
  background: var(--brand-primary-light);
  color: var(--brand-primary);
}

.card, .review-card, .category-card, .equipment-card {
  background: var(--brand-white);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.card:hover, .review-card:hover, .category-card:hover, .equipment-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.equipment-card {
  display: flex;
  flex-direction: column;
}
.equipment-card .equipment-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--brand-off-white);
}
.equipment-card .equipment-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.equipment-card:hover .equipment-card__image img {
  transform: scale(1.04);
}
.equipment-card .equipment-card__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}
.equipment-card .equipment-card__name {
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-text);
  line-height: 1.3;
}
.equipment-card .equipment-card__price {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--brand-primary);
  margin-top: auto;
  padding-top: var(--space-3);
}
.equipment-card .equipment-card__price-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--brand-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.equipment-card .equipment-card__cta {
  margin-top: var(--space-3);
  width: 100%;
}
.equipment-card.is-unavailable .equipment-card__price {
  color: var(--brand-text-light);
}

.category-card {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
  background: var(--brand-secondary);
}
.category-card .category-card__image {
  position: absolute;
  inset: 0;
}
.category-card .category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.category-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.category-card:hover .category-card__image img {
  opacity: 0.4;
  transform: scale(1.05);
}
.category-card .category-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-5);
}
.category-card .category-card__name {
  font-family: "Sora", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-white);
  line-height: 1.2;
}
.category-card .category-card__count {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}
.category-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--brand-primary);
  transition: width var(--transition-base);
}
.category-card:hover::after {
  width: 100%;
}

.review-card {
  padding: var(--space-6);
}
.review-card .review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-3);
}
.review-card .review-card__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--brand-accent);
}
.review-card .review-card__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--brand-text-mid);
  margin-bottom: var(--space-4);
}
.review-card .review-card__author {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-text);
}
.review-card .review-card__role {
  font-size: 12px;
  color: var(--brand-text-light);
  margin-top: 2px;
}

.trust-strip {
  background: var(--brand-secondary);
  padding-block: var(--space-7);
}
.trust-strip .trust-strip__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
@media (min-width: 768px) {
  .trust-strip .trust-strip__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
}
.trust-item .trust-item__icon {
  width: 40px;
  height: 40px;
  background: var(--brand-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-item .trust-item__icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}
.trust-item .trust-item__title {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-white);
  line-height: 1.3;
}
.trust-item .trust-item__body {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.faq-section .faq-item {
  border-bottom: 1px solid var(--brand-border);
}
.faq-section .faq-item:first-child {
  border-top: 1px solid var(--brand-border);
}
.faq-section .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-5) 0;
  gap: var(--space-4);
  cursor: pointer;
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-text);
  user-select: none;
  transition: color var(--transition-fast);
}
.faq-section .faq-question:hover {
  color: var(--brand-primary);
}
.faq-section .faq-question .faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid var(--brand-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.faq-section .faq-question .faq-icon::before, .faq-section .faq-question .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--brand-primary);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}
.faq-section .faq-question .faq-icon::before {
  width: 10px;
  height: 2px;
}
.faq-section .faq-question .faq-icon::after {
  width: 2px;
  height: 10px;
}
.faq-section .faq-question[aria-expanded=true] {
  color: var(--brand-primary);
}
.faq-section .faq-question[aria-expanded=true] .faq-icon {
  border-color: var(--brand-primary);
  background: var(--brand-primary-light);
}
.faq-section .faq-question[aria-expanded=true] .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.search-wrapper {
  position: relative;
  width: 100%;
}

.search-input {
  width: 100%;
  height: 52px;
  padding: 0 52px 0 var(--space-5);
  font-family: "Work Sans", sans-serif;
  font-size: 15px;
  color: var(--brand-text);
  background: var(--brand-white);
  border: 2px solid var(--brand-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}
.search-input::placeholder {
  color: var(--brand-text-light);
}
.search-input:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px var(--brand-primary-light);
}

.search-submit {
  position: absolute;
  right: var(--space-2);
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: var(--brand-primary);
  border: none;
  border-radius: calc(var(--radius-md) - 2px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}
.search-submit svg {
  width: 16px;
  height: 16px;
  fill: white;
}
.search-submit:hover {
  background: var(--brand-primary-hover);
}

.autoComplete_wrapper {
  width: 100%;
}

.autoComplete_wrapper ul {
  z-index: 9999;
  border-radius: var(--radius-md);
  border: 1px solid var(--brand-border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.manufacturers-section {
  padding-block: var(--space-7);
  background: var(--brand-off-white);
}
.manufacturers-section .manufacturers-title {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-text-light);
  margin-bottom: var(--space-5);
}
.manufacturers-section .manufacturers-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-5) var(--space-7);
}
.manufacturers-section .manufacturer-logo {
  height: 32px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity var(--transition-base), filter var(--transition-base);
}
.manufacturers-section .manufacturer-logo:hover {
  opacity: 0.9;
  filter: grayscale(0%);
}

.availability-banner {
  background: var(--brand-primary-light);
  border: 1px solid rgba(192, 57, 43, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}
.availability-banner .availability-banner__icon {
  width: 20px;
  height: 20px;
  fill: var(--brand-primary);
  flex-shrink: 0;
  margin-top: 1px;
}
.availability-banner p {
  font-size: 14px;
  color: var(--brand-text);
  line-height: 1.5;
}
.availability-banner p a {
  color: var(--brand-primary);
  font-weight: 600;
  text-decoration: underline;
}
.availability-banner p a:hover {
  color: var(--brand-primary-hover);
}

.site-hero {
  position: relative;
  background: var(--brand-secondary);
  min-height: 420px;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .site-hero {
    min-height: 520px;
  }
}
@media (min-width: 1024px) {
  .site-hero {
    min-height: 600px;
  }
}
.site-hero .hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.site-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.site-hero .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(68, 64, 60, 0.82) 0%, rgba(68, 64, 60, 0.55) 55%, rgba(68, 64, 60, 0.25) 100%);
}
.site-hero.hero-no-image {
  background: var(--brand-secondary);
}
.site-hero.hero-no-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(192, 57, 43, 0.12) 0%, transparent 60%), radial-gradient(circle at 20% 80%, rgba(192, 156, 43, 0.06) 0%, transparent 50%);
}
.site-hero .hero-content {
  position: relative;
  z-index: 1;
  padding-block: var(--space-8);
  max-width: 640px;
}
@media (min-width: 1024px) {
  .site-hero .hero-content {
    padding-block: var(--space-9);
  }
}
.site-hero .hero-eyebrow {
  color: var(--brand-accent);
  margin-bottom: var(--space-4);
}
.site-hero .hero-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 800;
  color: var(--brand-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
}
.site-hero .hero-subtitle {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: var(--space-6);
  max-width: 480px;
}
.site-hero .hero-ctas {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: var(--space-6);
}
.site-hero .hero-search {
  max-width: 540px;
}
.site-hero .hero-search .search-input {
  background: rgba(255, 255, 255, 0.95);
  border-color: transparent;
  font-size: 15px;
}
.site-hero .hero-search .search-input:focus {
  background: white;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.2);
}

.categories-section .categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
@media (min-width: 768px) {
  .categories-section .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .categories-section .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.categories-section .categories-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
  gap: var(--space-4);
}

.popular-equipment-section .equipment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
@media (min-width: 768px) {
  .popular-equipment-section .equipment-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .popular-equipment-section .equipment-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.popular-equipment-section .popular-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
  gap: var(--space-4);
}

.reviews-section .reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 768px) {
  .reviews-section .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .reviews-section .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.reviews-section .reviews-header {
  text-align: center;
  margin-bottom: var(--space-7);
}
.reviews-section .reviews-header .reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-3);
}
.reviews-section .reviews-header .reviews-rating .stars {
  display: flex;
  gap: 3px;
}
.reviews-section .reviews-header .reviews-rating .stars svg {
  width: 18px;
  height: 18px;
  fill: var(--brand-accent);
}
.reviews-section .reviews-header .reviews-rating .rating-text {
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-text);
}

.how-it-works .steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  position: relative;
}
@media (min-width: 768px) {
  .how-it-works .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.how-it-works .step-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--brand-white);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
}
.how-it-works .step-card .step-number {
  font-family: "Sora", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
  opacity: 0.9;
}
.how-it-works .step-card .step-title {
  font-family: "Sora", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-text);
}
.how-it-works .step-card .step-body {
  font-size: 14px;
  color: var(--brand-text-mid);
  line-height: 1.65;
}

.cta-banner {
  background: var(--brand-primary);
  padding-block: var(--space-7);
}
.cta-banner .cta-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-5);
}
@media (min-width: 768px) {
  .cta-banner .cta-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cta-banner .cta-banner__title {
  font-family: "Sora", sans-serif;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 800;
  color: var(--brand-white);
  line-height: 1.15;
}
.cta-banner .cta-banner__sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  margin-top: var(--space-2);
}
.cta-banner .cta-banner__actions {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
  flex-wrap: wrap;
}

.site-footer {
  background: var(--brand-secondary);
  color: rgba(255, 255, 255, 0.75);
}
.site-footer .footer-main {
  padding-block: var(--space-8);
}
.site-footer .footer-main .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
}
@media (min-width: 768px) {
  .site-footer .footer-main .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .site-footer .footer-main .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
  }
}
.site-footer .footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: var(--space-4);
}
.site-footer .footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 280px;
}
.site-footer .footer-col-title {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-white);
  margin-bottom: var(--space-4);
}
.site-footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.site-footer .footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.site-footer .footer-links a:hover {
  color: var(--brand-accent);
}
.site-footer .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}
.site-footer .footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--brand-accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.site-footer .footer-contact-item a {
  color: rgba(255, 255, 255, 0.75);
}
.site-footer .footer-contact-item a:hover {
  color: var(--brand-accent);
}
.site-footer .footer-hours {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}
.site-footer .footer-service-area {
  margin-top: var(--space-4);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}
.site-footer .footer-service-area strong {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: block;
  margin-bottom: var(--space-2);
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: var(--space-4);
}
.site-footer .footer-bottom .footer-bottom__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
}
@media (min-width: 768px) {
  .site-footer .footer-bottom .footer-bottom__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.site-footer .footer-bottom .footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.site-footer .footer-bottom .footer-bottom__links a {
  color: rgba(255, 255, 255, 0.38);
  transition: color var(--transition-fast);
}
.site-footer .footer-bottom .footer-bottom__links a:hover {
  color: rgba(255, 255, 255, 0.65);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 80ms;
}

.reveal-delay-2 {
  transition-delay: 160ms;
}

.reveal-delay-3 {
  transition-delay: 240ms;
}

.reveal-delay-4 {
  transition-delay: 320ms;
}

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

.text-primary {
  color: var(--brand-primary) !important;
}

.text-accent {
  color: var(--brand-accent) !important;
}

.text-muted {
  color: var(--brand-text-light) !important;
}

.text-white {
  color: var(--brand-white) !important;
}

.mt-auto {
  margin-top: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.divider {
  height: 1px;
  background: var(--brand-border);
  border: none;
  margin: 0;
}

.availability-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: var(--radius-xs);
}
.availability-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.availability-pill.is-available {
  background: #edf7ed;
  color: #2e7d32;
}
.availability-pill.is-available::before {
  background: #2e7d32;
}
.availability-pill.is-unavailable {
  background: #fff3e0;
  color: #e65100;
}
.availability-pill.is-unavailable::before {
  background: #e65100;
}

.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  background: var(--brand-primary);
  color: var(--brand-white);
  border: 2px solid var(--brand-primary);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
  cursor: pointer;
}
.btn-red:hover, .btn-red:focus {
  background: var(--brand-primary-hover);
  border-color: var(--brand-primary-hover);
  box-shadow: var(--shadow-md);
}

.btn-outline-red {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition-base), color var(--transition-base);
  cursor: pointer;
}
.btn-outline-red:hover, .btn-outline-red:focus {
  background: var(--brand-primary);
  color: var(--brand-white);
}

.btn-outline-dark, .btn-outline-dark--white {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--brand-text);
  border: 2px solid var(--brand-text);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition-base), border-color var(--transition-base), color var(--transition-base);
  cursor: pointer;
}
.btn-outline-dark:hover, .btn-outline-dark--white:hover, .btn-outline-dark:focus, .btn-outline-dark--white:focus {
  background: var(--brand-secondary);
  border-color: var(--brand-secondary);
  color: var(--brand-white);
}

.btn-outline-dark--white {
  color: var(--brand-white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline-dark--white:hover, .btn-outline-dark--white:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.site-header {
  position: relative;
  z-index: 1000;
}

.header-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.header-nav .header-unified {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(24px) saturate(2);
  -webkit-backdrop-filter: blur(24px) saturate(2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--brand-text);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.header-nav .header-unified a {
  color: var(--brand-text);
}
.header-nav .header-unified-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--responsive-padding);
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 1280px) {
  .header-nav .header-unified-inner {
    padding: 0 24px;
  }
}
.header-nav .header-logo {
  display: none;
  flex-shrink: 0;
  align-items: center;
  align-self: stretch;
  padding: 6px 0;
}
@media (min-width: 1024px) {
  .header-nav .header-logo {
    display: flex;
  }
}
.header-nav .header-logo a {
  display: flex;
  align-items: center;
  height: 100%;
}
.header-nav .header-logo .company-header-logo {
  height: 90px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.header-nav .header-logo .logo-white {
  display: none;
}
.header-nav .header-logo .logo-dark {
  display: block;
}
.header-nav .header-right {
  display: none;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
@media (min-width: 1024px) {
  .header-nav .header-right {
    display: flex;
  }
}
.header-nav .header-row-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 6px 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  max-height: 40px;
  opacity: 1;
}
.header-nav .header-row-banner .banner-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-nav .header-row-banner .banner-right {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--brand-primary);
}
.header-nav .header-row-banner .banner-right .phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-primary);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.header-nav .header-row-banner .banner-right .phone:hover {
  opacity: 0.8;
}
.header-nav .header-row-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.header-nav .header-row-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}
.header-nav .header-row-nav .nav-link {
  color: var(--brand-secondary);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 2px;
}
.header-nav .header-row-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--brand-primary);
  transition: width 0.3s ease;
}
.header-nav .header-row-nav .nav-link:hover, .header-nav .header-row-nav .nav-link:focus {
  color: var(--brand-primary);
  background: none;
  box-shadow: none;
  outline: none;
}
.header-nav .header-row-nav .nav-link:hover::after, .header-nav .header-row-nav .nav-link:focus::after {
  width: 100%;
}
.header-nav .header-row-nav .header-nav-1-right {
  display: flex;
  flex: 0 0 auto;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
}
.header-nav .header-row-nav .header-nav-1-right > *:not(#userDropdown):not(.hidden) {
  display: flex !important;
  align-items: center;
  flex-shrink: 0;
}
.header-nav .header-row-nav .header-nav-1-right .search-icon-button {
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}
.header-nav .header-row-nav .header-nav-1-right .search-icon-button:hover {
  color: var(--brand-primary-hover);
}
.header-nav .header-row-nav .header-nav-1-right a svg,
.header-nav .header-row-nav .header-nav-1-right button svg {
  width: 22px;
  height: 22px;
}
.header-nav .header-row-nav .header-nav-1-right a,
.header-nav .header-row-nav .header-nav-1-right #avatarButton {
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
  background: transparent;
  border: none;
  cursor: pointer;
}
.header-nav .header-row-nav .header-nav-1-right a svg,
.header-nav .header-row-nav .header-nav-1-right #avatarButton svg {
  fill: currentColor;
}
.header-nav .header-row-nav .header-nav-1-right a:hover,
.header-nav .header-row-nav .header-nav-1-right #avatarButton:hover {
  color: var(--brand-primary-hover);
}
.header-nav .header-row-nav .header-nav-1-right .log-in-text {
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: inherit;
  white-space: nowrap;
}
.header-nav .category-dropdown-wrapper {
  position: relative;
  display: flex;
}
.header-nav .category-toggle-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: transparent;
  color: var(--brand-secondary);
  border: none;
  border-radius: 0;
  padding: 0;
  padding-bottom: 2px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
  position: relative;
}
.header-nav .category-toggle-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--brand-primary);
  transition: width 0.3s ease;
}
.header-nav .category-toggle-btn:hover, .header-nav .category-toggle-btn:focus {
  color: var(--brand-primary);
  background: none;
  box-shadow: none;
  outline: none;
}
.header-nav .category-toggle-btn:hover::after, .header-nav .category-toggle-btn:focus::after {
  width: 100%;
}
.header-nav .category-toggle-btn svg {
  fill: currentColor;
  width: 20px;
  height: 20px;
}
.header-nav .category-dropdown-list {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 8px;
  min-width: 240px;
  z-index: 20;
  max-height: 400px;
  overflow-y: auto;
}
.header-nav .category-dropdown-list.show {
  display: block;
}
.header-nav .category-dropdown-list a.category-item,
.header-nav .category-dropdown-list .category-item {
  display: block;
  padding: 10px 16px;
  color: var(--brand-secondary);
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 8px;
  text-shadow: none;
}
.header-nav .category-dropdown-list a.category-item:hover,
.header-nav .category-dropdown-list .category-item:hover {
  background-color: rgba(192, 57, 43, 0.07);
  color: var(--brand-primary);
}
.header-nav .header-mobile-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 0;
}
@media (min-width: 1024px) {
  .header-nav .header-mobile-actions {
    display: none;
  }
}
.header-nav .header-mobile-actions .drawer-button {
  background: transparent;
  border: none;
  padding: 8px;
  border-radius: 12px;
  cursor: pointer;
  color: var(--brand-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, background-color 0.2s ease;
  flex-shrink: 0;
}
.header-nav .header-mobile-actions .drawer-button:hover {
  color: var(--brand-primary);
  background-color: rgba(0, 0, 0, 0.05);
}
.header-nav .header-mobile-actions .drawer-button svg {
  width: 28px;
  height: 28px;
}
.header-nav .header-mobile-actions .header-mobile-right {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-nav .header-mobile-actions .header-mobile-right .search-icon-button {
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--brand-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}
.header-nav .header-mobile-actions .header-mobile-right .search-icon-button:hover {
  color: var(--brand-primary);
}
.header-nav .header-mobile-actions .header-mobile-right a svg,
.header-nav .header-mobile-actions .header-mobile-right button svg {
  width: 22px;
  height: 22px;
}
.header-nav .header-mobile-actions .header-mobile-right a,
.header-nav .header-mobile-actions .header-mobile-right #avatarButton {
  color: var(--brand-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
  background: transparent;
  border: none;
  cursor: pointer;
}
.header-nav .header-mobile-actions .header-mobile-right a svg,
.header-nav .header-mobile-actions .header-mobile-right #avatarButton svg {
  fill: currentColor;
}
.header-nav .header-mobile-actions .header-mobile-right a:hover,
.header-nav .header-mobile-actions .header-mobile-right #avatarButton:hover {
  color: var(--brand-primary);
}
@media (max-width: 1023px) {
  .header-nav .header-unified-inner {
    position: relative;
  }
  .header-nav .header-logo {
    display: flex;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
  }
  .header-nav .header-logo .company-header-logo {
    height: 44px;
    max-width: 110px;
  }
}
.header-nav.scrolled .header-unified {
  background-color: rgba(255, 255, 255, 0.94);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.header-nav.scrolled .header-row-banner {
  max-height: 0;
  padding: 0;
  opacity: 0;
  border-bottom: none;
  overflow: hidden;
}
.header-nav.scrolled .header-logo .company-header-logo {
  height: 54px;
}
.header-nav.index-page {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.header-nav.index-page .logo-dark {
  display: none;
}
.header-nav.index-page .logo-white {
  display: block;
}
.header-nav.index-page .header-unified {
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
}
.header-nav.index-page .header-unified a, .header-nav.index-page .header-unified button, .header-nav.index-page .header-unified .nav-link, .header-nav.index-page .header-unified .category-toggle-btn,
.header-nav.index-page .header-unified .banner-left, .header-nav.index-page .header-unified .search-icon-button, .header-nav.index-page .header-unified .drawer-button,
.header-nav.index-page .header-unified .header-nav-1-right a, .header-nav.index-page .header-unified .header-nav-1-right button,
.header-nav.index-page .header-unified .header-nav-1-right #avatarButton,
.header-nav.index-page .header-unified .header-mobile-right a, .header-nav.index-page .header-unified .header-mobile-right button,
.header-nav.index-page .header-unified .header-mobile-right #avatarButton {
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.header-nav.index-page .header-unified .banner-right, .header-nav.index-page .header-unified .banner-right .phone, .header-nav.index-page .header-unified .banner-right .language-selector-link {
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.header-nav.index-page .header-unified svg {
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4));
  color: rgba(255, 255, 255, 0.9);
}
.header-nav.index-page .header-unified .nav-link:hover, .header-nav.index-page .header-unified .category-toggle-btn:hover {
  color: #ffffff;
}
.header-nav.index-page .header-unified .nav-link::after {
  background-color: #ffffff;
}
.header-nav.index-page.scrolled .logo-dark {
  display: block;
}
.header-nav.index-page.scrolled .logo-white {
  display: none;
}
.header-nav.index-page.scrolled .header-unified {
  background-color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
  color: var(--brand-text);
}
.header-nav.index-page.scrolled .header-unified a, .header-nav.index-page.scrolled .header-unified button, .header-nav.index-page.scrolled .header-unified .nav-link, .header-nav.index-page.scrolled .header-unified .category-toggle-btn,
.header-nav.index-page.scrolled .header-unified .banner-left, .header-nav.index-page.scrolled .header-unified .search-icon-button, .header-nav.index-page.scrolled .header-unified .drawer-button,
.header-nav.index-page.scrolled .header-unified .header-nav-1-right a, .header-nav.index-page.scrolled .header-unified .header-nav-1-right button,
.header-nav.index-page.scrolled .header-unified .header-nav-1-right #avatarButton,
.header-nav.index-page.scrolled .header-unified .header-mobile-right a, .header-nav.index-page.scrolled .header-unified .header-mobile-right button,
.header-nav.index-page.scrolled .header-unified .header-mobile-right #avatarButton {
  color: var(--brand-secondary);
  text-shadow: none;
}
.header-nav.index-page.scrolled .header-unified .banner-right, .header-nav.index-page.scrolled .header-unified .banner-right .phone, .header-nav.index-page.scrolled .header-unified .banner-right .language-selector-link {
  color: var(--brand-primary);
}
.header-nav.index-page.scrolled .header-unified svg {
  color: var(--brand-secondary);
  filter: none;
}
.header-nav.index-page.scrolled .header-unified .nav-link:hover, .header-nav.index-page.scrolled .header-unified .category-toggle-btn:hover {
  color: var(--brand-primary);
}
.header-nav.index-page.scrolled .header-unified .nav-link::after {
  background-color: var(--brand-primary);
}
.header-nav #drawer-menu {
  border: 0 solid #e5e7eb;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 40;
  height: 100vh;
  width: 100%;
  transform: translate(-100%, 0);
  overflow-y: auto;
  padding: 1.5rem;
  transition-duration: 0.2s;
  transition-property: transform, box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  background-color: var(--brand-secondary);
  color: #FFFFFF;
  box-shadow: 8px 0 32px rgba(0, 0, 0, 0.1);
}
.header-nav #drawer-menu .close-drawer {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 4px;
  border: none;
  background: transparent;
  color: #FFFFFF;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.header-nav #drawer-menu .close-drawer svg {
  display: block;
  stroke: currentColor;
}
.header-nav #drawer-menu .close-drawer:hover {
  opacity: 0.7;
}
.header-nav #drawer-menu.is-open {
  transform: translate(0, 0);
  box-shadow: 8px 0 32px rgba(0, 0, 0, 0.12);
}
.header-nav #drawer-menu .logo {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 30px;
}
.header-nav #drawer-menu .logo img {
  width: auto;
  max-width: 120px;
  max-height: 60px;
  height: auto;
  object-fit: contain;
}
.header-nav #drawer-menu .pages ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  list-style: none;
  padding-left: 0;
}
.header-nav #drawer-menu .pages ul li {
  display: block;
}
.header-nav #drawer-menu .pages ul a {
  display: block;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  padding: 10px 0;
  transition: color 0.2s ease;
}
.header-nav #drawer-menu .pages ul a:hover {
  color: var(--brand-accent);
}
.header-nav #drawer-menu .drawer-menu-bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.header-nav #drawer-menu .drawer-menu-bottom .store-phone {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.95rem;
  align-items: flex-start;
}
.header-nav #drawer-menu .drawer-menu-bottom a {
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
  align-self: flex-start;
}
.header-nav #drawer-menu .drawer-menu-bottom a:hover {
  opacity: 0.8;
}
.header-nav #drawer-menu .drawer-menu-bottom .phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-accent);
}
.header-nav #drawer-menu .drawer-menu-bottom .phone svg {
  fill: currentColor;
  flex-shrink: 0;
}
.header-nav #drawer-menu .drawer-menu-bottom .phone span {
  font-size: 1.05rem;
}
.header-nav .phone {
  display: flex;
  align-items: center;
  gap: 5px;
}
.header-nav .search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20vh;
  backdrop-filter: blur(4px);
}
.header-nav .search-overlay.active {
  display: flex;
}
.header-nav .search-overlay .search-overlay-inner {
  width: 90%;
  max-width: 800px;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: slideDown 0.3s ease;
}
.header-nav .search-overlay .search-form-overlay {
  flex: 1;
  min-width: 0;
}
.header-nav .search-overlay .search-pill-overlay {
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  background-color: #FFFFFF;
  overflow: hidden;
}
.header-nav .search-overlay .search-input-wrapper-overlay {
  flex: 1;
  display: flex;
  width: 100%;
  align-items: center;
  padding: 16px 24px;
  gap: 12px;
}
.header-nav .search-overlay .search-input-wrapper-overlay .search-icon {
  flex-shrink: 0;
}
.header-nav .search-overlay .search-input-overlay {
  flex: 1;
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1.1rem;
  color: var(--brand-text);
}
.header-nav .search-overlay .search-input-overlay::placeholder {
  color: var(--brand-text-light);
}
.header-nav .search-overlay .search-close-btn {
  background: transparent;
  border: none;
  border-left: 1px solid var(--brand-border);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: color 0.2s ease;
  color: var(--brand-text-light);
}
.header-nav .search-overlay .search-close-btn:hover {
  color: var(--brand-secondary);
}
.header-nav .search-overlay .search-close-btn svg {
  stroke: currentColor;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.header-nav .selected-store {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
  cursor: pointer;
}
.header-nav .language-selector-link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--brand-primary);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.header-nav .language-selector-link:hover {
  opacity: 0.8;
}
.header-nav .language-selector-link .language-icon {
  line-height: 1rem;
  display: flex;
  align-items: center;
}
.header-nav #userDropdown {
  background-color: #FFFFFF !important;
  color: var(--brand-text) !important;
  border: 1px solid rgba(68, 64, 60, 0.1);
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  text-align: left !important;
  z-index: 9999 !important;
}
.header-nav #userDropdown *,
.header-nav #userDropdown ul,
.header-nav #userDropdown li,
.header-nav #userDropdown div,
.header-nav #userDropdown span,
.header-nav #userDropdown p {
  text-align: left !important;
}
.header-nav #userDropdown a {
  color: var(--brand-text) !important;
  font-weight: 500;
  transition: background-color 0.2s ease;
  text-align: left !important;
}
.header-nav #userDropdown a:hover {
  background-color: var(--brand-off-white) !important;
  color: var(--brand-text) !important;
}
.header-nav #userDropdown .divide-y > :not([hidden]) ~ :not([hidden]) {
  border-color: rgba(68, 64, 60, 0.1) !important;
}
.header-nav .header-mobile-right {
  position: relative;
}
.header-nav .header-mobile-right #avatarButton {
  padding: 8px;
}
.header-nav .header-mobile-right #userDropdown {
  position: absolute !important;
  top: 100% !important;
  right: 0 !important;
  left: auto !important;
  min-width: 200px;
  margin-top: 4px;
}

.footer-address {
  font-style: normal;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #1a1208;
}
.hero__bg-img, .hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.hero__content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: var(--max-width);
  width: 100%;
  margin-inline: auto;
  padding: 180px 24px 80px;
}
@media (min-width: 1024px) {
  .hero__content {
    padding-inline: 24px;
  }
}
.hero__text {
  width: 100%;
  text-align: center;
}
.hero__title {
  font-family: "Work Sans", sans-serif;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}
.hero__slogan {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
  gap: 0;
}
.hero__slogan-row {
  display: flex;
  flex-direction: row;
  gap: 0.15em;
  justify-content: center;
}
.hero__slogan-word {
  font-family: "Sora", sans-serif;
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--brand-white);
  display: block;
}
.hero__slogan-word--accent {
  color: var(--brand-primary);
}
.hero__subtitle {
  font-family: "Work Sans", sans-serif;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  max-width: 420px;
  margin-inline: auto;
  margin-bottom: 44px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.hero__cta-primary {
  font-size: 15px;
  padding: 16px 36px;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.4);
  animation: scrollBounce 2.4s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateX(-50%) translateY(6px);
    opacity: 0.7;
  }
}

.categories-section {
  background: var(--brand-white);
  padding: 80px 0 96px;
  overflow: hidden;
}

.categories-top {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .categories-top {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
  }
}
.categories-top__left {
  flex: 1;
  min-width: 0;
}
.categories-top__title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.categories-top__right {
  flex-shrink: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .categories-top__right {
    width: 340px;
  }
}
@media (min-width: 1024px) {
  .categories-top__right {
    width: 400px;
  }
}

.categories-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--brand-text);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 10px;
}

.categories-subtitle {
  font-size: 15px;
  color: var(--brand-text-light);
  font-family: "Work Sans", sans-serif;
}

.search-form__inner {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--brand-white);
  border: 1.5px solid var(--brand-border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.search-form__inner:focus-within {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}
.search-form__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--brand-text-light);
  margin-left: 14px;
}
.search-form__input {
  flex: 1;
  border: none;
  outline: none;
  padding: 13px 12px;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  color: var(--brand-text);
  background: transparent;
  min-width: 0;
}
.search-form__input::placeholder {
  color: var(--brand-text-light);
}
.search-form__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  padding: 0;
  background: var(--brand-primary);
  color: var(--brand-white);
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
}
.search-form__btn:hover {
  background: var(--brand-primary-hover);
}
.search-form__btn .search-form__btn-text {
  display: none;
}
.search-form__btn .search-form__btn-icon {
  display: block;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .search-form__btn {
    width: auto;
    padding: 0 20px;
    font-family: "Work Sans", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .search-form__btn .search-form__btn-text {
    display: inline;
  }
  .search-form__btn .search-form__btn-icon {
    display: none;
  }
}

.cat-nav-btns {
  display: none;
}
@media (min-width: 768px) {
  .cat-nav-btns {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }
}
@media (min-width: 768px) {
  .cat-nav-btns--below {
    justify-content: center;
    margin-top: 24px;
  }
}

.cat-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--brand-border);
  background: var(--brand-white);
  color: var(--brand-text);
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform 0.2s ease;
  flex-shrink: 0;
}
.cat-nav-btn svg {
  display: block;
}
.cat-nav-btn:hover:not(:disabled) {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: var(--brand-white);
  transform: scale(1.08);
}
.cat-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.category-list {
  display: flex;
  flex-direction: row;
  gap: 12px;
  overflow-x: scroll;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.category-list::-webkit-scrollbar {
  display: none;
}
.category-list {
  padding-left: 24px;
  padding-right: 40px;
  padding-block: 8px 16px;
}
@media (min-width: 1024px) {
  .category-list {
    padding-left: max(24px, (100vw - var(--max-width)) / 2 + 24px);
    padding-right: 80px;
  }
}

.category-card {
  flex: 0 0 200px;
  height: 266px;
  scroll-snap-align: start;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  background: #1a1008;
  display: block;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}
@media (min-width: 640px) {
  .category-card {
    flex: 0 0 240px;
    height: 320px;
  }
}
@media (min-width: 768px) {
  .category-card {
    flex: 0 0 260px;
    height: 347px;
  }
}
@media (min-width: 1024px) {
  .category-card {
    flex: 0 0 300px;
    height: 400px;
  }
}
.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.55) 65%, rgba(0, 0, 0, 0.84) 100%);
  pointer-events: none;
}
.category-card__img {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.category-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}
.category-card__name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 16px 14px 14px;
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-white);
  line-height: 1.25;
}
@media (min-width: 768px) {
  .category-card__name {
    font-size: 17px;
    padding: 20px 16px 16px;
  }
}
.category-card:hover {
  box-shadow: 0 0 0 3px var(--brand-primary), 0 0 18px 2px rgba(192, 57, 43, 0.35);
}

.pop-equip-section {
  background: var(--brand-white);
  padding: 80px 0;
}
.pop-equip-section__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

.pop-equip-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.pop-equip-header__nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.pop-equip-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 6px;
}

.pop-equip-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 800;
  color: var(--brand-text);
  line-height: 1.15;
}

.pop-equip-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--brand-white);
  border: 1.5px solid var(--brand-border);
  color: var(--brand-text);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}
.pop-equip-nav-btn:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: var(--brand-white);
}

.equipment-list {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.equipment-list::-webkit-scrollbar {
  display: none;
}

.equipment-card {
  position: relative;
  flex: 0 0 288px;
  display: flex;
  flex-direction: column;
  background: var(--brand-white);
  border: 1.5px solid var(--brand-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 768px) {
  .equipment-card {
    flex: 0 0 316px;
  }
}
.equipment-card:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 1px var(--brand-primary);
}
.equipment-card__tags {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 5px;
}
.equipment-card__img {
  position: relative;
  aspect-ratio: 1/1;
  background: linear-gradient(145deg, #f0ece8 0%, #e4ddd7 100%);
  overflow: hidden;
}
.equipment-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform var(--transition-slow);
}
.equipment-card__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: oklch(60% 0.03 40deg);
}
.equipment-card:hover .equipment-card__img img {
  transform: scale(1.05);
}
.equipment-card__body {
  padding: 16px 18px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.equipment-card__name, .equipment-card .name {
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-text);
  line-height: 1.3;
}
.equipment-card__maker {
  font-size: 12px;
  color: var(--brand-text-light);
}
.equipment-card__availability {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}
.equipment-card__prices {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--brand-border);
  margin-top: auto;
}

.eq-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  line-height: 1.3;
}
.eq-tag--location {
  background: var(--brand-secondary);
  color: var(--brand-white);
}
.eq-tag--discount {
  background: var(--brand-primary);
  color: var(--brand-white);
}

.avail-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.avail-dot--green {
  background: #2e7d32;
}
.avail-dot--red {
  background: var(--brand-primary);
}

.avail-text {
  font-size: 11px;
  color: var(--brand-text-mid);
}

.price-unit {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 6px;
  border-right: 1px solid var(--brand-border);
}
.price-unit:last-child {
  border-right: none;
}

.price-period {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-text-light);
}

.price-amount {
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
  margin-top: 3px;
}

.pop-equip-footer {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.call-banner {
  display: block;
  background: var(--brand-primary);
  overflow: hidden;
  text-decoration: none;
  padding: 0;
  cursor: pointer;
  line-height: 1;
}
.call-banner:hover {
  background: var(--brand-primary-hover);
}
.call-banner__track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: scrollBanner 40s linear infinite;
  width: max-content;
  padding: 32px 0;
}
@media (min-width: 768px) {
  .call-banner__track {
    padding: 44px 0;
  }
}
.call-banner__text {
  font-family: "Sora", sans-serif;
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 800;
  color: var(--brand-white);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 40px;
  line-height: 1;
}
.call-banner__sep {
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(24px, 3vw, 48px);
  padding: 0 8px;
  line-height: 1;
}

@keyframes scrollBanner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.trust-section {
  background: var(--brand-white);
  padding: 80px 0;
}
.trust-section__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
}
.trust-section__header {
  margin-bottom: 56px;
}

.trust-heading {
  font-family: "Sora", sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: var(--brand-text);
  line-height: 1.15;
  max-width: 520px;
}

.trust-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .trust-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-item-row {
  padding-block: 40px;
  border-top: 1px solid var(--brand-border);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 450ms ease-out, transform 450ms ease-out;
}
@media (min-width: 768px) {
  .trust-item-row {
    padding-block: 0;
    padding-inline: 40px;
    border-top: none;
    border-left: 1px solid var(--brand-border);
  }
  .trust-item-row:first-child {
    padding-left: 0;
    border-left: none;
  }
}
.trust-item-row.trust-visible {
  opacity: 1;
  transform: translateY(0);
}
.trust-item-row:nth-child(1) {
  transition-delay: 0ms;
}
.trust-item-row:nth-child(2) {
  transition-delay: 80ms;
}
.trust-item-row:nth-child(3) {
  transition-delay: 160ms;
}
.trust-item-row:nth-child(4) {
  transition-delay: 240ms;
}
.trust-item-row__bar {
  width: 28px;
  height: 2px;
  background: var(--brand-primary);
  margin-bottom: 24px;
}
.trust-item-row__title {
  font-family: "Sora", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 12px;
  line-height: 1.25;
}
.trust-item-row__desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--brand-text-mid);
}

.services {
  background: var(--brand-white);
  padding: 96px 0;
  position: relative;
}
.services::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 40%;
  background: radial-gradient(ellipse at 100% 0%, rgba(192, 57, 43, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.services__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.services__intro {
  max-width: 680px;
}
.services__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 10px;
}
.services__title {
  font-family: "Sora", sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--brand-text);
  margin-bottom: 16px;
}
.services__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--brand-text-mid);
  max-width: 580px;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
@media (min-width: 1024px) {
  .service-row {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}
.service-row.service-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 1024px) {
  .service-row--rev .service-row__img {
    order: 2;
  }
  .service-row--rev .service-row__body {
    order: 1;
  }
}
.service-row__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  background: linear-gradient(145deg, var(--brand-secondary) 0%, #1e120c 100%);
}
.service-row__img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at 70% 30%, rgba(192, 57, 43, 0.18) 0%, transparent 55%), repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 22px);
  pointer-events: none;
}
.service-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  position: relative;
  z-index: 2;
}
.service-row__img:hover img {
  transform: scale(1.04);
}
.service-row__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  position: relative;
}
.service-row__num {
  font-family: "Sora", sans-serif;
  font-size: clamp(96px, 13vw, 160px);
  font-weight: 800;
  color: rgba(192, 57, 43, 0.09);
  line-height: 0.82;
  letter-spacing: -0.04em;
  margin-bottom: -28px;
  user-select: none;
  pointer-events: none;
}
.service-row__title {
  font-family: "Sora", sans-serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  color: var(--brand-text);
  line-height: 1.12;
}
.service-row__desc {
  font-size: 15px;
  line-height: 1.78;
  color: var(--brand-text-mid);
  white-space: pre-line;
  max-width: 480px;
}

.services__intro {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}
.services__intro.service-visible {
  opacity: 1;
  transform: translateY(0);
}

.mfr-section {
  background: var(--brand-white);
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
  padding: 72px 0;
}

.mfr-section__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .mfr-section__inner {
    grid-template-columns: 300px 1fr;
    gap: 72px;
  }
}

.mfr-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 12px;
}

.mfr-heading {
  font-family: "Sora", sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  color: var(--brand-text);
  line-height: 1.25;
  margin-bottom: 14px;
}

.mfr-body {
  font-size: 14px;
  color: var(--brand-muted);
  line-height: 1.7;
  max-width: 280px;
}

.mfr-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}
@media (min-width: 1024px) {
  .mfr-grid {
    gap: 16px;
  }
}

.mfr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 16px;
  background: var(--brand-white);
  border-radius: var(--radius-md);
  flex: 1 1 calc(33.33% - 8px);
  min-width: 110px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
@media (min-width: 768px) {
  .mfr-card {
    flex: 1 1 calc(20% - 12px);
    padding: 24px 20px;
  }
}
@media (min-width: 1024px) {
  .mfr-card {
    padding: 28px 24px;
  }
}
.mfr-card:hover {
  box-shadow: 0 6px 24px rgba(192, 57, 43, 0.1);
  transform: translateY(-4px);
}

.mfr-card__logo {
  height: 52px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}
@media (min-width: 768px) {
  .mfr-card__logo {
    height: 60px;
    max-width: 120px;
  }
}

.mfr-card__name {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-muted);
}

.reviews-section {
  background: var(--brand-secondary);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}
.reviews-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 10% 0%, rgba(192, 57, 43, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.reviews-section__header {
  text-align: center;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
  margin-bottom: 44px;
}

.reviews-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 12px;
}

.reviews-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: var(--brand-white);
  margin-bottom: 10px;
}

.reviews-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 480px;
  margin-inline: auto;
}

.reviews-marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

.reviews-marquee {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 16px;
  width: max-content;
}
.reviews-track--fwd {
  animation: reviewsFwd 50s linear infinite;
}
.reviews-track--rev {
  animation: reviewsRev 50s linear infinite;
}

@keyframes reviewsFwd {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}
@keyframes reviewsRev {
  0% {
    transform: translateX(-33.333%);
  }
  100% {
    transform: translateX(0);
  }
}
.review-card {
  flex: 0 0 300px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-xl);
  padding: 26px;
}
@media (min-width: 768px) {
  .review-card {
    flex: 0 0 350px;
  }
}
.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}
.review-card__quote {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 16px;
  font-style: italic;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
.review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: var(--brand-white);
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-transform: uppercase;
}
.review-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-card__name {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-white);
}
.review-card__label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.reviews-section__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.seo-map-section {
  background: var(--brand-off-white);
  padding: 72px 0;
}
.seo-map-section__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .seo-map-section__inner {
    grid-template-columns: 1fr 1fr;
  }
}
.seo-map-section__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 12px;
}
.seo-map-section__title {
  font-family: "Sora", sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: var(--brand-text);
  margin-bottom: 16px;
  line-height: 1.15;
}
.seo-map-section__para {
  font-size: 15px;
  line-height: 1.75;
  color: var(--brand-text-mid);
  margin-bottom: 28px;
  max-width: 560px;
}
.seo-map-section__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 1023px) {
  .seo-map-section__map {
    order: -1;
  }
}

.google-map-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.14);
}
.google-map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}
@media (min-width: 1024px) {
  .google-map-wrap {
    aspect-ratio: 3/4;
  }
}

.faq-wrap {
  background: var(--brand-white);
  padding: 72px 0;
}

.faq-section {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
}
.faq-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .faq-section__inner {
    grid-template-columns: 340px 1fr;
  }
}
.faq-section__list {
  display: flex;
  flex-direction: column;
}

.faq-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: var(--brand-primary-light);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.faq-main-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--brand-text);
  margin-bottom: 12px;
  line-height: 1.15;
}

.faq-main-subtitle {
  font-size: 15px;
  color: var(--brand-text-mid);
  line-height: 1.65;
  margin-bottom: 32px;
}

.faq-contact-block {
  background: var(--brand-primary-light);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.faq-contact-title {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 8px;
}

.faq-contact-desc {
  font-size: 14px;
  color: var(--brand-text-mid);
  margin-bottom: 16px;
  line-height: 1.6;
}

.faq-item {
  border-bottom: 1px solid var(--brand-border);
}
.faq-item:first-child {
  border-top: 1px solid var(--brand-border);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition-fast);
}
.faq-trigger:hover {
  color: var(--brand-primary);
}
.faq-trigger[aria-expanded=true] .faq-chevron svg {
  transform: rotate(180deg);
}

.faq-q-num {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--brand-primary);
  opacity: 0.5;
  flex-shrink: 0;
  width: 20px;
}

.faq-question {
  flex: 1;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: inherit;
  line-height: 1.35;
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--brand-text-mid);
}
.faq-chevron svg {
  transition: transform var(--transition-base);
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-panel .faq-answer {
  font-size: 15px;
  line-height: 1.7;
  color: var(--brand-text-mid);
  padding: 0 34px 20px;
}

.faq-item.faq-open .faq-answer-panel {
  max-height: 600px;
}

.footer {
  background: var(--brand-secondary);
  color: rgba(255, 255, 255, 0.75);
}
.footer__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 56px 24px 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    gap: 40px;
  }
}
.footer__col--brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.footer__tagline {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  max-width: 240px;
}
.footer__social {
  display: flex;
  gap: 8px;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.footer__social-link:hover {
  background: var(--brand-primary);
  color: var(--brand-white);
}
.footer__assoc {
  margin-top: 8px;
}
.footer__assoc-logo {
  height: 36px;
  width: auto;
  opacity: 0.45;
  filter: brightness(10);
}
.footer__col-title {
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 14px;
}
.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__address {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.footer__address:hover {
  color: var(--brand-white);
}
.footer__contact-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer__contact-link:hover {
  color: var(--brand-white);
}
.footer__review-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-accent);
  text-decoration: none;
}
.footer__review-link:hover {
  color: var(--brand-white);
}
.footer__hours {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer__nav li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer__nav li a:hover {
  color: var(--brand-white);
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.footer__copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}
.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.75);
}
.footer__bottom > *:not(.footer__copyright):not(.footer__legal), .footer__bottom [class*=powered], .footer__bottom [class*=heyquip-credit] {
  font-size: 11px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer__bottom > *:not(.footer__copyright):not(.footer__legal) a, .footer__bottom [class*=powered] a, .footer__bottom [class*=heyquip-credit] a {
  color: inherit;
  text-decoration: none;
}
.footer__bottom > *:not(.footer__copyright):not(.footer__legal) a:hover, .footer__bottom [class*=powered] a:hover, .footer__bottom [class*=heyquip-credit] a:hover {
  color: rgba(255, 255, 255, 0.75);
}
.footer__bottom > *:not(.footer__copyright):not(.footer__legal) img, .footer__bottom > *:not(.footer__copyright):not(.footer__legal) svg, .footer__bottom [class*=powered] img, .footer__bottom [class*=powered] svg, .footer__bottom [class*=heyquip-credit] img, .footer__bottom [class*=heyquip-credit] svg {
  height: 14px;
  width: auto;
  opacity: 0.7;
}

.contact-page {
  overflow-x: hidden;
}

.contact-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 1024px) {
  .contact-hero {
    min-height: 600px;
  }
}
.contact-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 10, 6, 0.92) 0%, rgba(20, 10, 6, 0.6) 50%, rgba(20, 10, 6, 0.2) 100%);
}
.contact-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 56px 24px 52px;
  width: 100%;
}
.contact-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 16px;
}
.contact-hero__eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-accent);
  border-radius: 1px;
}
.contact-hero__title {
  font-family: "Sora", sans-serif;
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 800;
  color: var(--brand-white);
  line-height: 1.05;
  margin-bottom: 12px;
  max-width: 640px;
}
.contact-hero__subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 520px;
}
.contact-hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Sora", sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--brand-white);
  text-decoration: none;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  transition: color 0.2s ease;
}
.contact-hero__phone svg {
  flex-shrink: 0;
  opacity: 0.85;
}
.contact-hero__phone:hover {
  color: var(--brand-accent);
}
.contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-main {
  background: var(--brand-white);
  padding: 64px 0;
}
.contact-main__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .contact-main__inner {
    grid-template-columns: 400px 1fr;
    gap: 64px;
    align-items: stretch;
  }
}
.contact-main__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-main__map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 320px;
  position: relative;
  border: 1px solid var(--brand-border);
}
@media (min-width: 1024px) {
  .contact-main__map {
    min-height: 460px;
  }
}
.contact-main__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.contact-detail {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0 16px;
  padding-block: 24px;
  border-bottom: 1px solid var(--brand-border);
  align-items: start;
}
.contact-detail--last {
  border-bottom: none;
}
.contact-detail__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--brand-primary-light);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-detail__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-text-light);
  margin-bottom: 4px;
}
.contact-detail__value {
  font-size: 15px;
  color: var(--brand-text);
  line-height: 1.6;
  margin: 0;
}
.contact-detail__link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-primary);
  text-decoration: none;
  margin-top: 6px;
  transition: color 0.2s ease;
}
.contact-detail__link:hover {
  color: var(--brand-primary-hover);
}
.contact-detail__hours {
  font-size: 14px;
  color: var(--brand-text-mid);
  line-height: 1.75;
}
.contact-detail__phone {
  display: inline-block;
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--brand-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-detail__phone:hover {
  color: var(--brand-primary-hover);
}
.contact-detail__email {
  display: inline-block;
  font-size: 14px;
  color: var(--brand-text-mid);
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-detail__email:hover {
  color: var(--brand-primary);
}
.contact-detail__description {
  font-size: 13px;
  color: var(--brand-text-light);
  line-height: 1.6;
  margin-top: 6px;
}

.contact-account {
  background: var(--brand-white);
  padding: 72px 0;
}
.contact-account__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .contact-account__inner {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-account__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  background: linear-gradient(145deg, var(--brand-secondary) 0%, #1e120c 100%);
}
.contact-account__img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at 65% 35%, rgba(192, 57, 43, 0.2) 0%, transparent 55%);
  pointer-events: none;
}
.contact-account__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}
.contact-account__title {
  font-family: "Sora", sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: var(--brand-text);
  margin-bottom: 20px;
  line-height: 1.15;
}
.contact-account__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.contact-account__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--brand-text-mid);
}
.contact-account__cta-note {
  font-size: 14px;
  color: var(--brand-text-light);
  margin-bottom: 20px;
}

.contact-seo {
  background: var(--brand-off-white);
  padding: 56px 0;
}
.contact-seo__inner {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: 24px;
}
.contact-seo__title {
  font-family: "Sora", sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 14px;
}
.contact-seo__para {
  font-size: 15px;
  line-height: 1.75;
  color: var(--brand-text-mid);
}