﻿@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&family=Noto+Sans+Georgian:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #f7f3ee;
  --surface: #fffdfa;
  --surface-strong: #fff7ef;
  --surface-dark: #121314;
  --surface-dark-soft: #1a1c1e;
  --text: #181919;
  --text-soft: #5f655f;
  --text-light: rgba(255, 247, 238, 0.82);
  --white: #ffffff;
  --orange: #f58220;
  --orange-deep: #d5680e;
  --orange-soft: #ffb56d;
  --charcoal: #232526;
  --charcoal-2: #2e3133;
  --line: rgba(24, 25, 25, 0.08);
  --line-light: rgba(255, 255, 255, 0.12);
  --shadow-soft: 0 18px 45px rgba(24, 25, 25, 0.08);
  --shadow-card: 0 24px 70px rgba(12, 14, 15, 0.14);
  --shadow-hero: 0 36px 80px rgba(0, 0, 0, 0.28);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --radius-xl: 44px;
  --container: 1240px;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Noto Sans Georgian", "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(245, 130, 32, 0.07), transparent 36%),
    linear-gradient(180deg, #f8f5f0 0%, #f5f1ea 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  border: 0;
  background: none;
  cursor: pointer;
}

main,
section,
header,
footer {
  position: relative;
}

.site-shell {
  position: relative;
  isolation: isolate;
}

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

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

.section--soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 247, 238, 0.94));
}

.section--dark {
  background:
    radial-gradient(circle at top left, rgba(245, 130, 32, 0.18), transparent 34%),
    linear-gradient(180deg, #16181a 0%, #101112 100%);
  color: var(--white);
}

.section--story {
  background:
    linear-gradient(135deg, rgba(24, 25, 25, 0.97), rgba(36, 38, 39, 0.94));
  color: var(--white);
}

.section--band {
  padding: 42px 0 58px;
  background:
    linear-gradient(180deg, rgba(20, 22, 23, 0.98), rgba(16, 17, 18, 1));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading h2,
.cta-band h2,
.story-copy h2,
.future-copy h2 {
  margin: 0;
  font-size: clamp(2.1rem, 3vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.section-heading p,
.story-copy p,
.future-copy p,
.cta-band p {
  margin: 18px 0 0;
  max-width: 640px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.section-heading--light p,
.section-heading--light h2,
.section-heading--light {
  color: var(--white);
}

.section-heading--light p {
  color: var(--text-light);
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(245, 130, 32, 0.14);
  border: 1px solid rgba(245, 130, 32, 0.18);
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker--light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--orange-soft);
}

.eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
}

.eyebrow__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  box-shadow: 0 0 0 6px rgba(245, 130, 32, 0.16);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition:
    transform var(--transition),
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

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

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ff9e42);
  box-shadow: 0 16px 34px rgba(245, 130, 32, 0.24);
}

.button--primary:hover {
  box-shadow: 0 20px 40px rgba(245, 130, 32, 0.3);
}

.button--secondary,
.button--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 25, 25, 0.08);
  backdrop-filter: blur(18px);
}

.button--secondary-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: inherit;
  font-weight: 800;
}

.text-link span {
  transition: transform var(--transition);
}

.text-link:hover span {
  transform: translateX(4px);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 18px 0;
  transition:
    padding var(--transition),
    background-color var(--transition),
    box-shadow var(--transition),
    backdrop-filter var(--transition);
}

.navbar.is-scrolled {
  padding: 12px 0;
  background: rgba(16, 17, 18, 0.82);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand__mark {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  overflow: hidden;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: var(--white);
}

.brand__text strong {
  font-size: 1.06rem;
  letter-spacing: -0.03em;
}

.brand__text small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  border-radius: 999px;
  background: var(--orange);
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar__cta {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  display: grid;
  align-items: start;
  padding: 82px 16px 16px;
  background: rgba(7, 8, 9, 0.48);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__panel {
  border-radius: 30px;
  background: rgba(20, 22, 23, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px;
  box-shadow: var(--shadow-card);
  transform: translateY(-16px);
  transition: transform var(--transition);
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateY(0);
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}

.mobile-menu__close {
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}

.mobile-menu__nav {
  display: grid;
  gap: 8px;
  margin: 20px 0 24px;
}

.mobile-menu__nav a {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 700;
}

.mobile-menu__cta {
  width: 100%;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 134px 0 48px;
  color: var(--white);
  background: #121314;
  overflow: hidden;
}

.hero__bg,
.hero__overlay,
.hero__glow {
  position: absolute;
  inset: 0;
}

.hero__bg {
  background:
    linear-gradient(90deg, rgba(11, 13, 14, 0.88) 0%, rgba(11, 13, 14, 0.62) 45%, rgba(11, 13, 14, 0.34) 100%),
    url("https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  transform: scale(1.05);
  will-change: transform;
}

.hero__overlay {
  background:
    radial-gradient(circle at top right, rgba(245, 130, 32, 0.18), transparent 25%),
    linear-gradient(180deg, rgba(8, 9, 10, 0.16), rgba(8, 9, 10, 0.4) 68%, rgba(247, 243, 238, 0.08) 100%);
}

.hero__glow {
  pointer-events: none;
  opacity: 0.7;
}

.hero__glow--one {
  background: radial-gradient(circle at 18% 18%, rgba(245, 130, 32, 0.2), transparent 20%);
}

.hero__glow--two {
  background: radial-gradient(circle at 82% 28%, rgba(255, 255, 255, 0.1), transparent 28%);
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: center;
}

.hero__content {
  max-width: 760px;
}

.hero__title {
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 900;
  text-wrap: balance;
}

.hero__title span {
  color: var(--orange-soft);
}

.hero__lead {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.9;
  color: rgba(255, 247, 238, 0.82);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 0.92rem;
  backdrop-filter: blur(12px);
}

.hero__aside {
  position: relative;
  display: grid;
  gap: 18px;
}

.hero-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hero);
}

.hero-card--glass {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.hero-card--spotlight {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 0;
  background: rgba(14, 15, 16, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card__header,
.branch-card__top,
.product-card__price,
.category-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-card__label,
.hero-card__status,
.product-card__badge,
.category-card__tag,
.promo-card__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-card__label,
.product-card__badge,
.promo-card__eyebrow {
  background: rgba(245, 130, 32, 0.18);
  color: var(--orange-soft);
}

.hero-card__status {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.hero-card h2 {
  margin: 18px 0 10px;
  font-size: 1.56rem;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.hero-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.hero-metric {
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-metric strong,
.stats-card strong {
  display: block;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.hero-metric span,
.stats-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

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

.hero-card__body {
  padding: 20px;
}

.hero-card__body p {
  margin-top: 10px;
}

.hero__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 0 0 22px;
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.hero-strip__item {
  padding: 8px 10px;
}

.hero-strip__item span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
}

.hero-strip__item strong {
  font-size: 1rem;
  line-height: 1.4;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.category-card {
  position: relative;
  min-height: 280px;
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  overflow: hidden;
  border-radius: 32px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(10, 11, 12, 0.08), rgba(10, 11, 12, 0.68)),
    var(--card-image) center/cover no-repeat;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  transition: transform var(--transition), box-shadow var(--transition);
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(245, 130, 32, 0.05), transparent 26%),
    linear-gradient(180deg, transparent 0%, rgba(17, 18, 18, 0.76) 100%);
  z-index: -1;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: -14px;
  background: inherit;
  z-index: -2;
  transition: transform 1s var(--transition);
}

.category-card:hover,
.product-card:hover,
.value-card:hover,
.branch-card:hover,
.service-pill:hover,
.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.category-card:hover::after {
  transform: scale(1.06);
}

.category-card--wide {
  grid-column: span 6;
}

.category-card h3,
.promo-card h3,
.value-card h3,
.product-card h3,
.branch-card h3 {
  margin: 14px 0 10px;
  font-size: 1.42rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.category-card p,
.promo-card p,
.value-card p,
.branch-card p {
  margin: 0;
  line-height: 1.75;
}

.category-card__meta {
  margin-top: 22px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.84);
}

.promo-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
}

.promo-card {
  position: relative;
  min-height: 280px;
  padding: 28px;
  border-radius: 32px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(245, 130, 32, 0.18), transparent 30%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.02), transparent 60%);
  pointer-events: none;
}

.promo-card--large {
  min-height: 360px;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(10, 11, 12, 0.12), rgba(10, 11, 12, 0.72)),
    url("https://images.unsplash.com/photo-1607623814075-e51df1bdc82f?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}

.promo-card--accent {
  background:
    linear-gradient(140deg, rgba(245, 130, 32, 0.22), rgba(255, 255, 255, 0.05));
}

.value-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
  gap: 26px;
  align-items: end;
}

.stats-card {
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(135deg, #171819, #232526);
  box-shadow: var(--shadow-card);
}

.stats-card__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 18px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.value-card {
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(24, 25, 25, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(245, 130, 32, 0.18), rgba(245, 130, 32, 0.07));
  color: var(--orange);
}

.value-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.products-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.product-controls {
  display: flex;
  gap: 10px;
}

.product-control {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(24, 25, 25, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), background-color var(--transition);
}

.product-control:hover {
  transform: translateY(-2px);
  background: var(--surface-strong);
}

.products-rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 6px 2px 6px;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

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

.product-card {
  flex: 0 0 clamp(290px, 28vw, 340px);
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(24, 25, 25, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card--featured {
  flex-basis: clamp(380px, 42vw, 470px);
}

.product-card__image {
  aspect-ratio: 1 / 0.86;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--transition);
}

.product-card:hover .product-card__image img {
  transform: scale(1.06);
}

.product-card__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
}

.product-card__price {
  margin-top: auto;
  padding-top: 10px;
  font-weight: 700;
}

.product-card__price strong {
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.product-card__price span {
  color: var(--text-soft);
}

.story-layout,
.future-layout,
.branches-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 36px;
  align-items: center;
}

.story-media {
  position: relative;
  min-height: 0;
}

.story-media__primary {
  margin: 0;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow-hero);
}

.story-media__primary img {
  width: 100%;
  min-height: 540px;
  object-fit: cover;
}

.story-media__badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 280px;
  padding: 14px 16px;
  border-radius: 24px;
  background: rgba(18, 19, 20, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.story-media__badge img {
  width: 48px;
  height: 48px;
  border-radius: 16px;
}

.story-copy p {
  color: rgba(255, 247, 238, 0.8);
}

.story-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 34px;
}

.story-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.service-pill {
  padding: 18px 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-pill strong {
  display: block;
  font-size: 1rem;
  line-height: 1.3;
}

.service-pill span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  line-height: 1.6;
}

.branches-copy .button {
  margin-top: 26px;
}

.branches-map {
  position: relative;
  min-height: 320px;
  border-radius: 36px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(18, 19, 20, 0.9), rgba(30, 31, 33, 0.82)),
    radial-gradient(circle at top left, rgba(245, 130, 32, 0.18), transparent 24%);
  box-shadow: var(--shadow-card);
}

.branches-map__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.34;
}

.branches-map__pin {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(245, 130, 32, 0.3);
}

.branches-map__pin--one {
  top: 22%;
  left: 22%;
}

.branches-map__pin--two {
  top: 52%;
  left: 54%;
}

.branches-map__pin--three {
  bottom: 18%;
  left: 32%;
}

.branch-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.branch-card {
  padding: 26px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(24, 25, 25, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.branch-card__top span {
  color: var(--text-soft);
  font-weight: 700;
}

.branch-card__top strong {
  color: var(--orange);
  font-size: 0.9rem;
}

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

.future-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.future-list div {
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(24, 25, 25, 0.08);
}

.future-list strong {
  display: block;
  font-size: 1rem;
}

.future-list span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  line-height: 1.7;
}

.future-phone {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  width: min(360px, 100%);
  padding: 16px;
  border-radius: 42px;
  background: linear-gradient(180deg, #18191a, #0e0f10);
  box-shadow: var(--shadow-card);
}

.phone-frame__screen {
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 0.68;
}

.phone-frame__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.future-floating-card {
  position: absolute;
  right: 0;
  bottom: 12%;
  max-width: 250px;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(24, 25, 25, 0.08);
  box-shadow: var(--shadow-card);
}

.future-floating-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-weight: 800;
  font-size: 0.85rem;
}

.future-floating-card strong {
  line-height: 1.5;
}

.cta-band {
  padding: 72px 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(135deg, #171819 0%, #232526 60%, #342014 100%);
  color: var(--white);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px;
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-card);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  padding: 74px 0 28px;
  background: linear-gradient(180deg, #111213 0%, #0c0d0e 100%);
  color: var(--white);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 0.9fr;
  gap: 28px;
}

.brand--footer .brand__text small {
  color: rgba(255, 255, 255, 0.6);
}

.footer__brand p {
  max-width: 360px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
}

.footer__col h3 {
  margin: 0 0 18px;
  font-size: 1rem;
}

.footer__col a,
.footer__col span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__hours {
  margin-top: 18px;
}

.footer__hours strong {
  display: block;
  margin-bottom: 8px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.parallax-panel {
  will-change: transform;
}

@media (max-width: 1180px) {
  .navbar__nav {
    gap: 18px;
  }

  .hero__layout,
  .value-top,
  .story-layout,
  .future-layout,
  .branches-layout,
  .cta-band__inner {
    grid-template-columns: 1fr;
  }

  .hero__aside {
    max-width: 680px;
  }

  .category-card,
  .category-card--wide {
    grid-column: span 6;
  }

  .value-grid,
  .service-strip,
  .branch-cards,
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .promo-card--large {
    grid-row: auto;
    min-height: 320px;
  }
}

@media (max-width: 920px) {
  .navbar__nav,
  .navbar__cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
    padding-bottom: 128px;
  }

  .hero__title {
    font-size: clamp(2.7rem, 10vw, 4.4rem);
  }

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

  .category-card,
  .category-card--wide,
  .value-grid,
  .branch-cards,
  .footer__grid,
  .promo-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-card--wide {
    grid-column: auto;
  }

  .products-top,
  .cta-band__inner,
  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .story-media__primary img {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .section {
    padding: 84px 0;
  }

  .hero {
    padding-top: 112px;
    padding-bottom: 134px;
  }

  .hero__actions,
  .cta-band__actions {
    flex-direction: column;
  }

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

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

  .hero-card__media {
    max-height: 220px;
  }

  .hero-strip,
  .hero-metrics,
  .stats-card__row,
  .service-strip {
    grid-template-columns: 1fr;
  }

  .products-rail {
    grid-auto-columns: 86%;
  }

  .story-media__badge,
  .future-floating-card {
    position: static;
    max-width: none;
    margin-top: 16px;
  }

  .phone-frame {
    width: 100%;
  }

  .branch-card,
  .value-card,
  .category-card,
  .promo-card,
  .cta-band__inner,
  .hero-card--glass,
  .hero-strip {
    border-radius: 24px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    font-size: 0.86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

