@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --gold: #2d422a;
  --green: #2d422a;
  --charcoal: hsl(240, 20%, 15%);
  --ivory: hsl(40, 33%, 97%);
  --muted-fg: hsl(240, 10%, 40%);
  --border: hsl(40, 15%, 88%);
  --foreground: hsl(240, 20%, 15%);
  --background: #e3dfd4 ;
  --font-serif: 'Libre Baskerville', Baskerville, Georgia, serif;
  --font-sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
}

.app-buttons {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.store {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.coming-soon {
  font-size: 12px;
  margin-top: 6px;
  height: 14px; /* keeps alignment */
}

.placeholder {
  visibility: hidden;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }

/* ── Hero ── */
.hero {
  position: relative;
  height: 42vh;
  min-height: 280px;
  max-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(hsla(240,20%,10%,0.45), hsla(240,20%,10%,0.55));
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.5rem;
}
.hero__logo {
  max-width: 220px;
  width: 55%;
  margin: 0 auto;
}

/* ── Sections ── */
.section { padding: 4rem 1.5rem; }
.container {
  max-width: 880px;
  margin: 0 auto;
}
.intro { text-align: center; }
.eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.headline {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--foreground);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.subhead {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 1rem;
  color: var(--muted-fg);
  margin-bottom: 1.5rem;
}
.lede {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  color: var(--muted-fg);
  font-size: 0.95rem;
  line-height: 1.75;
}
.gold-divider {
  width: 3rem;
  height: 1px;
  background: var(--gold);
  margin: 2rem auto;
}

/* ── Promo block ── */
.promo {
  background: var(--green);
  color: var(--ivory);
  padding: 1.75rem 2rem;
  margin-bottom: 2rem;
  text-align: center;
  border-left: 3px solid var(--gold);
}
.promo__title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--ivory);
}
.promo__text {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(245,242,237,0.85);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Tier comparison ── */
.tier-title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--foreground);
}
.tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.tier {
  background: #fff;
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
}
.tier--reserve {
  background: var(--green);
  border-color: var(--green);
  color: #FFFFFF;
}
.tier__name {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 0.25rem;
}
.tier__fee {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.tier--reserve .tier__fee { color: #FFFFFF; }
.tier__divider {
  width: 2rem;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}
.tier__list { 
  list-style: none;
  text-align:center; 
}
.tier__list li {
  padding: 0.625rem 0;
  font-size: 0.85rem;
  line-height: 1.55;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.tier--reserve .tier__list li { border-bottom-color: rgba(255,255,255,0.1); }
.tier__list li:last-child { border-bottom: none; }

.tier__cta {
  display: inline-block;
  margin-top: 1.75rem;
  padding: 0.9rem 1.75rem;
  background: var(--background);
  color: var(--green);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
}
.tier__cta:hover { opacity: 0.9; }
.tier--reserve { text-align: center; }
.tier--reserve .tier__list { text-align: center; }
.tier__list strong { font-weight: 500; color: var(--gold); }
.tier--reserve .tier__list strong { color: hsl(37, 45%, 72%); }

/* ── CTA / App stores ── */
.cta {
  text-align: center;
  margin-top: 1rem;
}
.cta__text {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 1rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}
.app-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.app-buttons a { display: inline-block; }
.app-buttons img {
  height: 48px;
  width: auto;
  transition: opacity 0.2s;
}
.app-buttons a:hover img { opacity: 0.85; }

/* ── Footer ── */
.footer {
  background: var(--green);
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: var(--ivory);
}
.footer__brand {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.375rem;
}
.footer__tagline {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.6);
  margin-bottom: 1rem;
}
.footer__copy {
  font-size: 0.7rem;
  color: rgba(245,242,237,0.4);
}

/* ── Responsive ── */
@media (max-width: 680px) {
  .tiers { grid-template-columns: 1fr; }
  .section { padding: 3rem 1.25rem; }
  .headline { font-size: 1.5rem; }
  .hero { height: 34vh; }
}
