
:root {
  --black: #050505;
  --ink: #0b0b0c;
  --panel: #111214;
  --line: rgba(255,255,255,.16);
  --silver: #e4e7ea;
  --muted: #a6a8ac;
  --white: #fff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, system-ui, sans-serif;
}
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
.announcement {
  min-height: 42px;
  padding: 0 4vw;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(5, auto);
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 11px;
}
.site-header {
  height: 132px;
  padding: 16px 4vw;
  display: grid;
  grid-template-columns: 300px 1fr auto;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 20;
}
.brand img { width: 250px; height: 108px; object-fit: contain; object-position: left center; }
nav { display: flex; justify-content: center; gap: 52px; text-transform: uppercase; font-size: 14px; }
nav a { padding: 10px 0; border-bottom: 1px solid transparent; }
nav a:hover { border-bottom-color: var(--silver); }
.cart-button, .menu-button, .text-button {
  border: 0; color: inherit; background: transparent; cursor: pointer; text-transform: uppercase;
}
.menu-button { display: none; }
.hero {
  min-height: 650px;
  padding: 80px 5vw 48px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 70% 35%, #17191c 0, #08090a 30%, #030303 72%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.75));
  pointer-events: none;
}
.skyline {
  position: absolute;
  left: 35%; right: 0; bottom: 7%;
  height: 26%;
  opacity: .22;
  filter: blur(2px);
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.skyline i {
  display: block; width: 7%; min-width: 24px;
  height: var(--h, 50%);
  background:
    repeating-linear-gradient(90deg, transparent 0 7px, rgba(255,255,255,.25) 8px 10px),
    linear-gradient(#555, #111);
  box-shadow: 0 12px 40px rgba(255,255,255,.07);
}
.skyline i:nth-child(1){--h:35%}.skyline i:nth-child(2){--h:54%}.skyline i:nth-child(3){--h:43%}
.skyline i:nth-child(4){--h:70%}.skyline i:nth-child(5){--h:50%}.skyline i:nth-child(6){--h:88%}
.skyline i:nth-child(7){--h:60%}.skyline i:nth-child(8){--h:75%}.skyline i:nth-child(9){--h:42%}
.skyline i:nth-child(10){--h:66%}.skyline i:nth-child(11){--h:49%}
.hero-copy { position: relative; z-index: 3; max-width: 640px; }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: 13px; color: #c6c9cc; }
.eyebrow.dark { color: #444; }
h1,h2 { font-family: "Barlow Condensed", sans-serif; text-transform: uppercase; margin: 0; }
h1 { font-size: clamp(56px, 6vw, 96px); line-height: .94; letter-spacing: .01em; }
h2 { font-size: clamp(40px, 4vw, 64px); line-height: 1; }
.hero-sub { color: #c3c5c7; max-width: 590px; font-size: 18px; line-height: 1.65; }
.primary-button {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 40px;
  margin-top: 20px; padding: 18px 26px; min-width: 250px;
  background: var(--white); color: var(--black); text-transform: uppercase; letter-spacing: .04em;
  border: 1px solid white; cursor: pointer;
}
.primary-button.light { margin: 0; }
.primary-button.full { width: 100%; margin-top: 18px; }
.vial-stage {
  min-height: 500px;
  position: relative;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 26px;
  padding-bottom: 20px;
}
.vial {
  width: 190px;
  filter: drop-shadow(0 24px 28px rgba(0,0,0,.65));
}
.vial.featured { width: 245px; transform: translateY(-8px); filter: drop-shadow(0 0 10px rgba(255,255,255,.28)) drop-shadow(0 28px 35px rgba(0,0,0,.8)); }
.vial-cap {
  height: 72px;
  margin: 0 18px -8px;
  border-radius: 15px 15px 8px 8px;
  background: linear-gradient(180deg,#0b0b0c 0 28%,#f1f1f1 29% 43%,#777 44% 72%,#141414 73%);
  border: 1px solid rgba(255,255,255,.5);
  position: relative; z-index: 2;
}
.vial-glass {
  min-height: 360px;
  padding: 70px 10px 26px;
  border-radius: 40px 40px 28px 28px;
  background: linear-gradient(90deg,rgba(255,255,255,.35),rgba(255,255,255,.04) 15%,rgba(255,255,255,.09) 80%,rgba(255,255,255,.5));
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: inset 0 -18px 0 rgba(255,255,255,.12);
}
.featured .vial-glass { min-height: 445px; }
.vial-label {
  min-height: 265px; background: linear-gradient(135deg,#161616,#050505);
  padding: 24px 16px; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.featured .vial-label { min-height: 330px; }
.vial-label img { width: 110px; height: 95px; object-fit: contain; margin-bottom: 5px; }
.featured .vial-label img { width: 145px; height: 120px; }
.vial-label h3 { margin: 8px 0; font-size: 20px; font-weight: 500; }
.vial-label p { margin: 0; font-size: 17px; }
.vial-label small { margin-top: 20px; text-transform: uppercase; font-size: 9px; }
.trust-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-bottom: 1px solid var(--line);
}
.trust-strip > div {
  padding: 32px 4vw; display: grid; grid-template-columns: 42px 1fr; gap: 4px 16px;
  border-right: 1px solid var(--line);
}
.trust-strip span { grid-row: 1 / span 2; font-size: 32px; }
.trust-strip strong { text-transform: uppercase; font-size: 13px; }
.trust-strip small { color: var(--muted); line-height: 1.45; }
.section { padding: 90px 5vw; }
.section-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 36px; }
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.product-card {
  border: 1px solid var(--line); background: linear-gradient(145deg,#131416,#080808);
  min-height: 390px; padding: 22px; display: flex; flex-direction: column;
}
.product-visual {
  min-height: 215px; display: grid; place-items: center; position: relative;
}
.mini-vial {
  width: 88px; height: 170px; border: 1px solid #777; border-radius: 22px;
  background: linear-gradient(90deg,#777,#111 18% 80%,#aaa); padding: 38px 8px 12px;
}
.mini-vial::before { content:""; position:absolute; top:15px; width:70px; height:32px; background:#111; border:1px solid #aaa; border-radius:8px; }
.mini-label { background:#090909; height:108px; color:white; display:grid; place-items:center; text-align:center; font-size:10px; }
.product-card h3 { font-size: 19px; margin: 10px 0 4px; }
.product-card p { color: var(--muted); margin: 0 0 18px; min-height: 44px; line-height: 1.45; }
.product-bottom { margin-top: auto; display:flex; justify-content:space-between; align-items:center; }
.add-button { border:1px solid var(--silver); background:transparent; color:white; padding:10px 14px; cursor:pointer; text-transform:uppercase; font-size:12px; }
.split-section {
  padding: 100px 5vw; display:grid; grid-template-columns:1fr 1fr; gap:10vw;
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  background: #0c0d0f;
}
.copy-block { color:#c9cbce; line-height:1.75; font-size:18px; }
.copy-block a { color:white; text-transform:uppercase; font-size:13px; letter-spacing:.1em; }
.about { background:#eee; color:#111; }
.about-card { display:grid; grid-template-columns:280px 1fr; gap:8vw; align-items:center; max-width:1100px; margin:auto; }
.about-card img { width:100%; }
.about-card p { color:#444; line-height:1.7; }
.contact { display:flex; justify-content:space-between; align-items:center; gap:40px; }
footer {
  padding:50px 5vw; border-top:1px solid var(--line); display:flex; gap:30px; align-items:center; color:var(--muted); font-size:12px;
}
footer img { width:130px; height:80px; object-fit:contain; margin-right:auto; }
.cart-drawer {
  position:fixed; top:0; right:0; z-index:50; width:min(440px,100%); height:100%;
  background:#0d0e10; transform:translateX(100%); transition:.25s ease; padding:24px; display:flex; flex-direction:column;
}
.cart-drawer.open { transform:translateX(0); }
.cart-header { display:flex; justify-content:space-between; align-items:center; border-bottom:1px solid var(--line); }
.cart-header button { background:transparent; border:0; color:white; font-size:34px; cursor:pointer; }
.cart-items { flex:1; overflow:auto; padding:20px 0; }
.cart-row { display:grid; grid-template-columns:1fr auto; gap:8px; padding:16px 0; border-bottom:1px solid var(--line); }
.cart-row small { color:var(--muted); }
.remove-item { color:white; background:transparent; border:0; cursor:pointer; text-decoration:underline; }
.cart-footer { border-top:1px solid var(--line); padding-top:20px; }
.cart-footer > div { display:flex; justify-content:space-between; }
.cart-footer small { display:block; color:var(--muted); line-height:1.5; margin-top:12px; }
.scrim { display:none; position:fixed; inset:0; z-index:40; background:rgba(0,0,0,.65); }
.scrim.open { display:block; }

@media (max-width: 980px) {
  .announcement span:nth-child(2), .announcement span:nth-child(4), .announcement strong { display:none; }
  .announcement { grid-template-columns:auto auto; }
  .site-header { grid-template-columns:1fr auto auto; height:100px; }
  .brand img { width:170px; height:80px; }
  .menu-button { display:block; }
  nav { display:none; position:absolute; top:100px; left:0; right:0; flex-direction:column; gap:0; background:#080808; border-bottom:1px solid var(--line); padding:20px 5vw; }
  nav.open { display:flex; }
  .hero { grid-template-columns:1fr; padding-top:50px; }
  .vial-stage { min-height:480px; margin-top:35px; }
  .vial.small { width:145px; }
  .vial.featured { width:190px; }
  .vial-glass { min-height:290px; padding-top:55px; }
  .featured .vial-glass { min-height:350px; }
  .vial-label { min-height:205px; }
  .featured .vial-label { min-height:250px; }
  .trust-strip, .product-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 640px) {
  .site-header { padding-inline:18px; gap:14px; }
  .brand img { width:130px; }
  .cart-button { font-size:0; }
  .cart-button span { font-size:13px; }
  .hero { padding:45px 22px 20px; }
  h1 { font-size:55px; }
  .vial-stage { gap:8px; min-height:390px; }
  .vial.small { width:95px; }
  .vial.featured { width:125px; }
  .vial-cap { height:45px; margin-inline:9px; }
  .vial-glass { min-height:225px; padding:42px 5px 12px; border-radius:24px; }
  .featured .vial-glass { min-height:280px; }
  .vial-label, .featured .vial-label { min-height:165px; padding:8px 4px; }
  .featured .vial-label { min-height:210px; }
  .vial-label img, .featured .vial-label img { width:72px; height:62px; }
  .vial-label h3 { font-size:11px; }
  .vial-label p { font-size:10px; }
  .vial-label small { font-size:6px; margin-top:8px; }
  .trust-strip, .product-grid { grid-template-columns:1fr; }
  .section { padding:65px 22px; }
  .section-heading, .contact { align-items:flex-start; flex-direction:column; }
  .split-section, .about-card { grid-template-columns:1fr; }
  .about-card img { max-width:240px; }
  footer { flex-direction:column; align-items:flex-start; }
  footer img { margin:0; }
}
