:root {
  --blue: #2b5579;
  --ochre: #c67a2c;
  --cream: #f7e8d3;
  --coral: #d34e3b;
  --espresso: #2b241f;
  --ink: #18120f;
  --paper: #fff8ed;
  --muted: rgba(43, 36, 31, 0.66);
  --line: rgba(43, 36, 31, 0.14);
  --soft-line: rgba(247, 232, 211, 0.2);
  --shadow: 0 22px 70px rgba(43, 36, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--espresso);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 18px 34px;
  color: var(--cream);
  background: linear-gradient(180deg, rgba(24, 18, 15, 0.72), rgba(24, 18, 15, 0));
}

.brand {
  width: 122px;
  flex: 0 0 auto;
  text-decoration: none;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid transparent;
  color: rgba(247, 232, 211, 0.88);
  font-size: 0.76rem;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-button {
  border-color: rgba(247, 232, 211, 0.34);
  background: rgba(43, 36, 31, 0.18);
  backdrop-filter: blur(10px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--cream);
  background: var(--espresso);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/tempo-logo-ground-shadow-web.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(24, 18, 15, 0.92) 0%, rgba(24, 18, 15, 0.62) 42%, rgba(24, 18, 15, 0.14) 100%),
    linear-gradient(180deg, rgba(24, 18, 15, 0.28) 0%, rgba(24, 18, 15, 0.14) 44%, rgba(24, 18, 15, 0.76) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 132px 0 168px;
}

.eyebrow,
.menu-list span,
.hero-info span,
.article-list span {
  margin: 0 0 14px;
  color: var(--ochre);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 8vw, 8.2rem);
  font-weight: 520;
  line-height: 0.88;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5vw, 5.6rem);
  font-weight: 520;
  line-height: 0.94;
}

h3 {
  margin-bottom: 8px;
  color: var(--espresso);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 850;
  line-height: 1.05;
}

.lead {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(247, 232, 211, 0.86);
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  font-weight: 560;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid var(--espresso);
  font-size: 0.8rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.button.light {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--espresso);
}

.button.outline-light {
  border-color: rgba(247, 232, 211, 0.6);
  color: var(--cream);
}

.button.dark {
  border-color: var(--espresso);
  background: var(--espresso);
  color: var(--cream);
}

.hero-info {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 34px;
  width: min(640px, calc(100% - 68px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(247, 232, 211, 0.28);
  background: rgba(43, 36, 31, 0.58);
  backdrop-filter: blur(18px);
}

.hero-info div {
  padding: 18px;
  border-right: 1px solid rgba(247, 232, 211, 0.18);
}

.hero-info div:last-child {
  border-right: 0;
}

.hero-info span {
  display: block;
  margin-bottom: 6px;
}

.hero-info strong {
  display: block;
  color: var(--cream);
  font-size: 0.98rem;
}

.intro-section,
.menu-section,
.hours-section,
.visit-section,
.updates-section {
  padding: 108px 0;
}

.intro-section {
  background: var(--paper);
}

.intro-grid,
.hours-grid,
.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1fr);
  gap: 74px;
  align-items: start;
}

.intro-copy p,
.section-title p,
.feature-card p,
.visit-grid p,
.hours-grid p,
.menu-list p {
  color: var(--muted);
  font-size: 1.06rem;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.daypart-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 62px;
  background: var(--line);
  border: 1px solid var(--line);
}

.daypart-grid article {
  min-height: 170px;
  padding: 26px;
  background: var(--paper);
}

.daypart-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.daypart-grid strong {
  display: block;
  max-width: 260px;
  color: var(--espresso);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  font-weight: 520;
  line-height: 1.03;
}

.section-title {
  max-width: 820px;
  margin-bottom: 48px;
}

.section-title.compact {
  max-width: 620px;
}

.menu-section {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.menu-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.menu-list article {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.menu-list p {
  max-width: 760px;
  margin-bottom: 0;
}

.feature-section {
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: 48px;
  background:
    linear-gradient(90deg, rgba(43, 36, 31, 0.04), rgba(43, 36, 31, 0.46)),
    url("assets/tempo-logo-ground-shadow-web.jpg") center / cover;
}

.feature-card {
  width: min(560px, 100%);
  padding: 34px;
  margin-left: auto;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.feature-card h2 {
  font-size: clamp(2.2rem, 4vw, 4.1rem);
}

.hours-section {
  background: var(--paper);
}

.hours-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.hours-list div {
  display: grid;
  grid-template-columns: minmax(150px, 0.72fr) minmax(180px, 1fr);
  gap: 26px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.hours-list dt {
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hours-list dd {
  margin: 0;
  color: var(--espresso);
  font-weight: 720;
}

.visit-section {
  background: var(--blue);
  color: var(--cream);
}

.visit-section .eyebrow {
  color: var(--cream);
}

.visit-section h2,
.visit-section p {
  color: var(--cream);
}

.visit-panel {
  padding: 34px;
  background: var(--cream);
  color: var(--espresso);
  box-shadow: var(--shadow);
}

.visit-panel img {
  width: 240px;
  margin-bottom: 26px;
}

.visit-panel p {
  color: var(--muted);
}

.visit-panel .button {
  width: 100%;
  margin: 8px 0 18px;
}

.directions-link {
  color: var(--blue);
  font-weight: 850;
}

.updates-section {
  background: var(--paper);
}

.article-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.article-list a {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.article-list strong {
  color: var(--espresso);
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  line-height: 1.12;
}

footer {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 40px;
  background: var(--espresso);
  color: var(--cream);
}

footer img {
  width: 126px;
}

footer p {
  margin: 0;
  color: var(--ochre);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-page {
  background: var(--paper);
}

.article-page .site-header {
  position: sticky;
  background: var(--espresso);
}

.article-hero {
  padding: 126px 0 68px;
  background:
    linear-gradient(90deg, rgba(43, 36, 31, 0.93), rgba(43, 36, 31, 0.76)),
    url("assets/tempo-logo-ground-shadow-web.jpg") center / cover;
  color: var(--cream);
}

.article-hero h1 {
  max-width: 980px;
  color: var(--cream);
}

.article-body {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 96px;
  color: var(--espresso);
  font-size: 1.12rem;
}

.article-body h2 {
  margin-top: 42px;
  color: var(--espresso);
  font-size: clamp(2.3rem, 5vw, 3.5rem);
}

.article-body a {
  color: var(--coral);
  font-weight: 850;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 22px;
    background: linear-gradient(180deg, rgba(24, 18, 15, 0.8), rgba(24, 18, 15, 0));
  }

  nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-content {
    padding: 150px 0 250px;
  }

  .hero-info {
    right: 20px;
    bottom: 20px;
    width: calc(100% - 40px);
  }

  .intro-grid,
  .hours-grid,
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 640px) {
  .inner,
  .hero-content {
    width: min(320px, calc(100vw - 48px));
  }

  .hero-content {
    margin-left: 24px;
    margin-right: auto;
  }

  .brand {
    width: 112px;
  }

  nav a {
    min-height: 34px;
    padding: 7px 9px;
    font-size: 0.68rem;
  }

  .nav-button {
    display: none;
  }

  .hero {
    min-height: 850px;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(24, 18, 15, 0.54) 0%, rgba(24, 18, 15, 0.7) 48%, rgba(24, 18, 15, 0.92) 100%);
  }

  .hero-content {
    padding: 150px 0 300px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10vw, 2.85rem);
    line-height: 0.94;
    overflow-wrap: normal;
  }

  h2 {
    font-size: clamp(2.45rem, 12vw, 3.4rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-info {
    grid-template-columns: 1fr;
    left: 20px;
    right: auto;
    width: min(340px, calc(100vw - 40px));
  }

  .hero-info div {
    padding: 15px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(247, 232, 211, 0.18);
  }

  .hero-info div:last-child {
    border-bottom: 0;
  }

  .intro-section,
  .menu-section,
  .hours-section,
  .visit-section,
  .updates-section {
    padding: 76px 0;
  }

  .menu-list article,
  .hours-list div,
  .article-list a,
  .daypart-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .feature-section {
    min-height: 600px;
    padding: 20px;
  }

  .feature-card {
    padding: 26px;
  }

  .visit-panel {
    padding: 26px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 22px;
  }
}
