:root {
  --red: #ef174f;
  --red-dark: #bc103b;
  --ink: #101010;
  --paper: #f3f0e9;
  --cream: #e9e4da;
  --muted: #77736b;
  --line: rgba(16, 16, 16, 0.16);
  --shell: min(1280px, calc(100vw - 96px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
a,
button,
summary {
  cursor: default;
}

a,
summary {
  cursor: pointer;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

p,
h1,
h2,
h3 {
  margin: 0;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 940px;
  height: 100svh;
  max-height: 1080px;
  overflow: hidden;
  color: white;
  background: #1b2023;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.8) contrast(1.05) brightness(0.82);
  transform: scale(1.012);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 15, 18, 0.89) 0%, rgba(13, 16, 18, 0.58) 43%, rgba(10, 12, 14, 0.13) 75%),
    linear-gradient(0deg, rgba(5, 7, 9, 0.78) 0%, transparent 36%, rgba(4, 5, 7, 0.46) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  right: -270px;
  top: 17%;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(239, 23, 79, 0.08), 0 0 0 180px rgba(255, 255, 255, 0.025);
}

.topline {
  position: relative;
  z-index: 5;
  height: 42px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.78);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.topline p,
.topline a {
  display: flex;
  align-items: center;
  gap: 9px;
}

.topline strong {
  color: white;
}

.topline a span {
  color: var(--red);
  font-size: 14px;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #54e69a;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(84, 230, 154, 0.14);
}

.site-header {
  position: relative;
  z-index: 10;
  height: 98px;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 220px 1fr 410px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.brand {
  display: inline-flex;
  width: 210px;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 42px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.desktop-nav a,
.lang {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after,
.lang::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 1px;
  height: 2px;
  background: var(--red);
  transition: right .3s ease;
}

.desktop-nav a:hover::after,
.lang:hover::after {
  right: 0;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(0,0,0,.08);
}

.language-switcher button {
  min-width: 32px;
  height: 31px;
  padding: 0 7px;
  border: 0;
  color: rgba(255,255,255,.55);
  background: transparent;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
  cursor: pointer;
}

.language-switcher button[aria-pressed="true"] {
  color: white;
  background: var(--red);
}

.lang {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

.nav-cta {
  padding: 15px 20px;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.28);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: background .25s, color .25s;
  cursor: pointer;
}

.nav-cta:hover {
  background: white;
  color: var(--ink);
}

.nav-cta span {
  color: var(--red);
  font-size: 17px;
}

.mobile-menu {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 4;
  padding-top: clamp(126px, 16vh, 176px);
}

.hero__kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: rgba(255,255,255,.78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero__kicker span {
  width: 24px;
  height: 2px;
  background: var(--red);
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(82px, 9.5vw, 154px);
  line-height: .78;
  letter-spacing: -.08em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  margin-top: 18px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .69em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.06em;
  text-transform: none;
}

.hero__bottom {
  max-width: 820px;
  margin-top: 54px;
  display: flex;
  align-items: flex-end;
  gap: 70px;
}

.hero__bottom > p {
  max-width: 410px;
  color: rgba(255,255,255,.79);
  font-size: 17px;
  line-height: 1.65;
}

.hero__buttons {
  display: flex;
  gap: 12px;
}

.button {
  min-height: 58px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .25s, background .25s, color .25s;
  cursor: pointer;
}

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

.button span {
  color: var(--red);
  font-size: 18px;
}

.button--light {
  min-width: 220px;
  color: var(--ink);
  background: white;
}

.button--light:hover {
  background: var(--red);
  color: white;
}

.button--light:hover span {
  color: white;
}

.button--glass {
  color: white;
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
}

.button--glass:hover {
  background: rgba(255,255,255,.16);
}

.hero__facts {
  position: absolute;
  z-index: 4;
  left: 48px;
  right: 48px;
  bottom: 0;
  min-height: 118px;
  display: grid;
  grid-template-columns: 180px 180px 240px 1fr;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.2);
}

.hero__facts > div {
  height: 58px;
  padding: 0 30px;
  border-right: 1px solid rgba(255,255,255,.17);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.hero__facts > div:first-child {
  padding-left: 0;
}

.hero__facts strong {
  font-size: 22px;
}

.hero__facts span {
  color: rgba(255,255,255,.63);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero__facts > a {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero__facts > a span {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-size: 15px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red);
}

.section-label--light {
  color: rgba(255,255,255,.62);
}

.section-label--red {
  color: var(--red);
}

.intro {
  padding: 140px 0 76px;
  display: grid;
  grid-template-columns: 28% 72%;
}

.intro__copy h2,
.brands h2,
.day-plan h2,
.services h2,
.about h2,
.visit h2 {
  font-size: clamp(48px, 5.5vw, 86px);
  line-height: .98;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.intro__copy h2 em,
.brands h2 em,
.day-plan h2 em,
.services h2 em,
.about h2 em,
.visit h2 em {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .82em;
  font-weight: 400;
  text-transform: none;
}

.intro__copy > p {
  max-width: 610px;
  margin: 43px 0 0 34%;
  color: #5f5b54;
  font-size: 18px;
  line-height: 1.7;
}

.experiences {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  padding-bottom: 150px;
}

.experience-card {
  position: relative;
  height: 680px;
  overflow: hidden;
  color: white;
  background: #222;
}

.experience-card:nth-child(1) { grid-column: span 5; }
.experience-card:nth-child(2) { grid-column: span 4; margin-top: 88px; }
.experience-card:nth-child(3) { grid-column: span 3; }

.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}

.experience-card:nth-child(3) img {
  object-position: 52% center;
}

.experience-card:hover img {
  transform: scale(1.045);
}

.experience-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,5,5,.86) 0%, rgba(5,5,5,.05) 62%, rgba(5,5,5,.28) 100%);
}

.experience-card__number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.experience-card__content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
}

.experience-card__content > p {
  margin-bottom: 11px;
  color: rgba(255,255,255,.66);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.experience-card h3 {
  font-size: clamp(42px, 4.4vw, 70px);
  line-height: 1;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.experience-card:nth-child(3) h3 {
  font-size: clamp(36px, 3.15vw, 50px);
}

.concierge {
  position: relative;
  min-height: 760px;
  padding: 130px 0;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 72% 45%, rgba(239,23,79,.32), transparent 26%),
    linear-gradient(120deg, #111 0%, #181012 50%, #280812 100%);
}

.concierge::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image: radial-gradient(rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(90deg, transparent 15%, black 70%);
}

.concierge__glow {
  position: absolute;
  right: 10%;
  top: 50%;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 90px rgba(239,23,79,.05), 0 0 0 210px rgba(239,23,79,.025);
}

.concierge__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 480px;
  align-items: center;
  gap: 110px;
}

.concierge__copy .section-label {
  margin-bottom: 22px;
}

.concierge__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.65);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .16em;
}

.concierge__badge::first-letter {
  color: var(--red);
}

.concierge h2,
.finder h2 {
  font-size: clamp(52px, 5.5vw, 86px);
  line-height: .98;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.concierge h2 em,
.finder h2 em {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .82em;
  font-weight: 400;
  text-transform: none;
}

.concierge__copy > p:not(.section-label) {
  max-width: 570px;
  margin-top: 38px;
  color: rgba(255,255,255,.62);
  font-size: 17px;
  line-height: 1.75;
}

.concierge__copy .button {
  margin-top: 42px;
}

.concierge-card {
  position: relative;
  min-height: 520px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(11,11,12,.78);
  box-shadow: 0 40px 90px rgba(0,0,0,.42);
  backdrop-filter: blur(22px);
  transform: rotate(2deg);
}

.concierge-card::before {
  content: "";
  position: absolute;
  inset: -10px 10px 10px -10px;
  z-index: -1;
  border: 1px solid rgba(239,23,79,.45);
}

.concierge-card__top {
  padding-bottom: 24px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.14);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.concierge-card__top span {
  color: var(--red);
}

.concierge-card__top b {
  color: rgba(255,255,255,.55);
}

.concierge-card > p {
  margin: 32px 0 14px;
  color: rgba(255,255,255,.5);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.concierge-card__stop {
  min-height: 92px;
  display: grid;
  grid-template-columns: 44px 1fr 30px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.concierge-card__stop strong {
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: italic;
}

.concierge-card__stop span {
  font-size: 15px;
  font-weight: 700;
}

.concierge-card__stop i {
  color: rgba(255,255,255,.38);
  font-style: normal;
}

.concierge-card__pulse {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 24px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.concierge-card__pulse span {
  width: 5px;
  height: 10px;
  background: var(--red);
  animation: pulse 1.2s ease-in-out infinite alternate;
}

.concierge-card__pulse span:nth-child(2) { height: 20px; animation-delay: .2s; }
.concierge-card__pulse span:nth-child(3) { height: 14px; animation-delay: .4s; }

@keyframes pulse { to { height: 28px; opacity: .45; } }

.finder {
  padding: 145px 0 155px;
  background: var(--paper);
}

.finder__head {
  display: grid;
  grid-template-columns: 66% 34%;
  align-items: end;
  gap: 50px;
}

.finder__head .section-label {
  margin-bottom: 30px;
}

.finder__head > p {
  max-width: 390px;
  padding-bottom: 6px;
  color: #67635c;
  font-size: 16px;
  line-height: 1.75;
}

.finder__controls {
  margin-top: 70px;
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.finder__search {
  flex: 0 0 330px;
  height: 54px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: white;
  border: 1px solid rgba(16,16,16,.14);
}

.finder__search > span {
  color: var(--red);
  font-size: 23px;
}

.finder__search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
}

.finder__filters {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}

.finder__filters button {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(16,16,16,.15);
  background: transparent;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  cursor: pointer;
}

.finder__filters button[aria-pressed="true"] {
  color: white;
  border-color: var(--ink);
  background: var(--ink);
}

.store-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.store-card {
  position: relative;
  min-height: 230px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.28);
  transition: background .25s, transform .25s;
}

.store-card:hover {
  z-index: 2;
  background: white;
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(27,25,20,.08);
}

.store-card__category {
  color: #918d84;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.store-card h3 {
  margin-top: 31px;
  font-size: 20px;
  letter-spacing: -.04em;
}

.store-card > p {
  margin-top: 12px;
  color: #6f6b63;
  font-size: 11px;
}

.store-card > p b {
  color: var(--red);
  font-size: 8px;
}

.store-card > div {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.store-card > div a:last-child {
  color: var(--red);
}

.store-card > div a span {
  font-size: 13px;
}

.finder__empty {
  grid-column: 1 / -1;
  padding: 80px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #77736b;
  text-align: center;
}

.planner-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  padding: 30px;
  display: grid;
  place-items: center;
  overflow-y: auto;
  background: rgba(6,6,6,.78);
  backdrop-filter: blur(18px);
}

.planner-modal {
  position: relative;
  width: min(780px, 100%);
  padding: 58px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 40px 120px rgba(0,0,0,.5);
}

.planner-modal::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--red);
}

.planner-modal__close {
  position: absolute;
  right: 22px;
  top: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(16,16,16,.18);
  background: transparent;
  font-size: 25px;
  font-weight: 300;
  cursor: pointer;
}

.planner-modal__brand {
  margin-bottom: 35px;
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
}

.planner-modal__brand span {
  margin-left: 10px;
  padding: 5px 7px;
  color: white;
  background: var(--ink);
  font-size: 7px;
}

.planner-modal h2 {
  max-width: 600px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.planner-modal > p {
  margin-top: 15px;
  color: #716d65;
  font-size: 15px;
}

.planner-modal fieldset {
  margin: 38px 0 0;
  padding: 0;
  border: 0;
}

.planner-modal legend {
  margin-bottom: 15px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.planner-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.planner-options--duration {
  grid-template-columns: repeat(3, 1fr);
}

.planner-options button {
  min-height: 55px;
  padding: 0 17px;
  border: 1px solid var(--line);
  background: white;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.planner-options button[aria-pressed="true"] {
  color: white;
  border-color: var(--red);
  background: var(--red);
}

.planner-modal__create {
  width: 100%;
}

.planner-route {
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.planner-route li {
  min-height: 76px;
  display: grid;
  grid-template-columns: 44px 1fr 28px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.planner-route li > strong {
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 12px;
  font-style: italic;
}

.planner-route li div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.planner-route li span {
  font-size: 14px;
  font-weight: 800;
}

.planner-route li small {
  color: #858178;
  font-size: 9px;
}

.planner-route li i {
  color: #aaa59a;
  font-style: normal;
  text-align: center;
}

.planner-share {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.planner-share button,
.planner-share a {
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid var(--ink);
  display: grid;
  place-items: center;
  background: transparent;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.planner-share a {
  color: white;
  background: var(--ink);
}

.planner-back {
  margin-top: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #79756d;
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.experience-card__reveal {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.experience-card__reveal > span:first-child {
  max-width: 280px;
  color: rgba(255,255,255,.74);
  font-size: 13px;
  line-height: 1.55;
}

.circle-arrow {
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--red);
  font-size: 18px;
}

.brands {
  padding: 140px 0 110px;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.brands__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.brands__heading .section-label {
  margin-bottom: 32px;
}

.text-link {
  min-width: 218px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255,255,255,.33);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: border-color .25s;
}

.text-link:hover {
  border-color: var(--red);
}

.text-link span {
  color: var(--red);
  font-size: 17px;
}

.brand-logo-grid {
  margin-top: 75px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.14);
  border-left: 1px solid rgba(255,255,255,.14);
}

.brand-logo {
  min-height: 170px;
  padding: 42px;
  display: grid;
  place-items: center;
  background: #f8f7f3;
  border-right: 1px solid rgba(16,16,16,.13);
  transition: background .25s, transform .25s;
}

.brand-logo:hover {
  position: relative;
  z-index: 2;
  background: white;
  transform: translateY(-7px);
}

.brand-logo img {
  max-width: 150px;
  max-height: 55px;
  object-fit: contain;
}

.brand-ticker {
  margin-top: 96px;
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
  overflow: hidden;
}

.brand-ticker__track {
  width: max-content;
  display: flex;
  animation: ticker 34s linear infinite;
}

.brand-ticker span {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
  color: rgba(255,255,255,.86);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.04em;
}

.brand-ticker i {
  color: var(--red);
  font-size: 13px;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.day-plan {
  padding: 150px 0;
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 90px;
}

.day-plan__lead .section-label {
  margin-bottom: 32px;
}

.day-plan__lead > p:not(.section-label) {
  max-width: 440px;
  margin-top: 36px;
  color: #67635c;
  font-size: 17px;
  line-height: 1.7;
}

.button--dark {
  min-width: 210px;
  margin-top: 42px;
  color: white;
  background: var(--ink);
}

.button--dark:hover {
  background: var(--red);
}

.button--dark:hover span {
  color: white;
}

.day-plan__timeline {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.day-plan__timeline li {
  min-height: 118px;
  display: grid;
  grid-template-columns: 92px 1fr 50px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: padding .25s, background .25s;
}

.day-plan__timeline li:hover {
  padding: 0 18px;
  background: white;
}

.day-plan__timeline li > span {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-style: italic;
}

.day-plan__timeline div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.day-plan__timeline small {
  color: #8a867e;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .17em;
}

.day-plan__timeline strong {
  font-size: 19px;
  letter-spacing: -.025em;
}

.day-plan__timeline b {
  color: #c4c0b6;
  font-size: 11px;
  text-align: right;
}

.services {
  position: relative;
  padding: 140px 0 150px;
  overflow: hidden;
  color: white;
  background: #151515;
}

.services::before {
  content: "PRIME";
  position: absolute;
  right: -34px;
  top: 25px;
  color: rgba(255,255,255,.022);
  font-size: 260px;
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: 1;
}

.services__head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 65% 35%;
  align-items: end;
}

.services__head .section-label {
  margin-bottom: 32px;
}

.services__head > p {
  max-width: 390px;
  padding-bottom: 9px;
  color: rgba(255,255,255,.57);
  font-size: 16px;
  line-height: 1.7;
}

.service-grid {
  position: relative;
  z-index: 1;
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.17);
  border-left: 1px solid rgba(255,255,255,.17);
}

.service-card {
  position: relative;
  min-height: 330px;
  padding: 36px 30px;
  border-right: 1px solid rgba(255,255,255,.17);
  border-bottom: 1px solid rgba(255,255,255,.17);
  transition: background .25s;
}

.service-card:hover {
  background: var(--red);
}

.service-card__index {
  position: absolute;
  right: 25px;
  top: 25px;
  color: rgba(255,255,255,.36);
  font-size: 9px;
  font-weight: 800;
}

.service-card img {
  width: 78px;
  height: 78px;
  margin: 20px 0 58px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.service-card h3 {
  max-width: 190px;
  font-size: 18px;
  letter-spacing: -.03em;
}

.service-card p {
  max-width: 210px;
  margin-top: 12px;
  color: rgba(255,255,255,.54);
  font-size: 12px;
  line-height: 1.55;
}

.service-card:hover p {
  color: rgba(255,255,255,.84);
}

.about {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 790px;
  background: #e8e3d8;
}

.about__image-wrap {
  position: relative;
  overflow: hidden;
}

.about__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.75) contrast(1.03);
}

.about__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6,6,6,.34), transparent 50%);
}

.about__image-wrap > span {
  position: absolute;
  z-index: 2;
  left: 44px;
  bottom: 44px;
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.6;
}

.about__copy {
  padding: 120px clamp(50px, 6vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__copy .section-label {
  margin-bottom: 32px;
}

.about__copy > p:not(.section-label) {
  margin-top: 40px;
  color: #615d56;
  font-size: 17px;
  line-height: 1.75;
}

.text-link--dark {
  width: 230px;
  margin-top: 45px;
  border-color: rgba(16,16,16,.24);
}

.visit {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: white;
  background: var(--red);
}

.visit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,13,13,.93) 0%, rgba(13,13,13,.82) 49%, rgba(13,13,13,.3) 70%, rgba(13,13,13,.05) 100%);
}

.visit__pattern {
  position: absolute;
  inset: 0 0 0 48%;
  overflow: hidden;
  background:
    linear-gradient(70deg, transparent 0 48%, rgba(255,255,255,.09) 48% 49%, transparent 49% 100%),
    linear-gradient(-35deg, transparent 0 42%, rgba(255,255,255,.08) 42% 43%, transparent 43% 100%),
    radial-gradient(circle at 65% 45%, rgba(255,255,255,.1) 0 2px, transparent 3px);
  background-size: auto, auto, 42px 42px;
}

.route {
  position: absolute;
  width: 620px;
  height: 620px;
  border: 2px solid rgba(255,255,255,.24);
  border-radius: 42% 58% 53% 47%;
}

.route--one {
  right: -170px;
  top: -90px;
  transform: rotate(28deg);
}

.route--two {
  left: 12%;
  bottom: -430px;
  transform: rotate(-19deg);
}

.map-pin {
  position: absolute;
  left: 58%;
  top: 43%;
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: white;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 28px;
  font-style: italic;
}

.map-pin::first-letter {
  transform: rotate(45deg);
}

.visit__content {
  position: relative;
  z-index: 3;
  padding: 130px 0 110px;
}

.visit__content .section-label {
  margin-bottom: 32px;
}

.visit h2 {
  max-width: 750px;
}

.visit__details {
  max-width: 680px;
  margin-top: 58px;
  padding: 32px 0;
  display: grid;
  grid-template-columns: 1.4fr .85fr 1.1fr;
  gap: 32px;
  border-top: 1px solid rgba(255,255,255,.22);
  border-bottom: 1px solid rgba(255,255,255,.22);
}

.visit__details span {
  display: block;
  margin-bottom: 14px;
  color: rgba(255,255,255,.48);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .17em;
}

.visit__details p {
  color: rgba(255,255,255,.78);
  font-size: 12px;
  line-height: 1.75;
}

.visit__details strong {
  color: white;
}

.visit .button {
  margin-top: 34px;
}

.footer {
  padding: 80px 0 30px;
  background: #0d0d0d;
  color: white;
}

.footer__main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.brand--footer {
  width: 200px;
}

.footer__main > p {
  color: rgba(255,255,255,.58);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-style: italic;
  line-height: 1.4;
  text-align: center;
}

.footer__socials {
  justify-self: end;
  display: flex;
  gap: 8px;
}

.footer__socials a {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 9px;
  font-weight: 800;
  transition: background .2s, border-color .2s;
}

.footer__socials a:hover {
  background: var(--red);
  border-color: var(--red);
}

.footer__bottom {
  margin-top: 65px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.36);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer__bottom div {
  display: flex;
  gap: 26px;
}

.footer__bottom a:hover {
  color: white;
}

@media (max-width: 1100px) {
  :root { --shell: min(100% - 56px, 1000px); }
  .site-header { grid-template-columns: 180px 1fr 350px; padding-inline: 28px; }
  .brand { width: 175px; }
  .desktop-nav { gap: 15px; font-size: 9px; }
  .nav-cta { padding-inline: 14px; gap: 9px; }
  .header-actions { gap: 14px; }
  .hero__facts { left: 28px; right: 28px; }
  .experience-card { height: 600px; }
  .experience-card:nth-child(1) { grid-column: span 5; }
  .experience-card:nth-child(2) { grid-column: span 4; }
  .experience-card:nth-child(3) { grid-column: span 3; }
  .experience-card__content { left: 22px; right: 22px; bottom: 22px; }
  .day-plan { gap: 55px; }
  .about__copy { padding-inline: 55px; }
  .concierge__content { grid-template-columns: 1fr 410px; gap: 60px; }
  .store-grid { grid-template-columns: repeat(3, 1fr); }
  .finder__controls { align-items: flex-start; flex-direction: column; }
  .finder__search { flex: 0 0 auto; width: 100%; }
  .finder__filters { justify-content: flex-start; }
}

@media (max-width: 820px) {
  :root { --shell: calc(100vw - 38px); }
  .topline { padding-inline: 19px; }
  .topline > a { display: none; }
  .site-header { height: 78px; padding-inline: 19px; grid-template-columns: 1fr auto; }
  .brand { width: 165px; }
  .desktop-nav, .header-actions { display: none; }
  .mobile-menu { display: block; justify-self: end; }
  .mobile-menu summary { width: 45px; height: 45px; border: 1px solid rgba(255,255,255,.3); list-style: none; display: grid; place-content: center; gap: 6px; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { display: block; width: 20px; height: 1px; background: white; }
  .mobile-menu__panel { position: absolute; top: 78px; right: 0; width: min(330px, calc(100vw - 19px)); padding: 26px; display: flex; flex-direction: column; gap: 22px; background: #111; border-top: 2px solid var(--red); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
  .mobile-menu__panel > button { padding: 0; border: 0; color: var(--red); background: transparent; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-align: left; text-transform: uppercase; cursor: pointer; }
  .language-switcher--mobile { width: max-content; }
  .hero { min-height: 820px; height: 100svh; }
  .hero__image { object-position: 56% center; }
  .hero__veil { background: linear-gradient(90deg, rgba(9,12,14,.88), rgba(9,12,14,.35)), linear-gradient(0deg, rgba(5,5,5,.9), transparent 55%); }
  .hero::after { width: 420px; height: 420px; right: -250px; top: 23%; }
  .hero__content { padding-top: 100px; }
  .hero h1 { font-size: clamp(64px, 17.5vw, 110px); line-height: .82; }
  .hero h1 span { margin-top: 13px; }
  .hero__bottom { margin-top: 38px; align-items: flex-start; flex-direction: column; gap: 30px; }
  .hero__bottom > p { font-size: 15px; }
  .hero__buttons { width: 100%; }
  .button { min-height: 54px; }
  .button--light { min-width: 0; }
  .hero__facts { left: 19px; right: 19px; min-height: 90px; grid-template-columns: repeat(3, 1fr); }
  .hero__facts > div { height: 45px; padding-inline: 16px; }
  .hero__facts > div:first-child { padding-left: 0; }
  .hero__facts > div:nth-child(3) { border-right: 0; }
  .hero__facts > a { display: none; }
  .hero__facts strong { font-size: 18px; }
  .hero__facts span { font-size: 7px; }
  .intro { padding: 95px 0 56px; grid-template-columns: 1fr; gap: 42px; }
  .intro__copy > p { margin-left: 14%; }
  .experiences { grid-template-columns: 1fr 1fr; padding-bottom: 100px; }
  .experience-card { height: 570px; }
  .experience-card:nth-child(1), .experience-card:nth-child(2) { grid-column: span 1; }
  .experience-card:nth-child(2) { margin-top: 55px; }
  .experience-card:nth-child(3) { grid-column: 1 / -1; width: calc(50% - 10px); justify-self: end; }
  .brands { padding-block: 100px 80px; }
  .brands__heading { align-items: flex-start; flex-direction: column; }
  .brand-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-logo { min-height: 140px; }
  .day-plan { padding-block: 100px; grid-template-columns: 1fr; gap: 72px; }
  .services { padding-block: 100px; }
  .services__head { grid-template-columns: 1fr; gap: 35px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .concierge { padding-block: 100px; }
  .concierge__content { grid-template-columns: 1fr; }
  .concierge-card { width: min(520px, 100%); margin-inline: auto; }
  .finder { padding-block: 100px; }
  .finder__head { grid-template-columns: 1fr; gap: 35px; }
  .store-grid { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; }
  .about__image-wrap { min-height: 560px; }
  .about__copy { padding: 90px 28px; }
  .visit::after { background: linear-gradient(90deg, rgba(13,13,13,.94), rgba(13,13,13,.68)); }
  .visit__pattern { left: 20%; opacity: .7; }
  .visit__details { max-width: none; }
}

@media (max-width: 560px) {
  .hero { min-height: 780px; }
  .hero__image { object-position: 60% center; }
  .hero__content { padding-top: 90px; }
  .hero__kicker { font-size: 9px; }
  .hero h1 { font-size: clamp(58px, 18vw, 88px); }
  .hero__bottom { margin-top: 30px; }
  .hero__buttons { flex-direction: column; }
  .hero__buttons .button { width: 100%; }
  .hero__bottom > p { max-width: 320px; }
  .hero__facts > div { padding-inline: 9px; }
  .hero__facts strong { font-size: 16px; }
  .intro__copy h2, .brands h2, .day-plan h2, .services h2, .about h2, .visit h2 { font-size: 45px; }
  .intro__copy > p { margin: 30px 0 0; font-size: 16px; }
  .experiences { display: flex; overflow-x: auto; width: 100%; padding-left: 19px; padding-right: 19px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .experiences::-webkit-scrollbar { display: none; }
  .experience-card, .experience-card:nth-child(3) { flex: 0 0 82vw; width: auto; height: 540px; margin-top: 0; scroll-snap-align: center; }
  .brands__heading { gap: 28px; }
  .brand-logo-grid { margin-top: 55px; }
  .brand-logo { min-height: 118px; padding: 28px; }
  .brand-logo img { max-width: 105px; max-height: 42px; }
  .brand-ticker { margin-top: 60px; }
  .brand-ticker span { font-size: 22px; }
  .day-plan { gap: 60px; }
  .day-plan__timeline li { grid-template-columns: 62px 1fr 26px; }
  .day-plan__timeline strong { font-size: 16px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 280px; }
  .service-card img { margin-bottom: 38px; }
  .about__image-wrap { min-height: 430px; }
  .about__copy { padding-inline: 19px; }
  .visit { min-height: 850px; }
  .visit__content { padding-top: 100px; }
  .visit__details { grid-template-columns: 1fr; gap: 25px; }
  .footer__main { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer__socials { justify-self: center; }
  .footer__bottom { align-items: flex-start; flex-direction: column; gap: 20px; }
  .footer__bottom div { flex-wrap: wrap; gap: 16px; }
  .concierge h2, .finder h2 { font-size: 45px; }
  .concierge-card { min-height: 490px; padding: 24px; }
  .store-grid { grid-template-columns: 1fr; }
  .planner-overlay { padding: 0; align-items: end; }
  .planner-modal { max-height: 94svh; padding: 44px 22px 30px; overflow-y: auto; }
  .planner-modal h2 { font-size: 39px; }
  .planner-options, .planner-options--duration { grid-template-columns: 1fr; }
  .planner-share { grid-template-columns: 1fr; }
}

html[dir="rtl"] body {
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

html[dir="rtl"] .hero__content,
html[dir="rtl"] .intro__copy,
html[dir="rtl"] .concierge__copy,
html[dir="rtl"] .finder,
html[dir="rtl"] .day-plan,
html[dir="rtl"] .services,
html[dir="rtl"] .about__copy,
html[dir="rtl"] .visit__content {
  text-align: right;
}

html[dir="rtl"] .experience-card__number {
  right: auto;
  left: 24px;
}

html[dir="rtl"] .mobile-menu__panel {
  right: auto;
  left: 0;
}

html[dir="rtl"] .mobile-menu__panel > button {
  text-align: right;
}

html[dir="rtl"] .planner-modal::before {
  left: auto;
  right: 0;
}

html[dir="rtl"] .planner-modal__close {
  right: auto;
  left: 22px;
}

html[dir="rtl"] .planner-modal__brand span {
  margin-right: 10px;
  margin-left: 0;
}

html[dir="rtl"] .planner-back {
  direction: ltr;
}

/* XAMPP static edition */
[hidden] { display: none !important; }
.container { width: min(1280px, calc(100% - 96px)); margin-inline: auto; }
.section { padding-block: 120px; }
.topbar { height: 38px; background: #0b0b0a; color: rgba(255,255,255,.72); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.topbar-inner { height: 100%; display: flex; align-items: center; gap: 10px; }
.topbar-inner a { margin-inline-start: auto; color: white; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #4de18f; box-shadow: 0 0 0 4px rgba(77,225,143,.13); }
.live-dot.closed { background: var(--red); box-shadow: 0 0 0 4px rgba(239,23,79,.13); }

.site-header { position: sticky; top: 0; z-index: 50; height: 82px; padding: 0; display: block; color: var(--ink); background: rgba(243,240,233,.94); border-bottom: 1px solid rgba(16,16,16,.1); backdrop-filter: blur(18px); }
.nav-wrap { height: 100%; display: grid; grid-template-columns: 220px 1fr auto; align-items: center; }
.brand img { width: 166px; height: auto; filter: none; }
.main-nav { display: flex; justify-content: center; gap: 34px; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.main-nav a { position: relative; padding-block: 8px; }
.main-nav a::after { content: ""; position: absolute; inset-inline: 0; bottom: 0; height: 2px; background: var(--red); transform: scaleX(0); transition: transform .25s; }
.main-nav a:hover::after { transform: scaleX(1); }
.lang-switch { display: flex; padding: 4px; border: 1px solid rgba(16,16,16,.14); border-radius: 999px; }
.lang-btn { border: 0; background: transparent; min-width: 39px; padding: 8px; border-radius: 999px; cursor: pointer; font-size: 10px; font-weight: 800; }
.lang-btn.active { color: white; background: var(--ink); }
.menu-toggle { display: none; }

.hero { min-height: calc(100svh - 120px); height: auto; max-height: none; display: flex; align-items: center; padding: 100px 0 138px; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 58% center; filter: saturate(.78) contrast(1.08) brightness(.74); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(10,13,15,.92),rgba(10,13,15,.52) 48%,rgba(10,13,15,.1)),linear-gradient(0deg,rgba(5,7,9,.8),transparent 45%); }
.hero-content { position: relative; z-index: 3; padding-inline-end: 44%; }
.eyebrow { margin-bottom: 22px; color: rgba(255,255,255,.72); font-size: 10px; font-weight: 900; letter-spacing: .26em; }
.eyebrow.dark { color: var(--red); }
.hero h1 { max-width: 750px; font: 400 clamp(58px,7vw,108px)/.89 Georgia,"Times New Roman",serif; letter-spacing: -.06em; }
.hero-copy { max-width: 560px; margin-top: 32px; color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; margin-top: 38px; }
.btn { display: inline-flex; min-height: 54px; padding: 0 24px; align-items: center; justify-content: center; border: 1px solid transparent; cursor: pointer; font-size: 11px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; transition: transform .2s,background .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: white; }
.btn-ghost { border-color: rgba(255,255,255,.42); color: white; background: rgba(255,255,255,.04); }
.btn-light { background: white; color: var(--ink); }
.hero-stats { position: absolute; z-index: 3; inset-inline: 0; bottom: 0; min-height: 96px; display: grid; grid-template-columns: repeat(3,180px); align-items: center; border-top: 1px solid rgba(255,255,255,.2); }
.hero-stats div { display: flex; align-items: baseline; gap: 9px; border-inline-end: 1px solid rgba(255,255,255,.2); }
.hero-stats strong { font: 400 28px Georgia,serif; }
.hero-stats span { color: rgba(255,255,255,.58); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }

.intro { padding-block: 130px 96px; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10%; align-items: start; }
.intro h2,.section-heading h2,.finder-head h2,.services h2 { font: 400 clamp(45px,5.5vw,78px)/.98 Georgia,"Times New Roman",serif; letter-spacing: -.045em; }
.lead { font-size: 21px; line-height: 1.7; color: #4e4b46; }
.text-link { display: inline-block; margin-top: 34px; padding-bottom: 7px; border-bottom: 1px solid; font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.text-link span { color: var(--red); margin-inline-start: 8px; }

.experience-grid { display: grid; grid-template-columns: 1.25fr 1fr; grid-template-rows: repeat(2,360px); gap: 12px; padding-bottom: 120px; }
.experience-card { position: relative; min-height: 0; overflow: hidden; background: #222; }
.experience-card.large { grid-row: 1 / span 2; }
.experience-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.experience-card:hover img { transform: scale(1.04); }
.experience-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(5,7,9,.82),transparent 65%); }
.card-overlay { position: absolute; z-index: 2; inset-inline: 34px; bottom: 32px; }
.card-overlay span { color: #ff7898; font-size: 10px; font-weight: 900; letter-spacing: .2em; }
.card-overlay h3 { margin-top: 9px; max-width: 520px; color: white; font: 400 clamp(28px,3vw,45px)/1.05 Georgia,serif; }

.concierge { position: relative; overflow: hidden; color: white; background: #101010; }
.concierge::before { content: ""; position: absolute; width: 700px; height: 700px; inset-inline-end: -180px; top: -240px; border-radius: 50%; background: radial-gradient(circle,rgba(239,23,79,.32),transparent 68%); }
.concierge-shell { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 10%; }
.concierge-copy h2 { max-width: 700px; font: 400 clamp(48px,6vw,86px)/.95 Georgia,serif; letter-spacing: -.05em; }
.concierge-copy > p:not(.eyebrow) { max-width: 610px; margin: 28px 0 38px; color: rgba(255,255,255,.65); font-size: 17px; line-height: 1.7; }
.concierge-preview { display: flex; justify-content: center; }
.phone-card { width: min(390px,100%); padding: 24px; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.07); backdrop-filter: blur(15px); transform: rotate(2deg); }
.phone-card > span { display: block; padding-bottom: 20px; color: rgba(255,255,255,.5); font-size: 11px; }
.route-chip { display: flex; align-items: center; gap: 15px; padding: 17px; background: white; color: var(--ink); }
.route-chip b { color: var(--red); font: 400 26px Georgia,serif; }
.route-chip p { font-weight: 800; }
.route-chip small { display:block; margin-top:5px; color:#777; font-weight:400; }
.route-line { height: 36px; margin-inline-start: 30px; border-inline-start: 1px dashed rgba(255,255,255,.5); }

.brands { background: white; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.brand-logos { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 70px; border-top: 1px solid var(--line); border-inline-start: 1px solid var(--line); }
.brand-logos div { min-height: 150px; display: grid; place-items: center; border-inline-end: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 20px; font-weight: 900; letter-spacing: .03em; }

.store-finder { background: var(--paper); }
.finder-head { display: grid; grid-template-columns: 1.3fr .7fr; gap: 10%; align-items: end; }
.finder-head > p { color: #666158; font-size: 16px; line-height: 1.7; }
.search-box { width: 100%; height: 74px; margin-top: 60px; padding: 0 24px; display: flex; align-items: center; gap: 14px; background: white; border-bottom: 2px solid var(--ink); }
.search-box span { color: var(--red); font-size: 25px; }
.search-box input { width: 100%; border: 0; outline: 0; background: transparent; font-size: 20px; }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0; }
.filter-btn { padding: 11px 16px; border: 1px solid var(--line); border-radius: 100px; background: transparent; cursor: pointer; font-size: 11px; font-weight: 800; }
.filter-btn[aria-pressed="true"] { border-color: var(--ink); background: var(--ink); color: white; }
.result-count { margin: 28px 0 18px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.store-grid { width: auto; margin: 0; grid-template-columns: repeat(3,1fr); }

.services { background: #e6e1d8; }
.services > .container > h2 { max-width: 800px; }
.service-grid { margin-top: 62px; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-inline-start: 1px solid var(--line); }
.service-grid article { min-height: 260px; padding: 32px; border-inline-end: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-grid article > span { color: var(--red); font-size: 25px; }
.service-grid h3 { margin-top: 60px; font: 400 25px Georgia,serif; }
.service-grid p { margin-top: 12px; color: #6f6a62; line-height: 1.6; }

.visit { min-height: 680px; display: grid; grid-template-columns: 1fr 1fr; background: #101010; color: white; }
.visit-photo { overflow: hidden; }
.visit-photo img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.7) saturate(.7); }
.visit-content { padding: 100px 9%; display: flex; flex-direction: column; justify-content: center; }
.visit-content h2 { font: 400 clamp(50px,6vw,85px)/.95 Georgia,serif; letter-spacing: -.05em; }
.visit dl { margin: 45px 0 38px; }
.visit dl > div { display: grid; grid-template-columns: 150px 1fr; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.18); }
.visit dt { color: rgba(255,255,255,.52); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.visit dd { margin: 0; line-height: 1.6; }

.footer { padding-top: 70px; background: #090909; color: white; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: start; gap: 10%; }
.footer-grid img { width: 180px; filter: brightness(0) invert(1); }
.footer-grid p { color: rgba(255,255,255,.55); line-height: 1.65; }
.footer-grid > div { display: flex; justify-content: flex-end; gap: 20px; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.footer-bottom { margin-top: 55px; padding-block: 20px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.4); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }

body.modal-open { overflow: hidden; }
.planner-modal { position: fixed; z-index: 100; inset: 0; width: auto; max-width: none; padding: 0; overflow: auto; background: transparent; }
.planner-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.76); backdrop-filter: blur(9px); }
.planner-panel { position: relative; width: min(720px,calc(100% - 32px)); min-height: 100%; margin-inline-start: auto; padding: 64px; background: var(--paper); box-shadow: -30px 0 80px rgba(0,0,0,.3); }
.planner-close { position: absolute; top: 22px; inset-inline-end: 24px; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; font-size: 28px; }
.planner-panel > h2,.generated-route h2 { max-width: 550px; margin-bottom: 14px; font: 400 clamp(40px,5vw,62px)/.98 Georgia,serif; letter-spacing: -.04em; }
.planner-panel > p,.generated-route > p { color: var(--muted); line-height: 1.6; }
.planner-panel > h3 { margin: 38px 0 14px; font-size: 11px; text-transform: uppercase; letter-spacing: .13em; }
.planner-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.planner-options button { min-height: 52px; padding: 10px 14px; border: 1px solid var(--line); background: white; cursor: pointer; text-align: start; font-weight: 800; }
.planner-options button[aria-pressed="true"] { background: var(--ink); color: white; border-color: var(--ink); }
.planner-options--duration { grid-template-columns: repeat(3,1fr); }
.planner-generate { width: 100%; margin-top: 30px; }
.generated-route { margin-top: 56px; padding-top: 46px; border-top: 1px solid var(--line); }
.planner-route { margin: 28px 0; padding: 0; list-style: none; }
.planner-route li { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; min-height: 68px; border-bottom: 1px solid var(--line); }
.planner-route strong { color: var(--red); font: 400 24px Georgia,serif; }
.planner-route li div span { display:block; font-weight:900; }
.planner-route small { display:block; margin-top:4px; color:var(--muted); }
.planner-route i { font-style:normal; color:var(--red); }
.planner-share { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.planner-share button,.planner-share a { min-height: 52px; display:grid; place-items:center; border:0; background:var(--ink); color:white; font-size:11px; font-weight:900; text-transform:uppercase; }
.planner-share a { background:var(--red); }
.planner-back { margin-top:22px; border:0; background:transparent; cursor:pointer; font-weight:800; }

html[dir="rtl"] body { font-family: Arial,"Tahoma",sans-serif; }
html[dir="rtl"] .hero-shade { transform: scaleX(-1); }
html[dir="rtl"] .hero-content { padding-inline-end: 0; padding-inline-start: 44%; }

@media (max-width: 900px) {
  .container { width: calc(100% - 40px); }
  .section { padding-block: 82px; }
  .nav-wrap { grid-template-columns: 1fr auto auto; gap: 12px; }
  .brand img { width: 140px; }
  .menu-toggle { width:40px; height:40px; padding:11px; display:flex; flex-direction:column; justify-content:center; gap:6px; border:1px solid var(--line); background:transparent; }
  .menu-toggle span { display:block; height:1px; background:var(--ink); }
  .main-nav { position:absolute; top:82px; inset-inline:0; padding:20px; display:none; flex-direction:column; gap:4px; background:var(--paper); border-bottom:1px solid var(--line); }
  .main-nav.open { display:flex; }
  .main-nav a { padding:14px 0; }
  .hero { min-height:780px; padding:80px 0 130px; }
  .hero-content { padding-inline-end:10%; }
  .hero h1 { font-size:clamp(52px,15vw,76px); }
  .hero-stats { grid-template-columns:repeat(3,1fr); }
  .intro-grid,.concierge-shell,.finder-head { grid-template-columns:1fr; gap:40px; }
  .experience-grid { grid-template-columns:1fr; grid-template-rows:520px 330px 330px; }
  .experience-card.large { grid-row:auto; }
  .brand-logos { grid-template-columns:repeat(2,1fr); }
  .store-grid { grid-template-columns:repeat(2,1fr); }
  .service-grid { grid-template-columns:repeat(2,1fr); }
  .visit { grid-template-columns:1fr; }
  .visit-photo { height:430px; }
  .footer-grid { grid-template-columns:1fr; gap:30px; }
  .footer-grid > div { justify-content:flex-start; }
}

@media (max-width: 560px) {
  .container { width:calc(100% - 28px); }
  .topbar { font-size:8px; }
  .topbar-inner a { display:none; }
  .site-header { height:72px; }
  .main-nav { top:72px; }
  .brand img { width:120px; }
  .lang-btn { min-width:32px; padding:7px 5px; }
  .hero { min-height:700px; padding-top:60px; }
  .hero-content { padding:0; }
  .hero h1 { font-size:52px; }
  .hero-copy { font-size:15px; }
  .hero-actions { align-items:stretch; flex-direction:column; width:100%; }
  .hero-stats { min-height:78px; }
  .hero-stats strong { font-size:21px; }
  .hero-stats span { font-size:8px; }
  .intro { padding-block:78px 58px; }
  .intro-grid { gap:25px; }
  .intro h2,.section-heading h2,.finder-head h2,.services h2 { font-size:44px; }
  .lead { font-size:17px; }
  .experience-grid { grid-template-rows:430px 270px 270px; padding-bottom:80px; }
  .card-overlay { inset-inline:22px; bottom:22px; }
  .concierge-copy h2 { font-size:48px; }
  .concierge-preview { margin-top:20px; }
  .section-heading { align-items:start; flex-direction:column; }
  .brand-logos { margin-top:40px; }
  .brand-logos div { min-height:105px; font-size:14px; }
  .search-box { height:62px; margin-top:40px; }
  .store-grid { grid-template-columns:1fr; }
  .service-grid { grid-template-columns:1fr; }
  .service-grid article { min-height:220px; }
  .visit-photo { height:300px; }
  .visit-content { padding:72px 28px; }
  .visit dl > div { grid-template-columns:1fr; gap:8px; }
  .footer-bottom { gap:15px; flex-direction:column; }
  .planner-panel { width:100%; padding:58px 22px 32px; }
  .planner-options,.planner-options--duration,.planner-share { grid-template-columns:1fr; }
  html[dir="rtl"] .hero-content { padding:0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .brand-ticker__track { animation: none; }
  .experience-card img, .button, .day-plan__timeline li { transition: none; }
}
