:root {
  --amber: #c9a84c;
  --amber-light: #e8cc7a;
  --amber-pale: #fdf6e3;
  --amber-mid: #9a7530;
  --white: #ffffff;
  --off: #f9f7f4;
  --beige: #f3ede1;
  --beige-strong: #efe4d3;
  --beige-2: #e8ddcc;
  --charcoal: #1c1c1e;
  --charcoal-2: #2c2c2e;
  --gray: #555555;
  --gray-light: #888888;
  --border: #e2d9cc;
  --border-strong: #c4b89e;
  --shadow-soft: 0 1.75rem 4rem rgba(31, 24, 13, 0.08);
  --shadow-card: 0 1rem 2.5rem rgba(32, 24, 10, 0.1);
  --shadow-dark: 0 1.25rem 3rem rgba(0, 0, 0, 0.18);
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --max-width: 81.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(201, 168, 76, 0.14), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #fbf8f3 100%);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
}

::selection {
  background: rgba(201, 168, 76, 0.22);
}

.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;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.2rem 4rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 217, 204, 0.9);
  box-shadow: 0 0.5rem 1.5rem rgba(31, 24, 13, 0.04);
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
  flex-shrink: 0;
}

.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.05em;
  line-height: 1;
}

.nav-logo span,
.footer-logo span {
  color: var(--amber);
}

.nav-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
  font-weight: 400;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex: 1;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--gray);
  font-weight: 400;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--amber);
}

.nav-cta,
.btn-dark,
.btn-ghost,
.ftab,
.slider-arrow,
.sdot,
.nav-toggle {
  min-height: 3rem;
}

.nav-cta,
.btn-dark,
.btn-ghost {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.nav-cta,
.btn-dark {
  border: none;
  background: var(--charcoal);
  color: var(--white);
  box-shadow: 0 0.75rem 1.5rem rgba(28, 28, 30, 0.12);
}

.nav-cta:hover,
.btn-dark:hover,
.btn-dark:focus-visible {
  background: var(--charcoal-2);
  transform: translateY(-0.08rem);
}

.nav-cta {
  padding: 0.7rem 1.8rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 3rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 0.125rem;
  border-radius: 999px;
  background: var(--charcoal);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(0.375rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-0.375rem) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 4.875rem;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3.5rem 5rem 4rem;
  background:
    radial-gradient(circle at 15% 15%, rgba(201, 168, 76, 0.09), transparent 18rem),
    var(--off);
}

.hero-right {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 18, 16, 0.08), rgba(19, 18, 16, 0.28));
  pointer-events: none;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1;
  background: rgba(201, 168, 76, 0.92);
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 0.75rem 2rem rgba(78, 56, 19, 0.2);
}

.status-pill,
.eyebrow,
.showcase-eyebrow,
.arrival-pre,
.acard-label,
.citem-label,
.form-label,
.slide-tag,
.stat-lbl,
.lm-label {
  text-transform: uppercase;
  font-weight: 500;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  background: rgba(253, 246, 227, 0.88);
  border: 1.5px solid rgba(232, 204, 122, 0.8);
  color: var(--amber-mid);
  margin-bottom: 2rem;
  border-radius: 999px;
}

.status-pill::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.42);
  }

  50% {
    opacity: 0.45;
    box-shadow: 0 0 0 0.45rem rgba(201, 168, 76, 0);
  }
}

.hero-eyebrow,
.eyebrow,
.showcase-eyebrow,
.arrival-pre,
.form-label,
.citem-label,
.acard-label,
.slide-tag,
.stat-lbl,
.lm-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.hero-eyebrow {
  color: var(--amber-mid);
  margin: 0 0 1rem;
}

.hero-title,
.section-title,
.showcase-title,
.floor-name,
.arrival-heading,
.acard-title,
.footer-logo {
  font-family: "Playfair Display", serif;
}

.hero-title {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--charcoal);
}

.hero-title em,
.section-title em,
.showcase-title em,
.arrival-heading em,
.slide-name em {
  font-style: italic;
  font-weight: 400;
}

.hero-title em,
.section-title em,
.arrival-heading em {
  color: var(--amber);
}

.hero-rule,
.about-rule {
  height: 0.1875rem;
  background: var(--amber);
}

.hero-rule {
  width: 3.25rem;
  margin: 1.8rem 0;
  border-radius: 999px;
}

.hero-desc,
.section-body,
.feat-desc,
.slide-desc,
.floor-desc,
.acard-desc,
.citem-text,
.footer-copy,
.lm-name {
  font-weight: 300;
}

.hero-desc {
  margin: 0 0 2.5rem;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--gray);
  max-width: 28.75rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-dark,
.btn-ghost {
  padding: 1rem 2.4rem;
  border-radius: 999px;
}

.btn-ghost {
  border: 2px solid rgba(196, 184, 158, 0.95);
  background: transparent;
  color: var(--charcoal);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-0.08rem);
}

.stats-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background:
    linear-gradient(180deg, rgba(34, 34, 36, 0.96), rgba(20, 20, 21, 0.98)),
    var(--charcoal);
  width: 100%;
  overflow: hidden;
}

.stat {
  padding: 2.2rem 3rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  flex: 1;
  min-width: 0;
}

.stat:last-child {
  border-right: none;
}

.stat-num {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--amber);
  line-height: 1;
}

.stat-lbl {
  display: block;
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.45);
}

.about-wrap {
  background: var(--white);
}

.section,
.arrival-inner,
.showcase-inner {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.eyebrow,
.showcase-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 0.8rem;
}

.eyebrow {
  color: var(--amber-mid);
}

.eyebrow::after,
.showcase-eyebrow::after {
  content: "";
  flex: 0 0 2rem;
  height: 0.125rem;
}

.eyebrow::after {
  background: var(--amber);
}

.showcase-eyebrow::after {
  background: var(--amber-mid);
}

.section-title,
.showcase-title {
  margin: 0 0 1.2rem;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
}

.section-body {
  margin: 0;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--gray);
  max-width: 36.25rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.img-stack {
  position: relative;
  height: 32.5rem;
}

.img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 85%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.14);
}

.img-accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54%;
  height: 48%;
  object-fit: cover;
  border: 0.3125rem solid var(--white);
  border-radius: 1.25rem;
  box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.14);
}

.about-rule {
  width: 2.75rem;
  margin: 1.6rem 0;
  border-radius: 999px;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.feat-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.2rem 2rem;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  overflow: hidden;
}

.feat-card:hover {
  transform: translateY(-0.2rem);
  background: var(--white);
  border-color: rgba(201, 168, 76, 0.6);
  box-shadow: 0 0.75rem 2rem rgba(201, 168, 76, 0.14);
}

.feat-title {
  margin: 0 0 0.6rem;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
}

.feat-desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--gray);
}

.feat-card.vcard {
  padding: 0;
  background: var(--white);
}

.vcard-img {
  width: 100%;
  height: 12.5rem;
  overflow: hidden;
}

.vcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feat-card.vcard:hover .vcard-img img {
  transform: scale(1.04);
}

.vcard-body {
  padding: 1.5rem 1.8rem 1.8rem;
}

.vcard-body .feat-title {
  margin-bottom: 0.4rem;
}

.vcard-body .feat-desc {
  font-size: 0.88rem;
}

.showcase-wrap {
  background:
    radial-gradient(circle at top right, rgba(201, 168, 76, 0.12), transparent 25rem),
    var(--charcoal);
}

.showcase-inner {
  padding: 6rem 4rem;
}

.showcase-eyebrow {
  color: var(--amber);
}

.showcase-title {
  margin-bottom: 0.8rem;
  color: var(--white);
}

.showcase-title em {
  color: var(--amber-light);
}

.slider-wrap {
  position: relative;
  width: 100%;
  margin-top: 2.5rem;
  overflow: hidden;
  border-radius: 1.75rem;
  box-shadow: var(--shadow-dark);
}

.slider-track {
  display: flex;
  overflow-x: auto;
  width: 100%;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  background: var(--charcoal-2);
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.slide {
  display: grid;
  grid-template-columns: 3fr 2fr;
  flex: 0 0 100%;
  width: 100%;
  min-height: 35rem;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: var(--charcoal-2);
}

.slide-img {
  position: relative;
  overflow: hidden;
}

.slide-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 12, 13, 0.04), rgba(12, 12, 13, 0.12));
}

.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-img-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 1rem 1.5rem;
  background: linear-gradient(transparent, rgba(13, 13, 13, 0.78));
}

.slide-tag {
  color: var(--amber);
}

.slide-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
  padding: 3rem 3rem 3rem 3.5rem;
}

.slide-name {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
}

.slide-name em {
  color: var(--amber-light);
}

.slide-desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.62);
}

.slide-feats {
  list-style: none;
  margin: 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.slide-feats li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.58);
}

.slide-feats li::before {
  content: "";
  width: 0.3125rem;
  height: 0.3125rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--amber);
}

.slider-arrow {
  position: absolute;
  top: 45%;
  z-index: 10;
  width: 3rem;
  height: 3rem;
  padding: 0;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
  background: var(--amber);
  border-color: var(--amber);
}

.slider-prev {
  left: 1rem;
}

.slider-next {
  right: 1rem;
}

.slider-arrow.hidden,
.slider-arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding: 1.2rem 0 0;
  background: var(--charcoal-2);
}

.sdot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.25s ease;
}

.sdot.active,
.sdot[aria-selected="true"] {
  width: 1.5rem;
  border-radius: 0.25rem;
  background: var(--amber);
}

.floors-wrap {
  background:
    linear-gradient(180deg, rgba(243, 237, 225, 0.92), rgba(250, 247, 242, 0.94)),
    var(--beige);
}

.floor-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 3rem;
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}

.floor-tabs::-webkit-scrollbar {
  display: none;
}

.ftab {
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  padding: 1.1rem 2rem;
  color: var(--gray);
  margin-bottom: -2px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-weight: 400;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.ftab.active,
.ftab[aria-selected="true"] {
  color: var(--amber-mid);
  border-bottom-color: var(--amber);
  font-weight: 600;
}

.ftab:hover,
.ftab:focus-visible {
  color: var(--charcoal);
}

.floor-panel {
  display: none;
}

.floor-panel.active {
  display: grid;
  grid-template-columns: minmax(0, 40rem) minmax(16rem, 24rem);
  gap: 4rem;
  align-items: start;
}

.floor-panel::after {
  display: none;
}

.floor-num {
  margin-bottom: 0.3rem;
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--beige-2);
}

.floor-name {
  margin: 0 0 0.5rem;
  font-size: 2rem;
  font-weight: 600;
  color: var(--charcoal);
}

.floor-desc {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--gray);
}

.floor-rooms {
  list-style: none;
  margin: 0;
  padding: 0;
}

.floor-rooms li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--charcoal-2);
}

.floor-rooms li::before {
  content: "";
  width: 0.4375rem;
  height: 0.4375rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--amber);
}

.floor-visual {
  position: relative;
  min-height: 32rem;
  overflow: hidden;
  border: 1px solid rgba(196, 184, 158, 0.45);
  border-radius: 1.5rem;
  box-shadow: 0 1.25rem 3.4rem rgba(0, 0, 0, 0.2);
}

.floor-visual::before,
.floor-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.floor-visual::before {
  background:
    linear-gradient(180deg, rgba(6, 10, 19, 0.08), rgba(4, 7, 13, 0.34)),
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.08), transparent 24%);
}

.floor-visual::after {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: inherit;
}

.floor-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 32rem;
  object-fit: cover;
  background: #03070f;
  filter: saturate(1.02) contrast(1.02) brightness(0.9);
}

.location-wrap {
  background: var(--white);
}

.loc-wrap {
  display: block;
}

.loc-info {
  padding: 5rem 4rem;
  background:
    radial-gradient(circle at top left, rgba(201, 168, 76, 0.1), transparent 20rem),
    var(--beige);
}

.location-title {
  font-size: 2.6rem;
}

.landmarks {
  margin: 2rem 0 0;
}

.landmark {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(196, 184, 158, 0.55);
}

.landmark:first-child {
  border-top: 1px solid rgba(196, 184, 158, 0.55);
}

.lm-time {
  min-width: 4.6875rem;
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  color: var(--amber);
}

.lm-min {
  font-size: 0.9rem;
  color: var(--amber-mid);
}

.lm-label {
  margin-bottom: 0.2rem;
  color: var(--gray-light);
}

.lm-name {
  font-size: 1rem;
  color: var(--charcoal);
  font-weight: 500;
}

.arrival-wrap {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.arrival-inner {
  padding: 5rem 4rem;
}

.arrival-pre {
  margin-bottom: 0.6rem;
  color: var(--gray-light);
}

.arrival-heading {
  margin: 0 0 3rem;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--charcoal);
}

.arrival-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.acard {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.acard::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0.1875rem;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.acard:hover,
.acard:focus-visible {
  transform: translateY(-0.18rem);
  background: var(--white);
  border-color: var(--amber);
  box-shadow: 0 0.75rem 2rem rgba(201, 168, 76, 0.15);
}

.acard:hover::after,
.acard:focus-visible::after {
  transform: scaleX(1);
}

.acard-icon {
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-pale);
  border: 1.5px solid rgba(232, 204, 122, 0.85);
  border-radius: 1rem;
  color: var(--amber-mid);
  transition: all 0.3s ease;
}

.acard:hover .acard-icon,
.acard:focus-visible .acard-icon {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--white);
}

.acard-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gray-light);
}

.acard-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
}

.acard-desc {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--gray);
}

.acard-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-mid);
  font-weight: 600;
  transition: gap 0.25s ease;
}

.acard:hover .acard-cta,
.acard:focus-visible .acard-cta {
  gap: 0.9rem;
}

.acard-cta svg {
  width: 0.8125rem;
  height: 0.8125rem;
}

.contact-wrap {
  background:
    radial-gradient(circle at top right, rgba(201, 168, 76, 0.08), transparent 18rem),
    var(--beige);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 4rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.contact-panel {
  padding: 2rem;
  border: 1.5px solid rgba(226, 217, 204, 0.95);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 1.25rem 2.5rem rgba(39, 39, 39, 0.08);
}

.contact-panel-copy {
  margin: 0;
  color: var(--gray);
  line-height: 1.8;
}

.contact-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-panel-map {
  color: var(--amber-mid);
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-panel-map:hover,
.contact-panel-map:focus-visible {
  color: var(--amber);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--gray);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1.5px solid rgba(226, 217, 204, 0.95);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--charcoal);
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray-light);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(201, 168, 76, 0.95);
  box-shadow: 0 0 0 0.25rem rgba(201, 168, 76, 0.12);
  background: var(--white);
}

.form-textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #555555 50%),
    linear-gradient(135deg, #555555 50%, transparent 50%);
  background-position:
    calc(100% - 1.125rem) calc(1.15rem + 0.0625rem),
    calc(100% - 0.75rem) calc(1.15rem + 0.0625rem);
  background-size: 0.4375rem 0.4375rem, 0.4375rem 0.4375rem;
  background-repeat: no-repeat;
}

.form-submit {
  align-self: flex-start;
}

.form-submit[aria-busy="true"] {
  opacity: 0.82;
  pointer-events: none;
}

.form-submit.is-success {
  background: var(--amber);
  color: var(--charcoal);
  box-shadow: 0 0.85rem 1.8rem rgba(201, 168, 76, 0.22);
}

.form-submit.is-error {
  background: #8c3d2a;
  animation: shake 0.35s ease;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-0.25rem);
  }

  75% {
    transform: translateX(0.25rem);
  }
}

.contact-details {
  padding-top: 0.5rem;
}

.contact-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(196, 184, 158, 0.45);
}

.contact-item:last-child {
  border-bottom: none;
}

.citem-icon {
  width: 2.625rem;
  height: 2.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid rgba(226, 217, 204, 0.95);
  border-radius: 0.875rem;
  font-size: 1rem;
}

.citem-label {
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--gray-light);
}

.citem-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--charcoal);
}

.citem-text a {
  color: var(--amber-mid);
  font-weight: 500;
}

.citem-text a:hover,
.citem-text a:focus-visible {
  color: var(--amber);
}

footer {
  background:
    radial-gradient(circle at top center, rgba(201, 168, 76, 0.1), transparent 20rem),
    var(--charcoal);
  padding: 3.5rem 4rem 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}

.footer-tag {
  margin-top: 0.3rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
}

.footer-contacts {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.footer-contacts a,
.footer-contacts span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contacts a:hover,
.footer-contacts a:focus-visible {
  color: var(--amber);
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--amber);
}

.footer-copy {
  padding-top: 2rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-right {
    min-height: 23.75rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .img-stack {
    height: 21.875rem;
  }

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

  .floor-panel.active {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .floor-panel::after {
    display: none;
  }

  .loc-info {
    padding: 3.5rem 2rem;
  }

  .arrival-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-nav {
    padding: 1rem 1.5rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1.5rem;
    left: 1.5rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(226, 217, 204, 0.95);
    border-radius: 1.25rem;
    box-shadow: var(--shadow-soft);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.9rem;
    margin: 0;
  }

  .nav-cta {
    width: 100%;
  }

  .section {
    padding: 3.5rem 0;
  }

  .showcase-inner {
    width: 100%;
    padding: 3rem 0 0;
  }

  .showcase-eyebrow,
  .showcase-title {
    padding: 0 1.5rem;
  }

  .hero-left {
    padding: 3rem 1.5rem;
  }

  .hero-right {
    min-height: 55vw;
  }

  .hero-badge {
    top: 1rem;
    right: 1rem;
  }

  .stat {
    padding: 1.5rem;
  }

  .stat-num {
    font-size: 2.2rem;
  }

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

  .slide {
    grid-template-columns: 1fr;
    grid-template-rows: 58vw auto;
    min-height: unset;
  }

  .slide-content {
    padding: 1.8rem 1.5rem 2rem;
    gap: 1rem;
  }

  .slide-name {
    font-size: 1.8rem;
  }

  .slide-desc {
    font-size: 0.92rem;
  }

  .slide-feats li {
    font-size: 0.85rem;
  }

  .slider-arrow {
    display: none;
  }

  .floor-panel.active {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-grid {
    gap: 2rem;
  }

  .loc-info {
    padding: 3rem 1.5rem;
  }

  .img-stack {
    height: 17.5rem;
  }

  .footer-top {
    flex-direction: column;
  }

  footer {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .section,
  .arrival-inner {
    width: min(calc(100% - 2.4rem), var(--max-width));
  }

  .section {
    padding: 3rem 0;
  }

  .hero-left {
    padding: 2.5rem 1.2rem;
  }

  .stat {
    flex: 0 0 50%;
    padding: 1.2rem 1rem;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.07);
  }

  .feat-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .arrival-inner {
    padding: 3rem 0;
  }

  .arrival-cards,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-panel-actions .btn-dark,
  .contact-panel-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .acard {
    padding: 1.8rem 1.4rem;
  }

  .slide-content {
    padding: 1.5rem 1.2rem 1.8rem;
  }

  .slide-name {
    font-size: 1.6rem;
  }

  .floor-num {
    font-size: 3.5rem;
  }

  .lm-time {
    min-width: 3.4375rem;
    font-size: 1.8rem;
  }

  .lm-name {
    font-size: 0.9rem;
  }

  .section-title,
  .showcase-title,
  .arrival-heading,
  .location-title {
    font-size: 1.9rem;
  }

  .feat-title {
    font-size: 1.1rem;
  }

  .footer-top {
    gap: 1.5rem;
  }

  .footer-contacts {
    gap: 0.9rem 1.4rem;
  }
}

.hero-right {
  min-height: 100%;
  background:
    radial-gradient(circle at 78% 14%, rgba(201, 168, 76, 0.16), transparent 18rem),
    linear-gradient(180deg, #f4ede2 0%, #eadfce 100%);
}

.hero-right::after {
  display: none;
}

.hero-stage,
.hero-portal,
.hero-portal__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-stage {
  isolation: isolate;
}

.hero-stage__backdrop,
.hero-stage__ring,
.hero-stage__panel,
.hero-portal__glow {
  display: none;
}

.hero-portal {
  padding: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  aspect-ratio: auto;
}

.hero-portal__frame {
  overflow: hidden;
  border: none;
  border-radius: 0;
  background: none;
}

.hero-portal__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(19, 18, 16, 0.05), rgba(19, 18, 16, 0.24)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.hero-portal__frame::after {
  display: none;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.02) contrast(1.02);
}

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