:root {
  --brand1: 255 45 45;
  --brand2: 255 107 0;
  --bg: 11 11 12;
  --text: 243 243 243;
  --muted: 184 184 184;
  --border: 255 255 255;
  --panel: 255 255 255;
  --shadow2: 0 26px 90px rgb(0 0 0 / 0.58);
  --shadow3: 0 34px 120px rgb(0 0 0 / 0.66);
  --radius2: 26px;
  --container: 1120px;
  --header-offset: 78px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --focus: 255 255 255;
  --a-bg2: 0.02;
  --a-border: 0.1;
  --a-glow1: 0.18;
  --a-glow2: 0.16;
  --ui-bg: rgb(0 0 0 / 0.75);
  --ui-border: rgb(255 255 255 / 0.15);
  --ui-text: rgb(255 255 255);
  --ui-shadow: 0 16px 40px rgb(0 0 0 / 0.5), 0 4px 24px rgb(var(--brand2) / 0.15);
  --ui-divider: rgb(255 255 255 / 0.2);
  --ui-nav: rgb(255 255 255);
  --ui-nav-hover: rgb(var(--brand2) / 0.2);
  --ui-nav-active: rgb(var(--brand2) / 0.3);
  --ui-nav-disabled: 0.3;
  --lb-backdrop: rgb(0 0 0 / 0.8);
  --lb-img-bg: rgb(0 0 0 / 0.9);
  --lb-count-border: rgb(255 255 255 / 0.18);
  --lb-count-bg: rgb(255 255 255 / 0.1);
  --tag-bg: rgb(255 255 255 / 0.1);
  --tag-border: rgb(255 255 255 / 0.18);
  color-scheme: dark light;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: 247 247 248;
    --text: 16 17 19;
    --muted: 80 84 90;
    --border: 0 0 0;
    --panel: 0 0 0;
    --shadow2: 0 22px 80px rgb(0 0 0 / 0.18);
    --shadow3: 0 28px 110px rgb(0 0 0 / 0.22);
    --focus: 16 17 19;
    --a-glow1: 0.1;
    --a-glow2: 0.1;
    --ui-bg: rgb(255 255 255 / 0.95);
    --ui-border: rgb(0 0 0 / 0.15);
    --ui-text: rgb(var(--text));
    --ui-shadow: 0 16px 40px rgb(0 0 0 / 0.1), 0 4px 24px rgb(var(--brand2) / 0.1);
    --ui-divider: rgb(0 0 0 / 0.12);
    --ui-nav: rgb(var(--text) / 0.65);
    --ui-nav-hover: rgb(var(--brand2) / 0.08);
    --ui-nav-active: rgb(var(--brand2) / 0.12);
    --ui-nav-disabled: 0.15;
    --lb-backdrop: rgb(255 255 255 / 0.85);
    --lb-img-bg: rgb(247 247 248 / 0.9);
    --lb-count-border: rgb(0 0 0 / 0.12);
    --lb-count-bg: rgb(0 0 0 / 0.06);
    --tag-bg: rgb(0 0 0 / 0.06);
    --tag-border: rgb(0 0 0 / 0.12);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: var(--header-offset);
  overflow-x: hidden;
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: var(--header-offset);
  color: rgb(var(--text));
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  background: radial-gradient(1200px 760px at 14% 0%, rgb(var(--brand1) / var(--a-glow1)), transparent 58%), 
              radial-gradient(1000px 700px at 86% 12%, rgb(var(--brand2) / var(--a-glow2)), transparent 62%), 
              radial-gradient(1200px 900px at 50% 110%, rgb(255 255 255 / 0.035), transparent 58%), 
              rgb(var(--bg));
  background-attachment: fixed;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.nav-lock,
body.lb-lock {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

body.lb-lock {
  position: fixed;
  width: 100%;
}

::selection {
  background: rgb(var(--brand2) / 0.35);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

p,
li {
  text-wrap: pretty;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.muted {
  color: rgb(var(--muted));
}

.small {
  font-size: 13px;
}

.skip {
  position: absolute;
  left: -999px;
  top: 12px;
  background: rgb(255 255 255);
  color: rgb(0 0 0);
  padding: 10px 12px;
  border-radius: 12px;
  z-index: 9999;
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.25);
}

.skip:focus-visible {
  left: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.badge,
.footer__col,
.stat,
.trust__inner,
.infoBox,
.card,
.step,
.faq__item,
.ctaBand,
.legalCard,
.legalBox {
  border: 1px solid rgb(var(--border) / 0.12);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgb(var(--bg) / 0.55);
  border-bottom: 1px solid rgb(var(--border) / 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: rgb(var(--text));
  min-width: 240px;
}

.brand__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgb(var(--border) / 0.14);
  background: radial-gradient(80% 80% at 30% 25%, rgb(255 255 255 / 0.18), transparent 60%), 
              linear-gradient(135deg, rgb(var(--brand1) / 0.28), rgb(var(--brand2) / 0.2));
  box-shadow: 0 18px 60px rgb(0 0 0 / 0.42);
}

.brand__logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-weight: 900;
  letter-spacing: 0.8px;
}

.brand__tag {
  font-size: 13px;
  color: rgb(var(--muted));
}

.nav {
  position: relative;
}

.nav__toggle {
  display: none;
  cursor: pointer;
  border: 1px solid rgb(var(--border) / 0.18);
  background: linear-gradient(180deg, rgb(var(--panel) / 0.16), rgb(var(--panel) / 0.1)), rgb(var(--bg) / 0.84);
  border-radius: 18px;
  padding: 12px;
  color: rgb(var(--text));
  transition: transform 0.32s var(--ease-spring), background 0.32s var(--ease);
}

.nav__toggleLines {
  width: 24px;
  height: 2.5px;
  display: block;
  position: relative;
  border-radius: 99px;
  background: rgb(var(--text) / 0.94);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease-spring);
}

.nav__toggleLines::before,
.nav__toggleLines::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2.5px;
  border-radius: 99px;
  background: rgb(var(--text) / 0.94);
  transition: transform 0.32s var(--ease-spring), top 0.32s var(--ease-spring), opacity 0.24s var(--ease), background 0.24s var(--ease);
}

.nav__toggleLines::before {
  top: -7px;
}

.nav__toggleLines::after {
  top: 7px;
}

.nav__toggle[aria-expanded="true"] {
  border-color: rgb(var(--brand2) / 0.36);
  background: radial-gradient(circle at 50% 50%, rgb(var(--brand2) / 0.12), transparent 72%), 
              linear-gradient(180deg, rgb(var(--panel) / 0.18), rgb(var(--panel) / 0.12)), rgb(var(--bg) / 0.92);
}

.nav__toggle[aria-expanded="true"] .nav__toggleLines {
  background: transparent;
}

.nav__toggle[aria-expanded="true"] .nav__toggleLines::before,
.nav__toggle[aria-expanded="true"] .nav__toggleLines::after {
  top: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggleLines::before {
  transform: rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__toggleLines::after {
  transform: rotate(-45deg);
}

.nav__list {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav__list a {
  text-decoration: none;
  color: rgb(var(--text));
  padding: 10px 12px;
  border-radius: 14px;
  white-space: nowrap;
}

.nav__list a:not(.nav__cta) {
  transition: transform 0.4s var(--ease-spring), background 0.4s var(--ease);
}

.nav__list a:not(.nav__cta):hover,
.nav__list a:not(.nav__cta):focus-visible {
  background: rgb(var(--panel) / 0.06);
  transform: scale(1.015);
}

.nav__list a.nav__cta {
  background: linear-gradient(135deg, rgb(var(--brand1) / 0.95), rgb(var(--brand2) / 0.92));
  color: rgb(var(--bg));
  font-weight: 900;
  transition: filter 0.4s var(--ease), transform 0.4s var(--ease-spring);
}

.nav__list a.nav__cta:hover,
.nav__list a.nav__cta:focus-visible {
  transform: scale(1.025);
  filter: brightness(1.08);
}

.nav__list a.nav__cta:active {
  transform: translateY(1px) scale(0.98);
}

.badge {
  display: inline-block;
  margin: 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgb(var(--panel) / 0.06);
  color: rgb(var(--muted));
}

.badge::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-right: 10px;
  background: linear-gradient(135deg, rgb(var(--brand1) / 1), rgb(var(--brand2) / 1));
  box-shadow: 0 0 0 6px rgb(var(--brand2) / 0.12);
  vertical-align: middle;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgb(var(--border) / 0.12);
  background: rgb(var(--panel) / 0.06);
  color: rgb(var(--text));
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.4s var(--ease-spring), filter 0.4s var(--ease), background 0.4s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    transform: scale(1.02);
    filter: brightness(1.08);
  }

  .nav__toggle:hover {
    transform: scale(1.03);
    border-color: rgb(var(--brand2) / 0.28);
  }

  .footer__col:hover {
    transform: scale(1.018);
    border-color: rgb(var(--border) / 0.25);
  }
}

.btn:active,
.btn.is-pressed {
  transform: translateY(1px) scale(0.985);
  filter: brightness(1.05);
}

.nav__toggle:active,
.nav__toggle.is-pressed {
  transform: translateY(1px) scale(0.97);
}

.nav__list a:active,
.nav__list a.is-pressed {
  transform: translateY(1px) scale(0.985);
}

.btn--primary {
  border-color: transparent;
  background: linear-gradient(135deg, rgb(var(--brand1) / 0.95), rgb(var(--brand2) / 0.92));
  color: rgb(var(--bg));
  font-weight: 900;
}

.btn--ghost {
  background: rgb(var(--panel) / 0.05);
}

.footer {
  padding: 26px 0;
  border-top: 1px solid rgb(var(--border) / 0.08);
  background: rgb(var(--panel) / var(--a-bg2));
}

.footer__inner {
  display: grid;
  gap: 18px;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.footer__col {
  background: linear-gradient(180deg, rgb(var(--panel) / 0.075), rgb(var(--panel) / 0.045));
  border-radius: var(--radius2);
  padding: 16px;
  transition: transform 0.6s var(--ease-spring), border-color 0.4s var(--ease);
}

.footer__h {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: rgb(var(--muted));
}

.footer__link {
  display: block;
  color: rgb(var(--text));
  text-decoration: none;
  padding: 6px 0;
  overflow-wrap: break-word;
  word-break: normal;
}

.footer__link:hover {
  text-decoration: underline;
}

.footer__link--inline {
  display: inline;
  padding: 0;
}

.footer__link--nowrap {
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}

.footer__text {
  color: rgb(var(--text) / 0.88);
  padding: 3px 0;
  overflow-wrap: break-word;
  word-break: normal;
}

.footer__note {
  margin-top: 8px;
}

.footer__bottom {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 16px;
  border-top: none;
}

.footer__bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: rgb(var(--border) / 0.08);
  pointer-events: none;
}

.nav__toggle:focus-visible,
.btn:focus-visible,
.nav__list a:focus-visible,
.galleryNav:focus-visible,
.reviewsNav:focus-visible,
.lightbox__nav:focus-visible,
.lightbox__close:focus-visible,
.reviewMore:focus-visible,
.reviewDialog__close:focus-visible,
.shot:focus-visible {
  outline: 2px solid rgb(var(--focus) / 0.95);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav__list {
    display: none;
    position: absolute;
    right: 0;
    top: 56px;
    background: linear-gradient(180deg, rgb(var(--panel) / 0.12), rgb(var(--panel) / 0.08)), rgb(var(--bg) / 1);
    border: 1px solid rgb(var(--border) / 0.16);
    border-radius: var(--radius2);
    min-width: 280px;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    gap: 12px;
  }

  .nav__list.is-open {
    display: flex;
  }

  .nav__list a {
    display: block;
    width: 100%;
    margin: 0;
    padding: 16px 16px;
    white-space: normal;
    line-height: 1.35;
    font-size: 16px;
  }

  .nav__list a:not(.nav__cta) {
    border: 1px solid rgb(var(--border) / 0.12);
    border-radius: 14px;
    background: rgb(var(--panel) / 0.06);
  }

  .nav__list a.nav__cta {
    border: 1px solid rgb(var(--border) / 0.14);
    border-radius: 16px;
    margin-top: 12px;
    padding: 14px 22px;
    width: fit-content;
    align-self: flex-start;
  }

  .nav__list a:active,
  .nav__list a.is-pressed {
    background: rgb(var(--panel) / 0.12);
    border-color: rgb(var(--brand2) / 0.22);
  }
}

@media (max-width: 980px) {
  .footer__cols {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1280px) {
  :root {
    --container: 1600px;
  }

  .container {
    width: min(100% - 56px, var(--container));
  }

  .footer__col {
    padding: 20px;
  }

  .footer__cols {
    gap: 18px;
  }
}

@media (min-width: 1600px) {
  :root {
    --container: 1720px;
  }

  .container {
    width: min(100% - 72px, var(--container));
  }
}

@media (prefers-reduced-transparency: reduce) {
  .header,
  .nav__toggle,
  .nav__list {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (prefers-contrast: more) {
  :root {
    --a-border: 0.22;
  }

  .btn,
  .footer__col {
    box-shadow: none;
  }
}

@media (forced-colors: active) {
  .nav__list a.nav__cta,
  .btn--primary {
    forced-color-adjust: none;
    background: ButtonFace;
    color: ButtonText;
    border: 1px solid ButtonText;
  }

  .header,
  .footer__col,
  .nav__toggle,
  .nav__list {
    background: Canvas;
    color: CanvasText;
    border-color: CanvasText;
  }

  .nav__toggle:focus,
  .btn:focus,
  .nav__list a:focus {
    outline-color: Highlight;
  }
}
