:root{
  --nav-h: 62px;
  --pad-x: 80px;

  --text: #191311;
  --muted: #5E5048;

  --bg: #FAF7F2;
  --hover: #F0EBE3;

  --btn: #3A2F2A;

  --cream-border: #E5DDD3;
  --gold: #C9A96E;
  --gold-deep: #A8883D;
  --gold-pale: #F5EDD8;

  --shadow-1: 0 1px 2px rgba(16,24,40,0.05);

  --r8: 8px;
  --r12: 12px;
}

a { text-decoration: none; }

/* ── HERO ────────────────────────────────────────── */
.hero{
  position: relative;
  height: 680px;
  overflow: hidden;
}

.hero__bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: background-image 400ms ease;
}

/* warm left gradient */
.hero__bg::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(250,247,242,0.96) 0px,
    rgba(250,247,242,0.82) 120px,
    rgba(250,247,242,0.00) 58%
  );
}

.hero__content{
  position: relative;
  height: 100%;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}

.hero__eyebrow::before{
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.hero__title{
  margin: 0;
  font-size: 58px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 600;
  color: var(--text);
}

.hero__subtext{
  margin: 22px 0 0 0;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: var(--muted);
  max-width: 500px;
}

.cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  padding: 13px 24px;
  background: var(--btn);
  color: #FAF7F2;
  border-radius: var(--r8);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  width: fit-content;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.cta:hover{
  background: #2a2622;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(58,47,42,0.22);
}

/* location pill */
.hero__location{
  position: absolute;
  left: var(--pad-x);
  bottom: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 10px;
  background: rgba(250,247,242,0.82);
  backdrop-filter: blur(8px);
  border: 1px solid var(--cream-border);
  border-radius: 999px;
  color: var(--text);
}

.hero__locationText{
  font-size: 13px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero__locationSep{ margin: 0 6px; opacity: 0.4; }
.hero__locationText strong{ font-weight: 600; }

/* dots */
.hero__dots{
  position: absolute;
  left: 50%;
  bottom: 56px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  align-items: center;
}

.dot{
  width: 6px;
  height: 6px;
  border-radius: 999px;
  border: none;
  background: rgba(25,19,17,0.22);
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}

.dot--active{
  background: var(--text);
  width: 20px;
}

/* ── UTILS ───────────────────────────────────────── */
.app-loading {
  cursor: progress;
}

.app-loading .navbtn,
.app-loading .avatarBtn,
.app-loading .menu__row {
  pointer-events: none;
  opacity: 0.7;
}

.modalOverlay {
  z-index: 20000 !important;
}

.nav,
.menu,
.avatarBtn,
.navbtn {
  transition: all 0.2s ease;
}

.navbtn:focus-visible,
.avatarBtn:focus-visible,
.menu__row:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ── TOAST ───────────────────────────────────────── */
.toast-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  width: auto;
  max-width: 90%;
}

.toast {
  background: rgba(25,19,17,0.92);
  backdrop-filter: blur(8px);
  color: #FAF7F2;
  border-radius: 10px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 400px;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-info    { background: rgba(58, 47, 42, 0.95); }
.toast-success { background: rgba(6, 118, 71, 0.95); }
.toast-error   { background: rgba(217, 45, 32, 0.95); }
.toast-warning { background: rgba(180, 110, 20, 0.95); }

.toast-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  margin: 0;
  transition: color 0.2s;
}

.toast-close:hover { color: #fff; }

/* ── SCROLL REVEAL ────────────────────────────────── */
.reveal{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 560ms ease, transform 560ms ease;
  will-change: opacity, transform;
}

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

.reveal-stagger > *{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal-stagger.is-visible > *{
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible > *:nth-child(1){ transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2){ transition-delay: 100ms; }
.reveal-stagger.is-visible > *:nth-child(3){ transition-delay: 200ms; }
.reveal-stagger.is-visible > *:nth-child(4){ transition-delay: 300ms; }

@media (prefers-reduced-motion: reduce){
  .reveal,
  .reveal-stagger > *{
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 980px){
  :root{ --pad-x: 28px; }
  .hero{ height: 580px; }
  .hero__title{ font-size: 46px; }
}

@media (max-width: 600px){
  :root{ --pad-x: 20px; }
  .hero{ height: 560px; }
  .hero__title{ font-size: 36px; line-height: 1.1; }
  .hero__subtext{ font-size: 15px; margin-top: 16px; }
  .cta{ margin-top: 28px; }
  .hero__location{ bottom: 58px; }
  .hero__dots{ bottom: 28px; }
}

@media (max-width: 480px){
  :root{ --pad-x: 16px; }
  .hero{ height: 600px; }
  .hero__title{ font-size: 30px; }
  .hero__eyebrow{ margin-bottom: 14px; }
}

@media (max-width: 480px){
  .toast{
    max-width: 100%;
    width: auto;
    padding: 10px 16px;
  }
}