/* ==========================================================================
   Second Fire Studio — Stylesheet
   Palette pulled from studio logo:
   Cream background (#fae9d0), warm brown headings, tan/brown accent, stoneware bowl tone
   ========================================================================== */

:root {
  --color-bg: #fae9d0;
  --color-bg-alt: #f4dfc0;
  --color-charcoal: #4a3728;
  --color-brown: #b98a5e;
  --color-brown-dark: #7c5230;
  --color-brown-darker: #5c3c22;
  --color-taupe: #cdbfa0;
  --color-taupe-line: #d3b98f;
  --color-white: #ffffff;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1100px;
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-charcoal);
  background: var(--color-bg);
  line-height: 1.6;
  font-weight: 300;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  color: var(--color-charcoal);
  margin: 0 0 0.5em;
}

h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

p {
  margin: 0 0 1em;
}

a {
  color: inherit;
  text-decoration: none;
}

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

section {
  padding: 80px 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 18px 42px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-brown-dark);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-brown-darker);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(92, 60, 34, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-brown-dark);
  border-color: var(--color-brown-dark);
}

.btn-outline:hover {
  background: var(--color-brown-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 233, 208, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-taupe-line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 68px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 400;
  position: relative;
  padding: 4px 0;
}

.nav a:not(.nav-cta):after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-brown);
  transition: width 0.2s ease;
}

.nav a:not(.nav-cta):hover:after {
  width: 100%;
}

.nav-cta {
  background: var(--color-brown-dark);
  color: var(--color-white) !important;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 999px;
  border: 3px solid var(--color-brown-darker);
  line-height: 1;
  white-space: nowrap;
  display: inline-block;
}

.nav-cta:hover {
  background: var(--color-brown-darker);
  border-color: var(--color-charcoal);
}

.nav-cta:after {
  display: none !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-charcoal);
  display: block;
}

/* ---------- Hero ---------- */
.hero {
  text-align: center;
  padding: 60px 0 80px;
  background: radial-gradient(circle at 50% 0%, var(--color-bg-alt), var(--color-bg) 70%);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--color-brown-dark);
  font-weight: 500;
}

.hero-logo {
  display: flex;
  justify-content: center;
  margin: 24px 0 12px;
}

.hero-logo-img {
  width: 100%;
  max-width: 820px;
  height: auto;
}

.hero-heading {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-charcoal);
  margin: 0 0 18px;
}

.hero-tagline {
  font-size: 1.05rem;
  margin: 24px 0 8px;
  color: var(--color-charcoal);
}

.hero-events {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-brown-dark);
  margin: 0 0 28px;
}

/* ---------- About ---------- */
.about {
  background: var(--color-white);
  text-align: center;
}

.about .container {
  max-width: 760px;
}

.about p {
  text-align: left;
}

.about-signoff {
  text-align: center;
  font-style: italic;
  margin-top: 2em;
  font-size: 1.1rem;
}

.about-name {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--font-serif);
  font-style: normal;
  color: var(--color-brown-dark);
}

/* ---------- Offerings ---------- */
.offerings {
  background: var(--color-bg-alt);
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.offering-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-taupe-line);
  border-radius: var(--radius);
  padding: 32px 22px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.coming-soon-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-brown);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-item .coming-soon-badge {
  left: 32px;
  transform: none;
}

.offering-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(43, 42, 40, 0.08);
}

.offering-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-brown-dark);
  transition: background 0.2s ease, color 0.2s ease;
}

.offering-icon svg {
  width: 30px;
  height: 30px;
}

.offering-card:hover .offering-icon {
  background: var(--color-brown-dark);
  color: var(--color-white);
}

.offering-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.offering-card p {
  font-size: 0.9rem;
  color: #665842;
}

.offering-link {
  display: inline-block;
  margin-top: 18px;
  padding: 13px 30px;
  border-radius: 999px;
  background: var(--color-brown-dark);
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.offering-link:hover {
  background: var(--color-brown-darker);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(92, 60, 34, 0.35);
}

.offering-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.offering-buttons .offering-link {
  margin-top: 10px;
}

.offering-buttons .offering-link:first-child {
  margin-top: 18px;
}

/* ---------- Pricing ---------- */
.pricing {
  background: var(--color-bg-alt);
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
  text-align: left;
}

.pricing-item {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--color-taupe-line);
  display: flex;
  flex-direction: column;
}

.pricing-grid-new + .pricing-grid {
  margin-top: 48px;
}

.pricing-item-featured {
  border: 2px solid var(--color-brown);
  max-width: 760px;
  margin: 40px auto 0;
  text-align: left;
}

.pricing-signup {
  display: inline-block;
  align-self: flex-start;
  margin-top: 20px;
  padding: 12px 26px;
  border-radius: 999px;
  background: var(--color-brown);
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.15s ease, transform 0.15s ease;
}

.pricing-signup:hover {
  background: var(--color-brown-dark);
  transform: translateY(-2px);
}

.pricing-item-featured .pricing-signup {
  margin-top: 24px;
}

.availability-note {
  background: #fdf3e0;
  border-left: 3px solid var(--color-brown);
  color: var(--color-brown-dark);
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 12px 0 !important;
}

.pricing-headline {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  color: var(--color-brown-dark);
  font-weight: 500;
  font-family: var(--font-sans);
  margin: 0 0 6px;
}

.pricing-amount {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin: 6px 0;
}

.pricing-amount-text {
  font-size: 1.8rem;
}

.pricing-unit {
  font-size: 1.1rem;
  font-weight: 400;
  font-family: var(--font-sans);
  color: #665842;
}

.pricing-detail {
  color: #55524c;
  font-size: 0.95rem;
}

.pricing-footnote {
  color: var(--color-brown-dark);
  font-size: 0.88rem;
  margin-top: 16px;
}

.pricing-footnote a {
  border-bottom: 1px solid currentColor;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0;
  text-align: center;
}

.schedule-item {
  background: var(--color-bg-alt);
  border-radius: 8px;
  padding: 16px 10px;
}

.schedule-item p {
  margin: 0;
  font-size: 0.85rem;
}

.schedule-time {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem !important;
  color: var(--color-charcoal);
  margin-bottom: 4px !important;
}

/* ---------- Gallery ---------- */
.gallery {
  background: var(--color-white);
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.gallery-item {
  background: var(--color-taupe);
  border: 1px solid var(--color-taupe-line);
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ---------- Location ---------- */
.location {
  background: var(--color-bg-alt);
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.location-map {
  background: var(--color-taupe);
  border: 1px solid var(--color-taupe-line);
  border-radius: var(--radius);
  min-height: 320px;
  overflow: hidden;
}

.location-map iframe {
  display: block;
  min-height: 320px;
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--color-white);
}

.faq .container {
  max-width: 800px;
}

.faq-list {
  margin-top: 32px;
}

.faq-item {
  border-bottom: 1px solid var(--color-taupe-line);
  padding: 22px 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--color-taupe-line);
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.faq-item p {
  color: #55524c;
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- Contact ---------- */
.contact {
  background: var(--color-bg-alt);
  text-align: center;
}

.booking-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 28px 0 8px;
}

.contact-details {
  margin-top: 28px;
  font-size: 0.9rem;
  color: #55524c;
}

.phone-highlight {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-brown-dark);
  border-bottom: 1px solid currentColor;
}

.social-link {
  margin-top: 12px;
}

.social-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--color-brown-dark);
  transition: color 0.15s ease;
}

.social-link a:hover {
  color: var(--color-brown-darker);
}

.social-link svg {
  flex-shrink: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-charcoal);
  color: #cfc9bd;
  text-align: center;
  padding: 32px 0;
  font-size: 0.85rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .offerings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .location-inner {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--color-taupe-line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav.open {
    max-height: 400px;
  }
  .nav a {
    padding: 14px 24px;
    width: 100%;
    display: block;
    border-bottom: 1px solid var(--color-taupe-line);
  }
  .nav-cta {
    border-radius: 0;
    text-align: center;
  }
  .nav-toggle {
    display: flex;
  }
  .hero-logo-img {
    max-width: 400px;
  }
  .logo-img {
    height: 52px;
  }
  .offerings-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .schedule-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .booking-buttons {
    flex-direction: column;
  }
  .booking-buttons .btn {
    width: 100%;
    text-align: center;
  }
  section {
    padding: 56px 0;
  }
}
