/* House of the Apothecary & Uncorked — joint announcement page */

:root {
  --copper: #A67C52;
  --terracotta: #9E6B55;
  --terracotta-text: #87543F;
  --cream: #F5F2E9;
  --charcoal: #333333;
  --charcoal-deep: #2D3633;
  --gold: #A68B5B;
  --gold-text: #7A6339;
  --gold-text-on-dark: #C9A66B;
  --amber: #734222;
  --parchment: #F2F2F2;
  --radius: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  margin: 0;
  color: var(--charcoal-deep);
}

a { color: var(--amber); }

a:focus-visible,
button:focus-visible,
.v-card:focus-visible {
  outline: 3px solid var(--gold-text);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--cream);
  color: var(--charcoal-deep);
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  z-index: 100;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

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

.eyebrow {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-text);
  margin: 0 0 0.75rem;
}

.script {
  font-family: 'Great Vibes', cursive;
  color: var(--copper);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, var(--charcoal-deep) 0%, #23302d 100%);
  padding: 3.5rem 1.25rem 3rem;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: -20% -20% auto -20%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(166, 139, 91, 0.25), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.hero-logo-plaque {
  width: min(72vw, 300px);
  margin: 0 auto 1.75rem;
  padding: 1.25rem;
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.hero-logo {
  width: 100%;
  margin: 0;
}

.hero-hl {
  color: var(--parchment);
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  line-height: 1.25;
}

.hero-hl em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  color: rgba(242, 242, 242, 0.82);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 1rem auto 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
  padding: 0.6rem 1.1rem;
  border: 1px solid rgba(166, 139, 91, 0.5);
  border-radius: 999px;
  color: var(--parchment);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(242, 242, 242, 0.5);
  font-size: 1.4rem;
  animation: bob 2.2s ease-in-out infinite;
}

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

/* ---------- Section shell ---------- */
.section {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.section--wide { max-width: 980px; }

.section-hl {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  margin-bottom: 1.1rem;
}

.section-body {
  font-size: 1.05rem;
  max-width: 620px;
}

/* ---------- Hours callout ---------- */
.hours-callout {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(166, 124, 82, 0.25);
  padding: 1.5rem 1.75rem;
  margin-top: 1.75rem;
  display: grid;
  gap: 0.55rem;
  box-shadow: 0 10px 30px rgba(45, 54, 51, 0.06);
}

.hours-callout dt {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta-text);
}

.hours-callout dd {
  margin: 0.15rem 0 0;
  font-size: 1rem;
}

/* ---------- Tab-follows-you callout ---------- */
.tab-section { padding-top: 0; }

.tab-callout {
  background: linear-gradient(180deg, var(--charcoal-deep) 0%, #23302d 100%);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(45, 54, 51, 0.18);
}

.eyebrow--on-dark { color: var(--gold-text-on-dark); }

.tab-hl {
  color: var(--parchment);
  font-size: clamp(1.6rem, 4.5vw, 2.3rem);
  margin-bottom: 0.85rem;
}

.tab-body {
  color: rgba(242, 242, 242, 0.85);
  font-size: 1.08rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ---------- Still-X reassurance grid ---------- */
.still-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 2rem;
}

@media (min-width: 700px) {
  .still-grid { grid-template-columns: 1fr 1fr; }
}

.still-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 10px 30px rgba(45, 54, 51, 0.06);
  border-top: 3px solid var(--copper);
}

.still-card--apo { border-top-color: var(--gold); }

.still-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.still-card p { margin: 0; font-size: 0.98rem; }

/* ---------- Venue link cards ---------- */
.venue-cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .venue-cards { grid-template-columns: 1fr 1fr; }
}

.v-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  display: block;
  min-height: 300px;
  isolation: isolate;
}

.v-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.v-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 18, 17, 0.05) 0%, rgba(15, 18, 17, 0.35) 55%, rgba(10, 12, 11, 0.96) 100%);
  z-index: -1;
}

.v-card-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 12, 11, 0.55) 25%, rgba(8, 10, 9, 0.92) 100%);
}

.v-card__name {
  color: #fff;
}

.v-card__name,
.v-card__line {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.v-card__logo {
  width: 56px;
  height: auto;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.v-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
}

.v-card__line {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 0.85rem;
}

.v-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--gold);
  font-weight: 700;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal-deep);
  color: var(--parchment);
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}

.footer-logo-plaque {
  width: 90px;
  margin: 0 auto 1.25rem;
  padding: 0.6rem;
  background: var(--cream);
  border-radius: var(--radius);
}

.footer-logo {
  width: 100%;
  margin: 0;
}

.footer-hours {
  font-size: 0.92rem;
  color: rgba(242, 242, 242, 0.75);
  max-width: 520px;
  margin: 0 auto 1.5rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.footer-links a { color: var(--gold); text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }

.footer-attr {
  font-size: 0.78rem;
  color: rgba(242, 242, 242, 0.5);
}

.footer-attr a { color: rgba(242, 242, 242, 0.7); }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll { animation: none; }
}
