/* First & Last Call — Bartending Services
   Theme: deep navy speakeasy + warm gold accent */

:root {
  --navy-950: #0B1424;
  --navy-900: #16243F;
  --navy-850: #1A2B4A;
  --navy-800: #1E3050;
  --navy-700: #2A4066;
  --gold: #D4AF61;
  --gold-bright: #E5C76B;
  --gold-deep: #B8924A;
  --cream: #F5F1E8;
  --cream-dim: #D8D3C6;
  --muted: #94A2BC;
  --line: rgba(212, 175, 97, 0.18);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);

  --serif: Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --wrap: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--navy-950);
  color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .serif { font-family: var(--serif); font-weight: 400; }

a { color: inherit; text-decoration: none; }

img, svg { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 18px;
}

.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid var(--gold);
}
.btn--solid { background: var(--gold); color: var(--navy-950); }
.btn--solid:hover { background: var(--gold-bright); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--gold); }
.btn--ghost:hover { background: var(--gold); color: var(--navy-950); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 20, 36, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand svg { height: 34px; width: auto; }
.nav__brand-text {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: 1px;
  color: var(--cream);
}
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--cream-dim);
  transition: color 0.2s;
}
.nav__links a:hover, .nav__links a.active { color: var(--gold); }
.nav__toggle { display: none; background: none; border: 0; color: var(--cream); font-size: 26px; cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  text-align: center;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46' height='46'%3E%3Cpath d='M23 0 L46 23 L23 46 L0 23 Z' fill='none' stroke='%23D4AF61' stroke-width='1' opacity='0.07'/%3E%3C/svg%3E") repeat,
    radial-gradient(ellipse at 50% 0%, rgba(42, 64, 102, 0.55), transparent 60%) no-repeat,
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%) no-repeat;
  background-size: 46px 46px, cover, cover;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero::before, .hero::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  background: var(--line);
  top: 0;
}
.hero::before { left: 8%; }
.hero::after { right: 8%; }
.hero__inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; padding: 60px 24px; }
.hero__logo { height: 190px; width: auto; margin: 0 auto 30px; }
.hero__tag {
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.25;
  color: var(--cream);
  margin-bottom: 22px;
}
.hero__tag span { color: var(--gold); font-style: italic; }
.hero__sub {
  color: var(--muted);
  font-size: 18px;
  max-width: 540px;
  margin: 0 auto 38px;
}
.hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Section heading ---------- */
.head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.head h2 { font-size: clamp(28px, 4vw, 40px); color: var(--cream); margin-bottom: 16px; }
.head p { color: var(--muted); font-size: 17px; }
.divider {
  width: 60px; height: 2px; background: var(--gold);
  margin: 0 auto 22px; opacity: 0.8;
}

/* ---------- Services ---------- */
.services { background: var(--navy-950); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-850));
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 38px 30px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.card:hover { transform: translateY(-6px); border-color: rgba(212,175,97,0.4); }
.card__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  margin-bottom: 22px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 22px; color: var(--cream); margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 15px; }

/* ---------- Feature strip ---------- */
.strip { background: var(--navy-900); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.strip__num { font-family: var(--serif); font-size: 40px; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.strip__label { color: var(--cream-dim); font-size: 14px; letter-spacing: 0.5px; }

/* ---------- Split / About teaser ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split__media {
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 30% 20%, rgba(212,175,97,0.16), transparent 55%),
    linear-gradient(160deg, var(--navy-800), var(--navy-950));
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.split__media .placeholder { text-align: center; color: var(--muted); padding: 30px; }
.split__media .placeholder svg { width: 80px; height: 80px; margin: 0 auto 14px; opacity: 0.5; }
.split__body h2 { font-size: clamp(26px, 3.6vw, 38px); color: var(--cream); margin-bottom: 20px; }
.split__body p { color: var(--cream-dim); margin-bottom: 18px; }
.split__body .btn { margin-top: 10px; }

/* ---------- Quote ---------- */
.quote { text-align: center; background: var(--navy-950); }
.quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.5;
  color: var(--cream);
  max-width: 760px;
  margin: 0 auto;
}
.quote blockquote::before { content: '\201C'; color: var(--gold); font-size: 60px; line-height: 0; vertical-align: -0.3em; margin-right: 6px; }
.quote cite { display: block; margin-top: 26px; color: var(--gold); font-style: normal; letter-spacing: 2px; font-size: 13px; text-transform: uppercase; }

/* ---------- Contact ---------- */
.contact { background: linear-gradient(180deg, var(--navy-900), var(--navy-950)); border-top: 1px solid var(--line); }
.contact__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.contact__info h2 { font-size: clamp(28px, 4vw, 40px); color: var(--cream); margin-bottom: 18px; }
.contact__info p { color: var(--muted); margin-bottom: 28px; }
.contact__list { list-style: none; }
.contact__list li { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; color: var(--cream-dim); }
.contact__list svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 13px; letter-spacing: 0.5px; color: var(--cream-dim); }
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--cream);
  background: var(--navy-950);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 13px 15px;
  transition: border-color 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: #5C6B85; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 120px; }
.form button { justify-self: start; margin-top: 6px; }
.form__note { font-size: 13px; color: var(--muted); }
.form__status { font-size: 14px; padding: 12px 16px; border-radius: 3px; display: none; }
.form__status.ok { display: block; background: rgba(212,175,97,0.12); border: 1px solid var(--gold); color: var(--gold-bright); }
.form__status.err { display: block; background: rgba(220,80,80,0.12); border: 1px solid #C9605A; color: #E5938E; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-950); border-top: 1px solid var(--line); padding: 50px 0 36px; }
.footer__grid { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.footer__brand { display: flex; align-items: center; gap: 12px; }
.footer__brand svg { height: 30px; }
.footer__brand span { font-family: var(--serif); letter-spacing: 1px; color: var(--cream); }
.footer__links { display: flex; gap: 26px; }
.footer__links a { color: var(--cream-dim); font-size: 14px; }
.footer__links a:hover { color: var(--gold); }
.footer__copy { color: var(--muted); font-size: 13px; margin-top: 30px; text-align: center; border-top: 1px solid var(--line); padding-top: 24px; }

/* ---------- Page header (About) ---------- */
.page-hero {
  text-align: center;
  padding: 90px 0 70px;
  background: radial-gradient(ellipse at 50% 0%, rgba(42,64,102,0.5), transparent 60%), var(--navy-950);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(34px, 6vw, 54px); color: var(--cream); margin-bottom: 14px; }
.page-hero p { color: var(--muted); max-width: 560px; margin: 0 auto; }

.prose { max-width: 720px; margin: 0 auto; }
.prose p { color: var(--cream-dim); margin-bottom: 22px; font-size: 17px; }
.prose h3 { color: var(--gold); font-size: 15px; letter-spacing: 2px; text-transform: uppercase; font-family: var(--sans); font-weight: 600; margin: 40px 0 14px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Decorative graphics ---------- */
.contact {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46' height='46'%3E%3Cpath d='M23 0 L46 23 L23 46 L0 23 Z' fill='none' stroke='%23D4AF61' stroke-width='1' opacity='0.05'/%3E%3C/svg%3E") repeat,
    linear-gradient(180deg, var(--navy-900), var(--navy-950));
}

.deco-divider { display: block; width: 210px; height: auto; margin: 0 auto 20px; }
.head .deco-divider { margin-bottom: 22px; }

/* Framed illustrations replacing photo placeholders */
.split__media { padding: 28px; }
.illus { width: 86%; max-width: 360px; height: auto; margin: 0 auto; }
.split__media--emblem { aspect-ratio: 1 / 1; }
.split__media:has(.about-photo) { padding: 0; }
.about-photo { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; display: block; }

/* Signature cocktails */
.signatures {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46' height='46'%3E%3Cpath d='M23 0 L46 23 L23 46 L0 23 Z' fill='none' stroke='%23D4AF61' stroke-width='1' opacity='0.05'/%3E%3C/svg%3E") repeat,
    var(--navy-900);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sig {
  text-align: center;
  background: var(--navy-950);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.sig:hover { transform: translateY(-6px); border-color: rgba(212, 175, 97, 0.4); }
.sig__img { width: 100%; height: 240px; object-fit: cover; display: block; filter: saturate(0.95); }
.sig__body { padding: 28px 26px 30px; }
.sig h3 { font-size: 21px; color: var(--cream); margin-bottom: 8px; }
.sig .sig__note { color: var(--muted); font-size: 14px; line-height: 1.6; }
.sig .sig__base { display: block; margin-top: 12px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .grid-3 { grid-template-columns: 1fr; }
  .sig-grid { grid-template-columns: 1fr; }
  .strip__grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .split, .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .split__media { aspect-ratio: 16 / 10; }
  .nav__links {
    position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--navy-900); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  }
  .nav__links.open { max-height: 320px; }
  .nav__links a { padding: 16px 24px; width: 100%; border-top: 1px solid var(--line); }
  .nav__toggle { display: block; }
  .hero::before, .hero::after { display: none; }
  .form__row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .hero__logo { height: 140px; }
}
