/* ===========================================================
   Bay Groove Collective — styles
   Palette derived from the logo: cream, navy, gold, rust, teal
   =========================================================== */

:root {
  --cream:    #f4eee1;
  --cream-2:  #fbf7ec;
  --ink:      #1e2e3e;
  --ink-soft: #33485b;
  --gold:     #e0a53a;
  --rust:     #c0552e;
  --teal:     #2c7c74;

  --maxw: 720px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Work Sans", system-ui, -apple-system, sans-serif;
  --shadow: 0 14px 40px -18px rgba(30, 46, 62, 0.45);
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--rust);
  margin: 0 0 0.6rem;
}
.eyebrow.center { text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.12;
  margin: 0 0 1rem;
}
.section-title.center { text-align: center; }

.section-lead { color: var(--ink-soft); }
.section-lead.center { text-align: center; }

.section { padding: clamp(56px, 8vw, 96px) 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.8rem 1.6rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--rust);
  color: var(--cream-2);
  box-shadow: 0 10px 24px -12px rgba(192, 85, 46, 0.8);
}
.btn-primary:hover { background: #aa4a28; }
.btn-small {
  padding: 0.5rem 1.1rem;
  font-size: 0.88rem;
  background: var(--ink);
  color: var(--cream-2);
}
.btn-small:hover { background: var(--teal); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 238, 225, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(30, 46, 62, 0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand-logo { width: 40px; height: 40px; object-fit: contain; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
}

/* ===== Hero ===== */
.hero {
  text-align: center;
  padding: clamp(44px, 7vw, 84px) 0 clamp(48px, 8vw, 92px);
}
.hero-inner { display: flex; flex-direction: column; align-items: center; }
.hero-logo {
  width: clamp(160px, 30vw, 240px);
  height: auto;
  margin-bottom: 1.6rem;
  filter: drop-shadow(0 18px 30px rgba(30, 46, 62, 0.22));
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  line-height: 1.06;
  margin: 0 0 1rem;
  max-width: 16ch;
}
.hero-title em { color: var(--rust); font-style: italic; }
.hero-sub {
  max-width: 520px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 0 auto 1.8rem;
}

/* ===== About ===== */
.about { background: var(--cream-2); }
.about-inner { text-align: center; }
.about-inner .eyebrow { text-align: center; }
.about-inner .section-title { text-align: center; }
.about-inner p { color: var(--ink-soft); max-width: 560px; margin-inline: auto; }

/* ===== Booking ===== */
.booking-form {
  max-width: 480px;
  margin: 2.2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.field { display: flex; flex-direction: column; gap: 0.35rem; text-align: left; }
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.field input,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream-2);
  border: 1px solid rgba(30, 46, 62, 0.18);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(44, 124, 116, 0.18);
}
.field textarea { resize: vertical; }
.booking-form .btn-primary { margin-top: 0.4rem; align-self: center; }

.form-success {
  max-width: 480px;
  margin: 2.2rem auto 0;
  text-align: center;
  font-size: 1.05rem;
  color: var(--teal);
  font-weight: 600;
}
.gform-sink { display: none; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: rgba(244, 238, 225, 0.75); padding: 2rem 0; }
.footer-inner { display: flex; align-items: center; gap: 0.8rem; justify-content: center; text-align: center; flex-wrap: wrap; }
.footer-logo { width: 38px; height: 38px; object-fit: contain; }
.site-footer p { margin: 0; font-size: 0.88rem; }
