/* ============================================
   ЛОКАЛ — Design System
   Бренд одежды, Нижний Новгород
   Цвета: Pantone 7500C, Black, Pantone 485C
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@300;400;500&display=swap');

/* --- CSS Variables --- */
:root {
  /* Brand Colors */
  --color-beige: #E8DED1;
  --color-beige-light: #F2EDE6;
  --color-beige-dark: #D5C9B8;
  --color-black: #1A1A1A;
  --color-black-soft: #2D2D2D;
  --color-red: #DA291C;
  --color-red-hover: #C1231A;
  --color-white: #FAFAF8;
  --color-gray: #8A8579;
  --color-gray-light: #B5AFA6;

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-padding: 1.25rem;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 800ms;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

/* --- Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-black);
  background-color: var(--color-beige-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  /* Усиливаем expanded-эффект как в стиле бренда */
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.4rem, 6.4vw, 5.6rem);
  /* Уменьшено на 20% от (3rem, 8vw, 7rem) */
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gray);
}

.body-lg {
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 300;
}

.body-sm {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

section {
  padding: var(--space-2xl) 0;
}

/* --- Buttons — Anthropic-style: elevated, warm, refined --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1),
              background-color 0.22s var(--ease-out),
              color 0.22s var(--ease-out),
              border-color 0.22s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.12) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.btn:hover::after {
  transform: translateX(110%);
}

.btn-primary {
  background-color: var(--color-red);
  color: var(--color-white);
  box-shadow: 0 6px 18px rgba(218, 41, 28, 0.22),
              0 2px 6px rgba(218, 41, 28, 0.12);
}

.btn-primary:hover {
  background-color: var(--color-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(218, 41, 28, 0.34),
              0 4px 10px rgba(218, 41, 28, 0.18);
}

.btn-primary:active {
  transform: translateY(0);
}

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

.btn-outline:hover {
  background-color: var(--color-black);
  color: var(--color-beige-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(26, 26, 26, 0.18);
}

.btn-outline:active {
  transform: translateY(0);
}

.btn-ghost {
  background: transparent;
  color: var(--color-black);
  padding: 0.75rem 0.25rem;
  border-bottom: 1px solid var(--color-black);
  border-radius: 0;
  position: relative;
}

.btn-ghost::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: var(--color-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-ghost:hover {
  color: var(--color-red);
}

.btn-ghost:hover::before {
  transform: scaleX(1);
}

/* --- Pixel Decoration --- */
.pixel-dot {
  width: 6px;
  height: 6px;
  background: var(--color-red);
  display: inline-block;
}

.pixel-line {
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(90deg,
      var(--color-black) 0px,
      var(--color-black) 6px,
      transparent 6px,
      transparent 10px);
  opacity: 0.15;
}

.stamp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4375rem 0.875rem;
  border: 1px solid var(--color-red);
  color: var(--color-red);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-1.5deg);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.stamp:hover {
  transform: rotate(0deg) scale(1.04);
}

/* --- Soft Gradient Background (hero alternative) --- */
.hero {
  background:
    radial-gradient(ellipse at 20% 80%, rgba(213, 201, 184, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(232, 222, 209, 0.5) 0%, transparent 50%),
    var(--color-beige-light);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              backdrop-filter 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              padding 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.header.scrolled {
  padding: 0.75rem 0;
  background: rgba(242, 237, 230, 0.78);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  box-shadow: 0 1px 0 rgba(26, 26, 26, 0.04),
              0 8px 32px rgba(26, 26, 26, 0.04);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.logo img {
  height: 1.5rem;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-black-soft);
  position: relative;
  padding: 0.375rem 0;
  transition: color 0.22s var(--ease-out);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover {
  color: var(--color-black);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Burger Menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  width: 100%;
  height: 2px;
  background: var(--color-black);
  transition: all var(--duration-normal) var(--ease-out);
  transform-origin: center;
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--color-beige-light);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-md);
  /* верхний отступ очищает фиксированный хедер (лого + чип заката),
     overflow-y — чтобы все пункты были доступны на низких экранах */
  padding: 5.5rem 1.5rem 2.5rem;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-black);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--duration-normal) var(--ease-out);
}

.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active a:nth-child(1) {
  transition-delay: 100ms;
}

.mobile-menu.active a:nth-child(2) {
  transition-delay: 150ms;
}

.mobile-menu.active a:nth-child(3) {
  transition-delay: 200ms;
}

.mobile-menu.active a:nth-child(4) {
  transition-delay: 250ms;
}

.mobile-menu.active a:nth-child(5) {
  transition-delay: 300ms;
}

.mobile-menu.active a:nth-child(6) {
  transition-delay: 350ms;
}

.mobile-menu a:hover {
  color: var(--color-red);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 5rem;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-content {
  max-width: 560px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
  /* Editorial mark — короткая красная черта перед mono-меткой */
  position: relative;
  padding-left: 1.625rem;
}

.hero-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 1px;
  background: var(--color-red);
  opacity: 0.6;
}

.hero h1 {
  margin-bottom: var(--space-md);
  color: var(--color-black);
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: 0.01em;
}

.hero h1 span {
  color: var(--color-red);
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-black-soft);
  margin-bottom: var(--space-lg);
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-beige);
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-coords {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  color: var(--color-white);
  background: rgba(26, 26, 26, 0.6);
  padding: 0.375rem 0.625rem;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

.hero-float-stamp {
  position: absolute;
  top: 2rem;
  right: -1rem;
  z-index: 2;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: float 3s ease-in-out infinite;
}

.scroll-indicator span {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray);
}

.scroll-indicator .arrow {
  width: 1px;
  height: 2rem;
  background: linear-gradient(to bottom, var(--color-gray), transparent);
}

/* На мобильном hero идёт одной колонкой и высоты не хватает — индикатор «листай»
   приземляется прямо на кнопку «Примерить в шоуруме». На тач-устройстве swipe
   инстинктивен сам по себе, явный индикатор избыточен. */
@media (max-width: 768px) {
  .scroll-indicator {
    display: none;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ============================================
   SOUVENIR SECTION — «Сувенир, который носят»
   ============================================ */
.souvenir {
  background: var(--color-beige);
  position: relative;
}

.souvenir .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.souvenir-text h2 {
  margin-bottom: var(--space-md);
}

.souvenir-text p {
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-black-soft);
  max-width: 480px;
}

.souvenir-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.feature-card {
  padding: var(--space-md);
  background: var(--color-beige-light);
  border-radius: var(--radius-md);
  transition: transform var(--duration-normal) var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card .mono {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-red);
}

.feature-card p {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--color-black-soft);
}

/* ============================================
   LOOKBOOK — Галерея мокапов
   ============================================ */
.lookbook {
  position: relative;
  overflow: hidden;
  padding-bottom: var(--space-xl);
}

.lookbook-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.lookbook-header h2 {
  margin-bottom: 0;
}

.lookbook-subtitle {
  font-weight: 300;
  color: var(--color-black-soft);
  max-width: 320px;
  line-height: 1.7;
  font-size: 1rem;
}

.lookbook-track {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 var(--container-padding) var(--space-sm);
  cursor: grab;
}

.lookbook-track:active {
  cursor: grabbing;
}

.lookbook-track::-webkit-scrollbar {
  display: none;
}

.lookbook-item {
  flex: 0 0 280px;
  height: 360px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  background: var(--color-beige);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.lookbook-item--tall {
  height: 420px;
  flex: 0 0 300px;
  align-self: flex-start;
}

.lookbook-item:nth-child(even) {
  align-self: flex-end;
  margin-top: 2rem;
}

.lookbook-item:nth-child(odd) {
  align-self: flex-start;
}

.lookbook-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(26, 26, 26, 0.12);
}

.lookbook-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.lookbook-item:hover img {
  transform: scale(1.06);
}

.lookbook-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem var(--space-md) var(--space-sm);
  background: linear-gradient(to top, rgba(26, 26, 26, 0.7), transparent);
  color: var(--color-white);
  font-size: 0.625rem !important;
  letter-spacing: 0.12em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out);
}

.lookbook-item:hover .lookbook-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   DROP SECTION — Текущий дроп
   ============================================ */
.drop {
  position: relative;
}

.drop-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.drop-header h2 {
  flex: 1;
}

.drop-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Product Cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  position: relative;
  box-shadow: 0 1px 0 rgba(26, 26, 26, 0.04);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(26, 26, 26, 0.1),
              0 8px 18px rgba(26, 26, 26, 0.05);
}

.product-card-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--color-beige);
  position: relative;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
}

.product-card-info {
  padding: var(--space-md);
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.product-card-desc {
  font-size: 0.8125rem;
  color: var(--color-gray);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.product-card-price {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-black);
}

/* Horizontal scroll for mobile */
.products-scroll {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--space-sm);
}

.products-scroll::-webkit-scrollbar {
  display: none;
}

.products-scroll .product-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

/* --- Capsule Carousel (homepage) --- */
.capsule-carousel {
  position: relative;
  margin: 0 -1.25rem;
  padding: 0 1.25rem;
}

.capsule-track {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 0 var(--space-md);
}

.capsule-track::-webkit-scrollbar {
  display: none;
}

.capsule-track .product-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  cursor: pointer;
}

.capsule-track .product-card:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 4px;
}

.capsule-nav {
  position: absolute;
  top: 40%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.1),
              0 2px 6px rgba(26, 26, 26, 0.06);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.22s var(--ease-out),
              box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 5;
  cursor: pointer;
  border: none;
}

.capsule-nav svg {
  width: 20px;
  height: 20px;
}

.capsule-nav:hover {
  background: var(--color-black);
  color: var(--color-beige-light);
  transform: scale(1.06);
  box-shadow: 0 12px 32px rgba(26, 26, 26, 0.18),
              0 4px 10px rgba(26, 26, 26, 0.08);
}

.capsule-nav:disabled,
.capsule-nav[aria-disabled="true"] {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.9);
}

.capsule-prev {
  left: -8px;
}

.capsule-next {
  right: -8px;
}

@media (max-width: 768px) {
  .capsule-nav {
    display: none;
  }

  .capsule-track .product-card {
    flex: 0 0 240px;
  }
}

/* ============================================
   CULTURAL LAYER — «Культурный слой»
   ============================================ */
.cultural-layer {
  background: var(--color-black);
  color: var(--color-beige-light);
  position: relative;
  overflow: hidden;
}

.cultural-layer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 222, 209, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 222, 209, 0.04) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
}

.cultural-layer .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cultural-layer h2 {
  color: var(--color-beige-light);
  margin-bottom: var(--space-md);
}

.cultural-layer h2 span {
  color: var(--color-red);
}

.cultural-layer-subtitle {
  font-weight: 300;
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto var(--space-xl);
  color: var(--color-beige-dark);
}

.layer-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.layer-card {
  padding: var(--space-lg);
  border: 1px solid rgba(232, 222, 209, 0.1);
  border-radius: var(--radius-md);
  text-align: left;
  transition: border-color var(--duration-normal);
}

.layer-card:hover {
  border-color: rgba(232, 222, 209, 0.25);
}

.layer-card .mono {
  color: var(--color-red);
  margin-bottom: var(--space-sm);
  display: block;
}

.layer-card h3 {
  font-size: 1.75rem;
  color: var(--color-beige-light);
  margin-bottom: 0.75rem;
}

.layer-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-gray-light);
}

/* Large decorative glyph */
.glyph-decoration {
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 12rem);
  opacity: 0.04;
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  line-height: 1;
  letter-spacing: 0.05em;
}

/* ============================================
   DELIVERY — «Доставка до отеля»
   ============================================ */
.delivery {
  background: var(--color-beige);
}

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

.delivery h2 {
  margin-bottom: 0.75rem;
}

.delivery-subtitle {
  font-weight: 300;
  color: var(--color-black-soft);
  margin-bottom: var(--space-xl);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.delivery-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto var(--space-xl);
}

.delivery-step {
  position: relative;
  padding: var(--space-lg) var(--space-md);
}

.step-number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--color-black);
  opacity: 0.08;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
  /* Subtle accent: тонкая красная горизонталь под числом */
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.step-number::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--color-red);
  opacity: 0.5;
}

.delivery-step h3 {
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.625rem;
}

.delivery-step p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-black-soft);
  font-weight: 300;
}

/* Между шагами — тонкий arrow вместо unicode → */
.delivery-step:not(:last-child)::after {
  content: '\2192';
  position: absolute;
  right: -0.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 1.125rem;
  color: var(--color-gray-light);
  opacity: 0.5;
  font-weight: 300;
}

/* ============================================
   SHOWROOM — Оффлайн-точка
   ============================================ */
.showroom {
  position: relative;
}

.showroom .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.showroom-image {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-beige);
  box-shadow: 0 20px 50px rgba(26, 26, 26, 0.08),
              0 6px 16px rgba(26, 26, 26, 0.04);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.showroom-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(26, 26, 26, 0.12),
              0 10px 22px rgba(26, 26, 26, 0.06);
}

.showroom-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.showroom-image:hover img {
  transform: scale(1.03);
}

.showroom-info h2 {
  margin-bottom: var(--space-sm);
}

.showroom-info p {
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-black-soft);
  margin-bottom: var(--space-md);
}

.showroom-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: var(--space-lg);
}

.showroom-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.showroom-detail .detail-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.showroom-detail .mono {
  color: var(--color-black-soft);
  font-size: 0.8125rem;
  line-height: 1.6;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--color-beige);
}

.faq .container {
  max-width: 760px;
}

.faq h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  transition: padding 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item:first-child {
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-md) 0.25rem;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 500;
  text-align: left;
  color: var(--color-black);
  cursor: pointer;
  transition: color 0.22s var(--ease-out),
              padding-left 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  gap: var(--space-sm);
  letter-spacing: -0.005em;
}

.faq-question:hover {
  color: var(--color-red);
  padding-left: 0.75rem;
}

.faq-item.active .faq-question {
  color: var(--color-red);
  padding-left: 0.75rem;
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  transition: transform var(--duration-normal) var(--ease-out);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform var(--duration-normal) var(--ease-out);
}

.faq-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq-item.active .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-normal) var(--ease-out);
}

.faq-answer-inner {
  padding: 0 0.25rem var(--space-md);
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-black-soft);
  max-width: 56em;
  font-weight: 300;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: var(--color-black);
  color: var(--color-beige-light);
  text-align: center;
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

/* Subtle warm radial glow на тёмном фоне — глубина без шума */
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(218, 41, 28, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta .container {
  position: relative;
}

.final-cta h2 {
  color: var(--color-beige-light);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.04em;
}

.final-cta p {
  font-weight: 300;
  color: var(--color-beige-dark);
  margin-bottom: var(--space-lg);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-black);
  color: var(--color-beige-dark);
  padding: var(--space-xl) 0 var(--space-lg);
  border-top: 1px solid rgba(232, 222, 209, 0.08);
}

.footer .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-lg);
}

.footer-brand .logo {
  margin-bottom: var(--space-sm);
  display: inline-flex;
}

.footer-brand .logo img {
  height: 2rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-gray);
  max-width: 280px;
}

.footer-column h4 {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-bottom: var(--space-sm);
  /* Editorial mark — короткая красная черта перед заголовком */
  position: relative;
  padding-left: 1.5rem;
  display: inline-block;
}

.footer-column h4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 1px;
  background: var(--color-red);
  opacity: 0.5;
}

.footer-column a {
  display: block;
  width: fit-content;
  font-size: 0.875rem;
  color: var(--color-beige-dark);
  padding: 0.3125rem 0;
  transition: color 0.22s var(--ease-out),
              transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-column a:hover {
  color: var(--color-beige-light);
  transform: translateX(4px);
}

.footer-bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(232, 222, 209, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom .mono {
  font-size: 0.625rem;
}

/* Правовые ссылки — отдельной строкой во всю ширину футера */
.footer-legal {
  grid-column: 1 / -1;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(232, 222, 209, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.footer-legal a {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gray);
  transition: color 0.22s var(--ease-out);
}

.footer-legal a:hover {
  color: var(--color-beige-light);
}

/* ============================================
   ANIMATIONS (Fade-in on scroll)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.visible {
    transition: opacity 0.3s ease;
    transform: none;
  }
}

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

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

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

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

/* Stagger children */
.stagger-children>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration-normal) var(--ease-out),
    transform var(--duration-normal) var(--ease-out);
}

.stagger-children.visible>*:nth-child(1) {
  transition-delay: 0ms;
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.visible>*:nth-child(2) {
  transition-delay: 80ms;
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.visible>*:nth-child(3) {
  transition-delay: 160ms;
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.visible>*:nth-child(4) {
  transition-delay: 240ms;
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .souvenir .container,
  .showroom .container {
    grid-template-columns: 1fr;
  }

  .footer .container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg) var(--space-md);
  }
}

@media (max-width: 768px) {
  :root {
    --space-2xl: 4rem;
    --space-3xl: 5rem;
  }

  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }

  .delivery-steps {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .delivery-step:not(:last-child)::after {
    content: '\2193';
    right: 50%;
    top: auto;
    bottom: -0.75rem;
    transform: translateX(50%);
  }

  .layer-visual {
    grid-template-columns: 1fr;
  }

  .products-grid {
    display: none;
  }

  .products-scroll {
    display: flex;
  }

  .souvenir-features {
    grid-template-columns: 1fr;
  }

  .lookbook-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .lookbook-subtitle {
    max-width: 100%;
  }

  .lookbook-item {
    flex: 0 0 220px;
    height: 300px;
  }

  .lookbook-item--tall {
    height: 340px;
    flex: 0 0 240px;
  }

  .footer .container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .showroom-image {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 1rem;
    --space-2xl: 3rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  .hero {
    min-height: 85vh;
  }

  .products-scroll .product-card {
    flex: 0 0 240px;
  }

  .stamp {
    font-size: 0.5625rem;
  }
}

/* Desktop: show grid, hide scroll */
@media (min-width: 769px) {
  .products-scroll {
    display: none;
  }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ============================================
   VISIT — QR-лендинг витрины
   ============================================ */

/* Hero лендинга: одна колонка, по центру, более воздушный. */
.visit-page .hero {
  min-height: auto;
  padding-top: 7rem;
  padding-bottom: var(--space-lg);
}

.visit-page .hero .container {
  grid-template-columns: 1fr;
  max-width: 760px;
}

.visit-page .hero-content {
  max-width: 100%;
}

/* Нота «Доставка до отеля день в день»: оторвать от кнопок, не лепить плотно. */
.visit-hero-note {
  margin-top: 3rem;
  font-size: 0.75rem;
  color: var(--color-gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* --- ROUTE: инлайн-секция «Как пройти» --- */
.route-section {
  padding: var(--space-2xl) 0 var(--space-2xl);
  background: var(--color-beige);
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.route-head {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.visit-route-eyebrow {
  display: block;
  font-size: 0.6875rem;
  color: var(--color-red);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.route-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.01em;
  color: var(--color-black);
  line-height: 1.05;
}

.route-gallery {
  position: relative;
  background: var(--color-black);
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto var(--space-md);
  box-shadow: 0 12px 40px rgba(26, 26, 26, 0.12);
}

.route-track {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--color-black);
}

.route-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
}

.route-slide.active {
  opacity: 1;
}

.route-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.route-slide-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-beige) 0%, var(--color-beige-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--color-black);
}

.route-slide-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 18vw, 7rem);
  line-height: 1;
  color: var(--color-red);
}

.route-slide-hint {
  font-size: 0.6875rem;
  color: var(--color-gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: var(--color-beige-light);
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background var(--duration-fast) var(--ease-out);
}

.route-nav:hover {
  background: rgba(0, 0, 0, 0.75);
}

.route-nav-prev { left: 0.5rem; }
.route-nav-next { right: 0.5rem; }

.route-caption {
  padding: 0.875rem 1rem;
  font-size: 0.8125rem;
  color: var(--color-beige-light);
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
  letter-spacing: 0.02em;
  min-height: 2.5rem;
}

.route-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.75rem 0;
  background: var(--color-black-soft);
}

.route-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-out);
}

.route-dot.active {
  background: var(--color-red);
}

.route-actions {
  display: flex;
  gap: 0.75rem;
  flex-direction: column;
  max-width: 480px;
  margin: 0 auto;
}

.route-actions .btn {
  width: 100%;
  min-height: 52px;
}

@media (min-width: 540px) {
  .route-actions {
    flex-direction: row;
  }
  .route-actions .btn {
    flex: 1;
  }
}

/* ============================================
   VISIT TOOLS — бесплатные сервисы для гостей города
   (внутри /visit.html, между hero и route).
   Anthropic-minimal: щедрые отступы, тонкие линии, акцент-красный точечно.
   ============================================ */

.visit-tools {
    padding: var(--space-2xl) 0 var(--space-xl);
    background: var(--color-beige-light);
    border-top: 1px solid rgba(26, 26, 26, 0.06);
}

.visit-tools-head {
    text-align: center;
    max-width: 540px;
    margin: 0 auto var(--space-xl);
}

.visit-tools-eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-red);
    padding: 0.3rem 0.875rem;
    border: 1px solid rgba(218, 41, 28, 0.22);
    border-radius: 999px;
    margin-bottom: 1.125rem;
}

.visit-tools-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 2.75rem);
    letter-spacing: 0.01em;
    line-height: 1.05;
    color: var(--color-black);
    margin: 0 0 0.875rem;
}

.visit-tools-sub {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-black-soft);
    font-weight: 300;
    margin: 0;
}

.visit-tools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.875rem;
    max-width: 720px;
    margin: 0 auto;
}

@media (min-width: 760px) {
    .visit-tools-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }
}

.visit-tool {
    display: flex;
    flex-direction: column;
    padding: 1.75rem 1.5rem 1.5rem;
    background: var(--color-white);
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 18px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.25s var(--ease-out),
                transform 0.25s var(--ease-out),
                box-shadow 0.25s var(--ease-out);
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
    .visit-tool:hover {
        border-color: rgba(26, 26, 26, 0.18);
        transform: translateY(-2px);
        box-shadow: 0 14px 32px rgba(26, 26, 26, 0.05);
    }
}

.visit-tool:active {
    transform: scale(0.985);
}

.visit-tool-mark {
    width: 48px;
    height: 48px;
    color: var(--color-black);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visit-tool-mark svg {
    width: 100%;
    height: 100%;
    display: block;
}

.visit-tool-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    color: var(--color-gray);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.visit-tool h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--color-black);
    line-height: 1.05;
    margin: 0 0 0.625rem;
}

.visit-tool-text {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--color-black-soft);
    font-weight: 300;
    margin: 0 0 1.25rem;
    flex: 1;
}

.visit-tool-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-red);
    align-self: flex-start;
    transition: gap 0.25s var(--ease-out);
}

@media (hover: hover) {
    .visit-tool:hover .visit-tool-cta {
        gap: 0.75rem;
    }
}

.visit-tool-arrow {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.25s var(--ease-out);
}

@media (hover: hover) {
    .visit-tool:hover .visit-tool-arrow {
        transform: translateX(2px);
    }
}

/* На совсем узких экранах (≤380 px) — чуть меньше padding'а, чтобы карточки не казались
   огромными относительно ширины. */
@media (max-width: 380px) {
    .visit-tools {
        padding: var(--space-xl) 0;
    }
    .visit-tool {
        padding: 1.5rem 1.25rem 1.25rem;
        border-radius: 14px;
    }
    .visit-tool-mark {
        width: 42px;
        height: 42px;
        margin-bottom: 1.125rem;
    }
    .visit-tool h3 {
        font-size: 1.375rem;
    }
}
