:root {
  --ocean-light: #8fd8ec;
  --ocean-deep: #2a8fb0;
  --ocean-pale: #e4f7fb;
  --sand: #fdf8ee;
  --white: #ffffff;
  --yellow: #ffc845;
  --yellow-deep: #f2a900;
  --black: #1c1c1c;
  --wood: #9a6a3c;
  --wood-dark: #6f4726;
  --metal: #b9c1c8;
  --slate: #1f4a56;
  --slate-deep: #163740;
  --chalk: #f4efe0;

  --font-display: "Fraunces", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
}

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0 0 16px;
  line-height: 1.15;
}

p { margin: 0 0 16px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
  color: var(--ocean-deep);
  margin: 0 0 10px;
}

.section-lede {
  max-width: 620px;
  color: #454545;
  font-size: 17px;
}

.fine-print {
  font-size: 13px;
  color: #767676;
}

.fine-print.center { text-align: center; }

/* Buttons */

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 4px 0 var(--yellow-deep);
}

.btn-primary:hover { transform: translateY(-2px); }

.btn-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.btn-ghost {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn-small {
  padding: 8px 18px;
  font-size: 13px;
  background: var(--black);
  color: var(--white);
}

.btn-small-ghost {
  background: transparent;
  color: var(--black);
  border-color: rgba(28, 28, 28, 0.18);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--metal);
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
}

.logo span { color: var(--ocean-deep); }

.logo-mark {
  height: 42px;
  width: auto;
}

.footer-logo .logo-mark { height: 36px; }

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}

.main-nav a:hover { color: var(--ocean-deep); }

.is-hidden { display: none !important; }

/* Hero */

.hero {
  position: relative;
  background: linear-gradient(180deg, var(--ocean-light) 0%, var(--ocean-pale) 100%);
  padding-top: 90px;
  padding-bottom: 140px;
  overflow: hidden;
}

.hero-inner { max-width: 640px; }

.hero h1 {
  font-size: 56px;
  color: var(--black);
}

.hero-sub {
  font-size: 18px;
  color: #2c3f45;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-logo {
  position: absolute;
  top: 50%;
  right: 6%;
  width: 320px;
  height: auto;
  transform: translateY(-50%) rotate(8deg);
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.18));
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 90px;
  display: block;
}

.hero-wave path { fill: var(--white); }

/* Sections */

.section {
  padding: 80px 0;
}

.section-browse {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.section-browse a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  background: rgba(42, 143, 176, 0.08);
  color: var(--ocean-deep);
  border: 1px solid rgba(42, 143, 176, 0.14);
}

.section-browse-wide {
  margin-top: 22px;
  justify-content: flex-start;
}

.today-section { background: var(--white); }

.today-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  margin-top: 32px;
}

.today-card {
  background: var(--sand);
  border: 1px solid var(--metal);
  border-radius: 18px;
  padding: 28px;
}

.today-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
}

.placeholder-note {
  font-size: 13px;
  color: #767676;
  background: var(--white);
  border: 1px dashed var(--metal);
  border-radius: 10px;
  padding: 10px 14px;
}

.calendar-frame-placeholder {
  margin-top: 16px;
  height: 220px;
  border-radius: 12px;
  border: 2px dashed var(--ocean-deep);
  background: var(--ocean-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean-deep);
  font-weight: 600;
  text-align: center;
}

.schedule-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.schedule-list li {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--metal);
  font-weight: 500;
}

.schedule-list li:last-child { border-bottom: none; }

.schedule-list span {
  min-width: 44px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ocean-deep);
}

.vendor-spotlight-label {
  margin: 14px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: 11px;
  color: #999;
}

.vendor-spotlight {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vendor-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--metal);
  border-radius: 999px;
  padding: 6px 14px 6px 6px;
  font-size: 13px;
  font-weight: 600;
}

.vendor-chip-photo {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ocean-pale);
  flex-shrink: 0;
  object-fit: cover;
}

.vendor-chip-initial {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ocean-pale);
  color: var(--ocean-deep);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
}

.vendor-chip-cuisine {
  font-weight: 400;
  color: #888;
}

/* Taps */

.taps-section {
  position: relative;
  background: linear-gradient(160deg, var(--slate) 0%, var(--slate-deep) 100%);
  color: var(--chalk);
  padding-top: 110px;
  padding-bottom: 110px;
}

.taps-section .eyebrow { color: var(--yellow); }
.taps-section .section-lede { color: #cfe4e6; }

.chalk-wave {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
}

.chalk-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

.chalk-wave-top { top: -1px; }
.chalk-wave-top path { fill: var(--white); }
.chalk-wave-bottom { bottom: -1px; }
.chalk-wave-bottom path { fill: var(--ocean-pale); }

.tap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.tap-card {
  background: rgba(244, 239, 224, 0.06);
  border: 1px solid rgba(244, 239, 224, 0.18);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.tap-number {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--slate-deep);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
}

.tap-placeholder {
  margin: 0;
  color: #a9c4c9;
  font-size: 14px;
}

.tap-name {
  margin: 0;
  color: var(--chalk);
  font-weight: 600;
  font-size: 15px;
}

.tap-sub {
  margin: 2px 0 0;
  color: #a9c4c9;
  font-size: 13px;
}

/* About */

.about-section { background: var(--ocean-pale); }

.about-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-copy p { color: #2c3f45; font-size: 16px; }

.about-badge {
  width: 130px;
  float: right;
  margin: -12px 0 16px 20px;
  transform: rotate(8deg);
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.16));
}

.about-figures {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.figure-card {
  background: var(--white);
  border-radius: 16px;
  padding: 22px;
  text-align: center;
  border-bottom: 4px solid var(--wood);
}

.figure-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--ocean-deep);
}

.figure-card span {
  font-size: 13px;
  color: #555;
}

/* Vendors */

.vendors-section {
  background: var(--yellow);
  text-align: center;
}

.vendors-inner { max-width: 600px; margin: 0 auto; }
.vendors-section .eyebrow { color: var(--black); opacity: 0.6; }
.vendors-section .section-lede { margin-left: auto; margin-right: auto; color: #3a2c00; }

/* Visit */

.visit-section { background: var(--white); }

.visit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.visit-address {
  font-size: 18px;
  font-weight: 600;
}

.hours-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  max-width: 260px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--metal);
  font-size: 15px;
}

.hours-list .hours-day { color: #555; }

.map-embed {
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--metal);
}

.map-embed iframe {
  display: block;
}

/* Footer */

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo { color: var(--white); }
.footer-logo span { color: var(--ocean-light); }

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover { color: var(--yellow); }

/* Responsive */

@media (max-width: 860px) {
  .hero h1 { font-size: 40px; }
  .today-grid,
  .about-inner,
  .visit-inner { grid-template-columns: 1fr; }
  .tap-grid { grid-template-columns: repeat(2, 1fr); }
  .main-nav { display: none; }
  .hero-logo { display: none; }
  .section-browse-wide { justify-content: center; }
}

@media (max-width: 640px) {
  .wrap {
    padding: 0 18px;
  }

  .header-inner {
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .header-socials {
    width: 100%;
  }

  .logo {
    font-size: 17px;
    gap: 8px;
  }

  .logo-mark {
    height: 34px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .btn-small {
    width: auto;
  }

  .hero {
    padding-top: 64px;
    padding-bottom: 92px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.05;
  }

  .hero-sub,
  .section-lede,
  .visit-address {
    font-size: 16px;
  }

  .hero-actions {
    gap: 12px;
  }

  .section {
    padding: 56px 0;
  }

  .today-card,
  .figure-card,
  .tap-card {
    padding: 18px;
  }

  .tap-grid,
  .about-figures {
    grid-template-columns: 1fr;
  }

  .calendar-frame-placeholder {
    height: 180px;
  }

  .hours-list {
    max-width: none;
  }

  .footer-inner,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    gap: 12px;
  }
}
