@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;500;600;700;800&display=swap");

:root {
  --astra-blue: #0b1a33;
  --astra-blue-2: #132747;
  --astra-red: #801624;
  --astra-red-2: #a51f30;
  --ink: #101525;
  --muted: #687085;
  --paper: #fffaf4;
  --white: #ffffff;
  --gold: #f6b84b;
  --line: rgba(11, 26, 51, 0.13);
  --shadow: 0 28px 70px rgba(16, 21, 37, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  background: var(--paper);
  overflow-x: hidden;
}

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

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

p {
  color: var(--muted);
  line-height: 1.75;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  font-weight: 600;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.75rem, 5.3vw, 5.25rem);
  line-height: 1;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.75rem);
  line-height: 1.06;
  overflow-wrap: break-word;
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

.section-pad {
  padding: 105px 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kicker.dark {
  color: var(--astra-red);
}

.btn {
  border-radius: 999px;
  border: 0;
  font-weight: 600;
  letter-spacing: 0;
  padding: 0.84rem 1.25rem;
}

.btn-astra {
  color: var(--white);
  background: var(--astra-red);
  box-shadow: 0 18px 34px rgba(128, 22, 36, 0.24);
}

.btn-astra:hover,
.btn-astra:focus {
  color: var(--white);
  background: var(--astra-blue);
  filter: none;
  transform: translateY(-1px);
}

.btn-astra i {
  margin-right: 8px;
}

.btn-light-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.btn-light-outline:hover,
.btn-light-outline:focus {
  color: var(--astra-blue);
  background: var(--white);
}

.site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(11, 26, 51, 0.08);
  box-shadow: 0 10px 32px rgba(11, 26, 51, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 240ms ease;
}

.site-header .navbar {
  padding: 12px 0;
}

.site-header.solid,
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 32px rgba(11, 26, 51, 0.08);
}

.navbar-brand img {
  width: 166px;
  height: auto;
}

.navbar-nav {
  gap: clamp(18px, 1.35vw, 30px);
}

.nav-link {
  position: relative;
  color: var(--astra-blue);
  font-weight: 600;
  font-size: 0.9rem;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.nav-link::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--astra-red);
  opacity: 0;
  transform: scaleX(0.42);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-header.solid .nav-link,
.site-header.is-scrolled .nav-link {
  color: var(--astra-blue);
}

.nav-link.active,
.nav-link:hover,
.nav-link:focus {
  color: var(--astra-red);
}

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

.nav-link.active {
  font-weight: 800;
}

.dropdown-menu {
  min-width: 190px;
  padding: 10px;
  border: 1px solid rgba(11, 26, 51, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(16, 21, 37, 0.12);
}

.dropdown-item {
  border-radius: 6px;
  color: var(--astra-blue);
  font-weight: 700;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
  color: var(--astra-red);
  background: rgba(128, 22, 36, 0.08);
}

.header-actions {
  flex-shrink: 0;
}

.nav-cta {
  min-width: 134px;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  text-align: center;
}

.language-select {
  min-height: 38px;
  padding: 0 34px 0 14px;
  color: var(--astra-blue);
  border: 1px solid rgba(11, 26, 51, 0.14);
  border-radius: 999px;
  background-color: var(--white);
  font-weight: 700;
}

.language-select:focus {
  border-color: var(--astra-red);
  box-shadow: 0 0 0 0.2rem rgba(128, 22, 36, 0.12);
  outline: 0;
}

.navbar-toggler {
  border: 0;
  background: rgba(255, 255, 255, 0.9);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.18rem rgba(128, 22, 36, 0.18);
}

.navbar-toggler-icon {
  width: 1.55rem;
  height: 1.55rem;
  background-image: none;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon {
  border-top: 2px solid var(--astra-blue);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
}

.navbar-toggler-icon::before {
  top: 6px;
}

.navbar-toggler-icon::after {
  top: 18px;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 16% 16%, rgba(227, 41, 54, 0.28), transparent 24rem),
    radial-gradient(circle at 88% 78%, rgba(246, 184, 75, 0.22), transparent 24rem),
    rgba(11, 26, 51, 0.96);
  transition: opacity 260ms ease, visibility 260ms ease;
}

.age-gate.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.age-card span {
  display: block;
  margin: -10px 0 28px;
  color: var(--muted);
  font-weight: 600;
}

.age-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.age-card small {
  display: block;
  min-height: 22px;
  margin-top: 18px;
  color: var(--astra-red);
  font-weight: 700;
}

.age-card {
  width: min(100%, 520px);
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  text-align: center;
}

.age-card img {
  width: 270px;
  margin: 0 auto 24px;
}

.age-card p {
  max-width: 360px;
  margin: 0 auto 24px;
}

.home-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--astra-blue);
}

.hero-bg,
.hero-bg::after {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.hero-bg::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(11, 26, 51, 0.98) 0%, rgba(11, 26, 51, 0.74) 48%, rgba(11, 26, 51, 0.2) 100%),
    radial-gradient(circle at 72% 72%, rgba(128, 22, 36, 0.38), transparent 28rem);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 150px;
  padding-bottom: 90px;
}

.lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

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

.product-actions {
  margin-top: 0;
}

.btn-outline-dark {
  color: var(--astra-blue);
  border: 1px solid rgba(11, 26, 51, 0.22);
  background: var(--white);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
  color: var(--white);
  background: var(--astra-blue);
  border-color: var(--astra-blue);
}

.hero-showcase {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.28);
}

.slide-tabs {
  position: absolute;
  right: 18px;
  bottom: 22px;
  left: 18px;
  z-index: 2;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 194, 75, 0.9) rgba(255, 255, 255, 0.28);
}

.slide-tabs button {
  display: grid;
  flex: 0 0 calc(25% - 6px);
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 58px;
  padding: 7px;
  color: var(--astra-blue);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 24px rgba(11, 26, 51, 0.14);
  scroll-snap-align: start;
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.slide-tabs::-webkit-scrollbar {
  height: 6px;
}

.slide-tabs::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.slide-tabs::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 194, 75, 0.9);
}

.slide-tabs button:hover,
.slide-tabs button:focus,
.slide-tabs button.active {
  border-color: rgba(255, 255, 255, 0.78);
  background: var(--white);
  transform: translateY(-2px);
}

.slide-tabs img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 6px;
  background: #f5f6f8;
}

.slide-tabs span {
  overflow: hidden;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.showcase-main {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: opacity 220ms ease;
}

.hero-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 26, 51, 0.05) 40%, rgba(11, 26, 51, 0.88) 100%);
}

.showcase-caption {
  position: absolute;
  right: 24px;
  bottom: 118px;
  left: 24px;
  z-index: 1;
  color: var(--white);
}

.showcase-caption span,
.showcase-caption strong {
  display: block;
}

.showcase-caption span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.showcase-caption strong {
  max-width: 360px;
  margin-top: 6px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.06;
}

.showcase-caption p {
  max-width: 360px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.slide-progress {
  position: absolute;
  right: 24px;
  bottom: 12px;
  left: 24px;
  z-index: 2;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.slide-progress span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
  transition: transform 260ms ease;
}

.marquee-band {
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(90deg, var(--astra-red), var(--astra-blue), var(--gold));
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 22px;
  align-items: center;
  font-weight: 700;
  text-transform: uppercase;
  animation: marquee 23s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(100vw);
  }
  to {
    transform: translateX(-100%);
  }
}

.stats-band {
  padding: 56px 0;
  color: var(--white);
  background: var(--astra-blue);
}

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

.stat-item {
  min-height: 150px;
  padding: 20px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-item span {
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 34px;
  border-radius: 999px;
  background: var(--gold);
}

.stat-item strong {
  display: block;
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 0.9;
}

.stat-item strong::first-letter {
  color: var(--white);
}

.stat-item p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.brand-section {
  background:
    radial-gradient(circle at 4% 18%, rgba(246, 184, 75, 0.2), transparent 24rem),
    var(--paper);
}

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

.value-card,
.process-card,
.statement-card,
.product-card,
.event-card {
  height: 100%;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(16, 21, 37, 0.09);
}

.value-card,
.process-card,
.statement-card {
  padding: 28px;
}

.value-card i,
.process-card i {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 24px;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--astra-blue), var(--astra-red));
  font-size: 1.35rem;
}

.value-card p,
.process-card p,
.statement-card p {
  margin: 12px 0 0;
}

.product-preview,
.product-list {
  background: #fff;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}

.section-title a {
  color: var(--astra-red);
  font-weight: 700;
  white-space: nowrap;
}

.product-card {
  padding: 18px;
  border: 1px solid rgba(11, 26, 51, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card a {
  display: block;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  height: 270px;
  object-fit: contain;
  margin-bottom: 18px;
  border-radius: 8px;
  background: linear-gradient(145deg, #f7f8fb, #fff);
}

.product-card span {
  color: var(--astra-red);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-card h3 {
  margin-top: 8px;
  font-size: 1.12rem;
}

.product-card p {
  margin: 10px 0 0;
  font-size: 0.98rem;
  line-height: 1.55;
}

.split-cta {
  background: var(--paper);
}

.split-image img,
.rounded-media {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 8px 0 0 8px;
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 72px);
  color: var(--white);
  border-radius: 0 8px 8px 0;
  background:
    radial-gradient(circle at 90% 12%, rgba(246, 184, 75, 0.24), transparent 18rem),
    linear-gradient(135deg, var(--astra-blue), #101525);
}

.split-copy p {
  color: rgba(255, 255, 255, 0.76);
  margin: 22px 0 28px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.8);
  background: var(--astra-blue);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.45fr) repeat(2, minmax(150px, 0.7fr)) minmax(260px, 1.1fr);
  gap: 24px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand img {
  width: 190px;
  padding: 10px 14px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: var(--white);
}

.footer-brand p {
  max-width: 320px;
  margin: 0;
  color: var(--white);
}

.footer-col h3 {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-col a,
.footer-contact address {
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
  font-weight: 700;
}

.footer-col a {
  display: block;
  margin-bottom: 13px;
}

.footer-col a:hover,
.footer-col a:focus {
  color: var(--white);
}

.footer-contact a,
.footer-contact address {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  margin-bottom: 15px;
  line-height: 1.55;
}

.footer-contact i {
  color: var(--gold);
  font-size: 1.08rem;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  font-size: 0.92rem;
}

.footer-bottom a {
  margin-left: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 14px;
}

.footer-brand .social-links {
  justify-content: flex-start;
}

.social-links a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.social-links a:hover,
.social-links a:focus {
  color: var(--astra-blue);
  background: var(--white);
}

.page-main {
  padding-top: 76px;
}

.page-hero {
  min-height: 560px;
  display: flex;
  align-items: end;
  color: var(--white);
  padding: 120px 0 80px;
  background:
    linear-gradient(90deg, rgba(11, 26, 51, 0.96), rgba(11, 26, 51, 0.68)),
    url("assets/hero-africa.png") center/cover;
}

.compact-page-hero {
  min-height: 420px;
  padding: 92px 0 58px;
}

.compact-page-hero h1 {
  max-width: 760px;
  font-size: clamp(2.65rem, 4.7vw, 4.8rem);
}

.compact-page-hero p {
  max-width: 720px;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(11, 26, 51, 0.94), rgba(11, 26, 51, 0.62)),
    url("assets/bg-about.png") center/cover;
}

.product-hero {
  background:
    linear-gradient(90deg, rgba(11, 26, 51, 0.95), rgba(11, 26, 51, 0.55)),
    url("assets/hero-africa.png") center/cover;
}

.trade-hero {
  background:
    linear-gradient(90deg, rgba(11, 26, 51, 0.94), rgba(11, 26, 51, 0.48)),
    url("assets/hero-africa.png") center/cover;
}

.event-hero {
  background:
    linear-gradient(90deg, rgba(11, 26, 51, 0.92), rgba(11, 26, 51, 0.48)),
    url("assets/priskaia-vodka-1l-cocktail-mise-en-situation.png") center/cover;
}

.page-hero p {
  max-width: 760px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.16rem;
}

.large-text {
  color: var(--astra-blue);
  font-size: 1.18rem;
  font-weight: 700;
}

.navy-section {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 12%, rgba(128, 22, 36, 0.28), transparent 22rem),
    var(--astra-blue);
}

.compact-statement-section {
  padding: 72px 0 86px;
}

.about-statements {
  background:
    radial-gradient(circle at 10% 10%, rgba(246, 184, 75, 0.18), transparent 24rem),
    var(--paper);
}

.about-statements .statement-card {
  color: var(--astra-blue);
  border: 1px solid rgba(11, 26, 51, 0.12);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(16, 21, 37, 0.09);
}

.about-statements .statement-card span {
  color: var(--astra-red);
}

.about-statements .statement-card p {
  color: var(--muted);
}

.statement-card {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.statement-card span {
  color: var(--gold);
  font-weight: 700;
}

.statement-card p {
  color: rgba(255, 255, 255, 0.74);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.filter-row button {
  padding: 12px 18px;
  color: var(--astra-blue);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 700;
}

.filter-row button.active {
  color: var(--white);
  border-color: transparent;
  background: var(--astra-blue);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--astra-red);
  font-weight: 800;
}

.back-link i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--astra-red);
  transition: background 180ms ease, transform 180ms ease;
}

.back-link:hover,
.back-link:focus {
  color: var(--astra-blue);
}

.back-link:hover i,
.back-link:focus i {
  background: var(--astra-blue);
  transform: translateX(-2px);
}

.product-detail {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: 110px 0;
  background:
    radial-gradient(circle at 75% 22%, rgba(128, 22, 36, 0.18), transparent 22rem),
    var(--paper);
}

.detail-product-stage {
  display: grid;
  min-height: 600px;
  place-items: center;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(246, 184, 75, 0.32), transparent 18rem),
    linear-gradient(145deg, #ffffff, #eef1f8);
  box-shadow: var(--shadow);
}

.detail-product-stage img {
  width: min(80%, 460px);
  filter: drop-shadow(0 34px 34px rgba(16, 21, 37, 0.22));
}

.product-visual-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.product-visual-strip img {
  width: 100%;
  height: clamp(320px, 34vw, 460px);
  padding: clamp(14px, 2vw, 24px);
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(16, 21, 37, 0.12);
  cursor: zoom-in;
}

.product-detail .lead {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
}

.product-detail h1 {
  font-size: clamp(2.4rem, 4.4vw, 4.35rem);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.spec-grid div {
  padding: 18px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.spec-grid strong,
.spec-grid span {
  display: block;
}

.spec-grid strong {
  color: var(--astra-blue);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.spec-grid span {
  margin-top: 6px;
  color: var(--muted);
}

.product-longform {
  padding: 96px 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(246, 184, 75, 0.18), transparent 25rem),
    #ffffff;
}

.content-panel {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(11, 26, 51, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(16, 21, 37, 0.08);
}

.content-panel h2 {
  margin: 0 0 10px;
  color: var(--astra-blue);
  font-size: 22px !important;
  line-height: 1.42;
}

.content-panel p + h2,
.content-panel ul + h2,
.content-panel ol + h2 {
  margin-top: 34px;
}

.content-panel h3 {
  margin-top: 28px;
  color: var(--astra-blue);
  font-size: 1.18rem;
}

.content-panel p {
  margin: 0 0 18px;
  font-size: 0.98rem;
  line-height: 1.74;
}

.product-side-panel {
  padding: 26px;
  margin-bottom: 18px;
  border: 1px solid rgba(11, 26, 51, 0.08);
  border-radius: 8px;
  background: var(--paper);
}

.product-side-panel h3 {
  margin-bottom: 18px;
  color: var(--astra-blue);
}

.product-side-panel dl,
.product-side-panel ul {
  margin: 0;
}

.product-side-panel dl div {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(11, 26, 51, 0.1);
}

.product-side-panel dl div:last-child {
  border-bottom: 0;
}

.product-side-panel dt {
  color: var(--astra-blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-side-panel dd {
  margin: 0;
  color: var(--muted);
}

.product-side-panel li {
  margin-bottom: 10px;
  color: var(--muted);
}

.product-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 34px;
  padding: clamp(28px, 5vw, 46px);
  color: var(--white);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 12%, rgba(246, 184, 75, 0.22), transparent 18rem),
    var(--astra-blue);
}

.product-cta-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.product-cta-strip h2 {
  max-width: 850px;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.product-cta-strip .btn {
  flex: 0 0 auto;
  min-width: 220px;
  padding-right: 2rem;
  padding-left: 2rem;
  text-align: center;
  white-space: nowrap;
}

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

.team-card {
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(11, 26, 51, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(16, 21, 37, 0.09);
}

.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: linear-gradient(145deg, #eef1f8, #ffffff);
}

.team-card div {
  padding: 22px;
}

.team-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--astra-red);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.team-card p {
  margin: 10px 0 0;
}

.red-section {
  color: var(--white);
  background: linear-gradient(135deg, var(--astra-red), var(--astra-blue));
}

.red-section p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.rounded-media {
  border-radius: 8px;
}

.event-card {
  overflow: hidden;
}

.event-card a {
  display: block;
}

.event-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.event-card h3,
.event-card p {
  margin-right: 24px;
  margin-left: 24px;
}

.event-card h3 {
  margin-top: 24px;
}

.event-card p {
  margin-bottom: 28px;
}

.contact-page {
  padding: 120px 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(246, 184, 75, 0.22), transparent 24rem),
    var(--paper);
}

.contact-page h1 {
  color: var(--astra-blue);
  font-size: clamp(3rem, 6vw, 5.7rem);
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-details div {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  color: var(--astra-blue);
  font-weight: 700;
}

.contact-details i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--astra-red);
}

.contact-form {
  padding: clamp(24px, 5vw, 44px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-map {
  overflow: hidden;
  height: clamp(320px, 42vw, 480px);
  margin-top: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(11, 26, 51, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.outlet-map {
  margin-top: clamp(28px, 5vw, 58px);
}

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

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(11, 26, 51, 0.14);
}

.outlets-page .value-card,
.gallery-page .gallery-grid img {
  background: var(--white);
}

.content-panel strong,
.value-card strong {
  color: var(--astra-blue);
}

.form-label {
  color: var(--astra-blue);
  font-weight: 700;
}

.form-control,
.form-select {
  min-height: 50px;
  border-color: var(--line);
  border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--astra-red);
  box-shadow: 0 0 0 0.25rem rgba(128, 22, 36, 0.12);
}

.simple-page {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 80px 0;
  background: var(--paper);
}

.simple-page img {
  width: 260px;
  margin-bottom: 34px;
}

.simple-page h1 {
  color: var(--astra-blue);
  margin-bottom: 20px;
}

.simple-page p {
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.65;
}

.legal-page {
  align-items: start;
  padding-top: 150px;
  min-height: auto;
}

.legal-page h1,
.terms-page h1 {
  font-size: clamp(2.35rem, 4vw, 4rem);
}

.terms-page {
  align-items: start;
  padding-top: 150px;
}

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

.terms-grid article {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(16, 21, 37, 0.08);
}

.terms-grid h2 {
  margin-bottom: 12px;
  color: var(--astra-blue);
  font-size: clamp(1.12rem, 1.5vw, 1.4rem);
}

.terms-grid p {
  font-size: 0.96rem;
  line-height: 1.62;
}

.scroll-tools {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 2200;
  display: grid;
  gap: 10px;
}

.scroll-tool {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  border: 0;
  border-radius: 50%;
  background: var(--astra-red);
  box-shadow: 0 14px 28px rgba(11, 26, 51, 0.2);
  transition: background 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.scroll-tool:hover,
.scroll-tool:focus {
  color: var(--white);
  background: var(--astra-blue);
  transform: translateY(-1px);
}

.scroll-tool.is-muted {
  opacity: 0.42;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3200;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 44px);
  background: rgba(11, 26, 51, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.image-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox img {
  max-width: min(94vw, 1100px);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.image-lightbox-close {
  position: absolute;
  top: clamp(14px, 3vw, 28px);
  right: clamp(14px, 3vw, 28px);
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: var(--astra-red);
  font-size: 1.1rem;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus {
  background: var(--astra-blue);
}

.image-lightbox-nav {
  position: absolute;
  top: 50%;
  display: grid;
  width: clamp(44px, 5vw, 58px);
  height: clamp(44px, 5vw, 58px);
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(128, 22, 36, 0.92);
  font-size: 1.35rem;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.image-lightbox-nav:hover,
.image-lightbox-nav:focus {
  background: var(--astra-blue);
  transform: translateY(-50%) scale(1.04);
}

.image-lightbox-prev {
  left: clamp(14px, 4vw, 42px);
}

.image-lightbox-next {
  right: clamp(14px, 4vw, 42px);
}

.image-lightbox-nav.is-hidden {
  opacity: 0;
  pointer-events: none;
}

body.lightbox-open {
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 580ms ease, transform 580ms ease;
}

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

@media (max-width: 1199.98px) {
  .site-header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 32px rgba(11, 26, 51, 0.08);
  }

  .nav-link {
    color: var(--astra-blue);
  }

  .navbar-collapse {
    padding: 16px 0;
  }

  .navbar-nav {
    gap: 8px;
  }

  .dropdown-menu {
    border: 0;
    box-shadow: none;
  }
}

@media (max-width: 991.98px) {
  .value-grid,
  .spec-grid,
  .management-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: auto;
  }

  .showcase-main {
    height: 500px;
  }

  .slide-tabs button {
    flex-basis: calc(50% - 4px);
  }

  .split-image img,
  .split-copy {
    border-radius: 8px;
  }

  .footer-bottom,
  .section-title {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .product-cta-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-cta-strip .btn {
    min-width: min(100%, 260px);
  }

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

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

  .stat-item:nth-child(2) {
    border-right: 0;
  }

  .stat-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .social-links {
    justify-content: flex-start;
  }

  .footer-bottom a {
    margin: 0 18px 0 0;
  }
}

@media (max-width: 767.98px) {
  .section-pad,
  .contact-page,
  .product-detail {
    padding: 76px 0;
  }

  .navbar-brand img {
    width: 150px;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-inner {
    padding-top: 120px;
  }

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

  .showcase-main {
    height: 390px;
  }

  .showcase-caption {
    bottom: 132px;
  }

  .slide-tabs {
    right: 12px;
    bottom: 18px;
    left: 12px;
    gap: 6px;
  }

  .slide-tabs button {
    flex-basis: calc(50% - 3px);
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 48px;
    padding: 6px;
  }

  .slide-tabs img {
    width: 34px;
    height: 34px;
  }

  .slide-tabs span {
    font-size: 0.68rem;
  }

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

  .detail-product-stage {
    min-height: 420px;
  }

  .product-visual-strip img {
    height: 280px;
  }

  .contact-map {
    height: 340px;
  }

  .scroll-tools {
    right: 12px;
    bottom: 16px;
  }

  .scroll-tool {
    width: 42px;
    height: 42px;
  }

  .page-hero {
    min-height: 480px;
    padding-bottom: 56px;
  }

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

  .stat-item,
  .stat-item:nth-child(2) {
    border-right: 0;
  }

  .stat-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stat-item:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
