/* Friday Pour — marketing site. Palette + type lifted from the app (lib/theme.ts; app serif = Georgia). */
:root {
  --oak: #14100c;
  --oak-2: #0f0c08;
  --card: #1f1813;
  --input: #271e17;
  --cream: #f3e9d8;
  --cream-muted: #c9b9a3;
  --muted: #a18a72;
  --amber: #e0a455;
  --amber-light: #f4c074;
  --border: #3a2d22;
  --border-soft: #241b13;
  --pour: #c8772e;
  --on-amber: #2a1c0c;
  --serif: Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--oak);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: var(--amber); text-decoration: none; }
a:hover { color: var(--amber-light); }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--serif); font-weight: 700; color: var(--cream); margin: 0; }

.serif { font-family: var(--serif); }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.eyebrow { font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); }
.panel { background: var(--card); border: 1px solid var(--border); border-radius: 16px; }
.pro { font-size: 10px; letter-spacing: .6px; background: rgba(224,164,85,.14); color: var(--amber-light);
  border: 1px solid rgba(224,164,85,.3); padding: 3px 8px; border-radius: 6px; font-weight: 700; }

/* --- Brand mark --- */
.mark { width: 28px; height: 28px; border-radius: 7px;
  background: linear-gradient(150deg, var(--amber-light), var(--pour));
  box-shadow: 0 2px 10px rgba(224,164,85,.25); flex: none; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand .name { font-family: var(--serif); font-weight: 700; font-size: 18px; color: var(--cream); letter-spacing: .3px; }

/* --- Buttons --- */
.btn-store { display: inline-flex; align-items: center; gap: 10px; background: #0c0906;
  border: 1px solid var(--border); color: var(--cream); padding: 11px 18px; border-radius: 12px; }
.btn-store:hover { color: var(--cream); border-color: var(--amber); }
.btn-store .small { font-size: 10px; color: var(--muted); line-height: 1.1; }
.btn-store .big { font-size: 18px; font-weight: 700; line-height: 1.15; }
.btn-store--light { background: var(--cream); border-color: var(--cream); color: var(--oak); }
.btn-store--light .small { color: #5f5240; }
.btn-amber { background: linear-gradient(150deg, var(--amber-light), var(--amber)); color: var(--on-amber);
  font-weight: 700; border: 0; border-radius: 10px; padding: 0 20px; font-size: 14px; cursor: pointer;
  display: inline-flex; align-items: center; }
.btn-amber:hover { filter: brightness(1.05); }

/* --- Nav --- */
.nav { display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; border-bottom: 1px solid var(--border-soft); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--cream-muted); font-size: 15px; }
.nav-links a:hover { color: var(--cream); }
.nav .btn-store { padding: 9px 15px; }
.nav .btn-store .big { font-size: 14px; }

/* --- Hero --- */
.hero { position: relative; overflow: hidden; }
.hero-glow { position: absolute; top: -160px; right: -120px; width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,164,85,.22), rgba(224,164,85,0) 62%); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px;
  padding: 72px 0 60px; align-items: center; }
.hero h1 { font-size: 62px; line-height: 1.03; letter-spacing: -.5px; margin-bottom: 22px; }
.hero .lede { font-size: 20px; line-height: 1.5; color: var(--cream-muted); margin: 0 0 34px; max-width: 450px; }
.pill { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--border);
  background: rgba(255,255,255,.02); border-radius: 999px; padding: 6px 14px; font-size: 12px;
  color: var(--muted); margin-bottom: 26px; }
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }
.cta-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.cta-note { font-size: 13px; color: #8a7458; }

/* --- Waitlist form --- */
.waitlist { padding: 16px; max-width: 440px; }
.waitlist .row { display: flex; gap: 8px; }
.waitlist input { flex: 1; min-width: 0; height: 44px; border-radius: 10px; background: var(--input);
  border: 1px solid var(--border); color: var(--cream); padding: 0 14px; font-size: 14px; font-family: var(--sans); }
.waitlist input::placeholder { color: #8a7458; }
.waitlist input:focus { outline: none; border-color: var(--amber); }
.waitlist .msg { font-size: 13px; color: var(--amber-light); margin-top: 10px; min-height: 1px; }

/* --- Phone mock --- */
.phone-col { display: flex; justify-content: center; }
.phone { width: 290px; height: 590px; background: #0c0906; border: 8px solid var(--border-soft);
  border-radius: 44px; box-shadow: 0 30px 70px rgba(0,0,0,.55); overflow: hidden; padding: 16px 14px; }
.phone-head { display: flex; align-items: center; justify-content: space-between; margin: 8px 4px 16px; }
.phone-head .title { font-family: var(--serif); font-size: 20px; }
.phone-head .avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--input); border: 1px solid var(--border); }
.pour-card { padding: 14px; margin-bottom: 12px; }
.pour-card .who { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; }
.pour-card .who .av { width: 28px; height: 28px; border-radius: 50%; }
.pour-card .who .n { font-size: 13px; font-weight: 600; }
.pour-card .who .t { font-size: 11px; color: #8a7458; }
.pour-card .whisky { font-family: var(--serif); font-size: 17px; margin-bottom: 3px; }
.stars { color: var(--amber); letter-spacing: 1px; }
.stars .off { color: var(--border); }
.pour-card .note { font-size: 12px; color: var(--cream-muted); line-height: 1.5; margin-top: 6px; }
.pour-card .cheers { display: flex; align-items: center; gap: 6px; margin-top: 11px; color: #8a7458; font-size: 12px; }

/* --- Sections --- */
.section { padding: 66px 0; }
.section--alt { background: var(--oak-2); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.section h2 { font-size: 40px; letter-spacing: -.3px; }

.value-strip { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; padding: 12px 0 64px; }
.value-strip .panel { padding: 22px; }
.value-strip h3 { font-size: 18px; margin-bottom: 6px; }
.value-strip p { color: var(--muted); font-size: 14px; margin: 0; }

.features-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.feature { padding: 26px; position: relative; }
.feature .icon { width: 44px; height: 44px; border-radius: 11px; background: rgba(224,164,85,.1);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature h3 { font-size: 20px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 14px; line-height: 1.55; margin: 0; }
.feature .pro { position: absolute; top: 18px; right: 18px; }
.feature--empty { border: 1px dashed var(--border); background: transparent; display: flex;
  align-items: center; justify-content: center; text-align: center; color: #6b5a45; font-size: 13px; }

.community { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.community .art { height: 360px; border-radius: 20px; background: linear-gradient(160deg, var(--card), #0c0906);
  border: 1px solid var(--border); position: relative; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.community .art .glow { position: absolute; top: -60px; left: -40px; width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,119,46,.25), transparent 65%); }
.community .art .float { position: absolute; bottom: 22px; left: 22px; right: 22px; padding: 16px; }
.community .art .float .w { font-family: var(--serif); font-size: 16px; margin-bottom: 2px; }
.community .art .float .s { font-size: 12px; color: #8a7458; }
.community h2 { font-size: 38px; letter-spacing: -.3px; margin-bottom: 16px; }
.community p { color: var(--cream-muted); font-size: 18px; line-height: 1.6; max-width: 440px; margin: 0; }

.cta-band { margin: 0 0 72px; border-radius: 24px; padding: 64px 24px; text-align: center;
  position: relative; overflow: hidden; background: linear-gradient(160deg, #241b13, var(--oak)); border: 1px solid var(--border); }
.cta-band .glow { position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 520px; height: 320px; background: radial-gradient(circle, rgba(224,164,85,.2), transparent 65%); }
.cta-band .inner { position: relative; }
.cta-band h2 { font-size: 44px; margin-bottom: 12px; }
.cta-band p { color: var(--cream-muted); margin: 0 0 30px; font-size: 17px; }
.cta-band .cta-row { justify-content: center; }
.cta-band .waitlist { padding: 0; }
.cta-band .waitlist input { background: var(--input); width: 220px; height: 46px; }

/* --- Footer --- */
.footer { border-top: 1px solid var(--border-soft); padding: 44px 0 0; display: flex;
  justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer .about { max-width: 290px; }
.footer .about p { color: #8a7458; font-size: 13px; line-height: 1.6; margin: 12px 0 0; }
.footer .cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer .col { display: flex; flex-direction: column; gap: 11px; }
.footer .col a { font-size: 14px; color: var(--cream-muted); }
.footer .col a:hover { color: var(--cream); }
.copyright { padding: 32px 0; color: #5f5240; font-size: 12px; }

/* --- Legal / content pages --- */
.content { max-width: 680px; margin: 0 auto; padding: 60px 0 76px; }
.content h1 { font-size: 44px; letter-spacing: -.3px; margin-bottom: 10px; }
.content .updated { color: #8a7458; font-size: 14px; margin-bottom: 44px; }
.content h2 { font-size: 22px; margin: 38px 0 14px; }
.content p, .content li { color: var(--cream-muted); font-size: 16px; line-height: 1.7; }
.content .divider { border-top: 1px solid var(--border-soft); padding-top: 24px; margin-top: 40px; color: #8a7458; font-size: 14px; }
.content .back { font-size: 14px; }

.card-lg { padding: 28px; margin-bottom: 24px; }
.card-lg h3 { font-size: 20px; margin-bottom: 16px; }
.steps { display: flex; flex-direction: column; gap: 18px; }
.step { display: flex; gap: 15px; align-items: flex-start; }
.step .n { width: 30px; height: 30px; border-radius: 50%; flex: none;
  background: linear-gradient(150deg, var(--amber-light), var(--pour)); color: var(--on-amber);
  display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; }
.step .txt { font-size: 15px; line-height: 1.5; color: var(--cream-muted); padding-top: 4px; }
.step .txt strong { color: var(--cream); }
.notice { border: 1px solid rgba(224,164,85,.3); background: rgba(224,164,85,.06); border-radius: 14px; padding: 26px; }
.notice h3 { font-size: 18px; margin-bottom: 14px; }
.notice ul { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 10px; }
.notice .fine { color: #8a7458; font-size: 13px; margin-top: 16px; }

.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item { padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item .q { font-weight: 600; color: var(--cream); }
.faq-item .plus { color: #8a7458; font-size: 22px; }
.contact-card { padding: 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.contact-card h3 { font-size: 20px; margin-bottom: 6px; }
.contact-card .reply { color: #8a7458; font-size: 13px; margin-top: 8px; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero h1 { font-size: 46px; }
  .hero-grid { grid-template-columns: 1fr; gap: 8px; padding: 48px 0 40px; }
  .phone-col { margin-top: 24px; }
  .community { grid-template-columns: 1fr; gap: 28px; }
  .features-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .section h2 { font-size: 32px; }
}
@media (max-width: 620px) {
  .nav-links a:not(.btn-store) { display: none; }
  .value-strip { grid-template-columns: 1fr; padding-bottom: 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 40px; }
  .hero .lede { font-size: 18px; }
  .section { padding: 48px 0; }
  .cta-band h2 { font-size: 34px; }
  .cta-band .waitlist input { width: 100%; }
  .waitlist .row { flex-direction: column; }
  .btn-amber { padding: 12px 20px; justify-content: center; }
  .footer { gap: 32px; }
  .content h1 { font-size: 34px; }
}
