:root {
  --ink: #172322;
  --muted: #5f6862;
  --paper: #fffaf1;
  --white: #ffffff;
  --teal: #173b3f;
  --teal-2: #27666a;
  --tomato: #bb3f28;
  --gold: #f5b841;
  --cilantro: #3b7d4f;
  --blue: #23719b;
  --line: rgba(23, 35, 34, 0.14);
  --shadow: 0 24px 60px rgba(18, 33, 31, 0.16);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(187, 63, 40, 0.04) 0 1px, transparent 1px 90px),
    linear-gradient(180deg, #fffdf7, var(--paper));
}

body::selection {
  background: var(--gold);
  color: var(--ink);
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  width: min(1120px, calc(100% - 32px));
  min-height: 60px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  color: var(--white);
  background: rgba(13, 25, 24, 0.5);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.header-call,
.button,
.hero-facts li,
.tab-button {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.3rem;
}

.nav-links {
  justify-content: center;
  gap: 4px;
}

.nav-links a,
.header-call {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 760;
  color: rgba(255, 255, 255, 0.88);
}

.nav-links a:hover,
.header-call:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.header-call {
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.site-header svg,
.button svg,
.hero-facts svg,
.tab-button svg,
.review-card svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.25;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  padding: 150px max(24px, calc((100vw - 1160px) / 2)) 72px;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6, 14, 13, 0.86), rgba(6, 14, 13, 0.48) 42%, rgba(6, 14, 13, 0.1)),
    url("assets/hero-rubens-cafe.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(6, 14, 13, 0.68), transparent);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 60%, rgba(245, 184, 65, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--tomato);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.4rem, 11vw, 9.7rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.3vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.04rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  width: min(620px, 100%);
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.button {
  min-height: 48px;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 850;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 16px 36px rgba(245, 184, 65, 0.28);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.11);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-facts li {
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  font-weight: 720;
}

.quick-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1120px, calc(100% - 32px));
  margin: -36px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.quick-strip > div {
  min-height: 112px;
  padding: 24px;
  background: var(--white);
}

.strip-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.quick-strip strong {
  font-size: clamp(1.02rem, 1.5vw, 1.28rem);
  line-height: 1.25;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 104px 0;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
  gap: 64px;
  align-items: center;
}

.section-copy p,
.menu-panel p,
.review-card p,
.hours-card p,
.visit-copy address,
.site-footer {
  color: var(--muted);
  line-height: 1.65;
}

.section-copy > p:last-child {
  font-size: 1.08rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.proof-grid article {
  min-width: 0;
  min-height: 188px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(18, 33, 31, 0.08);
}

.proof-number {
  display: block;
  margin-bottom: 18px;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.92;
}

.proof-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.menu-band {
  padding: 88px max(16px, calc((100vw - 1200px) / 2));
  background:
    linear-gradient(135deg, rgba(23, 59, 63, 0.96), rgba(31, 84, 70, 0.94)),
    linear-gradient(90deg, rgba(245, 184, 65, 0.2), transparent);
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
  gap: 36px;
  align-items: center;
}

.menu-image-wrap {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.menu-image-wrap img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
}

.menu-panel {
  padding: clamp(28px, 5vw, 56px);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.menu-panel h2 {
  font-size: clamp(2rem, 3.4vw, 3.6rem);
}

.menu-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 28px 0 22px;
}

.tab-button {
  min-height: 48px;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.tab-button.active {
  color: var(--ink);
  border-color: var(--gold);
  background: var(--gold);
}

.menu-items {
  display: grid;
  gap: 10px;
}

.menu-items[hidden] {
  display: none;
}

.menu-item {
  padding: 18px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.menu-item h3 {
  margin-bottom: 6px;
}

.menu-item p {
  margin-bottom: 0;
}

.menu-note {
  margin: 22px 0 0;
  font-size: 0.93rem;
}

.full-menu-section {
  padding: 104px max(16px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(180deg, rgba(245, 184, 65, 0.09), transparent 36%),
    var(--paper);
}

.full-menu-heading {
  width: min(820px, 100%);
  margin-bottom: 34px;
}

.full-menu-heading h2 {
  margin-bottom: 20px;
}

.full-menu-heading p:last-child {
  margin-bottom: 6px;
  color: var(--muted);
  line-height: 1.55;
}

.full-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.full-menu-card {
  min-width: 0;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(18, 33, 31, 0.08);
}

.full-menu-card.compact {
  background: #fffdf8;
}

.full-menu-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.full-menu-card h3::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--tomato);
}

.full-menu-card:nth-child(2n) h3::before {
  background: var(--cilantro);
}

.full-menu-card:nth-child(3n) h3::before {
  background: var(--blue);
}

.price-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.price-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: baseline;
  padding: 10px 0;
  border-top: 1px dashed rgba(23, 35, 34, 0.16);
}

.price-list li:first-child {
  border-top: 0;
}

.price-list span {
  color: var(--ink);
  line-height: 1.35;
}

.price-list strong {
  display: none;
}

.price-list .subitem span {
  color: var(--muted);
}

.price-footnote {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.review-section {
  padding-top: 108px;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

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

.review-card {
  min-height: 252px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(18, 33, 31, 0.08);
}

.review-card svg {
  width: 30px;
  height: 30px;
  margin-bottom: 28px;
  color: var(--tomato);
}

.review-card:nth-child(2) svg {
  color: var(--cilantro);
}

.review-card:nth-child(3) svg {
  color: var(--blue);
}

.review-card p {
  margin-bottom: 0;
}

.visit-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 0;
  color: var(--white);
  background: var(--teal);
}

.visit-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
  padding: clamp(48px, 8vw, 96px) clamp(24px, 6vw, 76px);
}

.visit-copy address {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hours-card {
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.hours-card h3 {
  margin-bottom: 16px;
}

.hours-card dl {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}

.hours-card dl > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hours-card dt,
.hours-card dd {
  margin: 0;
}

.hours-card dt {
  color: rgba(255, 255, 255, 0.7);
}

.hours-card dd {
  font-weight: 900;
  text-align: right;
}

.hours-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.map-frame {
  width: 100%;
  min-height: 560px;
  border: 0;
  filter: saturate(0.94) contrast(1.02);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .intro-section,
  .menu-layout,
  .visit-band,
  .visit-content {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .full-menu-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid article,
  .review-card {
    min-height: auto;
  }

  .menu-image-wrap {
    order: 2;
  }

  .menu-panel {
    order: 1;
  }

  .map-frame {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    gap: 10px;
  }

  .brand span:last-child {
    max-width: 120px;
    line-height: 1.05;
  }

  .header-call {
    padding: 0 12px;
  }

  .hero {
    min-height: 82vh;
    padding: 120px 20px 46px;
    background-position: 60% center;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    display: grid;
    gap: 12px;
  }

  .quick-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
    width: 100%;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .section {
    width: min(100% - 32px, 1120px);
    padding: 76px 0;
  }

  .intro-section {
    gap: 36px;
  }

  .tab-list {
    grid-template-columns: 1fr;
  }

  .visit-content {
    padding: 68px 20px;
  }

  .hours-card dl > div {
    align-items: start;
    flex-direction: column;
    gap: 2px;
  }

  .hours-card dd {
    text-align: left;
  }

  .site-footer {
    display: grid;
    width: min(100% - 32px, 1120px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
