/* =========================================================================
   SOB Honey — landing page styles
   Palette pulled from the badge logo: charcoal, honey amber, cream.
   ========================================================================= */

:root {
  /* Colors */
  --color-charcoal: #1a1816;
  --color-charcoal-soft: #2a2622;
  --color-amber: #e2a23b;
  --color-amber-deep: #c8841e;
  --color-cream: #f4ecdd;
  --color-cream-soft: #faf5e9;
  --color-text: #2a2622;
  --color-text-soft: #5a524a;
  --color-text-light: #f4ecdd;
  --color-text-light-soft: #c9c0ad;
  --color-border: rgba(26, 24, 22, 0.12);

  /* Type */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --max-width: 1100px;
  --max-width-narrow: 720px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------- Reset + base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-cream-soft);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-amber-deep);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
a:hover { color: var(--color-charcoal); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
  color: var(--color-charcoal);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.4rem); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-amber-deep);
  margin-bottom: 1rem;
}
.eyebrow-light { color: var(--color-amber); }

.h2-light { color: var(--color-text-light); }
.text-light { color: var(--color-text-light-soft); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-align: center;
}
.btn-primary {
  background: var(--color-amber);
  color: var(--color-charcoal);
  border-color: var(--color-amber);
}
.btn-primary:hover {
  background: var(--color-amber-deep);
  border-color: var(--color-amber-deep);
  color: var(--color-charcoal);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--color-charcoal);
  border-color: var(--color-charcoal);
}
.btn-ghost:hover {
  background: var(--color-charcoal);
  color: var(--color-cream);
}
.btn-lg {
  padding: 1.05rem 2rem;
  font-size: 1rem;
}
.btn[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem var(--gutter);
  background: rgba(250, 245, 233, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--color-charcoal);
}
.brand:hover { color: var(--color-charcoal); }
.brand-mark { width: 44px; height: 44px; border-radius: 50%; }
.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.site-header nav {
  display: flex;
  gap: 1.6rem;
}
.site-header nav a {
  color: var(--color-charcoal-soft);
  font-size: 0.95rem;
  font-weight: 500;
}
.site-header nav a:hover { color: var(--color-amber-deep); }

@media (max-width: 640px) {
  .site-header nav { display: none; }
  .brand-text { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  text-align: center;
  padding: clamp(3rem, 8vw, 6rem) var(--gutter) clamp(3.5rem, 8vw, 6rem);
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}
.hero-mark {
  width: clamp(140px, 22vw, 200px);
  height: clamp(140px, 22vw, 200px);
  margin: 0 auto 2rem;
  border-radius: 50%;
  filter: drop-shadow(0 12px 30px rgba(26, 24, 22, 0.18));
}
.hero h1 {
  margin-bottom: 1.2rem;
}
.hero .lede {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--color-text-soft);
  max-width: 36ch;
  margin: 0 auto 2rem;
}
.hero-cta {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Photo band (full-width, between hero and story) ---------- */

.photo-band {
  background: var(--color-charcoal);
}
.photo-band figure {
  margin: 0;
  height: clamp(320px, 50vh, 560px);
  overflow: hidden;
}
.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 640px) {
  .photo-band figure { height: 280px; }
}

/* ---------- Story photo + pull quote ---------- */

.story-photo {
  margin: 2.75rem 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(26, 24, 22, 0.18);
}
.story-photo img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 520px;
  object-fit: cover;
}

.pull-quote {
  position: relative;
  margin: 2.5rem 0 2.5rem 0;
  padding: 0.5rem 0 0.75rem 2.5rem;
  border-left: 4px solid var(--color-amber);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-charcoal);
  letter-spacing: -0.005em;
}
.pull-quote-mark {
  display: block;
  font-size: 3.2rem;
  font-style: normal;
  line-height: 0.5;
  color: var(--color-amber);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

p strong {
  color: var(--color-charcoal);
  font-weight: 600;
}

/* ---------- Sections ---------- */

.section {
  padding: clamp(3.5rem, 8vw, 6rem) var(--gutter);
}
.section-cream { background: var(--color-cream); }
.section-charcoal { background: var(--color-charcoal); }

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-inner.narrow { max-width: var(--max-width-narrow); }
.section-inner.center { text-align: center; }

.section-lede {
  font-size: 1.1rem;
  color: var(--color-text-soft);
  max-width: 50ch;
  margin-bottom: 2.5rem;
}

/* ---------- Video feature (playlist embed) ---------- */

.video-feature {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 980px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  background: var(--color-charcoal);
  box-shadow: 0 12px 32px rgba(26, 24, 22, 0.18);
}
.video-feature iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-link {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--color-text-soft);
}
.video-link a {
  color: var(--color-amber-deep);
  font-weight: 500;
}
.video-link a:hover {
  color: var(--color-charcoal);
}

/* ---------- Gallery ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.gallery figure {
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(26, 24, 22, 0.12);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.gallery figure:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(26, 24, 22, 0.2);
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Map placeholder ---------- */

.map-card {
  margin-top: 2rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(244, 236, 221, 0.15);
  background: var(--color-charcoal-soft);
}
.map-placeholder {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light-soft);
  font-size: 0.95rem;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(226, 162, 59, 0.08), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(226, 162, 59, 0.06), transparent 45%);
}
.map-frame {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: var(--color-charcoal-soft);
  filter: saturate(0.9) contrast(0.95);
}

/* ---------- Footer ---------- */

footer {
  background: var(--color-charcoal);
  color: var(--color-text-light-soft);
  padding: clamp(2.5rem, 6vw, 4rem) var(--gutter);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
}
.footer-mark { width: 56px; height: 56px; border-radius: 50%; }
.footer-text { color: var(--color-text-light); }
.footer-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.footer-text a {
  color: var(--color-amber);
}
.footer-text a:hover { color: var(--color-cream); }
footer small { color: var(--color-text-light-soft); font-size: 0.8rem; }

@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}
