:root {
  /* Brand tokens */
  --brand-ink: #2a3138; /* dark slate (hero/footer) */
  --brand-bg: #f7f5f2; /* warm cream (about/hours) */
  --brand-surface: #ffffff; /* cards/modals */
  --brand-accent: #e55e18; /* primary CTA orange */
  --brand-accent-2: #ff7a2e; /* optional brighter orange */
  --brand-border: rgba(0, 0, 0, 0.08);
  --brand-highlight: #fff3e8; /* initial subtle section (unused now) */
  --overlay: rgba(0, 0, 0, 0.65);
  --radius: 16px;
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lift: 0 12px 28px rgba(0, 0, 0, 0.14);

  /* Featured tile palette */
  --tile-base: var(--brand-accent); /* #E55E18 */
  --tile-bright: var(--brand-accent-2); /* #FF7A2E */

  /* Type scale */
  --fs-hero: clamp(2.2rem, 3vw, 3.5rem);
  --fs-h2: clamp(1.6rem, 2vw, 2.25rem);
  --fs-h3: clamp(1.2rem, 1.4vw, 1.6rem);
  --fs-body: clamp(1rem, 1.1vw, 1.125rem);

  /* Layout */
  --container: 1200px;
  --pad-section: clamp(20px, 7vw, 20px);
  --gap: clamp(20px, 3vw, 32px);
}

/* Base resets */
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial,
    sans-serif;
  font-size: var(--fs-body);
  color: #1a1a1a;
  background: var(--brand-surface);
  line-height: 1.55;
}

/* Layout helpers */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.section {
  padding-block: var(--pad-section);
}
.section-cream {
  background: var(--brand-bg);
}
/* One definitive highlight color */
.section-highlight {
  background: #fef0e4;
}

/* Headings */
h1 {
  font-size: var(--fs-hero);
  line-height: 1.1;
  margin: 0 0 12px;
}
h2 {
  font-size: var(--fs-h2);
  line-height: 1.15;
  margin: 0 0 16px;
}
h3 {
  font-size: var(--fs-h3);
  line-height: 1.2;
  margin: 0;
}

.center {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: #000;
  color: #fff;
}

/* Header/Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brand-surface);
  border-bottom: 1px solid var(--brand-border);
}
.site-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}
.brand {
  font-weight: 700;
  text-decoration: none;
  color: #1a1a1a;
}
.nav-toggle {
  display: none;
}
.nav-links {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: #2a3138;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 10px;
}
.nav-links a:hover,
.nav-links a:focus {
  background: var(--brand-bg);
}
.call-link {
  font-weight: 600;
}

/* Mobile nav */

@media (max-width: 600px) {
  .cta-row {
    gap: 10px;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-block;
    border: 1px solid var(--brand-border);
    background: #fff;
    padding: 8px 12px;
    border-radius: 12px;
  }
  .nav-links {
    display: none;
    position: absolute;
    right: 16px;
    top: 60px;
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 12px;
    padding: 12px;
    flex-direction: column;
    box-shadow: var(--shadow-card);
  }
  .nav-links.show {
    display: flex;
  }
}

/* HERO */
.hero {
  background: var(--brand-ink);
  color: #fff;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: var(--gap);
}
.hero-copy .tagline {
  opacity: 0.9;
  margin: 0 0 18px;
}
.hero-media img {
  width: 80%;
  height: auto;
}
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.scroll-cue {
  text-align: center;
  opacity: 0.7;
  padding-top: 16px;
  font-size: 0.95rem;
}
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .hero-media {
    display: none;
  } /* your mobile clean-up */
}

/* Buttons */
.btn {
  border: 0;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
}
.btn:focus {
  outline: 3px solid #fff3;
  outline-offset: 2px;
}
.btn-accent {
  background: var(--brand-accent);
  color: #fff;
}
.btn-accent:hover {
  background: var(--brand-accent-2);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--brand-ink);
  color: var(--brand-ink);
}
.section-ink .btn-outline {
  border-color: #fff;
  color: #fff;
}
.btn-outline:hover {
  opacity: 0.9;
}
.btn-small {
  padding: 10px 14px;
  font-size: 0.95rem;
  border-radius: 12px;
}

/* Orange outline button that matches brand accent */
.btn-outline-accent {
  background: transparent;
  border: 2px solid var(--brand-accent);
  color: #fff;
}
.btn-outline-accent:hover,
.btn-outline-accent:focus {
  background: var(--brand-accent);
  color: #fff;
}

/* Generic grid */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}
@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* About */
.about-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

/* Carousel (Featured) */
.carousel {
  position: relative;
}
.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: var(--gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-block: 8px;
  scrollbar-width: thin;
}
.carousel-track:focus {
  outline: 2px dashed #aaa;
  outline-offset: 6px;
}
.carousel-track > * {
  scroll-snap-align: start;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-card);
  cursor: pointer;
}
.carousel-arrow.prev {
  left: -6px;
}
.carousel-arrow.next {
  right: -6px;
}
@media (max-width: 700px) {
  .carousel-arrow {
    display: none;
  }
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: #d1d1d1;
}
.carousel-dots button[aria-current="true"] {
  background: var(--brand-accent);
}

/* Featured cards – base */
.card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #000;
}
.card-media {
  position: relative;
  aspect-ratio: 3 / 2;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 55%,
    rgba(0, 0, 0, 0.55) 100%
  );
}
.card-title {
  position: absolute;
  left: 14px;
  bottom: 12px;
  color: #fff;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.chip {
  position: absolute;
  left: 12px;
  top: 12px;
  background: var(--brand-accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}
.card:hover,
.card:focus-within {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

/* Featured cards – orange tile variant (scoped to #featured) */
#featured .card {
  background: var(--tile-base);
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
#featured .card-media {
  position: relative;
  aspect-ratio: 3 / 4;
}
#featured .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}
#featured .card-gradient {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 42%,
    rgba(255, 122, 46, 0.85) 100%
  );
}
#featured .card-title {
  left: 16px;
  right: 16px;
  bottom: 14px;
  margin: 0;
  color: #fff;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: none;
}
#featured .chip {
  left: 12px;
  top: 12px;
  background: #ff8f4c;
  color: #fff;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  font-size: 0.78rem;
}
#featured .carousel-track {
  grid-auto-columns: clamp(220px, 24vw, 280px);
  gap: 18px;
}
@media (min-width: 701px) {
  #featured .carousel-arrow.prev {
    left: -22px;
  }
  #featured .carousel-arrow.next {
    right: -22px;
  }
}

/* Beverages tiles */
.drink-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 1100px) {
  .drink-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}
@media (max-width: 640px) {
  .drink-grid {
    grid-template-columns: 1fr;
  }
}

/* Clean drink cards */
/* Subtle warm orange fade behind drink cards */
.drink-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: 18px;
  padding: 24px 26px 20px;
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  isolation: isolate;
}

/* light orange gradient overlay */
.drink-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 122, 46, 0.05) 0%,
    rgba(255, 122, 46, 0.12) 100%
  );
  z-index: 0; /* sits behind the content */
  pointer-events: none;
}

/* ensure content sits above gradient */
.drink-card * {
  position: relative;
  z-index: 1;
}

/* Remove bullets + align price column */
.drink-list {
  list-style: none;
  margin: 8px 0 14px 0;
  padding: 0;
}

.drink-list li {
  display: flex;
  justify-content: space-between;
  margin: 6px 0;
  font-variant-numeric: tabular-nums;
}

/* Optional subtle separator */
.drink-list li + li {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 6px;
}

/* Hours table */
.hours {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  overflow: hidden;
}
.hours th,
.hours td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--brand-border);
}
.hours thead th {
  background: #fafafa;
  text-align: left;
}

/* Map */
.map-embed {
  aspect-ratio: 16 / 9;
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  overflow: hidden;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact/Reserve */
.section-ink {
  background: var(--brand-ink);
  color: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.contact-list a {
  color: #fff;
  text-decoration: underline;
}
.reserve-form {
  display: grid;
  gap: 12px;
}
/* You removed labels; inputs use placeholders */
.reserve-form input,
.reserve-form textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ffffff30;
  background: #ffffff10;
  color: #fff;
}
.reserve-form input::placeholder,
.reserve-form textarea::placeholder {
  color: #ffffff90;
}
.privacy-note {
  opacity: 0.85;
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  background: #232930;
  color: #fff;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 18px;
}
.back-to-top {
  border: 1px solid #ffffff40;
  background: transparent;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

/* Modal (lightbox) — single consolidated version */
.modal[hidden] {
  display: none;
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 999;
}
.modal-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}
.modal-inner {
  position: relative;
  z-index: 1;
  background: var(--brand-surface);
  max-width: min(1000px, 92vw);
  margin: 6vh auto;
  border-radius: 16px;
  box-shadow: var(--shadow-lift);
  display: flex;
  flex-direction: column;
  height: 90vh;
  max-height: 90vh; /* keep on-screen, scroll inside */
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--brand-border);
  gap: 10px;
}
.modal-body {
  flex: 1;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 8px 16px 16px;
}
.modal-body img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 12px 16px;
  border-top: 1px solid var(--brand-border);
}
.modal-close {
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
}
.modal-pager {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.pager-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--brand-border);
  background: #fff;
  cursor: pointer;
}
.pager-btn[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}
.pager-count {
  min-width: 56px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

/* Utilities */
.grid-2 > *:only-child {
  grid-column: 1 / -1;
}
