/* find-a-bottle — page-specific styles. Shared fonts/colors/reset live in base.css. */

    :root {
    /* Premium dark charcoal + warm cream + muted copper.
       Boutique hotel bar meets premium editorial spirits brand. */
  }

  html, body {
    background: #000;
    color: var(--cream);
    font-family: 'Choplin', sans-serif;
    font-weight: 200;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
  }

  /* ============ TYPOGRAPHY ============ */
  h1, h2, h3 {
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.05;
  }
  h1 em, h2 em, h3 em { font-style: italic; color: var(--gold); }
  h1 {
    font-family: 'Whiskey Jill', 'Neue Haas Grotesk Display Pro', serif;
    font-weight: 400;
    font-size: clamp(52px, 6.5vw, 88px);
    letter-spacing: 0.005em;
    line-height: 1.02;
  }
  h1 em {
    font-family: 'Whiskey Jill', 'Neue Haas Grotesk Display Pro', serif;
    font-style: normal;
    font-weight: 400;
  }
  h2 { font-size: clamp(34px, 4vw, 52px); }
  h3 { font-size: clamp(20px, 1.8vw, 26px); letter-spacing: -0.01em; }

  p { font-family: 'Choplin', sans-serif; font-weight: 200; }

  .eyebrow {
    font-family: 'Helvetica Neue LT Std', sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
  }
  .eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--gold); }
  .eyebrow.center::after { content: ''; width: 36px; height: 1px; background: var(--gold); }

  .lede {
    font-family: 'Helvetica Neue LT Std', sans-serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(17px, 1.5vw, 21px);
    color: var(--cream-dim);
    margin-bottom: 26px;
    line-height: 1.5;
  }

  .body-copy {
    font-family: 'Choplin', sans-serif;
    font-weight: 200;
    font-size: 15px;
    line-height: 1.75;
    color: var(--cream-dim);
    max-width: 560px;
  }

  .cta {
    display: inline-block;
    font-family: 'Helvetica Neue LT Std', sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 30px;
    cursor: pointer;
    transition: all 200ms;
    border: 1px solid var(--gold);
    background: var(--gold);
    color: #0d0a07;
  }
  .cta:hover { background: transparent; color: var(--gold); }
  .cta.ghost { background: transparent; color: var(--gold); }
  .cta.ghost:hover { background: var(--gold); color: #0d0a07; }

  /* ============ TEXTURE LAYERS ============ */
  .texture-grain {
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 2;
    opacity: 0.20;
    mix-blend-mode: screen;
    background-image: url('../images/texture-grain.png');
    background-size: 256px 256px;
    background-repeat: repeat;
  }
  .texture-overlay,
  .texture-warm {
    position: fixed; inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
  }
  .texture-overlay {
    background-image: url('../images/texture-grunge.jpg');
    opacity: 0.06;
    mix-blend-mode: overlay;
    z-index: 2;
  }
  .texture-warm {
    background-image: url('../images/texture-copper.jpg');
    opacity: 0.04;
    mix-blend-mode: soft-light;
    z-index: 2;
  }

  /* ============ BG ============ */
  .dust {
    position: fixed; inset: 0;
    pointer-events: none;
    background-image:
      radial-gradient(1px 1px at 20% 30%, rgba(216, 184, 138, 0.4), transparent),
      radial-gradient(1px 1px at 80% 70%, rgba(216, 184, 138, 0.3), transparent),
      radial-gradient(1px 1px at 60% 20%, rgba(216, 184, 138, 0.35), transparent),
      radial-gradient(1px 1px at 40% 80%, rgba(216, 184, 138, 0.25), transparent),
      radial-gradient(1px 1px at 90% 40%, rgba(216, 184, 138, 0.35), transparent);
    opacity: 0.4;
    animation: drift 24s linear infinite;
    z-index: 1;
  }
  @keyframes drift { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(-10px,-8px,0); } }

  /* ============ HEADER ============ */
  header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 20px 56px;
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(to bottom, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.7) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--rule);
  }
  .brand { height: 30px; width: auto; display: block; mix-blend-mode: lighten; }
  .header-nav { display: flex; align-items: center; gap: 32px; }
  .header-nav a {
    font-family: 'Helvetica Neue LT Std', sans-serif;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--cream-dim);
    text-decoration: none;
    transition: color 200ms;
  }
  .header-nav a:hover { color: var(--gold); }
  .header-nav a.btn {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 20px;
  }
  .header-nav a.btn:hover { background: var(--gold); color: #0d0a07; }

  /* ============ SECTIONS ============ */
  section { position: relative; z-index: 5; padding: 90px 56px; }
  .container { max-width: 1100px; margin: 0 auto; }
  .container.narrow { max-width: 820px; }

  /* ============ HERO ============ */
  .hero {
    padding: 80px 56px 60px 56px;
    text-align: center;
    background: linear-gradient(180deg, #050403 0%, #0d0a07 100%);
  }
  .page-title {
    font-family: 'Helvetica Neue LT Std', sans-serif;
    font-style: italic;
    font-weight: 300;
    font-size: 13px;
    color: var(--cream-faint);
    margin-bottom: 24px;
    letter-spacing: 0.04em;
  }
  .hero h1 { margin-bottom: 22px; max-width: 880px; margin-left: auto; margin-right: auto; }
  .hero .body-copy { margin: 0 auto 32px auto; }
  .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* ============ MAP ============ */
  .map-section {
    padding: 70px 56px 100px 56px;
    background: var(--bg-3);
    border-top: 1px solid var(--rule);
  }
  .map-intro { text-align: center; margin-bottom: 50px; max-width: 820px; margin-left: auto; margin-right: auto; }
  .map-intro h2 { margin-bottom: 18px; }
  .map-intro p {
    font-family: 'Helvetica Neue LT Std', sans-serif;
    font-style: italic;
    font-weight: 300;
    font-size: 18px;
    color: var(--cream-dim);
    line-height: 1.5;
    max-width: 640px;
    margin: 0 auto;
  }
  .map-frame {
    position: relative;
    width: 100%;
    height: 700px;
    background: #0a0807;
    border: 1px solid rgba(216, 184, 138, 0.25);
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow:
      0 30px 60px rgba(0,0,0,0.6),
      0 0 80px rgba(216, 184, 138, 0.05);
  }
  .map-frame::before {
    content: ''; position: absolute; inset: 0;
    pointer-events: none; z-index: 2;
    background:
      linear-gradient(to right, var(--gold) 0, var(--gold) 14px, transparent 14px) 0 0/100% 1px no-repeat,
      linear-gradient(to right, var(--gold) 0, var(--gold) 14px, transparent 14px) 0 100%/100% 1px no-repeat,
      linear-gradient(to bottom, var(--gold) 0, var(--gold) 14px, transparent 14px) 0 0/1px 100% no-repeat,
      linear-gradient(to bottom, var(--gold) 0, var(--gold) 14px, transparent 14px) 100% 0/1px 100% no-repeat;
  }
  .map-frame iframe { border: 0; width: 100%; height: 100%; display: block; background: #fff; }

  /* ============ TWO-UP CTA BLOCK (Consumer + Trade) ============ */
  .ctas-twoup .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .cta-block {
    border: 1px solid var(--rule);
    background: rgba(20, 16, 11, 0.5);
    padding: 50px 44px;
    transition: border-color 250ms;
    display: flex;
    flex-direction: column;
  }
  .cta-block:hover { border-color: rgba(216, 184, 138, 0.4); }
  .cta-block .eyebrow { margin-bottom: 18px; }
  .cta-block h2 { font-size: clamp(28px, 2.8vw, 40px); margin-bottom: 18px; }
  .cta-block .body-copy { font-size: 14.5px; margin-bottom: 22px; max-width: none; flex: 1; }
  .cta-block ul {
    list-style: none;
    margin: 0 0 28px 0;
  }
  .cta-block ul li {
    font-family: 'Choplin', sans-serif;
    font-weight: 200;
    font-size: 14px;
    line-height: 1.65;
    color: var(--cream-dim);
    padding: 7px 0 7px 22px;
    position: relative;
  }
  .cta-block ul li::before {
    content: '—';
    color: var(--gold);
    position: absolute;
    left: 0;
  }
  .cta-block .cta { align-self: flex-start; }
  .cta-microcopy {
    font-family: 'Helvetica Neue LT Std', sans-serif;
    font-style: italic;
    font-weight: 300;
    font-size: 12px;
    color: var(--cream-faint);
    margin-top: 16px;
  }
  .signup-form {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
  }
  .signup-form input {
    flex: 1;
    min-width: 200px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(216, 184, 138, 0.3);
    color: var(--cream);
    padding: 14px 18px;
    font-family: 'Choplin', sans-serif;
    font-weight: 200;
    font-size: 14px;
    letter-spacing: 0.05em;
  }
  .signup-form input::placeholder { color: var(--cream-faint); font-style: italic; }
  .signup-form input:focus { outline: none; border-color: var(--gold); }
  .signup-form .cta { padding: 14px 22px; }

  /* ============ FAQ ============ */
  .faq { background: var(--bg-3); }
  .faq h2 {
    text-align: center;
    margin-bottom: 16px;
  }
  .faq .lede { text-align: center; margin: 0 auto 50px auto; max-width: 600px; }
  .qa-list {
    max-width: 820px;
    margin: 0 auto;
  }
  details.qa {
    border-bottom: 1px solid var(--rule);
    padding: 22px 0;
  }
  details.qa summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 6px 0;
  }
  details.qa summary::-webkit-details-marker { display: none; }
  details.qa summary span.q {
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: var(--cream);
    letter-spacing: -0.01em;
  }
  details.qa summary .toggle {
    font-family: 'Helvetica Neue LT Std', sans-serif;
    font-weight: 300;
    font-size: 24px;
    color: var(--gold);
    transition: transform 250ms;
    flex-shrink: 0;
  }
  details.qa[open] summary .toggle { transform: rotate(45deg); }
  details.qa .answer {
    font-family: 'Choplin', sans-serif;
    font-weight: 200;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--cream-dim);
    padding: 14px 50px 6px 0;
  }

  /* ============ FOOTER CTA ============ */
  .footer-cta {
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(216, 184, 138, 0.05) 100%);
  }
  .footer-cta h2 { max-width: 820px; margin: 0 auto 34px auto; }
  .footer-cta .hero-ctas { justify-content: center; }
  .footer-cta .cta { font-size: 11px; padding: 18px 32px; }

  /* ============ FOOTER ============ */
  footer {
    background: #000;
    border-top: 1px solid var(--rule);
    padding: 60px 56px 28px 56px;
    position: relative;
    z-index: 6;
  }
  .footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
  }
  .footer-brand .brand-foot { height: 28px; margin-bottom: 16px; mix-blend-mode: lighten; }
  .footer-brand p {
    font-family: 'Helvetica Neue LT Std', sans-serif;
    font-style: italic;
    font-weight: 300;
    font-size: 13px;
    color: var(--cream-dim);
  }
  .footer-grid h4 {
    font-family: 'Helvetica Neue LT Std', sans-serif;
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }
  .footer-grid ul { list-style: none; }
  .footer-grid li { padding: 5px 0; }
  .footer-grid a {
    font-family: 'Choplin', sans-serif;
    font-weight: 200;
    font-size: 14px;
    color: var(--cream-dim);
    text-decoration: none;
    transition: color 200ms;
  }
  .footer-grid a:hover { color: var(--gold); }
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid var(--rule);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
  .footer-bottom p, .footer-bottom a {
    font-family: 'Helvetica Neue LT Std', sans-serif;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.05em;
    color: var(--cream-faint);
    text-decoration: none;
  }
  .footer-bottom a:hover { color: var(--gold); }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 1000px) {
    .ctas-twoup .container { grid-template-columns: 1fr; gap: 22px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  }
  @media (max-width: 720px) {
    section, .hero { padding: 60px 22px; }
    .map-section { padding: 50px 18px 70px 18px; }
    .map-frame { height: 540px; }
    header { padding: 14px 20px; }
    .header-nav { gap: 14px; }
    .header-nav a:not(.btn) { display: none; }
    .cta-block { padding: 40px 26px; }
    footer { padding: 46px 22px 22px 22px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 32px; }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .hero-ctas .cta { text-align: center; }
    .signup-form { flex-direction: column; }
    .signup-form .cta { width: 100%; text-align: center; }
  }
  @media (max-width: 520px) {
    .map-frame { height: 480px; }
  }
