/* ===================================================
   Play Lane – shared stylesheet
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;1,400&family=Nunito+Sans:opsz,wght@6..12,400;6..12,700&family=Caveat:wght@400&family=Quicksand:wght@700&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Base ── */
html { scroll-behavior: smooth; }

body {
  background: #FAF7F2;
  color: #6C6B67;
  font: 15px/1.75 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
}

a { color: #2E2C27; text-decoration: none; transition: color 120ms; }
a:hover { color: #C98A16; }

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

/* ── Focus ── */
:focus-visible {
  outline: 2px solid #93C7D3;
  outline-offset: 2px;
}

/* ── Layout containers ── */
.container {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

.container--wide {
  max-width: 1280px;
  margin-inline: auto;
}

.container--narrow {
  max-width: 820px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

/* ── Typography ── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 400; color: #2E2C27; }

h1 {
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.14;
}

.h1--legal {
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1.15;
  margin: 8px 0 24px;
}

h2 {
  font-size: clamp(27px, 4vw, 34px);
  line-height: 1.2;
}

.h2--legal { font-size: 28px; margin: 44px 0 16px; }
.h2--legal--sm { font-size: 24px; margin: 20px 0 0; }

/* Legal h3 */
.h3--legal {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2E2C27;
  margin: 12px 0 0;
}

.eyebrow {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  display: block;
}

.eyebrow--lg { font-size: 26px; }
.eyebrow--honey { color: #E7A82F; }
.eyebrow--sage  { color: #5E5F49; }
.eyebrow--sky   { color: #6FB2C4; }

/* ── Section rhythm ── */
.section { margin-top: clamp(48px, 7vw, 80px); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  height: 46px;
  border-radius: 999px;
  border: none;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 120ms, color 120ms, box-shadow 220ms, transform 220ms cubic-bezier(.34,.8,.36,1);
  white-space: nowrap;
}

.btn:active { transform: scale(0.98); }

.btn--lg {
  height: 52px;
  padding: 0 28px;
  font-size: 14px;
}

/* Primary (honey) */
.btn--primary {
  background: #FAC95C;
  color: #2E2C27;
  box-shadow: 0 2px 8px rgba(250,201,92,.25);
}
.btn--primary:hover { background: #E7B840; color: #2E2C27; }

/* Secondary (sage) */
.btn--secondary {
  background: #76765C;
  color: #fff;
}
.btn--secondary:hover { background: #636350; color: #fff; }

/* Quiet (outline) */
.btn--quiet {
  background: transparent;
  color: #2E2C27;
  border: 1px solid #EDE6DC;
}
.btn--quiet:hover { border-color: #2E2C27; color: #2E2C27; }

.btn svg { flex-shrink: 0; transition: transform 220ms cubic-bezier(.34,.8,.36,1); }
.btn:hover svg { transform: translateX(3px); }

/* ── Header ── */
.site-header {
  position: relative;
  max-width: 1160px;
  margin-inline: auto;
  padding: 14px clamp(16px, 4vw, 32px);
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-header__logo img {
  width: 149px;
  height: 149px;
  object-fit: contain;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.nav-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2E2C27;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: border-color 120ms, color 120ms;
}

.nav-link:hover, .nav-link.active {
  border-bottom-color: #2E2C27;
  color: #2E2C27;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-links a {
  display: flex;
  color: #2E2C27;
  transition: color 120ms;
}

.social-links a:hover { color: #C98A16; }
.social-links svg { display: block; }

/* Hamburger */
.hamburger {
  display: none;
  margin-left: auto;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid #EDE6DC;
  background: #FFFBF9;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #2E2C27;
}

/* Mobile menu panel */
.mobile-menu {
  display: none;
  position: absolute;
  top: calc(100% - 4px);
  left: clamp(16px, 4vw, 32px);
  right: clamp(16px, 4vw, 32px);
  z-index: 50;
  background: #FFFBF9;
  border: 1px solid #EDE6DC;
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(90,78,56,.14);
  padding: 20px;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.open { display: flex; }

.mobile-menu .nav-link {
  padding: 14px 8px;
  font-size: 13px;
  border-bottom: 2px solid transparent;
}

.mobile-menu__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid #EDE6DC;
}

@media (max-width: 899px) {
  .site-header__nav { display: none; }
  .hamburger { display: flex; }
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  gap: clamp(28px, 4vw, 48px);
  max-width: 1280px;
  margin-inline: auto;
  padding-top: clamp(16px, 3vw, 32px);
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 clamp(16px, 4vw, 32px) clamp(24px, 4vw, 40px);
}

.hero__headline {
  color: #2E2C27;
  text-wrap: pretty;
}

.hero__headline .your {
  color: #6FB2C4;
  border-bottom: 3px solid #FAC95C;
}

.hero__lede {
  max-width: 400px;
  font-size: 15px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.hero__image-wrap {
  border-radius: 0 0 0 clamp(48px, 10vw, 140px);
  overflow: hidden;
  height: clamp(280px, 44vw, 520px);
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Feature cards (explore grid) ── */
.explore-heading {
  text-align: center;
  margin: clamp(40px, 6vw, 64px) 0 32px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
  gap: 22px;
}

.feature-card {
  background: #FFFBF9;
  border: 1px solid #EDE6DC;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(90,78,56,.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 220ms cubic-bezier(.34,.8,.36,1), box-shadow 220ms cubic-bezier(.34,.8,.36,1);
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(90,78,56,.10);
  color: inherit;
}

.feature-card__img-wrap {
  position: relative;
  height: 178px;
  flex-shrink: 0;
}

.feature-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card__icon {
  position: absolute;
  bottom: -23px;
  left: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card__icon svg { display: block; }

.icon--sky   { background: #93C7D3; color: #fff; }
.icon--honey { background: #FAC95C; color: #fff; }
.icon--sage  { background: #76765C; color: #fff; }

.feature-card__body {
  padding: 38px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.feature-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: 18px;
  color: #2E2C27;
  margin-bottom: 8px;
}

.feature-card__text {
  font-size: 14px;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 16px;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #2E2C27;
  text-decoration: none;
  margin-top: auto;
  transition: color 120ms;
}

.arrow-link svg { transition: transform 220ms cubic-bezier(.34,.8,.36,1); }
.feature-card:hover .arrow-link svg { transform: translateX(3px); }

/* ── About band ── */
.about-band {
  background: #E8E8D9;
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
  padding: clamp(24px, 4vw, 40px);
}

.about-band__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-band__body {
  font-size: 14px;
  line-height: 1.75;
  color: #4A463D;
  max-width: 420px;
}

.about-band__sign {
  font-size: 14px;
  font-weight: 700;
  color: #2E2C27;
}

.about-band__portrait {
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-band__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Sessions ── */
.sessions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
}

.sessions-img {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid #EDE6DC;
}

.sessions-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sessions-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sessions-text p {
  font-size: 14px;
  line-height: 1.75;
  max-width: 460px;
}

.sessions-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* ── Cafe ── */
.cafe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
}

.cafe-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cafe-text p {
  font-size: 14px;
  line-height: 1.75;
  max-width: 440px;
}

.cafe-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cafe-photo {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid #EDE6DC;
}

.cafe-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cafe-photo--offset { margin-top: 28px; }

/* ── Gallery ── */
.gallery-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.gallery-tile {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid #EDE6DC;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Parties band ── */
.parties-band {
  background: #FDEBC4;
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
  padding: clamp(24px, 4vw, 40px);
}

.parties-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.parties-text p {
  font-size: 14px;
  line-height: 1.75;
  color: #4A463D;
  max-width: 420px;
}

.parties-img {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.parties-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── FAQs ── */
.faqs-heading { text-align: center; margin-bottom: 28px; }

.faqs-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #FFFBF9;
  border: 1px solid #EDE6DC;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(90,78,56,.06);
  overflow: hidden;
}

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  text-align: left;
}

.faq-question {
  flex: 1;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  line-height: 1.35;
  color: #2E2C27;
}

.faq-toggle {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #EAF3F6;
  color: #4C8C9C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  transition: background 120ms;
}

.faq-btn[aria-expanded="true"] .faq-toggle {
  background: #93C7D3;
  color: #fff;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  font-size: 14px;
  line-height: 1.75;
  color: #6C6B67;
  max-width: 600px;
}

.faq-item.open .faq-answer { display: block; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(24px, 4vw, 40px);
  align-items: stretch;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.contact-address {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 19px;
  font-style: italic;
  color: #2E2C27;
}

.contact-text p {
  font-size: 14px;
  line-height: 1.75;
  max-width: 380px;
}

.contact-email {
  font-size: 14px;
  font-weight: 700;
  color: #2E2C27;
  border-bottom: 1px solid #FAC95C;
  align-self: flex-start;
  padding-bottom: 1px;
}

.contact-email:hover { color: #C98A16; border-bottom-color: #C98A16; }

.contact-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.contact-map {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #EDE6DC;
  min-height: 300px;
  background: #E8E8D9;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  display: block;
}

/* ── CTA Banner ── */
.cta-banner {
  background: #FDEBC4;
  border-radius: 20px;
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.cta-banner__doodles {
  position: absolute;
  right: 200px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 20px;
  opacity: 0.18;
  color: #C98A16;
  pointer-events: none;
}

.cta-banner__text { flex: 1 1 280px; }
.cta-banner__text h2 { margin-bottom: 6px; }
.cta-banner__text p { font-size: 14px; color: #4A463D; }
.cta-banner__cta { margin-left: auto; flex-shrink: 0; }

/* ── Subscribe ── */
.subscribe-section {
  margin-top: clamp(40px, 6vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.subscribe-section p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 380px;
}

.subscribe-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}

.subscribe-input {
  height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid #EDE6DC;
  background: #FFFBF9;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  color: #2E2C27;
  width: 260px;
  max-width: 100%;
  transition: border-color 120ms;
}

.subscribe-input::placeholder { color: #6C6B67; }
.subscribe-input:focus { outline: none; border-color: #93C7D3; }

/* ── Footer ── */
.site-footer {
  max-width: 1160px;
  margin: clamp(40px, 6vw, 64px) auto 0;
  padding: 22px clamp(16px, 4vw, 32px) 40px;
  border-top: 1px solid #EDE6DC;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
}

.wordmark {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2E2C27;
  text-decoration: none;
}

.wordmark:hover { color: #C98A16; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2E2C27;
}

.footer-links a:hover { color: #C98A16; }

.footer-copy {
  margin-left: auto;
  font-size: 12px;
  color: #6C6B67;
}

/* ── Legal pages ── */
.legal-main {
  padding: clamp(24px, 5vw, 48px) 0 0;
}

.legal-card {
  background: #FFFBF9;
  border: 1px solid #EDE6DC;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(90,78,56,.06);
  padding: clamp(20px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.legal-card p {
  font-size: 15px;
  line-height: 1.75;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-content p, .legal-content ul {
  font-size: 15px;
  line-height: 1.75;
}

.legal-content ul {
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-content a { color: #2E2C27; border-bottom: 1px solid #FAC95C; }
.legal-content a:hover { color: #C98A16; }

.legal-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  padding-bottom: clamp(40px, 6vw, 64px);
}
