/* =========================================================================
   eBartenders.com — house styles
   System-font, dependency-free stylesheet. No external fonts/CDNs by design
   (must run on plain shared cPanel hosting).
   Palette: deep bar-green ink + warm paper + citrus coral/gold accents.
   Deliberately distinct from the roofing-cluster graphite/charcoal + amber
   palette (corbenhogan.com / roofmastery.com) — this is hospitality, not
   contracting: warmer, more social, still restrained (no gradients, no
   cream+serif+terracotta, no emoji dividers).
   ========================================================================= */

:root {
  /* Core palette */
  --ink: #17322c;          /* deep bar-green, near-black — header/footer/text */
  --ink-soft: #24463d;     /* lighter panel fill on dark sections */
  --paper: #fffdfa;        /* card surface */
  --bg: #f6f2ea;           /* warm page background */
  --bg-alt: #eee7d8;       /* secondary section band */
  --coral: #d8542f;        /* primary accent — CTAs, links */
  --coral-dark: #b5411f;   /* hover/active state */
  --gold: #b98a34;         /* secondary accent — badges, rules, tier markers */
  --lime: #7c9438;         /* tertiary accent — used sparingly (icons, ticks) */
  --text: #1e2b26;         /* body text */
  --text-muted: #55645c;   /* secondary text */
  --line: #ddd3bf;         /* hairline borders on paper */
  --line-dark: #3a5c50;    /* hairline borders on ink */

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --container: 1120px;
  --radius: 3px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

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

a { color: var(--coral-dark); text-decoration-thickness: 1.5px; text-underline-offset: 2px; }
a:hover { color: var(--coral); }

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

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--font);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.35rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; color: var(--text); }
.lede { font-size: 1.15rem; color: var(--text-muted); max-width: 62ch; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6em;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--coral);
  margin-right: 8px;
  vertical-align: middle;
}

section { padding: 4.2rem 0; }
section.tight { padding: 2.6rem 0; }
.band-alt { background: var(--bg-alt); }
.band-ink { background: var(--ink); color: #f2ede1; }
.band-ink h2, .band-ink h3, .band-ink h4 { color: #fff; }
.band-ink p { color: #cfdad3; }
.band-ink .lede { color: #cfdad3; }

.section-head { max-width: 720px; margin-bottom: 2.4rem; }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.85em 1.5em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--coral);
  color: #fff9f2;
}
.btn-primary:hover { background: var(--coral-dark); color: #fff9f2; }

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

.band-ink .btn-ghost { color: #f2ede1; }
.band-ink .btn-ghost:hover { background: #f2ede1; color: var(--ink); }

.btn-row { display: flex; gap: 0.9rem; flex-wrap: wrap; align-items: center; }

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

.site-header {
  background: var(--ink);
  color: #f2ede1;
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line-dark);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-decoration: none;
  color: #fff;
}
.brand strong {
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.brand span {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-dark);
  color: #f2ede1;
  border-radius: var(--radius);
  padding: 0.5em 0.7em;
  font-size: 0.9rem;
  cursor: pointer;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.7rem;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: #e7e1d3;
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.4em 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: #fff;
  border-bottom-color: var(--coral);
}

.nav-cta {
  display: inline-flex;
}

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; align-items: center; gap: 0.4em; }
  .main-nav {
    display: none;
    width: 100%;
    order: 3;
    border-top: 1px solid var(--line-dark);
  }
  .main-nav.is-open { display: block; }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1rem;
  }
  .main-nav a {
    display: block;
    padding: 0.7em 0.2em;
    border-bottom: 1px solid var(--line-dark);
  }
  .site-header .container { flex-wrap: wrap; }
  .nav-cta { display: none; }
}

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

.hero {
  background: var(--ink);
  color: #f2ede1;
  padding: 4.5rem 0 4rem;
  border-bottom: 6px solid var(--coral);
}
.hero .eyebrow { color: var(--gold); }
.hero h1 { color: #fff; max-width: 18ch; }
.hero .lede { color: #d7e0d9; font-size: 1.2rem; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-dark);
}
.hero-meta div { max-width: 220px; }
.hero-meta strong { display: block; color: #fff; font-size: 0.95rem; margin-bottom: 0.2em; }
.hero-meta span { color: #b9c4bd; font-size: 0.86rem; }

.page-hero {
  background: var(--ink);
  color: #f2ede1;
  padding: 3.4rem 0 2.6rem;
  border-bottom: 6px solid var(--coral);
}
.page-hero h1 { color: #fff; }
.page-hero .lede { color: #d7e0d9; }

/* ---------- Cards / grids ---------- */

.grid { display: grid; gap: 1.6rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
}
.card h3 { margin-bottom: 0.4em; }
.card .tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.7em;
}

.event-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-top: 3px solid var(--gold);
}
.event-card h4 { margin-bottom: 0.35em; }
.event-card p { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 0; }

/* ---------- Service tiers ---------- */

.tier {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.tier-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.tier-head h3 { margin: 0; }
.tier-price {
  font-weight: 700;
  color: var(--coral-dark);
  font-size: 0.92rem;
  border: 1px dashed var(--gold);
  padding: 0.3em 0.7em;
  border-radius: var(--radius);
  white-space: nowrap;
}
.tier ul { margin: 0; padding-left: 1.15em; color: var(--text); }
.tier li { margin-bottom: 0.4em; }
.tier .best-for {
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--text-muted);
}
.tier .best-for strong { color: var(--ink); }

/* ---------- Placeholder blocks (photos / reviews) ---------- */

.placeholder-block {
  border: 2px dashed var(--gold);
  background: #fbf7ec;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 1rem;
}
.photo-slot { aspect-ratio: 4 / 3; }
.review-card {
  border: 2px dashed var(--gold);
  background: #fbf7ec;
  border-radius: var(--radius);
  padding: 1.6rem;
}
.review-card .stars {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.7em;
}
.review-card p { color: var(--text-muted); font-style: italic; margin-bottom: 0.6em; }
.review-card .attrib { color: var(--text-muted); font-size: 0.85rem; font-style: normal; }

/* ---------- Forms ---------- */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 620px) {
  .form-grid { grid-template-columns: 1fr; }
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4em;
}
label .req { color: var(--coral-dark); }

input, select, textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 0.98rem;
  padding: 0.75em 0.85em;
  border: 1px solid #c9bfa7;
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--coral);
  outline-offset: 1px;
  border-color: var(--coral);
}
textarea { resize: vertical; min-height: 110px; }

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.form-status {
  border-radius: var(--radius);
  padding: 0.9em 1.1em;
  font-size: 0.92rem;
  margin-bottom: 1.4rem;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-error {
  background: #fbe8e2;
  border: 1px solid var(--coral-dark);
  color: var(--coral-dark);
}
.form-status.is-success {
  background: #eef4e5;
  border: 1px solid var(--lime);
  color: #4c5c26;
}

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

.site-footer {
  background: var(--ink);
  color: #cfdad3;
  padding: 3.2rem 0 2rem;
  margin-top: 3rem;
}
.site-footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 0.8em; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid var(--line-dark);
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 0.55em; }
.footer-grid a { color: #cfdad3; text-decoration: none; font-size: 0.9rem; }
.footer-grid a:hover { color: #fff; }
.site-footer p { color: #a9b6ae; font-size: 0.88rem; }

.footer-siblings {
  background: var(--ink-soft);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  margin: 1.8rem 0;
  font-size: 0.88rem;
  color: #dbe4dd;
}
.footer-siblings strong { color: #fff; }
.footer-siblings a { color: var(--gold); }

.footer-bottom {
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.82rem;
  color: #92a099;
}
.footer-bottom a { color: #92a099; }

/* ---------- Misc ---------- */

.divider-rule {
  width: 44px;
  height: 3px;
  background: var(--coral);
  border: none;
  margin: 0 0 1.4rem;
}

.badge-list { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.4rem; }
.badge-list span {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 999px;
  padding: 0.4em 0.9em;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.6rem;
  align-items: start;
}
@media (max-width: 820px) {
  .two-col { grid-template-columns: 1fr; }
}

.error-banner {
  background: #fbe8e2;
  border: 1px solid var(--coral-dark);
  color: var(--coral-dark);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-size: 0.92rem;
  margin: 1rem 0;
}
