/* ───────────────────── PALETTE ───────────────────── */
:root {
  --cream:    #FAF7F2;
  --warm:     #F3EDE4;
  --gold:     #B8943E;
  --gold-dk:  #9A7B2F;
  --gold-lt:  #D4B868;
  --charcoal: #2C2C2C;
  --ink:      #1A1A1A;
  --muted:    #6B6459;
  --divider:  #D4C8B0;
  --accent-bg:#F0EAE0;
  --dark-bg:  #2B2620;
}

/* ───────────────────── BASE ───────────────────── */
*,*::before,*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--charcoal);
  background: var(--cream);
}

strong { font-weight: 500; }
em    { font-style: italic; }

/* ───────────────────── BANNER ───────────────────── */
#banner {
  background: var(--cream);
  padding: 2.5rem 0 0;
  text-align: center;
}

.banner-box {
  display: inline-block;
  max-width: 600px;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

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

/* ───────────────────── TYPOGRAPHY ───────────────────── */
.tilde {
  color: var(--gold);
  font-weight: 300;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 2.5rem;
}

.section-heading strong {
  font-weight: 600;
}

.lead-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--gold-dk);
  margin-bottom: 1.8rem;
}

.highlight-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gold-dk);
  margin-top: 2rem;
  border-left: 2px solid var(--gold);
  padding-left: 1.2rem;
}

/* ───────────────────── HERO TEXT ───────────────────── */
#hero {
  background: var(--cream);
  padding: 5rem 1rem 4rem;
}

.hero-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 400;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 2rem;
}

.hero-intro strong {
  font-weight: 600;
  color: var(--gold-dk);
}

.hero-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1.08rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.hero-sub strong {
  font-weight: 500;
  color: var(--gold-dk);
}

/* ───────────────────── SECTION DIVIDER ───────────────────── */
.section-divider-top {
  text-align: center;
  margin-bottom: 2rem;
}

.section-divider-top span {
  display: inline-block;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.6em;
  position: relative;
}

.section-divider-top span::before,
.section-divider-top span::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: var(--divider);
}

.section-divider-top span::before { right: calc(100% + 1rem); }
.section-divider-top span::after  { left:  calc(100% + 1rem); }

.section-divider-top.light span { color: var(--gold-lt); }
.section-divider-top.light span::before,
.section-divider-top.light span::after { background: rgba(212,200,176,0.3); }

/* ───────────────────── SECTIONS ───────────────────── */
.section-block {
  padding: 5rem 1rem;
}

/* dark panel */
.section-dark {
  background: var(--dark-bg);
  color: #E8E2D8;
}
.section-dark .section-heading { color: #F0EAE0; }
.section-dark strong { color: var(--gold); font-weight: 400; }

/* accent panel */
.section-accent {
  background: var(--accent-bg);
}

/* ───────────────────── OPENING SOON ───────────────────── */
.opening-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.opening-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--divider);
  font-size: 1.1rem;
  color: var(--muted);
}

.opening-list li:last-child { border-bottom: none; }
.opening-list strong { color: var(--gold-dk); font-weight: 500; }

/* ───────────────────── FOOTER ───────────────────── */
footer {
  background: var(--ink);
  color: #C9C1B4;
  padding: 3.5rem 1rem 2rem;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #F5F0E8;
  margin-bottom: 0.2rem;
}

.footer-brand strong { font-weight: 600; color: #fff; }
.footer-brand .tilde { color: var(--gold); }

.footer-sub {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-sub strong { font-weight: 500; }

.footer-copy {
  font-size: 0.78rem;
  color: #7A7368;
  margin: 0;
}

/* ───────────────────── ANIMATIONS ───────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

#hero .hero-intro,
#hero .hero-sub {
  animation: fadeUp 0.9s ease-out both;
}
#hero .hero-intro { animation-delay: 0.15s; }
#hero .hero-sub   { animation-delay: 0.4s; }

/* scroll-triggered fade (JS-free via intersection observer alternative: simple CSS) */
.section-block {
  animation: fadeUp 0.7s ease-out both;
}

/* ───────────────────── RESPONSIVE ───────────────────── */
@media (max-width: 768px) {
  #banner { padding: 1.5rem 1rem 0; }
  .banner-box { border-radius: 4px; }
  #hero { padding: 3.5rem 1.2rem 3rem; }
  .hero-intro { font-size: 1.2rem; }
  .section-block { padding: 3.5rem 1.2rem; }
  .highlight-text { font-size: 1.1rem; }
  .opening-list li { font-size: 1rem; }
  .section-divider-top span::before,
  .section-divider-top span::after { width: 35px; }
}

