/* JBCASL style sample — Photo-forward. Mobile-first. */

:root {
  --ink: #1a1f22;
  --muted: #4a5560;
  --foam: #f7f8f7;
  --white: #ffffff;
  --accent: #9a7354; /* copper-led, away from venture kelp */
  --accent-bright: #b08a6a;
  --sea: #5c4a3a; /* warm ink for hover */
  --copper: #b08a6a; /* thin accent polish only */
  --overlay: rgba(20, 18, 16, 0.52);
  --overlay-heavy: rgba(18, 16, 14, 0.74);
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --max: 70rem;
  --narrow: 36rem;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  overflow-x: clip;
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--foam);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--copper); text-underline-offset: 0.15em; }
a:hover, a:focus-visible { color: var(--accent-bright); }

:focus-visible { outline: 3px solid var(--copper); outline-offset: 2px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: 0.5rem 1rem;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

.wrap { width: min(100% - 1.5rem, var(--max)); margin-inline: auto; }
.wrap.narrow { width: min(100% - 1.5rem, var(--narrow)); }

.sample-bar {
  background: var(--white); border-bottom: 1px solid #e2e6e4;
  padding: 0.6rem 0; font-size: 0.8rem; position: relative; z-index: 10;
}
.sample-bar-inner {
  display: flex; flex-wrap: wrap; gap: 0.4rem 1rem;
  align-items: center; justify-content: space-between;
}
.sample-label { margin: 0; color: var(--muted); font-weight: 600; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; }
.sample-nav { display: flex; flex-wrap: wrap; gap: 0.35rem 0.75rem; list-style: none; margin: 0; padding: 0; }
.sample-nav a { text-decoration: none; color: var(--muted); }
.sample-nav a[aria-current="page"] { color: var(--copper); font-weight: 700; }

/* Minimal chrome */
.mini-chrome {
  position: absolute; top: 0; left: 0; right: 0; z-index: 5;
  padding: 1rem 0; pointer-events: none;
}
.mini-chrome .wrap { display: flex; justify-content: space-between; align-items: center; pointer-events: auto; }
.brand {
  display: flex; align-items: center; gap: 0.5rem;
  text-decoration: none; color: #fff; font-weight: 700; font-size: 0.95rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.brand img {
  width: 44px; height: 44px; border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.chrome-cta {
  color: #fff; text-decoration: none; font-size: 0.85rem; font-weight: 600;
  padding: 0.45rem 0.9rem; border: 1px solid rgba(255,255,255,0.55);
  border-radius: 999px; background: rgba(0,0,0,0.2);
}
.chrome-cta:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* Full-bleed photo bands */
.bleed {
  position: relative;
  min-height: 72vh;
  display: flex; align-items: flex-end;
  color: #fff;
  background-color: #1a2a30;
  background-size: cover;
  background-position: center;
  overflow: hidden; /* clip Ken Burns scale so desktop doesn’t get a horizontal scrollbar */
}
.bleed-hero { min-height: 85vh; }
.bleed-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.bleed-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--overlay-heavy) 0%, var(--overlay) 45%, rgba(0,0,0,0.15) 100%);
}
.bleed-caption {
  position: relative; z-index: 2;
  padding: 2.5rem 0 2.75rem;
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
}
.bleed-caption .eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  opacity: 0.95; font-weight: 600; color: #e8d5c4;
}
.bleed-caption h1, .bleed-caption h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.75rem, 5vw, 3rem);
  line-height: 1.1; letter-spacing: -0.02em; font-weight: 800;
  max-width: 16ch;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.bleed-caption p {
  margin: 0 0 1.25rem; max-width: 28rem;
  font-size: 1.05rem; opacity: 0.95;
}
.short-cap {
  margin: 0; font-size: 0.95rem; opacity: 0.9; max-width: 24rem;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.8rem 1.35rem; font-weight: 700; font-size: 0.95rem;
  text-decoration: none; border-radius: 999px; border: none;
}
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover, .btn-light:focus-visible { background: #f0f0f0; color: var(--ink); }

.draft-pill {
  display: inline-block; margin-top: 1rem;
  padding: 0.4rem 0.75rem; border-radius: 6px;
  background: rgba(255,255,255,0.15); font-size: 0.8rem;
  backdrop-filter: blur(4px);
}

/* Slim text strips between photos */
.strip {
  padding: 2.25rem 0;
  background: var(--white);
}
.strip.alt { background: var(--foam); }
.strip h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: -0.02em;
}
.strip p { margin: 0 0 0.75rem; color: var(--muted); max-width: 36rem; }
.strip p:last-child { margin-bottom: 0; }

.price-grid {
  display: grid; gap: 0.85rem; margin-top: 1.25rem;
}
@media (min-width: 560px) {
  .price-grid.two { grid-template-columns: 1fr 1fr; }
  .price-grid.three { grid-template-columns: 1fr 1fr 1fr; }
}
.price-tile {
  background: var(--foam); border-radius: 10px; padding: 1.1rem 1rem;
  border: 1px solid #e2e6e4;
}
.strip.alt .price-tile { background: var(--white); }
.price-tile h3, .price-tile h4 { margin: 0 0 0.25rem; font-size: 0.95rem; }
.amount {
  font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em;
  color: var(--copper); display: block; margin: 0.25rem 0;
}
.per { font-size: 0.9rem; font-weight: 600; color: var(--muted); }
.meta { font-size: 0.8rem; color: var(--muted); margin: 0 0 0.4rem; }
.price-tile p, .price-tile ul { margin: 0; font-size: 0.88rem; color: var(--muted); }
.price-tile ul { margin-top: 0.5rem; padding-left: 1rem; }
.price-tile li { margin-bottom: 0.25rem; }
.group-label {
  margin: 1.75rem 0 0.35rem;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
}
.group-label:first-of-type { margin-top: 0.5rem; }
.blurb { font-size: 0.9rem !important; margin-bottom: 0.75rem !important; }
.note { margin-top: 1rem; font-size: 0.85rem; color: var(--muted); }

.contact-strip { text-align: center; padding: 3rem 0; }
.contact-strip .btn { margin-top: 0.75rem; background: var(--ink); color: #fff; border: 1px solid var(--copper); }
.contact-strip .btn:hover { background: #2a3034; color: #fff; border-color: var(--accent-bright); }

.site-footer {
  padding: 2rem 0 2.5rem; font-size: 0.85rem; color: var(--muted);
  background: #f0eeeb; border-top: 1px solid #e2ddd6;
}
.footer-inner { display: flex; flex-direction: column; gap: 0.35rem; }
.footer-brand {
  display: flex; align-items: center; gap: 0.55rem;
  color: var(--ink); margin: 0 0 0.35rem;
}
.footer-brand img { width: 44px; height: 44px; border-radius: 6px; }
.site-footer p { margin: 0; }

/* Tiny polish — Ken Burns-lite on hero only when scroll-timeline exists */
@supports (animation-timeline: scroll()) {
  .bleed-hero .bleed-img {
    will-change: transform;
    animation: pf-kenburns linear both;
    animation-timeline: scroll();
    animation-range: 0vh 70vh;
  }
}
@keyframes pf-kenburns {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}
.bleed-caption {
  opacity: 0;
  transform: translateY(10px);
  animation: pf-caption-in 0.7s ease 0.15s forwards;
}
@keyframes pf-caption-in {
  to { opacity: 1; transform: none; }
}
.chrome-cta:hover { border-color: var(--copper); }
@media (prefers-reduced-motion: reduce) {
  .bleed-hero .bleed-img {
    transform: none; animation: none; will-change: auto;
  }
  .bleed-caption {
    opacity: 1; transform: none; animation: none;
  }
}
