/* Summit Bartenders — matches the live site's design system.
   Josefin Sans, gold #C4B583, near-black, uppercase letterspaced headings. */
:root {
  --gold: #C4B583; --cream: #E8DB98;
  --ink: #0C0C0C; --ink-2: #161616; --ink-3: #191414;
  --white: #fff; --wash: #F4F4F4; --muted: #6b675f;
  --font: 'Josefin Sans', 'Century Gothic', 'Futura', sans-serif;
  --mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --snowfield: #F7F5F0;   /* warm off-white for the listing section */
  --slate: #55524C;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 100%; }  /* 16px root — rem math below assumes it */
body {
  margin: 0; background: var(--white); color: var(--ink-2);
  font-family: var(--font); font-weight: 300; font-size: 18px; line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink-2); }
.wrap { max-width: 68rem; margin: 0 auto; padding: 0 1.5rem; }
.narrow { max-width: 46rem; }
.center { text-align: center; }

h1, h2, h3 { font-weight: 600; line-height: 1.2; margin: 0 0 1rem; letter-spacing: 2px; }
h1 { font-size: clamp(2.1rem, 6vw, 4rem); text-transform: uppercase; letter-spacing: 4px; }
.h1-sub {
  display: block; margin-top: .9rem; font-size: clamp(.9rem, 1.6vw, 1.05rem);
  font-weight: 400; letter-spacing: 3px; text-transform: uppercase; color: var(--cream);
}
h2 { font-size: clamp(1.6rem, 3.6vw, 2.2rem); text-transform: uppercase; }
h3 { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 2px; }
p { margin: 0 0 1.1rem; }
.eyebrow {
  text-transform: uppercase; letter-spacing: 5px; font-size: .82rem;
  font-weight: 400; color: var(--gold); margin-bottom: 1rem;
}
.lede { font-size: 1.08rem; color: var(--muted); font-weight: 300; }
.rule { width: 60px; height: 2px; background: var(--gold); margin: 1.25rem 0 1.75rem; }
.center .rule { margin-left: auto; margin-right: auto; }

/* ── header ───────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(255,255,255,.98); border-bottom: 1px solid #e7e5e0;
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem; padding-top: .8rem; padding-bottom: .8rem; flex-wrap: wrap;
}
.logo img { height: 58px; width: auto; }
.head-right { display: flex; align-items: center; gap: 1.75rem; flex-wrap: wrap; }
nav ul { list-style: none; display: flex; gap: 1.75rem; margin: 0; padding: 0; }
nav a {
  text-decoration: none; text-transform: uppercase; letter-spacing: 3px;
  font-size: .82rem; font-weight: 500; color: var(--ink-2); padding-bottom: 3px;
}
nav a:hover, nav a[aria-current="page"] { color: var(--gold); border-bottom: 2px solid var(--gold); }

/* the phone reads as a deliberate element, not body copy */
.head-phone {
  font-family: var(--font); font-weight: 600; font-size: .95rem;
  letter-spacing: 1.5px; font-variant-numeric: tabular-nums;
  text-decoration: none; color: var(--ink); white-space: nowrap;
  border: 1px solid var(--gold); padding: .5rem 1.1rem;
  transition: background .2s, color .2s;
}
.head-phone:hover { background: var(--gold); color: var(--white); }

/* ── hero ─────────────────────────────────────────────── */
.hero { position: relative; min-height: 78vh; display: flex; align-items: center;
        justify-content: center; text-align: center; color: var(--white); overflow: hidden; }
.hero.short { min-height: 46vh; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,12,12,.55) 0%, rgba(12,12,12,.72) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 5rem 1.5rem; max-width: 46rem; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero .eyebrow { color: var(--cream); }
.hero p { color: #eee; font-size: 1.12rem; margin-bottom: 2.25rem; }

/* ── buttons ──────────────────────────────────────────── */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  font-family: var(--font); font-weight: 600; font-size: .82rem;
  text-transform: uppercase; letter-spacing: 3px;
  padding: .8rem 2rem; border: 1px solid var(--gold);
  background: var(--gold); color: var(--white); transition: all .2s;
}
.btn:hover { background: transparent; color: var(--gold); }
.btn-outline { background: transparent; color: var(--cream); }
.btn-outline:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* ── sections ─────────────────────────────────────────── */
section { padding: 5.5rem 0; }
section.tight { padding: 4rem 0; }
section.wash { background: var(--wash); }
section.dark { background: var(--ink); color: #ddd; }
section.dark h2, section.dark h3 { color: var(--white); }
section.dark .lede { color: #b9b5ac; }

/* alternating image + text */
.split { display: grid; gap: 3.5rem; align-items: center; grid-template-columns: 1fr 1fr; }
.split.flip .split-media { order: 2; }
.split-media img { width: 100%; height: 100%; max-height: 30rem; object-fit: cover; }

.grid { display: grid; gap: 2.5rem; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); }
.svc img { width: 100%; height: 14rem; object-fit: cover; margin-bottom: 1.25rem; }

/* ── steps ────────────────────────────────────────────── */
.steps { counter-reset: step; }
.step-num {
  display: inline-block; font-size: .82rem; letter-spacing: 3px;
  color: var(--gold); font-weight: 600; margin-bottom: .5rem;
}

/* ── reviews ──────────────────────────────────────────── */
.reviews-wrap { position: relative; }
.reviews-track {
  display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding-bottom: .5rem;
  scrollbar-width: none; -ms-overflow-style: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.reviews-track > .review {
  flex: 0 0 calc((100% - 4.5rem) / 4); scroll-snap-align: start;
}
.rev-nav {
  display: flex; gap: .75rem; justify-content: center; margin-top: 1.75rem;
}
.rev-btn {
  width: 2.75rem; height: 2.75rem; border: 1px solid var(--gold); background: transparent;
  color: var(--gold); font-size: 1.1rem; line-height: 1; cursor: pointer;
  font-family: var(--font); transition: all .2s;
}
.rev-btn:hover { background: var(--gold); color: var(--white); }
.rev-btn:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
@media (max-width: 62rem) { .reviews-track > .review { flex: 0 0 calc((100% - 1.5rem) / 2); } }
@media (max-width: 40rem) { .reviews-track > .review { flex: 0 0 100%; } }
.review { background: var(--white); padding: 1.4rem 1.5rem; border-top: 2px solid var(--gold); }
.review p { font-style: italic; color: #4a4740; font-size: 1rem; line-height: 1.6; margin-bottom: .75rem; }
.review cite {
  font-style: normal; font-size: .78rem; text-transform: uppercase;
  letter-spacing: 2px; color: var(--muted);
}
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: .5rem; font-size: .9rem; }

/* ── trust strip ──────────────────────────────────────── */
.trust { background: var(--ink); color: var(--cream); padding: 1.4rem 0; }
.trust ul {
  list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap;
  gap: .75rem 3rem; justify-content: center;
  font-size: .82rem; text-transform: uppercase; letter-spacing: 2.5px; font-weight: 400;
}
.trust li::before { content: "\2022\00a0\00a0"; color: var(--gold); }

/* ── form ─────────────────────────────────────────────── */
.form-card { background: var(--white); padding: clamp(1.25rem, 2.5vw, 1.9rem); border: 1px solid #e7e5e0; max-width: 40rem; margin-inline: auto; }
form { display: grid; gap: .8rem; }
.row { display: grid; gap: .8rem; grid-template-columns: 1fr 1fr; }
label {
  display: block; font-size: .78rem; text-transform: uppercase;
  letter-spacing: 2px; font-weight: 500; margin-bottom: .3rem; color: var(--muted);
}
input, select, textarea {
  width: 100%; padding: .65rem .8rem; border: 1px solid #ddd9d2; border-radius: 0;
  font-family: var(--font); font-weight: 300; font-size: 1rem;
  background: var(--white); color: var(--ink-2);
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 2px rgba(196,181,131,.25);
}
textarea { min-height: 4.5rem; resize: vertical; }
.req { color: #b4634f; }
.form-note { font-size: .85rem; color: var(--muted); margin: 0; line-height: 1.5; }
.form-alert {
  background: var(--cream); border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem; margin-bottom: 1.5rem; font-size: .95rem;
}
.hp { position: absolute; left: -9999px; }

/* ── blog ─────────────────────────────────────────────── */
/* Structure follows summitmountainlights.com/blog; colours and type are Summit
   Bartenders'. Key detail from the reference: only the page H1 uses the display
   serif — card titles stay sans. That contrast is most of why it reads well. */

.blog-masthead {
  background: var(--ink); color: var(--snowfield);
  padding: 4rem 0 4.5rem;
}
.blog-masthead .eyebrow {
  display: flex; align-items: center; gap: .9rem;
  font-family: var(--font); font-size: .8125rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.4rem;
}
.blog-masthead .eyebrow::before {
  content: ""; width: 34px; height: 1px; background: var(--gold); display: block;
}
.blog-masthead h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600; line-height: 1.15; letter-spacing: .01em;
  text-transform: none; color: var(--snowfield); margin: 0;
}
.blog-masthead .lead {
  font-size: 1.05rem; line-height: 1.7; color: rgba(247,245,240,.78);
  max-width: 34rem; margin: 1.4rem 0 0;
}

.blog-body { background: var(--snowfield); padding: 4rem 0 5rem; }

.post-list { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 50rem) { .post-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 67.5rem) { .post-list { grid-template-columns: repeat(3, 1fr); } }

.post-card {
  display: flex; flex-direction: column; height: 100%; text-decoration: none;
  background: var(--white); border: 1px solid rgba(12,12,12,.09);
  border-radius: 8px; padding: 30px;
  box-shadow: 0 4px 16px rgba(12,12,12,.06);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.post-card:hover {
  box-shadow: 0 10px 28px rgba(12,12,12,.12);
  transform: translateY(-2px); border-color: rgba(196,181,131,.55);
}
.post-card .cat {
  font-size: .8125rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 10px;
}
.post-card h3 {
  /* Sans, deliberately — the serif is reserved for the page headline. */
  font-family: var(--font); font-size: 1.3rem; line-height: 1.3;
  letter-spacing: 0; text-transform: none; font-weight: 700;
  color: var(--ink); margin: 0 0 .75rem;
}
.post-card p { font-size: .97rem; line-height: 1.7; color: var(--slate); margin: 0 0 1.5rem; }
/* margin-top:auto pins the date to the bottom so cards line up regardless of
   how long each excerpt runs. */
.post-card .date {
  margin: auto 0 0; font-size: .8125rem; color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.post-hero { max-width: 44rem; margin: 2.5rem auto 0; padding: 0 1.5rem; }
.post-hero img { width: 100%; height: 15rem; object-fit: cover; border-radius: 8px; }
.post-body { max-width: 44rem; margin: 0 auto; }
.post-body h2 {
  font-family: var(--font-display); text-transform: none; letter-spacing: .01em;
  font-size: 1.75rem; font-weight: 600; margin-top: 2.5rem; color: var(--ink);
}
.post-body h3 { text-transform: none; letter-spacing: .5px; margin-top: 1.75rem; }
.post-body ul, .post-body ol { padding-left: 1.25rem; margin-bottom: 1.1rem; }
.post-body li { margin-bottom: .5rem; }
.post-back {
  display: inline-block; margin-top: 2.5rem; font-size: .82rem;
  text-transform: uppercase; letter-spacing: 3px; color: var(--gold); text-decoration: none;
}

/* ── footer ───────────────────────────────────────────── */
.site-footer { background: var(--ink); color: #a9a49a; padding: 4rem 0 2rem; font-size: .92rem; }
.site-footer h3 { color: var(--white); font-size: .82rem; letter-spacing: 3px; margin-bottom: 1rem; }
.site-footer a { color: var(--cream); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .5rem; }
.foot-phone {
  font-weight: 600; font-size: 1.05rem; letter-spacing: 1.5px;
  font-variant-numeric: tabular-nums; color: var(--cream);
}
.foot-logo { height: 58px; width: auto; margin-bottom: 1.25rem; }
.copyright {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid #2a2a2a;
  text-align: center; font-size: .78rem; text-transform: uppercase; letter-spacing: 2px;
}

@media (max-width: 52rem) {
  .split, .row { grid-template-columns: 1fr; }
  .split.flip .split-media { order: 0; }
  .split { gap: 2rem; }
}
@media (max-width: 40rem) {
  body { font-size: 17px; }
  section { padding: 3.5rem 0; }
  .site-header .wrap { justify-content: center; }
  .head-right { gap: 1rem; width: 100%; justify-content: center; }
  nav ul { gap: 1.25rem; }
  .hero { min-height: 66vh; }
}
