/* ============================================
   DRIFT AVENUE : LIFE+STYLE
   Custom Styles + Design Tokens
   Concierge Boulevard Theme
   ============================================ */

/* --- Design Tokens --- */
:root {
  --bg-primary: #FAF8F5;
  --bg-secondary: #F0EAE0;
  --bg-white: #FFFFFF;
  --text-primary: #1C1917;
  --text-secondary: #6B5E54;
  --text-tertiary: #9C8E82;
  --accent-gold: #A18A60;
  --accent-gold-hover: #8B7550;
  --accent-gold-light: #C4B08A;
  --accent-blush: #D4A89A;
  --accent-emerald: #2D5A47;
  --surface-dark: #2A2522;
  --surface-mist: #DED0C0;
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Jost', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 20px rgba(28, 25, 23, 0.04);
  --shadow-md: 0 4px 30px rgba(28, 25, 23, 0.08);
  --max-content: 1200px;
  --section-pad: 80px;
  --section-pad-mobile: 48px;
}

/* --- Base Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: 0.01em;
}

h3 {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  letter-spacing: 0.01em;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  color: var(--text-secondary);
  max-width: 65ch;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-gold);
}

a:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 4px;
  text-decoration: underline;
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

@media (min-width: 1024px) {
  .container { padding: 0 48px; }
}

.section {
  padding: var(--section-pad-mobile) 0;
}

@media (min-width: 768px) {
  .section { padding: var(--section-pad) 0; }
}

.section--cream {
  background-color: var(--bg-secondary);
}

.section--dark {
  background-color: var(--surface-dark);
  color: var(--bg-primary);
}

.section--dark p {
  color: var(--surface-mist);
}

.section--dark h2,
.section--dark h3 {
  color: var(--bg-primary);
}

.text-center { text-align: center; }
.text-center h2,
.text-center p,
.text-center hr { margin-left: auto; margin-right: auto; }
.text-secondary { color: var(--text-secondary); }
.text-tertiary { color: var(--text-tertiary); }
.text-gold { color: var(--accent-gold); }

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  font-size: 0.875rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: fit-content;
  padding-left: 0.12em;
}

.subhead {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  text-align: center;
}

.gold-divider {
  width: 60px;
  height: 2px;
  background-color: var(--accent-gold);
  border: none;
}

.gold-divider--center {
  margin: 16px auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 44px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 4px;
}

.btn--primary {
  background-color: var(--accent-gold);
  color: var(--text-primary);
}

.btn--primary:hover {
  background-color: var(--text-primary);
  color: var(--bg-primary);
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
}

.btn--ghost:hover {
  background-color: var(--accent-gold);
  color: var(--text-primary);
}

.btn--ghost-light {
  background: transparent;
  border: 1px solid var(--bg-primary);
  color: var(--bg-primary);
}

.btn--ghost-light:hover {
  background-color: var(--bg-primary);
  color: var(--surface-dark);
}

.btn--text {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--text-primary);
  cursor: pointer;
  transition: color var(--transition);
}

.btn--text:hover {
  color: var(--accent-gold);
}

.btn--text svg {
  transition: transform var(--transition);
}

.btn--text:hover svg {
  transform: translateX(4px);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 20px 0;
  background-color: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(222, 208, 192, 0.3);
  transition: all var(--transition);
}

.nav--scrolled {
  background-color: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(222, 208, 192, 0.3);
}

/* nav__inner: full-width, padding controls edge distance */
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .nav__inner { padding: 0 32px; }
}

/* Desktop: 3-column grid — logo left edge, links centered, Reserve right edge */
@media (min-width: 1024px) {
  .nav__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 48px;
  }
}

/* Logo — flush left */
.nav__logo {
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .nav__logo {
    grid-column: 1;
    justify-self: start;
  }
}

.nav__logo img {
  height: 48px;
  width: auto;
  display: block;
}

@media (min-width: 768px) {
  .nav__logo img { height: 56px; }
}

/* Actions group: flex on mobile, display:contents on desktop to split into grid columns */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (min-width: 1024px) {
  .nav__actions {
    display: contents;
  }
}

/* Desktop links — center column */
.nav__links {
  display: none;
  list-style: none;
  gap: 20px;
  align-items: center;
}

@media (min-width: 1024px) {
  .nav__links {
    display: flex;
    grid-column: 2;
    justify-content: center;
    gap: 28px;
  }
}

@media (min-width: 1440px) {
  .nav__links { gap: 36px; }
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition);
  white-space: nowrap;
}

@media (min-width: 1280px) {
  .nav__links a {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
  }
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--accent-gold);
}

/* Reserve button — always visible */
.nav__cta {
  display: inline-flex !important;
  flex-shrink: 0;
  font-size: 0.7rem;
  padding: 10px 18px;
}

@media (min-width: 1024px) {
  .nav__cta {
    grid-column: 3;
    justify-self: end;
    font-size: 0.8125rem;
    padding: 11px 26px;
    letter-spacing: 0.1em;
  }
}

/* Hamburger — mobile only */
.nav__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
}

@media (min-width: 1024px) {
  .nav__hamburger { display: none; }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background-color: var(--bg-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-menu--open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--accent-gold);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-primary);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
}

@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: 55% 45%;
  }
}

.hero__image {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero__image {
    height: 100vh;
    height: 100dvh;
  }
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 24px;
  background-color: var(--bg-primary);
}

@media (min-width: 768px) {
  .hero__content {
    padding: 80px 60px;
  }
}

@media (min-width: 1200px) {
  .hero__content {
    padding: 80px 80px;
  }
}

.hero__headline {
  margin-bottom: 20px;
  max-width: 480px;
}

.hero__subhead {
  margin-bottom: 36px;
  max-width: 420px;
}

.hero__micro {
  margin-top: 16px;
  font-size: 0.9375rem;
  color: var(--text-tertiary);
  font-style: italic;
}

/* --- Suite Cards --- */
.suites-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .suites-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.suite-card {
  background-color: var(--bg-white);
  padding: 40px 32px;
  border: 1px solid rgba(222, 208, 192, 0.12);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.suite-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.suite-card:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

.suite-card__icon {
  width: 32px;
  height: 32px;
  color: var(--accent-gold);
  margin-bottom: 24px;
}

.suite-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.suite-card__desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.suite-card__link {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--accent-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.suite-card:hover .suite-card__link {
  gap: 10px;
}

/* --- Quiz CTA --- */
.quiz-cta {
  padding: 64px 0;
}

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

@media (min-width: 768px) {
  .quiz-cta__inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.quiz-cta__steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quiz-cta__step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background-color: rgba(250, 248, 245, 0.05);
  border: 1px solid rgba(250, 248, 245, 0.08);
  font-size: 0.9375rem;
  color: var(--surface-mist);
  transition: all var(--transition);
}

.quiz-cta__step:hover {
  background-color: rgba(250, 248, 245, 0.08);
  border-color: rgba(161, 138, 96, 0.3);
}

.quiz-cta__step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  color: var(--surface-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  flex-shrink: 0;
}

/* --- Signature Consult --- */
.signature {
  background-color: var(--bg-secondary);
}

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

@media (min-width: 768px) {
  .signature__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.signature__list {
  list-style: none;
  margin: 24px 0 32px;
}

.signature__list li {
  padding: 8px 0;
  font-size: 1.0625rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.signature__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

.signature__price {
  font-family: var(--font-display);
  font-size: 1.3125rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.signature__note {
  font-size: 0.9375rem;
  color: var(--text-tertiary);
  font-style: italic;
  margin-top: 12px;
}

.signature__lookbook {
  position: relative;
  padding: 24px;
}

.lookbook-frame {
  background-color: var(--bg-white);
  border: 1px solid var(--surface-mist);
  box-shadow: var(--shadow-md);
  padding: 20px;
  position: relative;
}

.lookbook-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.lookbook-label {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-gold);
  color: var(--text-primary);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 20px;
  white-space: nowrap;
}

/* --- Arrivals (Testimonials) --- */
.arrivals__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 0 24px;
  margin-top: 48px;
}

.arrivals__track::-webkit-scrollbar {
  display: none;
}

.arrival-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background-color: var(--bg-white);
  border: 1px solid rgba(222, 208, 192, 0.12);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

@media (min-width: 768px) {
  .arrival-card {
    flex: 0 0 360px;
  }
}

.arrival-card__image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
}

.arrival-card__body {
  padding: 24px;
}

.arrival-card__quote {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.arrival-card__name {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.arrival-card__tag {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 12px;
  background-color: var(--bg-secondary);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

/* --- Process Steps --- */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
  position: relative;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

@media (min-width: 768px) {
  .process-grid::before {
    content: '';
    position: absolute;
    top: 20px;
    left: calc(12.5% + 12px);
    right: calc(12.5% + 12px);
    height: 1px;
    background-color: var(--surface-mist);
  }
}

.process-step {
  text-align: center;
  position: relative;
}

@media (max-width: 767px) {
  .process-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    text-align: left;
  }
}

.process-step__number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .process-step__number {
    margin: 0;
  }
}

.process-step__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.process-step__desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 220px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .process-step__desc { margin: 0; }
}

/* --- Availability --- */
.availability {
  text-align: center;
}

.availability__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* --- Accordion (FAQ) --- */
.accordion {
  max-width: 700px;
  margin: 48px auto 0;
}

.accordion__item {
  border-bottom: 1px solid rgba(222, 208, 192, 0.3);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--text-primary);
  text-align: left;
  line-height: 1.5;
}

.accordion__trigger:hover {
  color: var(--accent-gold);
}

.accordion__trigger:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

.accordion__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--text-tertiary);
}

.accordion__item--open .accordion__icon {
  transform: rotate(180deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms ease;
}

.accordion__body {
  padding: 0 0 20px;
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Editorial Footer --- */
.editorial {
  background-color: var(--bg-secondary);
  text-align: center;
}

.editorial__portrait {
  width: 200px;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  margin: 0 auto 32px;
}

.editorial__quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-primary);
  max-width: 580px;
  margin: 0 auto 8px;
  line-height: 1.5;
}

.editorial__attribution {
  font-size: 0.9375rem;
  color: var(--text-tertiary);
  margin-bottom: 48px;
}

.newsletter {
  max-width: 420px;
  margin: 0 auto;
}

.newsletter__label {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.newsletter__form {
  display: flex;
  gap: 0;
}

.newsletter__input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid var(--surface-mist);
  border-right: none;
  background-color: var(--bg-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-primary);
  border-radius: 0;
}

.newsletter__input::placeholder {
  color: var(--text-tertiary);
}

.newsletter__input:focus {
  outline: none;
  border-color: var(--accent-gold);
}

.newsletter__submit {
  padding: 14px 24px;
  background-color: var(--accent-gold);
  color: var(--text-primary);
  border: 1px solid var(--accent-gold);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 0;
  white-space: nowrap;
}

.newsletter__submit:hover {
  background-color: var(--text-primary);
  border-color: var(--text-primary);
  color: var(--bg-primary);
}

/* --- Footer --- */
.footer {
  background-color: var(--surface-dark);
  color: var(--bg-primary);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 64px;
  }
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--bg-primary);
  margin-bottom: 4px;
}

.footer__brand-sub {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  transition: color var(--transition);
}

.footer__social a:hover {
  color: var(--accent-gold-light);
}

.footer__heading {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--surface-mist);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--accent-gold-light);
}

.footer__availability {
  font-size: 0.9375rem;
  color: var(--surface-mist);
  line-height: 1.6;
}

.footer__availability strong {
  color: var(--accent-gold-light);
  font-weight: 400;
}

.footer__bottom {
  border-top: 1px solid rgba(222, 208, 192, 0.12);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  color: var(--text-tertiary);
  font-size: 0.8125rem;
}

.footer__legal a:hover {
  color: var(--accent-gold-light);
}

/* --- Page Load Curtain --- */
.page-curtain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0, 1), visibility 0.8s;
}

body.loaded .page-curtain {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
  z-index: 9998;
  transition: width 50ms linear;
}

/* --- Cursor Glow --- */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(161, 138, 96, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  will-change: transform;
  transition: opacity 0.4s ease;
}

/* --- Scroll Reveal (Enhanced) --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Image Curtain Reveal --- */
.img-reveal {
  position: relative;
  overflow: hidden;
}

.img-reveal::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--accent-gold);
  transform-origin: left;
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 2;
}

.img-reveal--visible::after {
  transform: scaleX(0);
  transform-origin: right;
}

.img-reveal img {
  transform: scale(1.15);
  transition: transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.img-reveal--visible img {
  transform: scale(1);
}

/* --- Split Text Animation --- */
.split-text {
  overflow: hidden;
}

.split-word {
  display: inline-block;
  overflow: hidden;
}

.split-word__inner {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: calc(var(--word-i, 0) * 60ms);
}

.split-text--visible .split-word__inner {
  transform: translateY(0);
}

/* --- Stagger Children --- */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-children--visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: none; }
.stagger-children--visible > *:nth-child(2) { transition-delay: 80ms; opacity: 1; transform: none; }
.stagger-children--visible > *:nth-child(3) { transition-delay: 160ms; opacity: 1; transform: none; }
.stagger-children--visible > *:nth-child(4) { transition-delay: 240ms; opacity: 1; transform: none; }
.stagger-children--visible > *:nth-child(5) { transition-delay: 320ms; opacity: 1; transform: none; }
.stagger-children--visible > *:nth-child(6) { transition-delay: 400ms; opacity: 1; transform: none; }
.stagger-children--visible > *:nth-child(7) { transition-delay: 480ms; opacity: 1; transform: none; }
.stagger-children--visible > *:nth-child(8) { transition-delay: 560ms; opacity: 1; transform: none; }
.stagger-children--visible > *:nth-child(9) { transition-delay: 640ms; opacity: 1; transform: none; }

/* --- Gold Divider Grow Animation --- */
.gold-divider {
  width: 60px;
  height: 2px;
  background-color: var(--accent-gold);
  border: none;
  transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gold-divider--visible {
  transform: scaleX(1);
}

/* --- Hero Entrance Sequence --- */
.hero .hero__image {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0.4s;
}

.hero--entered .hero__image {
  clip-path: inset(0 0% 0 0);
}

.hero .hero__image img {
  transform: scale(1.08);
  transition: transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
}

.hero--entered .hero__image img {
  transform: scale(1);
}

.hero__content > * {
  opacity: 0;
  transform: translateY(30px);
}

.hero--entered .hero__content > *:nth-child(1) {
  animation: heroFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s forwards;
}
.hero--entered .hero__content > *:nth-child(2) {
  animation: heroFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.1s forwards;
}
.hero--entered .hero__content > *:nth-child(3) {
  animation: heroFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.3s forwards;
}
.hero--entered .hero__content > *:nth-child(4) {
  animation: heroFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s forwards;
}

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

/* --- Gold Shimmer on Accent Elements --- */
@keyframes goldShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.btn--primary {
  background-image: linear-gradient(
    110deg,
    var(--accent-gold) 0%,
    var(--accent-gold) 40%,
    var(--accent-gold-light) 50%,
    var(--accent-gold) 60%,
    var(--accent-gold) 100%
  );
  background-size: 200% 100%;
  background-color: var(--accent-gold);
  color: var(--text-primary);
}

.btn--primary:hover {
  animation: goldShimmer 1.2s ease forwards;
  background-color: var(--text-primary);
  color: var(--bg-primary);
}

/* --- Card Hover Lift (Enhanced) --- */
.suite-card {
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.suite-card:hover {
  box-shadow: 0 20px 60px rgba(28, 25, 23, 0.08), 0 4px 20px rgba(161, 138, 96, 0.06);
  transform: translateY(-6px);
}

.arrival-card {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.arrival-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(28, 25, 23, 0.08);
}

/* --- Nav Link Underline Animation --- */
.nav__links a {
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* --- Suite Card Icon Float --- */
.suite-card__icon {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.suite-card:hover .suite-card__icon {
  transform: translateY(-4px);
}

/* --- Accordion Smooth Open --- */
.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.accordion__icon {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Editorial Portrait Soft Float --- */
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.editorial__portrait {
  animation: gentleFloat 6s ease-in-out infinite;
}

/* --- Process Step Number Pulse --- */
.process-step__number {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.process-step:hover .process-step__number {
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(161, 138, 96, 0.25);
}

/* --- Lookbook Frame Subtle Tilt --- */
.lookbook-frame {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lookbook-frame:hover {
  transform: rotate(-1deg) scale(1.01);
  box-shadow: 0 20px 60px rgba(28, 25, 23, 0.12);
}

/* --- Footer Social Hover --- */
.footer__social a {
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer__social a:hover {
  transform: translateY(-2px);
}

/* --- Selection Color --- */
::selection {
  background-color: rgba(161, 138, 96, 0.2);
  color: var(--text-primary);
}

/* --- Reduced Motion Override --- */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .img-reveal::after,
  .img-reveal img,
  .split-word__inner,
  .stagger-children > *,
  .gold-divider,
  .hero__image,
  .hero__image img,
  .hero__content > * {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    transition: none !important;
    animation: none !important;
  }

  .img-reveal::after {
    display: none;
  }

  .cursor-glow,
  .page-curtain {
    display: none !important;
  }

  .editorial__portrait {
    animation: none;
  }

  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 12px 24px;
  background-color: var(--accent-gold);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  z-index: 200;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 16px;
}

/* --- Page Specific: Suites --- */
.suite-tier {
  background-color: var(--bg-white);
  border: 1px solid rgba(222, 208, 192, 0.12);
  box-shadow: var(--shadow-sm);
  padding: 0;
  transition: box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.suite-tier__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.suite-tier__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.suite-tier:hover {
  box-shadow: var(--shadow-md);
}

.suite-tier__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.suite-tier__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.suite-tier__outcome {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.suite-tier__detail {
  font-size: 0.9375rem;
  color: var(--text-tertiary);
  margin-bottom: 4px;
}

.suite-tier__includes {
  list-style: none;
  margin: 20px 0 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(222, 208, 192, 0.2);
}

.suite-tier__includes li {
  padding: 6px 0;
  font-size: 1rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.suite-tier__includes li::before {
  content: '';
  width: 5px;
  height: 5px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.suite-tier__price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-top: auto;
  padding-top: 24px;
}

/* --- VIP Callout --- */
.vip-callout {
  background-color: var(--surface-dark);
  color: var(--bg-primary);
  padding: 64px 48px;
  text-align: center;
  margin-top: 80px;
}

.vip-callout h3 {
  color: var(--accent-gold-light);
}

.vip-callout p {
  color: var(--surface-mist);
  max-width: 560px;
  margin: 16px auto 32px;
}

/* --- Tabs --- */
.tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(222, 208, 192, 0.3);
}

.tab {
  padding: 12px 32px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.tab:hover {
  color: var(--text-primary);
}

.tab--active {
  color: var(--text-primary);
  border-bottom-color: var(--accent-gold);
}

.tab-content {
  display: none;
}

.tab-content--active {
  display: block;
}
