/* Private Label — premium custom: navy / white */
:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --ink: #0a1628;
  --muted: #4b5568;
  --navy: #0a1628;
  --navy-mid: #1e3a5f;
  --accent: #1e3a5f;
  --silver: #c5cdd8;
  --border: #e2e6ee;
  --photo-a: #0a1628;
  --photo-b: #1e3a5f;
  --photo-c: #334155;
  --photo-d: #64748b;
}
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; color: var(--ink); background: var(--bg); line-height: 1.55; }
a { color: var(--navy-mid); }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 1.25rem; }
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; min-height: 3.5rem; gap: 1rem; position: relative; }
.logo { font-weight: 800; text-decoration: none; color: var(--navy); letter-spacing: -0.02em; }
.logo span { color: var(--navy-mid); font-weight: 600; }
.nav-links { display: flex; gap: 1.25rem; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav-links a { text-decoration: none; color: var(--muted); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--navy); }
.nav-cta { background: var(--navy); color: #fff !important; padding: 0.45rem 0.9rem; border-radius: 6px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--border); border-radius: 6px; padding: 0.35rem 0.6rem; font-size: 1.1rem; cursor: pointer; }
.live-strip {
  background: var(--navy); color: #c5cdd8; font-size: 0.85rem; text-align: center; padding: 0.55rem 1rem;
}
.live-strip a { color: #fff; font-weight: 600; }
.hero { padding: 3.5rem 0 2.5rem; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: center; }
.subhead { color: var(--muted); font-size: 1rem; margin: 0 0 0.75rem; }
.hero h1 { font-size: clamp(2rem, 5vw, 3rem); line-height: 1.15; margin: 0 0 0.75rem; letter-spacing: -0.03em; }
.hero-lead { color: var(--muted); font-size: 1.1rem; margin: 0 0 1.5rem; max-width: 32rem; }
.btn {
  display: inline-block; text-decoration: none; font-weight: 700; padding: 0.75rem 1.25rem;
  border-radius: 6px; background: var(--navy); color: #fff;
}
.btn:hover { filter: brightness(1.08); }
.btn-ghost { background: transparent; color: var(--navy); border: 2px solid var(--navy); margin-left: 0.5rem; }
.photo {
  display: flex; align-items: center; justify-content: center; text-align: center;
  border-radius: 12px; color: #fff; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.02em;
  min-height: 220px; padding: 1.5rem; text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}
.photo-lg { min-height: 320px; }
.section { padding: 3rem 0; }
.section h2 { font-size: 1.75rem; margin: 0 0 0.5rem; letter-spacing: -0.02em; }
.section-intro { color: var(--muted); margin: 0 0 1.5rem; max-width: 36rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
}
.card .body { padding: 1rem 1.15rem 1.25rem; }
.card h3 { margin: 0 0 0.35rem; font-size: 1.05rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.cta-band {
  margin: 1rem 0 3rem; padding: 2.25rem; border-radius: 14px;
  background: linear-gradient(120deg, #eef1f6, #e2e8f0);
  text-align: center;
}
.cta-band h2 { margin: 0 0 0.5rem; }
.cta-band p { margin: 0 0 1.25rem; color: var(--muted); }
.footer {
  background: #0a1628; color: #94a3b8; padding: 2rem 0; font-size: 0.9rem;
}
.footer strong { color: #fff; }
.footer a { color: #cbd5e1; }
.footer-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; }
.nav-links a.active,
.nav-links a[aria-current="page"] {
  color: var(--ink); font-weight: 700;
}
.page-header {
  padding: 2.5rem 0 1.25rem;
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  letter-spacing: -0.02em; line-height: 1.2;
}
.page-header .lede {
  margin: 0; max-width: 36rem; color: var(--muted); font-size: 1.05rem;
}
.stub { color: var(--muted); font-size: 0.95rem; }
.stub::before {
  content: "STUB: "; font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.04em; opacity: 0.7;
}
.teaser-links {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem; margin-top: 1.5rem;
}
.teaser-links a {
  display: block; text-decoration: none; background: var(--surface);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 1rem 1.15rem; color: inherit; font-weight: 600;
}
.teaser-links a:hover { border-color: currentColor; }
.teaser-links a span {
  display: block; font-weight: 400; color: var(--muted);
  font-size: 0.9rem; margin-top: 0.25rem;
}
.contact-form {
  max-width: 32rem; display: grid; gap: 0.85rem; margin-top: 1.25rem;
}
.contact-form label {
  display: grid; gap: 0.35rem; font-weight: 600; font-size: 0.9rem;
}
.contact-form input,
.contact-form textarea {
  font: inherit; padding: 0.65rem 0.75rem;
  border: 1px solid var(--border); border-radius: 8px;
  background: var(--surface); color: inherit;
}
.contact-form textarea { min-height: 7rem; resize: vertical; }
.contact-form .btn[disabled],
.contact-form button[disabled] { opacity: 0.65; cursor: not-allowed; }
@media (max-width: 800px) {
  .nav-toggle { display: inline-block; }
  .nav-links {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; background: #fff; padding: 1rem;
    border-bottom: 1px solid var(--border); align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .btn-ghost { margin-left: 0; margin-top: 0.5rem; display: inline-block; }
  .hero-grid, .grid-2, .grid-3 { grid-template-columns: 1fr; }
}


/* ---------------------------------------------------------- polish ---------
   The site's own colours, given the craft of a finished page: photographs in
   the blocks that held placeholders, a hero that breathes, cards that are quiet,
   and the quote form styled like part of the page rather than a bolt-on.
   ------------------------------------------------------------------------- */
.photo { padding: 0; overflow: hidden; position: relative; background: var(--border, #e6e6e6); }
.photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
figure.photo { margin: 0; }
.card .photo { min-height: 200px; } .card .photo img { height: 200px; }
.photo-lg { min-height: 340px; } .photo-lg img { height: 340px; }
.hero { padding-top: 3rem; padding-bottom: 2.5rem; }
h1 { letter-spacing: -0.03em; line-height: 1.04; text-wrap: balance; }
.section h2 { letter-spacing: -0.025em; text-wrap: balance; }
.section-intro { max-width: 36rem; }
.card { overflow: hidden; }
.quote { border-top: 1px solid var(--border, #e6e6e6); }
.quote-form { max-width: 44rem; }
.quote-form .q { border: 0; margin: 0 0 1.25rem; padding: 0; }
.quote-form legend { font-weight: 600; font-size: 1rem; margin-bottom: .5rem; padding: 0; }
.quote-form .opt { display: inline-flex; align-items: center; gap: .5rem; margin: 0 .7rem .5rem 0;
  padding: .5rem .9rem; border: 1px solid var(--border, #ddd); border-radius: 999px; cursor: pointer;
  font: 400 .95rem/1.2 system-ui, sans-serif; background: var(--surface, #fff); }
.quote-form .opt:has(input:checked) { border-color: currentColor; box-shadow: inset 0 0 0 1px currentColor; }
.quote-form .hint { margin: .35rem 0 0; font: 400 .9rem/1.45 system-ui, sans-serif; color: var(--muted, #666); max-width: 34rem; }
.quote-form .fields { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin: 1.4rem 0 .9rem; }
.quote-form label { display: block; font: 600 .9rem/1.3 system-ui, sans-serif; }
.quote-form .opt { font-weight: 400; }
.quote-form input[type=text], .quote-form input[type=email], .quote-form input[type=tel], .quote-form textarea {
  display: block; width: 100%; margin-top: .3rem; padding: .65rem .8rem; font: inherit;
  border: 1px solid var(--border, #ddd); border-radius: 10px; background: var(--surface, #fff); color: inherit; }
.quote-form .wide { display: block; margin-bottom: 1.1rem; }
.quote-form .legal { margin: .9rem 0 0; font: 400 .85rem/1.5 system-ui, sans-serif; color: var(--muted, #666); }
.quote-form .form-status { min-height: 1.4em; margin: .7rem 0 0; font-family: system-ui, sans-serif; }
@media (max-width: 700px) { .quote-form .fields { grid-template-columns: 1fr; } }


/* ------------------------------------------------------- brand in hand ----
   Navy, one bottle, and their logo on it. The stage is dark so the label is the
   brightest thing on the screen, because the label is the whole point.
   ------------------------------------------------------------------------- */
body.bih { margin: 0; background: #070d18; color: #eef2f8; }
.bih-hero { padding: clamp(2.5rem,7vh,4.5rem) 0 2rem; background:
  radial-gradient(90% 70% at 70% 10%, rgba(45,90,160,.34), transparent 65%), #070d18; }
.bih-hero .wrap { max-width: 58rem; }
.bih-hero .kicker { font: 700 .72rem/1.4 ui-monospace,Menlo,monospace; letter-spacing: .22em; text-transform: uppercase; color: #8fb6e8; margin: 0 0 .7rem; }
.bih-hero h1 { font-size: clamp(2.2rem,5.6vw,3.8rem); line-height: 1.01; letter-spacing: -.035em; margin: 0 0 .8rem; color: #fff; text-wrap: balance; }
.bih-hero p.lede { font-size: 1.15rem; line-height: 1.55; color: #b9c7db; max-width: 34rem; margin: 0 0 1.6rem; }

.drop { border: 2px dashed #2b4a74; border-radius: 18px; padding: 1.3rem 1.5rem; background: rgba(20,36,62,.55);
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; max-width: 42rem; }
.drop.hot { border-color: #7fb4ff; background: rgba(32,60,104,.7); }
.drop p { margin: 0; color: #b9c7db; font-size: .95rem; }
.drop b { color: #fff; display: block; font-size: 1.02rem; margin-bottom: .2rem; }
.drop label { cursor: pointer; padding: .7rem 1.2rem; border-radius: 999px; background: #fff; color: #0b1526;
  font: 600 .95rem system-ui,sans-serif; }
.drop input[type=file] { position: absolute; width: 1px; height: 1px; opacity: 0; }
.demos { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; align-items: center; }
.demos span { color: #8698b3; font-size: .88rem; margin-right: .2rem; }
.demos button { padding: .45rem .9rem; border-radius: 999px; border: 1px solid #2b4a74; background: transparent;
  color: #cfe0f6; font: 600 .85rem system-ui,sans-serif; cursor: pointer; }
.demos button:hover, .demos button[aria-pressed="true"] { background: #1d3557; border-color: #4f7fc0; color: #fff; }
.privacy { margin-top: .8rem; font-size: .85rem; color: #7f92ad; }

.bih-scene { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.bih-scene .shot { position: absolute; inset: 0; }
.bih-scene .shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bih-scene:after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,13,24,.88) 0%, rgba(7,13,24,.35) 55%, rgba(7,13,24,.6) 100%); }
.bih-scene .wrap { position: relative; z-index: 3; max-width: 34rem; margin-left: max(1.25rem, calc(50vw - 42rem)); }
.bih-scene .step { font: 700 .7rem/1.4 ui-monospace,Menlo,monospace; letter-spacing: .2em; text-transform: uppercase; color: #8fb6e8; margin: 0 0 .5rem; }
.bih-scene h2 { font-size: clamp(1.8rem,4.4vw,2.9rem); line-height: 1.04; letter-spacing: -.03em; color: #fff; margin: 0 0 .6rem; max-width: 22ch; text-wrap: balance; }
.bih-scene p { color: #c3d0e2; max-width: 30rem; margin: 0; font-size: 1.05rem; }
/* the label: their artwork, wrapped onto the bottle */
.label { position: absolute; z-index: 2; display: grid; place-items: center; overflow: hidden; left: 0; top: 0;
  background: #fff; border-radius: 3px; opacity: 0; transition: opacity .5s ease;
  box-shadow: 0 2px 14px rgba(0,0,0,.35);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%); }
.label.on { opacity: 1; }
.label:after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.06) 22%, rgba(255,255,255,.34) 48%,
              rgba(0,0,0,.06) 74%, rgba(0,0,0,.32) 100%); }
.label img { max-width: 78%; max-height: 66%; object-fit: contain; display: block; }
.label .wordmark { font: 800 clamp(9px, 1.5vw, 20px)/1 system-ui, sans-serif; letter-spacing: -.02em;
  text-align: center; padding: 0 6%; color: #0b1526; }
.chip { position: absolute; right: clamp(1rem,4vw,3rem); bottom: clamp(1rem,5vh,3rem); z-index: 3;
  background: rgba(7,13,24,.72); backdrop-filter: blur(8px); border: 1px solid rgba(143,182,232,.4);
  border-radius: 16px; padding: .8rem .9rem; display: grid; gap: .5rem; justify-items: center; }
.chip__in { display: grid; place-items: center; width: 132px; height: 84px; background: #fff; border-radius: 4px; overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.4); }
.chip__in img { max-width: 78%; max-height: 66%; object-fit: contain; }
.chip__in .wordmark { font: 800 15px/1.1 system-ui,sans-serif; text-align: center; padding: 0 8%; color: #0b1526; }
.chip b { font: 600 .72rem/1 ui-monospace,Menlo,monospace; letter-spacing: .14em; text-transform: uppercase; color: #9fb8d8; }
.bih-end { position: relative; z-index: 3; background: #fff; color: #0a1628; padding: clamp(2.5rem,7vh,4rem) 0; }
.facts { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin: 0 0 1.6rem; padding: 0; list-style: none; }
.facts li { background: #f4f7fb; border-radius: 14px; padding: 1.1rem 1.2rem; }
.facts b { display: block; font-size: 1.5rem; letter-spacing: -.03em; margin-bottom: .2rem; }
.facts span { color: #4b5568; font-size: .93rem; }
@media (max-width: 760px) { .facts { grid-template-columns: 1fr; } .bih-scene { min-height: 78vh; } }
@media (prefers-reduced-motion: reduce) { .label { transition: none; } }
