:root {
  --gold: #d9b24c;
  --gold-light: #f7df93;
  --gold-dark: #9f741d;
  --black: #080807;
  --ink: #14110b;
  --ivory: #f7f0e3;
  --white: #ffffff;
  --muted: #aaa190;
  --header-height: 88px;
  font-family: Raleway, Lato, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ivory);
  background:
    radial-gradient(circle at 12% 8%, rgba(217, 178, 76, 0.16), transparent 30rem),
    linear-gradient(135deg, #050505 0%, #15120d 58%, #060606 100%);
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0));
}

.site-header {
  position: absolute;
  top: 28px;
  left: 0;
  z-index: 19;
  width: 100%;
  transition: background 220ms ease, box-shadow 220ms ease, top 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-fixed {
  position: fixed;
  top: 0;
  background: rgba(36, 18, 54, 0.88);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1140px, calc(100% - 40px));
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

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

.logo-link img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-item {
  position: relative;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.primary-nav a,
.nav-link {
  position: relative;
  padding: 28px 14px;
  white-space: nowrap;
  transition: color 220ms ease, transform 220ms ease;
}

.primary-nav > a::after,
.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 19px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.primary-nav > a:hover,
.nav-item:hover > .nav-link,
.nav-link:hover {
  color: var(--gold-light);
  transform: translateY(-1px);
}

.primary-nav > a:hover::after,
.nav-item:hover > .nav-link::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  min-width: 190px;
  padding: 12px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(246, 223, 145, 0.16);
  background:
    radial-gradient(circle at 20% 0%, rgba(217, 178, 76, 0.12), transparent 11rem),
    linear-gradient(145deg, rgba(24, 10, 42, 0.96), rgba(48, 21, 73, 0.96));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-10px);
  transition: opacity 220ms ease, transform 260ms ease;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -6px;
  width: 12px;
  height: 12px;
  background: rgba(36, 18, 54, 0.96);
  border-left: 1px solid rgba(246, 223, 145, 0.16);
  border-top: 1px solid rgba(246, 223, 145, 0.16);
  transform: translateX(-50%) rotate(45deg);
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  padding: 13px 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-dropdown a:hover {
  color: var(--gold-light);
  transform: translateX(3px);
}

.mobile-break {
  display: none;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  margin-left: auto;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-light);
  align-content: center;
  align-items: center;
  justify-content: center;
  grid-template-columns: 28px;
  grid-template-rows: repeat(3, 4px);
  gap: 4px;
  cursor: pointer;
  padding: 0 4px;
  box-shadow: none;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: currentColor;
  display: block;
  transform-origin: center;
  transition: opacity 180ms ease, transform 220ms ease, background 220ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  position: relative;
  color: var(--white);
  background: var(--black);
  isolation: isolate;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slides {
  z-index: 0;
}

.hero-slide {
  display: grid;
  place-items: center;
  overflow: hidden;
  opacity: 0;
  z-index: 0;
  transition: opacity 1300ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  will-change: opacity;
  transform: translateZ(0);
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 52% 51%, rgba(246, 223, 145, 0.16), transparent 18rem),
    radial-gradient(circle at 50% 105%, rgba(217, 178, 76, 0.2), transparent 26rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.68));
  pointer-events: none;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: -4%;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.12) 52%, rgba(0, 0, 0, 0.5)),
    var(--slide-image) center center / cover no-repeat;
  transform: scale(1);
  transform-origin: center;
  pointer-events: none;
  will-change: transform;
  backface-visibility: hidden;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.hero-slide.is-leaving {
  opacity: 0;
  z-index: 1;
}

.hero-slide.is-active::after {
  animation: kenBurns 9.5s cubic-bezier(0.25, 0.1, 0.25, 1) both;
}

.hero-slide.is-leaving::after {
  animation: none;
  transform: scale(1.08) translate3d(-1.2%, -1%, 0);
}

.hero-slide.is-active .hero-content {
  animation: slideContentIn 1050ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-overlay {
  display: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 28%, rgba(246, 223, 145, 0.08) 50%, transparent 70%);
  mix-blend-mode: screen;
  opacity: 0.72;
  pointer-events: none;
}

.hero-content {
  width: min(900px, calc(100% - 48px));
  position: relative;
  z-index: 3;
  text-align: center;
  padding-top: 70px;
  opacity: 0;
  transform: translateY(12px);
}

.hero h1 {
  margin: 0;
  font-size: clamp(56px, 8.8vw, 112px);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  text-shadow: 0 16px 46px rgba(0, 0, 0, 0.58);
  overflow-wrap: anywhere;
}

.hero p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.25;
  font-weight: 300;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.54);
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 28px;
  position: relative;
  overflow: hidden;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -70%;
  width: 55%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transition: left 520ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3);
}

.button:hover::before {
  left: 118%;
}

.button-outline {
  border: 2px solid currentColor;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.button-outline:hover {
  color: var(--ink);
  background: linear-gradient(135deg, var(--ivory), #ffffff);
  border-color: var(--ivory);
}

.button-gold {
  color: #19130a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 48%, #b88821);
  border: 2px solid rgba(246, 223, 145, 0.65);
}

.button-gold:hover {
  background: linear-gradient(135deg, #fff0ad, var(--gold), var(--gold-dark));
  border-color: var(--gold-light);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  font-size: 44px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0.88;
  backdrop-filter: none;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease, color 220ms ease;
}

.slider-arrow:hover {
  color: var(--gold-light);
  background: transparent;
  transform: translateY(-50%) scale(1.06);
}

.slider-arrow-left {
  left: 24px;
}

.slider-arrow-right {
  right: 24px;
}

.slide-count {
  position: absolute;
  z-index: 4;
  right: 32px;
  bottom: 28px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--white);
  font-size: 18px;
}

.slide-count span {
  width: auto;
  height: auto;
  display: inline;
  background: transparent;
}

.slide-count b {
  font-weight: 400;
}

.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 5;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--gold-light);
  cursor: pointer;
  transform: translateX(-50%);
  animation: scrollCue 1.8s ease-in-out infinite;
  transition: color 220ms ease, transform 220ms ease, opacity 220ms ease;
}

.scroll-down svg {
  width: 34px;
  height: 34px;
  display: block;
  fill: currentColor;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

.scroll-down:hover {
  color: var(--white);
  transform: translateX(-50%) translateY(3px);
}

.promo {
  position: relative;
  color: var(--ivory);
  padding: 58px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(246, 223, 145, 0.28), transparent 24rem),
    linear-gradient(135deg, #d6aa32 0%, #b98217 38%, #17110a 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.promo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 34%, rgba(0, 0, 0, 0.18));
  background-size: 42px 42px, 42px 42px, 100% 100%;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.45), #000 24%, #000 72%, rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.promo-inner {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.promo-inner > div {
  min-width: 0;
  max-width: 100%;
  width: min(680px, 100%);
}

.promo h2 {
  margin: 0;
  color: #120e08;
  font-size: clamp(42px, 6vw, 62px);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.22);
}

.promo p {
  max-width: 680px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.16;
  font-weight: 600;
}

.promo-button {
  flex: 0 0 auto;
}

.promo-button span {
  margin-left: 8px;
  font-size: 18px;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  background:
    radial-gradient(circle at 70% 0%, rgba(217, 178, 76, 0.12), transparent 24rem),
    linear-gradient(180deg, #080806, #14110d);
}

.feature-tile {
  min-width: 0;
  height: 330px;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  transform: translateY(0);
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.feature-tile a,
.feature-tile img {
  display: block;
  width: 100%;
  height: 100%;
}

.feature-tile img {
  object-fit: cover;
  transform: scale(1.01);
  filter: saturate(0.86) contrast(1.05);
  transition: transform 520ms ease, filter 520ms ease;
}

.feature-tile a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 40%, transparent, rgba(0, 0, 0, 0.18) 46%, rgba(0, 0, 0, 0.86)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.74));
  transition: background 320ms ease, opacity 320ms ease;
}

.feature-tile a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(120deg, transparent 15%, rgba(255, 255, 255, 0.2) 38%, transparent 58%);
  transform: translateX(-115%);
  transition: transform 650ms ease;
  pointer-events: none;
}

.feature-tile span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  color: var(--white);
  font-size: 21px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  transform: translateY(0);
  transition: transform 320ms ease, color 320ms ease;
}

.feature-tile span::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-bottom: 14px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 18px rgba(217, 178, 76, 0.45);
}

.feature-tile:hover {
  transform: translateY(0);
}

.feature-tile:hover img {
  transform: scale(1.1);
  filter: saturate(1.04) contrast(1.09);
}

.feature-tile:hover a::before {
  background:
    linear-gradient(135deg, rgba(36, 18, 54, 0.48), rgba(65, 31, 86, 0.3)),
    radial-gradient(circle at 50% 40%, rgba(217, 178, 76, 0.12), rgba(0, 0, 0, 0.08) 48%, rgba(0, 0, 0, 0.86)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.78));
}

.feature-tile:active a::before,
.feature-tile:focus-within a::before {
  background:
    linear-gradient(135deg, rgba(36, 18, 54, 0.56), rgba(65, 31, 86, 0.36)),
    radial-gradient(circle at 50% 40%, rgba(217, 178, 76, 0.12), rgba(0, 0, 0, 0.08) 48%, rgba(0, 0, 0, 0.86)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.78));
}

.feature-tile:hover a::after {
  transform: translateX(115%);
}

.feature-tile:hover span {
  color: var(--gold-light);
  transform: translateY(-4px);
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    #0d0c0a;
  color: rgba(246, 240, 228, 0.68);
  font-size: 14px;
  border-top: 1px solid rgba(246, 223, 145, 0.12);
  padding: 34px 0;
}

.footer-inner {
  width: min(1140px, calc(100% - 40px));
  min-height: 154px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-links {
  margin-bottom: 9px;
  display: flex;
  gap: 5px;
  color: var(--ivory);
  font-weight: 700;
}

.site-footer p,
.site-footer address {
  margin: 0;
  line-height: 1.65;
  font-style: normal;
}

.site-footer a {
  color: var(--ivory);
}

.site-footer a:hover {
  color: var(--gold-light);
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: rgba(246, 240, 228, 0.72);
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(246, 223, 145, 0.18);
  background: rgba(255, 255, 255, 0.03);
  transition: border 220ms ease, color 220ms ease, background 220ms ease, transform 220ms ease;
}

.footer-social svg {
  width: 17px;
  height: 17px;
  display: block;
  fill: currentColor;
}

.footer-social a:hover {
  color: #15110b;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: var(--gold-light);
  transform: translateY(-3px);
}

.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(246, 223, 145, 0.35);
  border-radius: 50%;
  background: rgba(10, 9, 7, 0.78);
  color: var(--gold-light);
  font-size: 20px;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(10px);
  transition: opacity 220ms ease, transform 220ms ease, background 220ms ease;
}

.to-top.is-visible {
  opacity: 0.85;
  pointer-events: auto;
}

.to-top:hover {
  transform: translateY(-2px);
  opacity: 1;
  background: rgba(25, 20, 12, 0.92);
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideContentIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes kenBurns {
  from {
    transform: scale(1) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(-1.2%, -1%, 0);
  }
}

@media (max-width: 980px) {
  .site-header {
    top: 0;
    padding: 10px 0;
    background: rgba(36, 18, 54, 0.94);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
  }

  .site-header.is-fixed {
    padding-top: 0;
  }

  .header-inner {
    min-height: 76px;
    border-radius: 0;
  }

  .menu-toggle {
    display: inline-grid;
    position: absolute;
    right: 22px;
    top: 24px;
    z-index: 70;
    transform: none;
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 60;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: clamp(6px, 1.6vh, 14px);
    padding: 96px 28px 34px;
    background:
      radial-gradient(circle at 18% 12%, rgba(217, 178, 76, 0.14), transparent 18rem),
      radial-gradient(circle at 82% 76%, rgba(117, 63, 158, 0.24), transparent 22rem),
      linear-gradient(145deg, rgba(24, 10, 42, 0.99), rgba(48, 21, 73, 0.99) 52%, rgba(14, 7, 24, 0.99));
    box-shadow: none;
    backdrop-filter: blur(22px);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms ease, transform 320ms ease;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav a {
    width: min(440px, calc(100vw - 56px));
    margin: 0 auto;
    padding: clamp(12px, 2.4vh, 18px) 20px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(20px, 6.4vw, 34px);
    line-height: 1;
    text-align: center;
    border-radius: 0;
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  }

  .nav-item {
    width: min(440px, calc(100vw - 56px));
    margin: 0 auto;
  }

  .nav-item::after {
    display: none;
  }

  .nav-item > .nav-link {
    display: block;
    width: 100%;
  }

  .nav-dropdown {
    position: static;
    width: min(360px, calc(100vw - 84px));
    min-width: 0;
    margin: -2px auto 4px;
    padding: 0;
    gap: 2px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    backdrop-filter: none;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-dropdown a {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 8px 12px;
    color: rgba(246, 223, 145, 0.82);
    font-size: clamp(14px, 4vw, 17px);
    letter-spacing: 0.12em;
    text-shadow: none;
    transform: none;
  }

  .nav-dropdown a:hover,
  .nav-dropdown a:focus {
    text-align: center;
    transform: none;
  }

  .primary-nav a::after {
    display: none;
  }

  .promo-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 620px) {
  .mobile-break {
    display: block;
  }

  .menu-toggle {
    top: 14px;
    right: 20px;
  }

  .header-inner,
  .promo-inner,
  .footer-inner {
    width: calc(100% - 28px);
    max-width: 1140px;
  }

  .logo-link img {
    width: 62px;
    height: 62px;
  }

  .hero {
    min-height: 720px;
    background-position: 61% top;
  }

  .hero-content {
    padding-top: 30px;
  }

  .hero h1 {
    font-size: clamp(38px, 12.2vw, 52px);
    letter-spacing: 0.01em;
  }

  .hero-actions {
    align-items: center;
    flex-direction: column;
    gap: 12px;
  }

  .button {
    width: min(260px, 100%);
  }

  .slide-count {
    display: none;
  }

  .slider-arrow {
    display: grid;
    width: 42px;
    height: 42px;
    font-size: 38px;
  }

  .slider-arrow-left {
    left: 10px;
  }

  .slider-arrow-right {
    right: 10px;
  }

  .scroll-down {
    bottom: 18px;
  }

  .promo {
    padding: 38px 0;
  }

  .promo h2 {
    max-width: calc(100vw - 28px);
    font-size: clamp(31px, 9.2vw, 40px);
    line-height: 0.92;
    overflow-wrap: anywhere;
  }

  .promo-inner > div {
    width: 100%;
  }

  .promo p {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    font-size: 17px;
    line-height: 1.14;
    overflow-wrap: anywhere;
  }

  .tile-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .feature-tile {
    height: 272px;
  }
}
