:root {
  --color-background: #f5f7f9;
  --color-night: #070b10;
  --color-navy: #071522;
  --color-ink: #0a1929;
  --color-cyan: #35c2d1;
  --color-cyan-dark: #0f8a9d;
  --color-sand: #d2b48c;
  --color-sand-dark: #8a714f;
  --color-white: #ffffff;
  --color-muted: #566675;
  --content-width: 1180px;
  --radius: 8px;
  --shadow: 0 22px 46px rgba(10, 25, 41, 0.14);
  --carousel-transition: 650ms cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 126px;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

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

body {
  min-width: 320px;
  margin: 0;
  background: var(--color-background);
  color: var(--color-ink);
  font-family: "Roboto", Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

a,
button {
  -webkit-tap-highlight-color: transparent;
}

button,
a {
  outline-offset: 4px;
}

::selection {
  background: var(--color-sand);
  color: var(--color-navy);
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 3000;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--color-white);
  color: var(--color-ink);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(var(--content-width), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-bar {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  grid-auto-flow: column;
  gap: 18px;
  align-items: center;
  padding: 8px 30px;
  overflow: hidden;
  border-bottom: 1px solid rgba(210, 180, 140, 0.45);
  background: var(--color-night);
  font-size: 15px;
}

.top-bar::after {
  position: absolute;
  right: -20%;
  bottom: 0;
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-cyan), var(--color-sand), transparent);
  content: "";
  animation: top-bar-glow 4s ease-in-out infinite;
}

.top-bar__item {
  position: relative;
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  padding: 6px 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  color: var(--color-white);
  text-decoration: none;
  transition: background-color 200ms ease, box-shadow 200ms ease, color 200ms ease, transform 200ms ease;
}

.top-bar__item::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.05) 35%, rgba(255, 255, 255, 0.22) 50%, rgba(210, 180, 140, 0.18) 60%, transparent 100%);
  content: "";
  pointer-events: none;
  opacity: 0.72;
  transform: translateX(-120%);
  animation: top-bar-button-sweep 3.6s ease-in-out infinite;
}

.top-bar__item span {
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-bar__item img {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
}

.top-bar > .top-bar__item:first-child {
  justify-self: start;
  max-width: 100%;
}

.top-bar__item:hover {
  background: rgba(210, 180, 140, 0.58);
  box-shadow: 0 8px 18px rgba(210, 180, 140, 0.18);
  color: var(--color-white);
  transform: translateY(-1px);
}

.top-bar__item:hover::before {
  animation-duration: 1.35s;
}

.top-bar__item--store {
  min-height: 34px;
  padding-inline: 10px;
  color: var(--color-white);
  font-weight: 900;
}

.top-bar__item--store:hover {
  background: rgba(210, 180, 140, 0.64);
  color: var(--color-white);
}

.top-bar__item--store img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(4, 9, 16, 0.45));
}

.side-navigation__cta--store img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(4, 9, 16, 0.28));
}

.navbar {
  display: grid;
  width: 100%;
  grid-template-columns: auto auto minmax(0, 1fr);
  grid-template-areas: "toggle brand menu";
  column-gap: 14px;
  align-items: center;
  padding: 12px 30px;
  border-bottom: 1px solid rgba(10, 25, 41, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(10, 25, 41, 0.08);
  backdrop-filter: blur(18px);
}

.menu-toggle {
  display: grid;
  grid-area: toggle;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  background: var(--color-ink);
  color: var(--color-sand);
  cursor: pointer;
  font-size: 24px;
  transition: background-color 200ms ease, transform 200ms ease;
}

.menu-toggle:hover {
  background: #17314a;
  transform: translateY(-2px);
}

.navbar-store-link {
  display: none !important;
}

.brand {
  display: inline-flex;
  grid-area: brand;
  min-width: 178px;
  align-items: center;
  gap: 10px;
  color: var(--color-ink);
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: var(--radius);
  transition: box-shadow 250ms ease, transform 250ms ease;
}

.brand:hover .brand__mark {
  box-shadow: 0 14px 26px rgba(15, 138, 157, 0.22);
  transform: translateY(-2px) rotate(-2deg);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__text strong {
  font-size: 18px;
  font-weight: 800;
}

.brand__text small {
  margin-top: 4px;
  color: var(--color-sand-dark);
  font-size: 11px;
  font-weight: 700;
}

.desktop-menu {
  display: flex;
  grid-area: menu;
  min-width: 0;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-menu li {
  position: relative;
}

.desktop-menu > li > a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #07121d, #0a2534);
  color: var(--color-sand);
  font-size: 13.5px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 200ms ease, transform 200ms ease;
}

.desktop-menu > li > a:hover,
.desktop-menu > li > a:focus-visible,
.desktop-menu > li:focus-within > a {
  background: linear-gradient(135deg, #0d3445, #102f47);
  transform: translateY(-2px);
}

.menu-chevron {
  position: relative;
  top: 0;
  display: inline-flex;
  width: 0;
  height: 0;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  margin-left: 2px;
  overflow: hidden;
  border-top: 6px solid #f1d7ae;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  color: #f1d7ae;
  font-size: 0;
  line-height: 0;
  filter: drop-shadow(0 1px 1px rgba(4, 9, 16, 0.4));
  transform: translateY(1px);
  transition: border-top-color 180ms ease, transform 180ms ease;
}

.has-submenu:hover > a .menu-chevron,
.has-submenu:focus-within > a .menu-chevron {
  border-top-color: #ffffff;
  transform: translateY(-1px) rotate(180deg);
}

.has-submenu::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 16px;
  content: "";
}

.submenu,
.submenu-right {
  position: absolute;
  z-index: 20;
  width: max-content;
  min-width: 230px;
  max-width: 360px;
  margin: 0;
  padding: 6px;
  border: 1px solid rgba(210, 180, 140, 0.18);
  border-radius: var(--radius);
  background: rgba(7, 18, 29, 0.98);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.submenu {
  top: calc(100% + 10px);
  left: 0;
  transform: translateY(8px);
}

.submenu-right {
  top: -6px;
  left: calc(100% + 7px);
  transform: translateX(8px);
}

.has-submenu-right::before,
.has-submenu-right::after {
  position: absolute;
  top: 0;
  width: 8px;
  height: 100%;
  content: "";
}

.has-submenu-right::before {
  right: 100%;
}

.has-submenu-right::after {
  left: 100%;
}

.submenu a,
.submenu-right a {
  display: flex;
  width: 100%;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 12px;
  border-radius: 6px;
  color: #f1d7ae;
  font-size: 13.5px;
  line-height: 1.35;
  text-decoration: none;
  white-space: normal;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.submenu a:hover,
.submenu a:focus-visible,
.submenu-right a:hover,
.submenu-right a:focus-visible {
  background: var(--color-sand);
  color: var(--color-ink);
  transform: translateX(2px);
}

.submenu-arrow {
  flex: 0 0 auto;
  margin-left: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu,
.has-submenu-right:hover > .submenu-right,
.has-submenu-right:focus-within > .submenu-right {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translate(0);
}

.desktop-menu > li:nth-last-child(-n + 3) > .submenu {
  right: 0;
  left: auto;
}

.desktop-menu > li:nth-last-child(-n + 3) .submenu-right {
  right: calc(100% + 7px);
  left: auto;
  transform: translateX(-8px);
}

.desktop-menu > li:nth-last-child(-n + 3) .has-submenu-right:hover > .submenu-right,
.desktop-menu > li:nth-last-child(-n + 3) .has-submenu-right:focus-within > .submenu-right {
  transform: translateX(0);
}

.side-navigation {
  position: fixed;
  top: 0;
  left: -350px;
  z-index: 1002;
  width: min(320px, calc(100vw - 30px));
  height: 100dvh;
  overflow-y: auto;
  border-right: 1px solid rgba(210, 180, 140, 0.18);
  background: var(--color-navy);
  box-shadow: 18px 0 44px rgba(0, 0, 0, 0.32);
  color: var(--color-white);
  visibility: hidden;
  transition: left 300ms ease, visibility 300ms ease;
}

.side-navigation.is-open {
  left: 0;
  visibility: visible;
}

.side-navigation__header {
  position: sticky;
  top: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 12px;
  align-items: center;
  padding: 13px 16px 11px;
  border-bottom: 1px solid rgba(210, 180, 140, 0.18);
  background: var(--color-navy);
  color: #f5efe6;
}

.side-navigation__brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  text-decoration: none;
}

.side-navigation__brand img {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.32));
}

.side-navigation__brand-text {
  display: grid;
  gap: 7px;
  min-width: 0;
  line-height: 1.08;
}

.side-navigation__brand-text strong {
  color: #ffffff;
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.side-navigation__brand-text small {
  color: var(--color-sand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.side-navigation__title {
  grid-column: 1 / -1;
  color: rgba(245, 239, 230, 0.72);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.menu-close {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-sand);
  cursor: pointer;
  font-size: 22px;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.menu-close:hover {
  background: var(--color-sand);
  color: var(--color-navy);
  transform: rotate(90deg);
}

.side-navigation__content {
  padding: 12px 12px 16px;
}

.side-group {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 8px;
  margin: 0;
  padding: 8px 0 10px;
  border-bottom: 1px solid rgba(210, 180, 140, 0.15);
}

.side-group:first-child {
  padding-top: 0;
}

.side-group a {
  grid-column: 1 / -1;
  padding: 9px 12px;
  border-radius: var(--radius);
  color: rgba(241, 215, 174, 0.82);
  font-size: 13.5px;
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.side-group a:hover {
  background: rgba(210, 180, 140, 0.16);
  color: #ffffff;
  transform: translateX(2px);
}

.side-group .side-group__title {
  grid-column: 1;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px;
  height: 44px;
  align-items: center;
  padding: 7px 9px;
  margin-bottom: 4px;
  border: 1px solid rgba(210, 180, 140, 0.28);
  background: #07121d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 8px 18px rgba(0, 0, 0, 0.12);
  color: var(--color-sand);
  font-size: 12.35px;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 1px 1px rgba(4, 9, 16, 0.6);
}

.side-group__icon {
  position: relative;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 9px;
  background: #07121d;
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.side-group__icon::before,
.side-group__icon::after {
  content: "";
  position: absolute;
}

.side-group__icon--network::before {
  width: 15px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.side-group__icon--network::after {
  bottom: 6px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow:
    -7px 4px 0 -1px currentColor,
    7px 4px 0 -1px currentColor;
}

.side-group__icon--electric::before {
  width: 14px;
  height: 21px;
  background: currentColor;
  clip-path: polygon(58% 0, 18% 48%, 47% 48%, 31% 100%, 84% 38%, 55% 38%);
}

.side-group__icon--fire::before {
  width: 23px;
  height: 23px;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.35' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22c-4.6 0-8.2-3.3-8.2-7.8 0-2.7 1.3-5 3.4-6.8-.2 2.5.6 4.2 2 4.5 1.3.3 2.4-.7 2.2-2.3-.2-1.9.8-4 3-6.4.1 2.8 1.7 4.2 3 5.5 1.5 1.5 2.8 3.1 2.8 5.5 0 4.5-3.6 7.8-8.2 7.8z'/%3E%3Cpath d='M12.1 21.8c-2.3 0-4.1-1.7-4.1-4 0-1.5.8-2.9 2-3.9-.1 1.3.4 2.1 1.2 2.4.8.2 1.5-.4 1.4-1.4-.1-1 .4-2.1 1.6-3.4.1 1.4.9 2.2 1.7 3 .8.8 1.5 1.7 1.5 2.9 0 2.6-2.1 4.4-5.3 4.4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.side-group__icon--energy::before {
  width: 9px;
  height: 9px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: transparent;
}

.side-group__icon--energy::after {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  box-shadow:
    0 -10px 0 currentColor,
    0 10px 0 currentColor,
    10px 0 0 currentColor,
    -10px 0 0 currentColor,
    7px 7px 0 currentColor,
    -7px -7px 0 currentColor,
    7px -7px 0 currentColor,
    -7px 7px 0 currentColor;
}

.side-group__icon--security::before {
  width: 23px;
  height: 23px;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2.8c2.7 2.4 5.4 3.6 8.3 3.8v5.3c0 4.4-2.8 7.7-8.3 9.8-5.5-2.1-8.3-5.4-8.3-9.8V6.6c2.9-.2 5.6-1.4 8.3-3.8z'/%3E%3Cpath d='m8.1 12.5 2.5 2.5 5.3-5.4'/%3E%3C/svg%3E") center / contain no-repeat;
}

.side-group__icon--security::after {
  display: none;
}

.side-group__label {
  display: block;
  min-width: 0;
}

.side-group > a:not(.side-group__title) {
  display: none;
  margin-left: 0;
  border: 1px solid rgba(210, 180, 140, 0.1);
  border-left: 3px solid rgba(210, 180, 140, 0.3);
  background: rgba(7, 18, 29, 0.42);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13.2px;
  font-weight: 600;
}

.side-group.is-open > a:not(.side-group__title) {
  display: block;
}

.side-group__toggle {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(210, 180, 140, 0.28);
  border-radius: var(--radius);
  background: #07121d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 8px 18px rgba(0, 0, 0, 0.12);
  color: var(--color-sand);
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.side-group__toggle:hover,
.side-group__toggle:focus-visible {
  background: #0d3445;
  border-color: rgba(210, 180, 140, 0.38);
  color: #ffffff;
  transform: translateY(-1px);
}

.side-group__toggle span {
  width: 0;
  height: 0;
  border-top: 7px solid currentColor;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  filter: drop-shadow(0 1px 2px rgba(4, 9, 16, 0.45));
  transform: translateY(1px);
  transition: transform 180ms ease, color 180ms ease;
}

.side-group.is-open .side-group__toggle span {
  transform: translateY(-1px) rotate(180deg);
}

.side-navigation__cta {
  display: inline-flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  border-radius: var(--radius);
  background: #25d366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.36);
  color: #062f1a;
  font-weight: 800;
  text-decoration: none;
}

.side-navigation__cta img {
  width: 24px;
  height: 24px;
}

.side-navigation__cta--store {
  margin-top: 10px;
  background: linear-gradient(135deg, #d2a351, #f1d7ae);
  box-shadow: 0 8px 24px rgba(210, 163, 81, 0.28);
  color: #071522;
}

.page-overlay {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: block;
  border: 0;
  background: rgba(4, 9, 16, 0.64);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(3px);
  transition: opacity 250ms ease;
}

.page-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.hero-carousel {
  position: relative;
  height: min(81.6vh, 900px);
  min-height: 520px;
  overflow: hidden;
  background: var(--color-night);
  color: var(--color-white);
  touch-action: pan-y;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition:
    opacity var(--carousel-transition),
    transform var(--carousel-transition),
    visibility var(--carousel-transition);
}

.carousel-slide.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.carousel-slide.was-active {
  z-index: 1;
  visibility: visible;
  transform: scale(0.97);
}

.carousel-slide__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-slide.is-active .carousel-slide__image {
  animation: ken-burns 6s ease-out forwards;
}

.carousel-slide__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.84), rgba(10, 10, 10, 0.34) 50%, transparent);
}

.carousel-slide__content {
  max-width: 720px;
  padding: 3.5rem 5rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms 300ms ease, transform 600ms 300ms ease;
}

.carousel-slide.is-active .carousel-slide__content {
  opacity: 1;
  transform: translateY(0);
}

.carousel-slide__tag {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--color-sand-dark);
  border-radius: 2px;
  color: var(--color-sand);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.carousel-slide h2 {
  margin: 0 0 0.75rem;
  color: #f0ece4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.12;
}

.carousel-slide p {
  max-width: 640px;
  margin: 0;
  color: rgba(240, 236, 228, 0.78);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.65;
}

.primary-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 1.35rem;
  padding: 0 18px;
  border-radius: var(--radius);
  background: var(--color-sand);
  color: var(--color-navy);
  font-weight: 800;
  text-decoration: none;
  transition: box-shadow 250ms ease, transform 250ms ease;
}

.primary-button:hover {
  box-shadow: 0 16px 34px rgba(210, 180, 140, 0.28);
  transform: translateY(-2px);
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(6px);
  transition: background-color 250ms ease, border-color 250ms ease, transform 250ms ease;
}

.carousel-button:hover {
  border-color: var(--color-sand);
  background: rgba(210, 180, 140, 0.15);
  transform: translateY(-50%) scale(1.08);
}

.carousel-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentcolor;
  stroke-width: 2;
}

.carousel-button--previous {
  left: 1.8rem;
}

.carousel-button--next {
  right: 1.8rem;
}

.carousel-dots {
  position: absolute;
  right: 5rem;
  bottom: 2rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background-color 300ms ease, width 300ms ease;
}

.carousel-dot.is-active {
  width: 24px;
  border-radius: 4px;
  background: var(--color-sand);
}

.carousel-counter {
  position: absolute;
  top: 2rem;
  right: 5rem;
  z-index: 10;
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  color: rgba(240, 236, 228, 0.76);
  font-family: Georgia, "Times New Roman", serif;
}

.carousel-counter__current {
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: 300;
}

.carousel-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.carousel-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--color-sand);
}

.swipe-hint {
  display: none;
}

.support-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  padding: 20px 22px;
  border: 1px solid rgba(210, 180, 140, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(210, 180, 140, 0.18), transparent 42%),
    linear-gradient(135deg, #071522, #10263a);
  box-shadow: 0 18px 38px rgba(10, 25, 41, 0.16);
  color: var(--color-white);
}

.support-strip__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(210, 180, 140, 0.18);
  color: #f2d7b2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.support-strip h2 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  line-height: 1.12;
}

.support-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.support-strip__link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: var(--radius);
  background: var(--color-sand);
  color: var(--color-navy);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.support-strip__link:hover {
  box-shadow: 0 14px 28px rgba(210, 180, 140, 0.28);
  transform: translateY(-2px);
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 32px;
  align-items: end;
  padding-block: 64px 36px;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--color-cyan-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.home-intro h1,
.section-heading h2,
.contact h2 {
  margin: 0;
  color: var(--color-ink);
  line-height: 1.05;
}

.home-intro h1 {
  max-width: 780px;
  font-size: clamp(2.1rem, 4vw, 3rem);
}

.home-intro__copy p {
  max-width: 700px;
  margin: 20px 0 0;
  color: var(--color-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.home-intro__metrics {
  display: grid;
  gap: 12px;
}

.home-intro__metrics article {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid #dce4ea;
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: 0 18px 34px rgba(10, 25, 41, 0.07);
}

.home-intro__metrics strong {
  color: var(--color-sand);
  font-size: 1.4rem;
}

.home-intro__metrics span {
  color: var(--color-ink);
  font-weight: 800;
}

.services {
  padding-block: 22px 76px;
}

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

.section-heading h2,
.contact h2 {
  font-size: clamp(2rem, 4vw, 2.45rem);
}

.section-heading > p {
  max-width: 430px;
  margin: 0 0 4px;
  color: var(--color-muted);
  line-height: 1.6;
  text-align: right;
}

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

.service-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--color-white);
  isolation: isolate;
  scroll-margin-top: 140px;
  transition: box-shadow 280ms ease, transform 280ms ease;
}

.service-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(4, 9, 16, 0.94), rgba(4, 9, 16, 0.18));
  content: "";
}

.service-card > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.service-card > div {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
}

.service-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.service-card p {
  margin: 12px 0 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
}

.service-card a {
  color: var(--color-sand);
  font-weight: 800;
  text-decoration: none;
  transition: color 200ms ease;
}

.service-card a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.service-card:hover {
  box-shadow: 0 30px 60px rgba(10, 25, 41, 0.22);
  transform: translateY(-8px);
}

.service-card:hover > img {
  transform: scale(1.08);
}

.service-card:hover a {
  color: var(--color-cyan);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 40px;
  align-items: center;
  margin-bottom: 76px;
  padding: 42px;
  border: 1px solid rgba(210, 180, 140, 0.34);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(7, 21, 34, 0.98), rgba(13, 52, 69, 0.96)),
    var(--color-navy);
  box-shadow: 0 24px 54px rgba(7, 21, 34, 0.18);
}

.contact .section-kicker {
  color: var(--color-cyan);
}

.contact h2 {
  max-width: 650px;
  color: var(--color-white);
}

.contact__copy p {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.contact__actions {
  display: grid;
  gap: 10px;
}

.contact-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 16px;
  border: 1px solid rgba(210, 180, 140, 0.5);
  border-radius: var(--radius);
  color: #f2d7b2;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.contact-button:hover {
  border-color: var(--color-sand);
  background: var(--color-sand);
  color: var(--color-navy);
  transform: translateY(-2px);
}

.contact-button--whatsapp {
  border-color: #25d366;
  background: #25d366;
  color: #062f1a;
}

.contact-button--whatsapp:hover {
  border-color: #128c7e;
  background: #128c7e;
  color: var(--color-white);
}

.floating-whatsapp {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 900;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.34);
  isolation: isolate;
  animation: whatsapp-tap 1.8s ease-in-out infinite;
}

.floating-whatsapp::before,
.floating-whatsapp::after {
  position: absolute;
  inset: -7px;
  z-index: -1;
  border: 2px solid rgba(37, 211, 102, 0.46);
  border-radius: inherit;
  content: "";
  animation: whatsapp-ring 1.8s ease-out infinite;
}

.floating-whatsapp::after {
  animation-delay: 550ms;
}

.site-footer {
  padding: 26px 24px 18px;
  border-top: 1px solid rgba(210, 180, 140, 0.28);
  background: var(--color-navy);
  color: var(--color-white);
}

.site-footer__content {
  display: grid;
  width: min(var(--content-width), 100%);
  grid-template-columns: minmax(220px, 0.8fr) minmax(300px, 1.5fr) auto;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
}

.site-footer__brand {
  display: grid;
  gap: 5px;
}

.site-footer__brand strong {
  font-size: 17px;
}

.site-footer__brand span,
.site-footer__content p,
.site-footer__legal {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.site-footer__content p {
  margin: 0;
  line-height: 1.55;
}

.site-footer__content > a {
  min-height: 42px;
  padding: 11px 16px;
  border: 1px solid var(--color-sand);
  border-radius: var(--radius);
  color: #f2d7b2;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.site-footer__content > a:hover {
  background: var(--color-sand);
  color: var(--color-navy);
}

.site-footer__legal {
  width: min(var(--content-width), 100%);
  margin: 22px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  text-align: center;
}

@keyframes top-bar-glow {
  0% {
    opacity: 0;
    transform: translateX(-180%);
  }
  45% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(180%);
  }
}

@keyframes top-bar-button-sweep {
  0% {
    transform: translateX(-125%);
  }
  48% {
    transform: translateX(125%);
  }
  100% {
    transform: translateX(125%);
  }
}

@keyframes ken-burns {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

@keyframes whatsapp-tap {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  12% {
    transform: translateY(-3px) scale(1.07);
  }
  22% {
    transform: translateY(0) scale(0.98);
  }
  34% {
    transform: translateY(-2px) scale(1.04);
  }
  46% {
    transform: translateY(0) scale(1);
  }
}

@keyframes whatsapp-ring {
  0% {
    opacity: 0.65;
    transform: scale(0.82);
  }
  80%,
  100% {
    opacity: 0;
    transform: scale(1.38);
  }
}

@media (max-width: 1280px) {
  .navbar {
    column-gap: 12px;
  }

  .desktop-menu {
    gap: 5px;
  }

  .desktop-menu > li > a {
    padding-inline: 8px;
    font-size: 12px;
  }

  .brand {
    min-width: 160px;
  }
}

@media (max-width: 1080px) {
  .navbar {
    display: flex;
    justify-content: space-between;
  }

  .desktop-menu {
    display: none;
  }

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

@media (max-width: 820px) {
  html {
    scroll-padding-top: 150px;
  }

  .top-bar {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 7px;
    padding: 7px 10px;
    font-size: 13px;
  }

  .top-bar__item--store {
    display: none;
  }

  .top-bar__item {
    justify-content: center;
    min-height: 34px;
    padding: 4px 7px;
  }

  .top-bar > .top-bar__item:first-child {
    grid-column: auto;
    justify-self: start;
    width: 100%;
    justify-content: flex-start;
  }

  .top-bar > .top-bar__item:nth-child(3),
  .top-bar > .top-bar__item:nth-child(4) {
    width: 36px;
    min-width: 36px;
    padding-inline: 0;
  }

  .top-bar > .top-bar__item:nth-child(3) span,
  .top-bar > .top-bar__item:nth-child(4) span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .navbar {
    display: grid;
    grid-template-columns: auto minmax(0, auto) minmax(0, 1fr);
    grid-template-areas: "toggle store brand";
    column-gap: 10px;
    padding: 10px 16px;
  }

  .navbar-store-link {
    position: relative;
    grid-area: store;
    display: inline-flex !important;
    min-width: 0;
    min-height: 40px;
    align-items: center;
    gap: 7px;
    overflow: hidden;
    padding: 0 10px;
    border-radius: var(--radius);
    background: var(--color-ink);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
  }

  .navbar-store-link::before {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.05) 35%, rgba(255, 255, 255, 0.24) 50%, rgba(210, 180, 140, 0.2) 60%, transparent 100%);
    content: "";
    pointer-events: none;
    opacity: 0.78;
    animation: top-bar-button-sweep 3.2s ease-in-out infinite;
  }

  .navbar-store-link:hover {
    background: #17314a;
    box-shadow: 0 10px 20px rgba(10, 25, 41, 0.2);
    transform: translateY(-1px);
  }

  .navbar-store-link img,
  .navbar-store-link span {
    position: relative;
    z-index: 1;
  }

  .navbar-store-link img {
    width: 22px;
    height: 22px;
    object-fit: contain;
  }

  .brand {
    justify-self: end;
    flex-direction: row-reverse;
    gap: 8px;
    align-items: center;
    text-align: right;
  }

  .brand__text {
    align-items: center;
    justify-content: center;
    min-height: 40px;
    text-align: center;
  }

  .hero-carousel {
    height: 70vh;
    min-height: 470px;
  }

  .carousel-slide__content {
    max-width: 620px;
    padding: 2.5rem 3rem;
  }

  .carousel-dots {
    right: 2rem;
    bottom: 1.5rem;
  }

  .carousel-counter {
    top: 1.5rem;
    right: 2rem;
  }

  .carousel-button--previous {
    left: 1rem;
  }

  .carousel-button--next {
    right: 1rem;
  }

  .home-intro {
    grid-template-columns: 1fr;
    padding-top: 46px;
  }

  .support-strip {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .support-strip__link {
    width: fit-content;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .section-heading > p {
    text-align: left;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px;
  }

  .site-footer {
    padding-inline: 18px;
  }

  .site-footer__content {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .site-footer__content > a {
    width: fit-content;
  }
}

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

  .brand {
    min-width: auto;
  }

  .brand__mark,
  .brand__mark img {
    width: 40px;
    height: 40px;
  }

  .menu-toggle {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .navbar {
    grid-template-columns: auto minmax(0, auto) minmax(0, 1fr);
    column-gap: 8px;
    padding: 8px 14px;
  }

  .navbar-store-link {
    min-height: 36px;
    gap: 6px;
    padding-inline: 7px;
    font-size: 11.5px;
  }

  .navbar-store-link img {
    width: 19px;
    height: 19px;
  }

  .hero-carousel {
    height: 68vh;
    min-height: 440px;
  }

  .carousel-slide__content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    min-width: 0;
    max-width: none;
    padding: 1.5rem 1.3rem 4.5rem;
    text-align: center;
  }

  .carousel-slide h2 {
    font-size: 1.85rem;
    overflow-wrap: anywhere;
  }

  .carousel-slide p {
    max-width: 92%;
    margin-inline: auto;
    font-size: 0.86rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  .carousel-button {
    display: none;
  }

  .carousel-dots {
    right: 50%;
    bottom: 1rem;
    gap: 0.75rem;
    transform: translateX(50%);
  }

  .carousel-dot {
    width: 9px;
    height: 9px;
  }

  .carousel-dot.is-active {
    width: 28px;
  }

  .carousel-counter {
    top: 1rem;
    right: 1rem;
  }

  .carousel-progress {
    height: 2px;
  }

  .swipe-hint {
    position: absolute;
    bottom: 3.5rem;
    left: 50%;
    z-index: 10;
    display: block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: rgba(240, 236, 228, 0.78);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    transform: translateX(-50%);
    backdrop-filter: blur(4px);
  }

  .support-strip {
    margin-top: 20px;
    padding: 18px;
  }

  .support-strip__badge {
    width: fit-content;
  }

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

  .service-card {
    min-height: 360px;
  }

  .contact {
    margin-bottom: 52px;
    padding: 28px 22px;
  }

  .floating-whatsapp {
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 420px) {
  .top-bar {
    gap: 5px;
    padding-inline: 7px;
    font-size: 12px;
  }

  .top-bar__item {
    min-height: 32px;
  }

  .top-bar > .top-bar__item:first-child {
    padding-inline: 6px;
  }

  .top-bar > .top-bar__item:first-child img {
    width: 18px;
    height: 18px;
  }

  .top-bar > .top-bar__item:nth-child(3),
  .top-bar > .top-bar__item:nth-child(4) {
    width: 34px;
    min-width: 34px;
  }

  .top-bar > .top-bar__item:nth-child(3) img,
  .top-bar > .top-bar__item:nth-child(4) img {
    width: 21px;
    height: 21px;
  }

  .navbar {
    column-gap: 6px;
    padding-inline: 10px;
  }

  .menu-toggle {
    width: 34px;
    height: 34px;
    font-size: 19px;
  }

  .navbar-store-link {
    min-height: 34px;
    max-width: 122px;
    padding-inline: 6px;
    font-size: 11px;
  }

  .navbar-store-link img {
    width: 18px;
    height: 18px;
  }

  .brand {
    gap: 4px;
  }

  .brand__mark,
  .brand__mark img {
    width: 42px;
    height: 42px;
  }

  .brand__mark {
    margin-left: -4px;
  }

  .brand__text strong {
    font-size: 16px;
  }

  .brand__text small {
    margin-top: 3px;
    font-size: 10px;
  }

  .hero-carousel {
    min-height: 410px;
  }

  .carousel-slide h2 {
    font-size: 1.45rem;
  }

  .carousel-slide p {
    display: none;
  }

  .primary-button {
    margin-top: 1rem;
  }
}

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

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