.theme-cafe-warm {
  --cafe-brown: #642916;
  --cafe-brown-dark: #35160e;
  --cafe-cream: #fffaf5;
  --cafe-cream-2: #f6efea;
  --cafe-paper: #ffffff;
  --cafe-ink: #321a10;
  --cafe-muted: #8a7064;
  --cafe-coral: #ef6d5f;
  --cafe-sage: #6c8470;
  --cafe-line: rgba(50, 26, 16, 0.14);
  --cafe-shadow: 0 22px 58px rgba(50, 26, 16, 0.14);
  --accent: var(--cafe-coral);
  --dark: var(--cafe-brown-dark);
  --text: var(--cafe-ink);
  --muted: var(--cafe-muted);
  --body-font: "Inter", system-ui, sans-serif;
  --heading-font: "Cormorant Garamond", Georgia, serif;
  --bg: var(--cafe-cream);
  --card-bg: #ffffff;
  --card-border: var(--cafe-line);
  background: var(--cafe-cream);
  color: var(--cafe-ink);
  font-family: var(--body-font);
}

.theme-cafe-warm .container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.theme-cafe-warm h1,
.theme-cafe-warm h2,
.theme-cafe-warm h3 {
  margin: 0;
  color: var(--cafe-ink);
  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.96;
}

.cafe-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(100, 41, 22, 0.96);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.cafe-header-row {
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.cafe-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: inherit;
  text-decoration: none;
  font-family: var(--heading-font);
  font-size: clamp(1.65rem, 2.6vw, 2.45rem);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.cafe-brand-mark {
  position: relative;
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: var(--cafe-coral);
}

.cafe-brand-mark::before,
.cafe-brand-mark::after {
  content: "";
  position: absolute;
}

.cafe-brand-mark::before {
  width: 14px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 2px 2px 8px 8px;
  background: transparent;
}

.cafe-brand-mark::after {
  right: 6px;
  top: 14px;
  width: 7px;
  height: 8px;
  border: 2px solid currentColor;
  border-left: 0;
  border-radius: 0 7px 7px 0;
}

.cafe-header .site-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 34px);
  padding: 0;
}

.cafe-header .site-nav a {
  min-height: auto;
  border: 0;
  background: transparent;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.cafe-header .site-nav a:last-child {
  justify-content: flex-start;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
}

.theme-cafe-warm .nav-toggle {
  display: none;
  justify-self: end;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.header-cta {
  justify-self: end;
}

.theme-cafe-warm .button {
  min-height: 50px;
  border-radius: 999px;
  padding: 0 28px;
  font-family: var(--body-font);
  font-weight: 900;
  text-decoration: none;
}

.button-coral {
  border-color: var(--cafe-coral);
  background: var(--cafe-coral);
  color: #fff;
  box-shadow: 0 18px 38px rgba(239, 109, 95, 0.32);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.24);
  background: #fff;
  color: var(--cafe-brown);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button-full {
  width: 100%;
}

.mobile-contact-bar {
  display: none;
}

.cafe-hero {
  position: relative;
  min-height: min(690px, calc(100vh - 88px));
  overflow: hidden;
  display: grid;
  align-items: center;
  color: #fff;
}

.cafe-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 45%;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(39, 16, 9, 0.78), rgba(39, 16, 9, 0.42) 48%, rgba(39, 16, 9, 0.72)),
    radial-gradient(circle at 50% 35%, rgba(239, 109, 95, 0.2), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  padding: clamp(44px, 6vw, 76px) 0 clamp(44px, 5vw, 64px);
  text-align: center;
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--cafe-coral);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.cafe-hero .section-kicker {
  color: rgba(255, 255, 255, 0.86);
}

.hero-stamp {
  display: grid;
  width: 108px;
  height: 108px;
  place-items: center;
  margin-bottom: 22px;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  color: #fff;
  font-family: var(--body-font);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 720px;
  color: #fff;
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  text-wrap: balance;
}

.hero-content p:not(.section-kicker) {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  line-height: 1.75;
}

.theme-cafe-warm .button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.section {
  padding: clamp(78px, 9vw, 126px) 0;
}

.offers-section {
  padding-top: clamp(38px, 6vw, 64px);
}

.center-heading {
  max-width: 760px;
  margin: 0 auto clamp(48px, 6vw, 72px);
  text-align: center;
}

.center-heading h2,
.story-copy h2,
.testimonial-inner blockquote,
.visit-copy h2,
.menu-band-copy h2 {
  font-size: clamp(2.55rem, 5vw, 4.9rem);
  text-wrap: balance;
}

.ornament {
  position: relative;
  display: block;
  width: 128px;
  height: 18px;
  margin: 22px auto 0;
}

.ornament::before,
.ornament::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 50px;
  height: 1px;
  background: rgba(100, 41, 22, 0.22);
}

.ornament::before {
  left: 0;
}

.ornament::after {
  right: 0;
}

.ornament {
  background:
    radial-gradient(circle at 50% 30%, var(--cafe-coral) 0 3px, transparent 4px),
    radial-gradient(circle at 44% 67%, var(--cafe-coral) 0 3px, transparent 4px),
    radial-gradient(circle at 56% 67%, var(--cafe-coral) 0 3px, transparent 4px);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 5vw, 76px);
}

.offer-card {
  display: grid;
  justify-items: center;
  text-align: center;
}

.offer-card img {
  width: clamp(150px, 17vw, 190px);
  aspect-ratio: 1;
  border: 10px solid #f4ebe4;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--cafe-shadow);
}

.offer-card h3 {
  margin: 28px 0 12px;
  font-size: clamp(1.75rem, 2.4vw, 2.35rem);
}

.offer-card p,
.story-copy p,
.news-card p,
.visit-list,
.menu-item p,
.form-note,
.form-message {
  color: var(--cafe-muted);
  line-height: 1.75;
}

.menu-section {
  background: var(--cafe-cream);
}

.menu-photo-band {
  min-height: 370px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(rgba(27, 13, 8, 0.54), rgba(27, 13, 8, 0.64)),
    url("../assets/previews/cafe-warm-classic-preview.jpg") center 44% / cover;
  color: #fff;
  text-align: center;
}

.menu-band-copy {
  padding: 74px 0 140px;
}

.menu-band-copy .section-kicker,
.menu-band-copy h2 {
  color: #fff;
}

.menu-band-copy h2 {
  max-width: 780px;
  margin: 0 auto;
}

.menu-board {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 72px);
  margin-top: -110px;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--cafe-shadow);
}

.menu-column {
  display: grid;
}

.menu-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px dashed rgba(100, 41, 22, 0.18);
}

.menu-item:first-child {
  padding-top: 0;
}

.menu-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.menu-item img {
  width: 92px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.menu-item h3 {
  margin-bottom: 8px;
  color: var(--cafe-brown);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
}

.menu-item p {
  margin: 0;
}

.menu-item strong {
  align-self: start;
  color: var(--cafe-coral);
  font-size: 1.35rem;
  font-weight: 900;
  white-space: nowrap;
}

.story-section {
  background: var(--cafe-cream-2);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(42px, 8vw, 92px);
}

.story-photos {
  position: relative;
  min-height: 520px;
}

.story-photos img {
  position: absolute;
  overflow: hidden;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--cafe-shadow);
}

.story-photo-tall {
  left: 0;
  top: 0;
  width: 58%;
  height: 78%;
}

.story-photo-card {
  right: 0;
  bottom: 0;
  width: 58%;
  height: 76%;
}

.story-copy {
  text-align: center;
}

.story-copy .ornament {
  margin-bottom: 28px;
}

.story-copy p:not(.section-kicker) {
  max-width: 520px;
  margin: 0 auto 22px;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  border-bottom: 2px solid var(--cafe-coral);
  color: var(--cafe-brown);
  font-weight: 800;
  text-decoration: none;
}

.gallery-section {
  padding: clamp(64px, 8vw, 108px) 0 0;
  background: #fff;
}

.gallery-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-strip img {
  width: 100%;
  height: clamp(260px, 32vw, 470px);
  object-fit: cover;
}

.testimonial-section {
  background: #fff;
}

.testimonial-inner {
  max-width: 820px;
  text-align: center;
}

.testimonial-inner blockquote {
  margin: 0;
  color: var(--cafe-brown);
  font-style: italic;
}

.testimonial-inner cite {
  display: block;
  margin-top: 22px;
  color: var(--cafe-muted);
  font-style: normal;
  font-weight: 700;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 44px);
}

.news-card {
  display: grid;
  gap: 18px;
}

.news-card img {
  width: 100%;
  aspect-ratio: 1.35;
  border-radius: 8px;
  object-fit: cover;
}

.news-card h3 {
  color: var(--cafe-brown);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.05;
}

.news-card p {
  margin: 0;
}

.visit-section {
  padding: clamp(78px, 9vw, 124px) 0;
  background: var(--cafe-brown-dark);
  color: #fff;
}

.visit-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
  gap: clamp(36px, 7vw, 86px);
}

.visit-copy h2,
.visit-copy .section-kicker {
  color: #fff;
}

.visit-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.76);
  list-style: none;
}

.visit-list strong {
  color: #fff;
}

.visit-list span {
  margin-left: 6px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.86rem;
}

.visit-form {
  display: grid;
  gap: 12px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: var(--cafe-cream);
  color: var(--cafe-ink);
  box-shadow: var(--cafe-shadow);
}

.visit-form label {
  color: var(--cafe-brown);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visit-form input,
.visit-form select,
.visit-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(50, 26, 16, 0.16);
  border-radius: 4px;
  padding: 12px 14px;
  background: #fff;
  color: var(--cafe-ink);
  font: inherit;
}

.visit-form textarea {
  min-height: 126px;
  resize: vertical;
}

.visit-form .form-note,
.visit-form .form-message {
  margin: 0;
}

.cafe-footer {
  padding: clamp(54px, 7vw, 78px) 0 0;
  background: var(--cafe-brown);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 1fr;
  gap: 44px;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid a {
  display: block;
  margin-top: 10px;
  text-decoration: none;
}

.footer-grid strong {
  display: block;
  margin-bottom: 16px;
  color: #fff;
}

.footer-brand {
  margin-bottom: 18px;
}

.copyright {
  margin: clamp(44px, 6vw, 68px) 0 0;
  padding: 30px;
  background: rgba(0, 0, 0, 0.14);
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
}

@media (max-width: 980px) {
  .cafe-header-row {
    min-height: 78px;
    grid-template-columns: 1fr auto;
  }

  .cafe-header .site-nav,
  .header-cta {
    display: none;
  }

  .theme-cafe-warm .nav-toggle {
    display: inline-flex;
  }

  .cafe-header .site-nav.open {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: grid;
    gap: 0;
    justify-content: stretch;
    justify-items: stretch;
    padding: 12px;
    border: 1px solid rgba(100, 41, 22, 0.12);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--cafe-shadow);
  }

  .cafe-header .site-nav.open a,
  .cafe-header .site-nav.open a:last-child {
    display: flex;
    width: 100%;
    min-width: 100%;
    inline-size: 100%;
    justify-self: stretch;
    min-height: auto;
    justify-content: flex-start;
    padding: 14px;
    border: 0;
    background: transparent;
    color: var(--cafe-ink);
  }

  .cafe-hero {
    min-height: 710px;
  }

  .offer-grid,
  .menu-board,
  .story-grid,
  .news-grid,
  .visit-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .menu-board {
    max-width: 760px;
  }

  .story-photos {
    min-height: 430px;
  }

  .gallery-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .theme-cafe-warm .container {
    width: min(100% - 28px, 1140px);
  }

  .cafe-brand {
    font-size: 1.35rem;
  }

  .cafe-brand-mark {
    width: 32px;
    height: 32px;
  }

  .mobile-contact-bar {
    position: sticky;
    top: 0;
    z-index: 25;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--cafe-line);
    background: #fff;
  }

  .mobile-contact-bar a {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-contact-bar a:first-child {
    background: var(--cafe-brown-dark);
  }

  .mobile-contact-bar a:last-child {
    background: var(--cafe-coral);
  }

  .cafe-hero {
    min-height: 640px;
  }

  .hero-content {
    padding: 34px 0 34px;
  }

  .hero-stamp {
    width: 76px;
    height: 76px;
    margin-bottom: 16px;
    border-width: 2px;
    font-size: 0.58rem;
  }

  .hero-content h1 {
    font-size: clamp(2.65rem, 12.2vw, 3.35rem);
  }

  .hero-content p:not(.section-kicker) {
    font-size: 1rem;
    line-height: 1.55;
  }

  .theme-cafe-warm .button-row {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .theme-cafe-warm .button-row .button {
    width: 100%;
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .section {
    padding: 72px 0;
  }

  .offer-grid {
    gap: 42px;
  }

  .menu-band-copy {
    padding: 58px 0 126px;
  }

  .menu-board {
    padding: 22px;
  }

  .menu-item {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
  }

  .menu-item img {
    width: 72px;
  }

  .menu-item strong {
    grid-column: 2;
    justify-self: start;
  }

  .story-photos {
    min-height: 330px;
  }

  .story-photo-tall {
    width: 62%;
    height: 76%;
  }

  .story-photo-card {
    width: 62%;
    height: 70%;
  }

  .gallery-heading {
    display: grid;
    justify-items: start;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .gallery-strip img {
    height: 300px;
  }
}
