/* ============================================
   Monet Teahouse — shared styles
   ============================================ */

:root {
  --green-brand: #2A6A49;
  --green-deep: #1E3F36;
  --gold: #E4E0A1;
  --cream: #EDEBE9;
  --ink: #2B2B28;
  --ink-soft: #55554F;
  --white: #FFFFFF;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: Arimo, Arial, Helvetica, sans-serif;

  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--green-deep);
  margin: 0 0 0.5em 0;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--green-brand);
  font-weight: 700;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.btn:hover { opacity: 0.88; }
.btn-primary { background: var(--green-deep); color: var(--gold); }
.btn-ghost {
  background: rgba(18,36,29,0.25);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.85);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); opacity: 1; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

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

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--green-deep);
}
.nav__brand img { height: 40px; width: auto; filter: brightness(0) saturate(100%) invert(16%) sepia(28%) saturate(1200%) hue-rotate(115deg); }

.nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.3px;
}
.nav__links a:hover { color: var(--green-brand); }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--green-deep);
}

@media (max-width: 800px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    transition: max-height 0.25s ease;
  }
  .nav__links.is-open { max-height: 320px; }
  .nav__links a {
    display: block;
    padding: 14px 24px;
    border-top: 1px solid rgba(0,0,0,0.06);
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--white);
  background: #12241d;
  min-height: clamp(520px, 88vh, 800px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 600px) {
  .hero {
    min-height: clamp(480px, 82vh, 760px);
    min-height: clamp(480px, 82svh, 760px);
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,36,29,0.15) 0%, rgba(18,36,29,0.45) 100%);
}
.hero__content {
  position: relative;
  max-width: 760px;
  padding: 32px 24px;
  margin: 0 auto;
  text-align: center;
  transform: translateY(-20px);
}
.hero__logo {
  width: clamp(230px, 31vw, 370px);
  height: auto;
  margin: 0 auto 0.6em auto;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.35));
}
.hero__tagline {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.4em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 6px 18px rgba(0,0,0,0.85);
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__toggle {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.7);
  background: rgba(18,36,29,0.4);
  cursor: pointer;
  z-index: 2;
}
.hero__toggle::before {
  content: "";
  display: block;
  width: 3px;
  height: 14px;
  margin: 0 auto;
  border-style: double;
  border-width: 0 0 0 10px;
  border-color: transparent transparent transparent var(--white);
}
.hero__toggle[aria-pressed="true"]::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent var(--white);
}
.hero__toggle:hover { background: rgba(18,36,29,0.6); }
@media (max-width: 600px) {
  .hero__tagline { font-size: 0.72rem; letter-spacing: 1.5px; }
  .hero__actions { gap: 10px; }
  .hero__actions .btn { padding: 11px 20px; font-size: 0.85rem; }
}

/* ---------- Sections ---------- */
section { padding: 80px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px auto; }

.bg-cream { background: var(--cream); }

/* About */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about img { border-radius: 6px; box-shadow: 0 12px 30px rgba(0,0,0,0.15); }
.about p { color: var(--ink-soft); }
@media (max-width: 800px) {
  .about { grid-template-columns: 1fr; }
}

/* Pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
.price-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  padding: 28px;
}
.price-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.price-card .price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--green-brand);
  margin-bottom: 10px;
}
.price-card .price small { font-size: 0.9rem; color: var(--ink-soft); font-family: var(--font-body); }
.price-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0 0 6px 0; }
.price-card ul { margin: 10px 0 0 0; padding-left: 18px; color: var(--ink-soft); font-size: 0.92rem; }
.price-card--accent { border-color: var(--green-brand); border-width: 2px; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}
.team-card { text-align: center; }
.team-card img {
  width: 180px; height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.team-card h3 { margin-bottom: 2px; }
.team-card .role {
  color: var(--green-brand);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.team-card p { color: var(--ink-soft); text-align: left; font-size: 0.95rem; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery-grid a {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-grid a:hover img { transform: scale(1.06); }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Location */
.location {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.location iframe { width: 100%; height: 340px; border: 0; border-radius: 8px; }
.location address { font-style: normal; color: var(--ink-soft); line-height: 1.8; }
@media (max-width: 800px) {
  .location { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-deep);
  color: rgba(255,255,255,0.85);
  padding: 48px 0 24px 0;
}
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.site-footer h4 {
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 400;
  margin: 0 0 10px 0;
}
.site-footer a { text-decoration: none; color: inherit; }
.site-footer a:hover { color: var(--gold); }
.site-footer .copyright {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.85rem;
  text-align: center;
  color: rgba(255,255,255,0.6);
}

/* ---------- Lightbox ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10,16,13,0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: 88vw;
  max-height: 86vh;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { opacity: 1; }
.lightbox__close {
  top: 20px;
  right: 24px;
  font-size: 2.4rem;
}
.lightbox__prev,
.lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  padding: 12px 18px;
}
.lightbox__prev { left: 8px; }
.lightbox__next { right: 8px; }
@media (max-width: 600px) {
  .lightbox__prev, .lightbox__next { font-size: 2.2rem; padding: 8px 12px; }
  .lightbox__close { font-size: 2rem; top: 12px; right: 14px; }
}

/* ---------- Page banner (used on sub-pages like drop-in recordings) ---------- */
.page-banner {
  background: var(--green-deep);
  color: var(--white);
  text-align: center;
  padding: 36px 24px 20px 24px;
}
.page-banner .eyebrow { color: var(--gold); font-size: 1rem; }
.page-banner h1 { color: var(--white); }

/* Photo variant: image background with scrim, matching the 900px content column */
.page-banner--photo {
  max-width: 900px;
  margin: 0 auto;
  background:
    linear-gradient(rgba(15, 25, 20, 0.45), rgba(15, 25, 20, 0.45)),
    var(--banner-img) center / cover no-repeat;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 24px 20px 24px;
}
.page-banner--photo h1 { margin: 22px 0 4px 0; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55); }

/* ---------- Email capture form (drop-in recordings page) ---------- */
.email-capture {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.email-capture input[type="email"] {
  padding: 12px 14px;
  border: 1px solid #2A6A49;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  min-width: 260px;
}
/* honeypot: invisible to humans, bots fill it in and get ignored */
.email-capture__hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}
@media (max-width: 600px) {
  .page-banner--photo { min-height: 170px; }
}
