:root {
  --maroon-dark: #3D0E15;
  --maroon: #6B1623;
  --maroon-light: #8C2030;
  --gold: #E3B23C;
  --gold-light: #F3DA9A;
  --red: #D9402C;
  --cream: #FBF3E1;
  --charcoal: #1F1216;
  --text-soft: rgba(251, 243, 225, 0.78);
  --text-faint: rgba(251, 243, 225, 0.55);
  --radius: 18px;
  --max-width: 1180px;
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Poppins", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--charcoal);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Background pattern ---------- */
.bg-pattern {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(227, 178, 60, 0.16), transparent 45%),
    radial-gradient(circle at 85% 18%, rgba(217, 64, 44, 0.14), transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(140, 32, 48, 0.35), transparent 55%),
    linear-gradient(160deg, var(--maroon-dark) 0%, var(--charcoal) 55%, var(--charcoal) 100%);
}

.bg-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    repeating-linear-gradient(60deg, var(--gold) 0 2px, transparent 2px 60px),
    repeating-linear-gradient(-60deg, var(--gold) 0 2px, transparent 2px 60px);
  mix-blend-mode: overlay;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(31, 18, 22, 0.75), rgba(31, 18, 22, 0));
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand { display: flex; align-items: center; gap: 10px; }

.brand-logo { width: 38px; height: 38px; border-radius: 50%; }

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  color: var(--gold-light);
}

.header-cta {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--text-soft);
  text-decoration: none;
  padding: 8px 18px;
  border: 1px solid rgba(227, 178, 60, 0.4);
  border-radius: 999px;
  transition: all 0.25s ease;
}

.header-cta:hover {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
}

.hero-content {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--text-soft);
  background: rgba(227, 178, 60, 0.1);
  border: 1px solid rgba(227, 178, 60, 0.3);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6FCF6F;
  box-shadow: 0 0 0 0 rgba(111, 207, 111, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(111, 207, 111, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(111, 207, 111, 0); }
  100% { box-shadow: 0 0 0 0 rgba(111, 207, 111, 0); }
}

.hero-logo {
  width: 130px;
  height: 130px;
  margin-bottom: 26px;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.45));
  animation: floatLogo 6s ease-in-out infinite, fadeUp 0.9s ease both;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.kicker {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
  margin: 0 0 10px;
  animation: fadeUp 1s ease both;
}

.title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 1.08;
  margin: 0 0 22px;
  color: var(--cream);
  animation: fadeUp 1.1s ease both;
}

.title .accent {
  color: var(--gold);
  position: relative;
  white-space: nowrap;
}

.subtitle {
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 0 30px;
  animation: fadeUp 1.2s ease both;
}

.subtitle strong { color: var(--gold-light); }

.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 320px;
  margin-bottom: 32px;
  animation: fadeUp 1.3s ease both;
}

.divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(227,178,60,0.55), transparent);
}

.divider-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  opacity: 0.9;
}

/* ---------- Notify form ---------- */
.notify-form {
  display: flex;
  width: 100%;
  max-width: 440px;
  gap: 10px;
  margin-bottom: 10px;
  animation: fadeUp 1.4s ease both;
}

.notify-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(251, 243, 225, 0.25);
  background: rgba(251, 243, 225, 0.07);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.notify-form input::placeholder { color: var(--text-faint); }

.notify-form input:focus {
  border-color: var(--gold);
  background: rgba(251, 243, 225, 0.12);
}

.notify-form button {
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.notify-form button:hover { background: var(--gold-light); transform: translateY(-1px); }

.form-msg {
  min-height: 1.4em;
  font-size: 0.85rem;
  color: #8FE08F;
  margin: 0 0 26px;
}

/* ---------- CTA row ---------- */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  animation: fadeUp 1.5s ease both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--red);
  color: var(--cream);
}

.btn-primary:hover { background: #c23420; transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--text-soft);
  border-color: rgba(251, 243, 225, 0.25);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-faint);
  animation: bounce 2.4s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ---------- Locations ---------- */
.locations {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px 110px;
}

.section-head { text-align: center; margin-bottom: 46px; }

.section-head .kicker { display: block; }

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin: 0 0 12px;
  color: var(--cream);
}

.section-sub {
  color: var(--text-soft);
  max-width: 480px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.location-card {
  background: rgba(251, 243, 225, 0.05);
  border: 1px solid rgba(227, 178, 60, 0.18);
  border-radius: var(--radius);
  padding: 26px 24px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  animation: fadeUp 0.7s ease both;
}

.location-card:nth-child(2) { animation-delay: 0.08s; }
.location-card:nth-child(3) { animation-delay: 0.16s; }
.location-card:nth-child(4) { animation-delay: 0.24s; }

.location-card:hover {
  transform: translateY(-6px);
  border-color: rgba(227, 178, 60, 0.5);
  background: rgba(251, 243, 225, 0.08);
}

.card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(227, 178, 60, 0.14);
  color: var(--gold);
  flex-shrink: 0;
}

.card-top h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0;
  color: var(--gold-light);
}

.badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--cream);
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
}

.card-address {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0 0 16px;
  min-height: 4.4em;
}

.card-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

.card-link:hover { color: var(--gold-light); }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(227, 178, 60, 0.15);
  padding: 40px 24px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-brand { display: flex; align-items: center; gap: 10px; }

.footer-logo { width: 30px; height: 30px; border-radius: 50%; }

.footer-brand p {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin: 0;
}

.footer-contact {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-contact a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

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

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-faint);
  margin: 24px 0 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 560px) {
  .notify-form { flex-direction: column; }
  .cta-row { flex-direction: column; width: 100%; }
  .btn { justify-content: center; }
  .footer-inner { flex-direction: column; text-align: center; justify-content: center; }
  .footer-contact { justify-content: center; }
}
