/* ============================================================
   Balconé Holdings — base styles
   Plain CSS, no build step. Edit colors in :root to re-theme.
   Palette inspired by chartreuse / cream / charcoal editorial design.
   ============================================================ */

:root {
  /* palette */
  --ink:        #1f1f17;   /* near-black charcoal */
  --ink-soft:   #54533f;
  --bg:         #f4f2e9;   /* warm cream (outer background) */
  --chartreuse: #c9cf78;   /* signature green-yellow block */
  --chartreuse-d:#b9c062;  /* hover / deeper */
  --card:       #fffefa;
  --line:       #e2dfcf;   /* hairline borders */

  /* type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, sans-serif;

  /* layout */
  --maxw: 1140px;
  --radius: 16px;
  --radius-lg: 30px;
  --shadow: 0 1px 2px rgba(31,31,23,.04), 0 12px 34px rgba(31,31,23,.07);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
}
h1 em, h2 em { font-style: italic; font-weight: 400; }

p { margin: 0; }
a { color: inherit; text-decoration: none; }

/* ---------- NAV ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px 28px;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: var(--serif);
  color: var(--ink);
}
.brand-name {
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  line-height: 1;
}
.brand-name span { margin-left: 6px; font-weight: 400; }
.brand-sub {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
}
.brand.small { gap: 0; }
.brand.small .brand-name { font-size: 1rem; }

.nav-links { display: flex; gap: 28px; align-items: center; margin-left: auto; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.is-active { color: var(--ink); border-bottom: 2px solid var(--chartreuse); padding-bottom: 3px; }
.nav-links .btn { margin-left: 6px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, border-color .15s ease, color .15s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: #34341f; }

.btn-ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }

.btn-small { padding: 10px 18px; font-size: 0.86rem; }

/* ---------- HERO BLOCK ---------- */
.hero {
  max-width: var(--maxw);
  margin: 8px auto 0;
  padding: 0 28px;
}

.hero-block {
  background: var(--chartreuse);
  border-radius: var(--radius-lg);
  padding: 56px 56px 52px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink);
  opacity: .65;
  margin-bottom: 22px;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  margin-bottom: 26px;
}
.hero-copy .lede {
  max-width: 440px;
  font-size: 1.05rem;
  color: var(--ink);
  opacity: .82;
  margin-bottom: 30px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* hero image + badge */
.hero-media { position: relative; }
.hero-img {
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  background: linear-gradient(135deg, #b7be63, #a9b056);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(31,31,23,.45);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.3;
  padding: 8px;
}

/* store hero is single column, centered */
.store-hero .hero-block {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}
.store-hero .lede { margin-left: auto; margin-right: auto; }
.store-hero .hero-cta { justify-content: center; }

/* ---------- VENTURES (landing boxes) ---------- */
.ventures {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 56px 28px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.card-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  background: var(--chartreuse);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.card h2 { font-size: 1.7rem; margin-bottom: 12px; }
.card p { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 24px; }

.card-link {
  margin-top: auto;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1.5px solid var(--chartreuse);
  align-self: flex-start;
  padding-bottom: 2px;
  transition: border-color .15s ease;
}
.card-link:hover { border-color: var(--ink); }

.store-badges { margin-top: auto; display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- ABOUT ---------- */
.about {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 28px 96px;
  text-align: center;
}
.about h2 { font-size: 2.1rem; margin-bottom: 18px; }
.about p { color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- STORE SECTIONS ---------- */
.store-section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 60px 28px;
}
.store-section.alt {
  background: var(--chartreuse);
  border-radius: var(--radius-lg);
  margin: 20px auto;
}

.section-head { text-align: center; max-width: 560px; margin: 0 auto 44px; }
.section-head h2 { font-size: 2.2rem; margin-bottom: 12px; }
.section-head p { color: var(--ink-soft); }
.store-section.alt .section-head p { color: var(--ink); opacity: .8; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.product-img {
  aspect-ratio: 1 / 1;
  background: #eceadd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b7b39d;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
a.product-img { text-decoration: none; }

.empty-note {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--ink-soft);
  font-style: italic;
  padding: 28px 8px;
}

.product-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }

.product-condition {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}
.product-condition.affiliate { color: var(--ink); }

.product h3 { font-size: 1.05rem; font-weight: 500; }
.product-price { font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.product .btn { margin-top: auto; text-align: center; }

.section-foot { text-align: center; margin-top: 44px; }

/* two-column Golf / Fly Fishing layout */
.dual-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}
.column-head {
  font-size: 1.6rem;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--chartreuse);
}
.col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.column-foot { text-align: center; margin-top: 26px; }

.disclosure {
  max-width: 600px;
  margin: 36px auto 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ---------- FOOTER ---------- */
.footer { border-top: 1px solid var(--line); margin-top: 40px; }
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px 28px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.social-links { display: flex; gap: 18px; flex-wrap: wrap; justify-content: flex-end; align-items: center; }
.social-links a {
  display: inline-flex;
  color: var(--ink-soft);
  transition: color .15s ease, opacity .15s ease, transform .12s ease;
}
.social-links a:hover { color: var(--ink); transform: translateY(-1px); }
.social-links a.is-pending { opacity: .35; }
.social-links svg { width: 22px; height: 22px; display: block; }
.footer-copy {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px 26px;
  font-size: 0.84rem;
  color: var(--ink-soft);
}
.footer-copy a { text-decoration: underline; }
.copyright { font-size: 0.84rem; color: var(--ink-soft); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero-block { grid-template-columns: 1fr; gap: 36px; padding: 44px 36px; }
  .hero-media { order: -1; }
  .ventures { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .dual-columns { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  .nav { flex-wrap: wrap; justify-content: center; gap: 14px; padding: 20px; }
  .nav-links { gap: 16px; margin-left: 0; }
  .hero-block { padding: 34px 24px; border-radius: 24px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 16px; }
  .social-links { justify-content: center; }
  .footer-copy { text-align: center; }
}
