/* ==========================================================================
   EventBarMasters.com — Core Stylesheet
   System fonts only. No external requests. No framework.
   Palette + type system defined once here; every page links this file.
   ========================================================================== */

:root {
  /* ---- Palette -----------------------------------------------------------
     This is the premium/formal tier of the bartending cluster (weddings,
     galas, upscale private events) — it needs to read differently from both
     the roofing brand (graphite/amber) and its more casual sibling sites.
     Deliberately NOT the generic-AI-luxury trio: no cream+serif+terracotta,
     no purple-blue gradient, no gold-on-black. Base is a deep bottle-green
     ink pulled from glassware and botanicals; the cool "mist" neutral has a
     grey-green undertone instead of cream's yellow warmth; brass and a deep
     wine/garnet carry the two accent roles (metal + toast/celebration),
     each used sparingly rather than as a wraparound gold treatment. */
  --ink: #182420;
  --ink-soft: #3d4a45;
  --forest: #1f3d34;
  --forest-2: #2a5245;
  --forest-deep: #142822;
  --brass: #ab7f3f;
  --brass-light: #c79a54;
  --brass-dark: #8a6530;
  --wine: #6d2438;
  --wine-dark: #501a29;
  --wine-light: #8a3548;
  --mist: #f1f3ee;
  --mist-dim: #e6e9e0;
  --line: #d7dcd0;
  --line-dark: #2c3c35;
  --white: #ffffff;
  --success: #2e6b46;

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

  --max-width: 1180px;
  --radius: 2px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

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

/* ---- Skip link ----------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brass);
  color: var(--ink);
  padding: 12px 18px;
  z-index: 200;
  font-weight: 700;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* ---- Type system ----------------------------------------------------------
   One system-font family throughout; hierarchy is carried by weight, size,
   letter-spacing and thin brass rule-lines rather than mixing typefaces —
   the "editorial invitation" feel comes from spacing and restraint, not a
   decorative serif. */

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

h1 {
  font-size: clamp(2.2rem, 4.6vw + 1rem, 3.5rem);
  letter-spacing: -0.02em;
  font-weight: 800;
}

h2 {
  font-size: clamp(1.6rem, 2.2vw + 1rem, 2.3rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1.1em;
  color: var(--ink-soft);
}

.lede {
  font-size: 1.14rem;
  color: var(--ink-soft);
}

.text-center {
  text-align: center;
}

/* ---- Eyebrow label --------------------------------------------------------
   Thin brass rule + small tracked-out caps. Used everywhere instead of a
   decorative script or serif to signal "formal" — restraint over ornament. */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--wine);
  margin: 0 0 0.9em;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--brass);
}
.eyebrow.on-dark {
  color: var(--brass-light);
}

/* ---- Buttons --------------------------------------------------------------*/
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: var(--wine);
  color: var(--white);
  border-color: var(--wine);
}
.btn-primary:hover {
  background: var(--wine-dark);
  border-color: var(--wine-dark);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-soft);
}
.btn-outline:hover {
  border-color: var(--wine);
  color: var(--wine);
}
.btn-outline.on-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-outline.on-dark:hover {
  border-color: var(--brass-light);
  color: var(--brass-light);
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 1.6em;
}

/* ---- Header ---------------------------------------------------------------*/
.site-header {
  background: var(--forest);
  color: var(--white);
  position: relative;
  z-index: 100;
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 20px;
}
.brand {
  text-decoration: none;
  color: var(--white);
  line-height: 1.1;
}
.brand-mark {
  display: block;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.brand-mark span {
  color: var(--brass-light);
}
.brand-sub {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}
.main-nav {
  display: none;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--white);
  border-bottom-color: var(--brass);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-phone {
  text-decoration: none;
  color: var(--white);
  text-align: right;
  display: none;
  line-height: 1.2;
}
.header-phone small {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brass-light);
}
.header-phone span {
  font-weight: 700;
  font-size: 0.98rem;
}
.nav-toggle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
}
.mobile-nav {
  display: none;
  background: var(--forest-deep);
  border-top: 1px solid var(--line-dark);
}
.mobile-nav.is-open {
  display: block;
}
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 10px 20px 18px;
}
.mobile-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-nav a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

@media (min-width: 900px) {
  .main-nav {
    display: block;
  }
  .header-phone {
    display: block;
  }
  .nav-toggle {
    display: none;
  }
  .mobile-nav {
    display: none !important;
  }
}

/* ---- Hero -------------------------------------------------------------- */
.hero {
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: var(--white);
  padding: 64px 0 72px;
}
.hero-grid {
  display: grid;
  gap: 40px;
}
.hero h1 {
  color: var(--white);
}
.hero .lede {
  color: rgba(255, 255, 255, 0.82);
  max-width: 54ch;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 1.8em;
}
.hero-features {
  display: grid;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 24px;
}
.hero-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.hero-feature .mark {
  font-family: var(--font-sans);
  font-weight: 800;
  color: var(--brass-light);
  font-size: 0.85rem;
  border: 1px solid rgba(199, 154, 84, 0.5);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}
.hero-feature strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 2px;
}

@media (min-width: 860px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }
}

/* ---- Sections --------------------------------------------------------- */
section {
  padding: 56px 0;
}
.section-tint {
  background: var(--mist-dim);
}
.section-dark {
  background: var(--forest-deep);
  color: var(--white);
}
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}
.section-dark p {
  color: rgba(255, 255, 255, 0.78);
}
.section-head {
  max-width: 720px;
  margin: 0 0 36px;
}
.section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head.centered .eyebrow {
  justify-content: center;
}

/* ---- Grids & cards ------------------------------------------------------*/
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.card-index {
  display: block;
  font-weight: 800;
  color: var(--brass);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.card-dark {
  background: var(--forest);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.card-dark p {
  color: rgba(255, 255, 255, 0.78);
}
.card a {
  color: var(--wine);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.92rem;
}
.card a:hover {
  text-decoration: underline;
}

/* ---- CTA band ------------------------------------------------------------*/
.cta-band {
  background: var(--wine);
  color: var(--white);
  text-align: center;
  padding: 60px 0;
}
.cta-band h2 {
  color: var(--white);
}
.cta-band .lede {
  color: rgba(255, 255, 255, 0.86);
}
.cta-band .btn-row {
  justify-content: center;
}
.cta-band .btn-primary {
  background: var(--white);
  color: var(--wine-dark);
  border-color: var(--white);
}
.cta-band .btn-primary:hover {
  background: var(--mist-dim);
  border-color: var(--mist-dim);
}

/* ---- Package cards --------------------------------------------------------*/
.package-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.package-card.is-featured {
  border-color: var(--brass);
  box-shadow: 0 0 0 1px var(--brass);
}
.package-tier {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brass-dark);
}
.package-card h3 {
  margin-bottom: 0.2em;
}
.package-price {
  font-weight: 700;
  color: var(--wine);
  font-size: 0.95rem;
}
.package-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.package-list li {
  padding-left: 22px;
  position: relative;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.package-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 9px;
  height: 9px;
  border: 1px solid var(--brass);
  transform: rotate(45deg);
}
.package-best-for {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.package-best-for strong {
  color: var(--ink);
}

.addon-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .addon-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .addon-grid { grid-template-columns: repeat(4, 1fr); }
}
.addon-card {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px;
}
.addon-card h4 {
  font-size: 0.98rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--ink);
}
.addon-card p {
  font-size: 0.88rem;
  margin: 0;
}

/* ---- Timeline (weddings.html) --------------------------------------------*/
.timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: 2px solid var(--brass);
  max-width: 780px;
}
.timeline li {
  position: relative;
  padding: 0 0 34px 30px;
}
.timeline li:last-child {
  padding-bottom: 0;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--wine);
  border-radius: 50%;
  border: 2px solid var(--mist);
  box-shadow: 0 0 0 2px var(--brass);
}
.timeline-when {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brass-dark);
  margin-bottom: 4px;
}
.timeline h3 {
  margin-bottom: 6px;
}
.timeline p {
  margin: 0;
}

/* ---- Gallery ---------------------------------------------------------- */
.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
.gallery-item {
  aspect-ratio: 4 / 5;
  background: repeating-linear-gradient(
    135deg,
    var(--forest) 0px,
    var(--forest) 12px,
    var(--forest-2) 12px,
    var(--forest-2) 24px
  );
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
}
.gallery-item span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(20, 40, 34, 0.65);
  padding: 8px 10px;
  border: 1px dashed rgba(199, 154, 84, 0.6);
}
.gallery-category {
  margin-bottom: 44px;
}
.gallery-category:last-child {
  margin-bottom: 0;
}
.gallery-category h2 {
  font-size: 1.35rem;
}

/* ---- Reviews ------------------------------------------------------------*/
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brass);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.review-placeholder-text {
  font-style: italic;
  color: var(--ink-soft);
}
.review-meta {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.leave-review-card {
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.leave-review-card h3 {
  color: var(--white);
}
.leave-review-card p {
  color: rgba(255, 255, 255, 0.82);
}
.leave-review-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

/* ---- Placeholders ------------------------------------------------------- */
.placeholder {
  color: var(--wine);
  background: rgba(109, 36, 56, 0.08);
  border: 1px dashed rgba(109, 36, 56, 0.4);
  padding: 1px 7px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9em;
}
.on-dark .placeholder,
.section-dark .placeholder,
.hero .placeholder,
.cta-band .placeholder {
  color: var(--brass-light);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(199, 154, 84, 0.55);
}

/* ---- Forms ---------------------------------------------------------------*/
.form-layout {
  display: grid;
  gap: 40px;
}
@media (min-width: 900px) {
  .form-layout {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
}
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
}
.field-row {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}
@media (min-width: 560px) {
  .field-row.two-col {
    grid-template-columns: 1fr 1fr;
  }
}
label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--ink);
}
label .req {
  color: var(--wine);
}
input,
select,
textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 11px 13px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--brass);
  outline-offset: 1px;
  border-color: var(--brass);
}
textarea {
  resize: vertical;
  min-height: 120px;
}
.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
}
.form-status.is-visible {
  display: block;
}
.form-status.is-success {
  background: rgba(46, 107, 70, 0.1);
  border: 1px solid var(--success);
  color: #204d34;
}
.form-status.is-error {
  background: rgba(109, 36, 56, 0.08);
  border: 1px solid var(--wine);
  color: var(--wine-dark);
}
.form-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 14px;
}
.contact-sidebar {
  display: grid;
  gap: 20px;
}
.sidebar-card {
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.sidebar-card h3 {
  color: var(--white);
}
.sidebar-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}
.sidebar-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.sidebar-card li {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
}
.sidebar-card li strong {
  display: block;
  color: var(--brass-light);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

/* ---- Footer ---------------------------------------------------------------*/
.site-footer {
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.82);
  padding: 52px 0 26px;
}
.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  margin-bottom: 32px;
}
@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}
.site-footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--brass-light);
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}
.footer-siblings {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  margin-bottom: 24px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer-siblings a {
  font-weight: 700;
  color: var(--brass-light);
}
.footer-siblings a:hover {
  text-decoration: underline;
}
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}
