/*!
Tema Adı: CNL
Tema Adresi: https://redbeardbakerynyc.com/
Geliştirici: Ersin CANLI
Geliştirici Adresi: ersin.canli@gmail.com
Açıklama: Modern artisan bakery tasarımlarından ilham alınarak hazırlanmış özel bakery web sitesi temasıdır.
Sürüm: 1.0.0
Lisans: Özel / Kişisel Kullanım
Metin Alanı: redbeardbakery

Ana Özellikler:
- Masaüstü ve mobil uyumlu responsive tasarım
- Özel header logo tipografisi
- Görsel üzerine başlık ve slogan yerleşimli hero alanı
- Mobil hamburger menü
- Sekmeli menü sistemi
- Menü kategori ve bölüm düzeni
- Ana sayfa öne çıkan ürün kartları
- Instagram / Follow Us bölümü
- İletişim formu ve sosyal medya bağlantıları
- Google Maps harita alanı
- Çerez bildirimi
- Yerel özel font desteği
- Admin panelden yönetilebilir içerik uyumu
- SEO uyumlu yapı
- Temiz ve tekrar kullanılabilir CSS değişkenleri
*/

/* =========================================================
   İÇİNDEKİLER
   =========================================================

   1. Font Tanımları
   2. Ana Değişkenler
   3. Sıfırlama / Temel Stiller
   4. Header / Navigasyon
   5. Hero Alanı
   6. Ortak Bölümler
   7. Menü Sayfası
   8. İletişim Sayfası
   9. Ana Sayfa Öne Çıkan Ürünler
   10. Instagram / Follow Us Bölümü
   11. Harita Bölümü
   12. Footer
   13. Çerez Bildirimi
   14. Responsive Stiller

   ========================================================= */
@font-face {
  font-family: 'Million Harmony';
  src: url('../fonts/Million Harmony.ttf') format('truetype'),
       url('../fonts/Million Harmony.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Miracle Fairway';
  src: url('../fonts/Miracle Fairway.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Marigold Regular';
  src: url('../fonts/MARIGOLD.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: rgb(238 229 218);
  --bg-soft: #f6efe7;
  --ink: #111;
  --muted: #5f554d;
  --line: rgba(0, 0, 0, 0.18);
  --white: #fff;
  --brand-brown: #5b2620;
  --font: 'Cormorant Garamond', Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
}

img,
iframe {
  max-width: 100%;
}

img {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.narrow-container {
  max-width: 760px;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  max-width: 100%;
  background: rgba(238, 229, 218, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(238, 229, 218, 0.96);
}

.header-container {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

/* Header stacked text logo */
.site-logo-text {
  display: inline-flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  line-height: 0.85;
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-logo-text img {
  display: none !important;
}

.site-logo-text .logo-word {
  display: block !important;
  color: var(--brand-brown);
}

.site-logo-text .logo-word-red {
  font-family: 'Million Harmony', cursive;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 10px;
  transform: translateX(4px);
}

.site-logo-text .logo-word-beard {
  font-family: 'Miracle Fairway', cursive;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 0;
}

.site-logo-text .logo-word-bakery {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* Navigation */
.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 14px;
}

.site-nav a {
  position: relative;
  padding: 6px 0;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--ink);
  margin: 7px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
}

.hero__image {
  width: 100%;
  height: 90vh;
  min-height: 620px;
  object-fit: cover;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.hero__content {
  color: var(--white);
  max-width: 860px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .28);
}

.hero__title {
  margin: 0;
  font-size: clamp(54px, 9vw, 122px);
  line-height: 0.9;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__slogan {
  margin: 24px auto 30px;
  font-family: 'Marigold Regular', var(--font);
  font-size: 16px;
}

/* Hero stacked logo */
.hero-logo-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  line-height: .82;
  text-transform: none;
  letter-spacing: 0;
}

.hero-logo-word {
  display: block;
  color: inherit;
}

.hero-logo-red {
  font-family: 'Million Harmony', cursive;
  font-size: 100px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  transform: translate(-41px, -20px);
}

.hero-logo-beard {
  font-family: 'Miracle Fairway', cursive;
  font-size: 100px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  margin-top: -18px;
}

.hero-logo-bakery {
  font-family: var(--font);
  font-size: clamp(24px, 3vw, 48px);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 12px;
}

/* Common sections */
.page-hero {
  padding: 110px 0 70px;
}

.page-hero h1,
.content-block h2,
.section-heading h2 {
  font-family: 'Marigold Regular', var(--font);
  font-size: 24px;
  line-height: 1;
  margin: 0 0 22px;
  font-weight: 500;
  text-transform: uppercase;
}

.page-hero p,
.content-block p {
  color: var(--muted);
  font-size: 16px;
}

.section {
  padding: 90px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.eyebrow {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 14px;
  color: var(--muted);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.media-card {
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .12);
}

.media-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.content-block {
  max-width: 560px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border: 1px solid currentColor;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 14px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

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

.btn-light {
  color: var(--white);
}

.btn-light:hover {
  background: var(--white);
  color: var(--ink);
}

.btn-dark {
  color: var(--ink);
  background: transparent;
}

.btn-dark:hover {
  background: var(--ink);
  color: var(--bg);
}

.text-link {
  display: inline-block;
  margin-top: 20px;
  border-bottom: 1px solid var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 14px;
}

.section-heading {
  text-align: center;
  margin-bottom: 42px;
}

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

.item-card,
.content-card,
.contact-card,
.form-card {
  background: rgba(255, 255, 255, .36);
  border: 1px solid var(--line);
}

.item-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.item-card__body,
.content-card,
.contact-card,
.form-card {
  padding: 28px;
}

.item-card h3,
.content-card h3 {
  font-size: 32px;
  line-height: 1.1;
  margin: 0 0 10px;
}

.item-card p,
.content-card p {
  margin: 0;
  color: var(--muted);
}

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

/* Menu page */
.menu-page {
  padding-top: 56px;
}

.menu-grid {
  display: grid;
  gap: 54px;
}

.menu-tabs {
  width: 100%;
}

.menu-tabs__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin: 0 auto 82px;
}

.menu-tabs__button {
  min-width: 188px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ink);
  padding: 17px 34px;
  cursor: pointer;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.menu-tabs__button:hover,
.menu-tabs__button.is-active,
.menu-tabs__button[aria-selected="true"] {
  background: transparent;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 7px;
}

.menu-tabs__panel {
  display: block;
  animation: fadeIn .25s ease;
}

.menu-tabs__panel[hidden],
.menu-tabs__panel.is-hidden {
  display: none !important;
}

.menu-list-container {
  max-width: 860px;
}

.menu-list-header h1 {
  margin: 0 0 30px;
  font-size: 24px;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}

.menu-list-panel {
  max-width: 760px;
  margin: 0 auto;
}

.menu-list-section {
  margin-bottom: 82px;
}

.menu-list-section__title {
  display: inline-block;
  margin: 0 0 24px;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 5px;
  font-weight: 700;
}

.menu-list-simple {
  display: grid;
  gap: 12px;
}

.menu-list-simple__item {
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-list-simple__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.menu-list-simple__top h3 {
  margin: 0;
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.25;
  text-transform: uppercase;
  font-weight: 500;
}

.menu-list-simple__top span {
  font-size: 18px;
  white-space: nowrap;
  font-weight: 700;
}

.menu-list-simple__item p {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: .18em;
}

.menu-empty {
  color: var(--muted);
}

/* Older menu item classes kept for compatibility */
.menu-section-group {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto 42px;
}

.menu-section-title {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  margin: 0 0 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.menu-list,
.compact-menu-list {
  display: grid;
  gap: 18px;
}

.menu-item,
.compact-menu-item {
  display: grid;
  grid-template-columns: 138px 1fr;
  gap: 28px;
  align-items: center;
  background: rgba(255, 255, 255, .28);
  border: 1px solid var(--line);
  padding: 22px;
}

.menu-item img,
.compact-menu-item img {
  width: 138px;
  height: 138px;
  object-fit: cover;
}

.menu-item__top,
.compact-menu-item .menu-item__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px dotted var(--line);
  padding-bottom: 10px;
}

.menu-item__top h3,
.compact-menu-item .menu-item__top h3,
.compact-menu-item .menu-item__top h4 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
  font-weight: 600;
}

.menu-item__top span,
.compact-menu-item .menu-item__top span {
  font-weight: 700;
  white-space: nowrap;
}

.menu-item p,
.compact-menu-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 22px;
}

.menu-note {
  margin-top: 18px;
  color: var(--muted);
  font-style: italic;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.form-card label {
  display: block;
  margin-bottom: 18px;
  font-weight: 600;
}

.form-card input,
.form-card textarea {
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .55);
  font: inherit;
}

.alert {
  padding: 14px 16px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
}

.alert-success {
  background: rgba(84, 130, 78, .12);
}

.alert-error {
  background: rgba(130, 78, 78, .12);
}

.map-embed {
  margin-top: 24px;
  overflow: hidden;
}

.map-embed iframe {
  width: 100%;
  min-height: 280px;
  border: 0;
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0 26px;
}

.contact-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 18px;
  border: 1px solid var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.contact-social-links a:hover {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-1px);
}

/* Homepage featured cards */
.featured-section {
  padding-top: 110px;
  padding-bottom: 110px;
}

.featured-section .section-heading {
  margin-bottom: 56px;
}

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

.featured-card {
  background: transparent;
  border: 0;
}

.featured-card__image {
  width: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, .25);
}

.featured-card__image img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
}

.featured-card__body {
  padding-top: 26px;
}

.featured-card__body h3 {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.featured-card__body p {
  margin: 0;
  color: #3c2c22;
  font-size: 16px;
  line-height: 1.45;
}

.featured-action {
  display: flex;
  justify-content: center;
  margin-top: 66px;
}

.featured-button {
  gap: 14px;
  min-height: 58px;
  padding: 14px 34px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.featured-button:hover {
  background: var(--ink);
  color: var(--bg);
}

/* Instagram / Follow section */
.instagram-section {
  padding-top: 100px;
  padding-bottom: 100px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.instagram-inner {
  text-align: center;
}

.instagram-handle {
  margin-bottom: 44px;
  display: flex;
  justify-content: center;
}

.instagram-handle span {
  display: inline-block;
  font-size: 40px;
  line-height: .85;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.06em;
  border-bottom: 1px solid var(--ink);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 24px;
}

.instagram-photo {
  overflow: hidden;
  background: rgba(255, 255, 255, .25);
}

.instagram-photo img {
  width: 100%;
  aspect-ratio: 1.8 / 1;
  object-fit: cover;
  transition: transform .35s ease;
}

.instagram-photo:hover img {
  transform: scale(1.04);
}

.instagram-action {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.instagram-button {
  background: var(--ink);
  color: var(--bg);
  min-height: 56px;
  padding: 13px 34px;
  font-size: 16px;
  font-weight: 700;
}

.instagram-button:hover {
  background: transparent;
  color: var(--ink);
}

/* Homepage full map section */
.home-map-section--only {
  padding-top: 0;
  padding-bottom: 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-map-section--only .container {
  width: 100%;
  max-width: none;
}

.home-map-embed--full {
  width: 100%;
  min-height: 520px;
  overflow: hidden;
}

.home-map-embed--full iframe {
  width: 100%;
  height: 520px;
  border: 0;
  display: block;
}

/* Footer */
.site-footer {
  padding: 70px 0 0;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-brand h2 {
  font-size: 42px;
  line-height: 1;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.footer-info h3 {
  font-size: 18px;
  margin: 0 0 12px;
}

.footer-info p,
.footer-brand p {
  color: var(--muted);
  margin: 0 0 10px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.social-links a {
  border-bottom: 1px solid var(--ink);
}

.footer-bottom {
  margin-top: 50px;
  padding: 18px 20px;
  text-align: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-bottom p {
  margin: 0;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 24px;
  background: rgba(246, 239, 231, 0.96);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .18);
  backdrop-filter: blur(12px);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner__text {
  max-width: 680px;
}

.cookie-banner__text strong {
  display: block;
  margin-bottom: 6px;
  font-size: 24px;
  line-height: 1.1;
}

.cookie-banner__text p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.cookie-btn {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

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

.cookie-btn--primary {
  background: var(--ink);
  color: var(--bg);
}

.cookie-btn--secondary:hover {
  background: var(--ink);
  color: var(--bg);
}

/* Desktop menu sections side by side */
@media (min-width: 861px) {
  .menu-list-panel {
    max-width: 1180px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 90px;
    row-gap: 70px;
    align-items: start;
  }

  .menu-list-section {
    margin-bottom: 0;
  }
}

/* Tablet/mobile */
@media (max-width: 860px) {
  .container,
  .header-container {
    width: 100%;
    max-width: 100%;
    padding-left: 22px;
    padding-right: 22px;
    margin-left: auto;
    margin-right: auto;
  }

  .header-container {
    min-height: 74px;
    gap: 12px;
  }

  .site-logo-text {
    align-items: flex-start;
    line-height: 0.88;
  }

  .site-logo-text .logo-word-red,
  .site-logo-text .logo-word-beard {
    font-size: 28px;
  }

  .site-logo-text .logo-word-beard {
    margin-top: -4px;
  }

  .site-logo-text .logo-word-bakery {
    font-size: 10px;
    letter-spacing: 0.14em;
    margin-top: 4px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    margin-left: auto;
    position: relative;
    z-index: 1002;
  }

  .nav-toggle span {
    width: 28px;
    margin: 4px 0;
  }

  .nav-toggle.is-active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 74px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    height: calc(100dvh - 74px);
    overflow-y: auto;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 28px 32px;
    border-top: 1px solid var(--line);
    border-bottom: 0;
    transform: translateX(100%);
    transition: transform .28s ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
    line-height: 1.2;
    text-align: left;
  }

  .site-nav a::after {
    display: none;
  }

  .hero__image {
    height: 78vh;
    min-height: 520px;
  }

  .hero-logo-title {
    line-height: 0.7;
  }

  .hero-logo-red {
    font-size: 65px;
    transform: translate(-20px, -20px);
  }

  .hero-logo-beard {
    font-size: 65px;
    margin-top: -10px;
  }

  .hero-logo-bakery {
    font-size: clamp(18px, 6vw, 30px);
    letter-spacing: 0.16em;
    margin-top: 10px;
  }

  .split-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .page-hero {
    padding: 72px 0 44px;
    overflow: hidden;
  }

  .page-hero h1,
  .content-block h2,
  .section-heading h2 {
    font-size: 20px;
    line-height: .95;
    word-break: normal;
    overflow-wrap: anywhere;
    font-family: 'Marigold Regular', var(--font);
    text-transform: uppercase;
  }

  .menu-page {
    padding-top: 42px;
  }

  .menu-tabs__nav {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px;
    margin-bottom: 44px;
  }

  .menu-tabs__button {
    width: auto !important;
    min-width: 0 !important;
    flex: 0 1 auto !important;
    min-height: auto;
    padding: 8px 4px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    font-size: 18px;
    letter-spacing: 0.18em;
  }

  .menu-list-panel {
    max-width: 100%;
    display: block;
  }

  .menu-list-section {
    margin-bottom: 58px;
  }

  .menu-list-simple__top {
    display: block;
  }

  .menu-list-simple__top span {
    display: inline-block;
    margin-top: 4px;
  }

  .menu-item,
  .compact-menu-item {
    grid-template-columns: 84px 1fr;
    gap: 16px;
    padding: 14px;
  }

  .menu-item img,
  .compact-menu-item img {
    width: 84px;
    height: 84px;
  }

  .menu-item__top,
  .compact-menu-item .menu-item__top {
    display: block;
  }

  .menu-item__top h3,
  .compact-menu-item .menu-item__top h3,
  .compact-menu-item .menu-item__top h4 {
    font-size: 28px;
  }

  .menu-item__top span,
  .compact-menu-item .menu-item__top span {
    display: inline-block;
    margin-top: 6px;
  }

  .menu-item p,
  .compact-menu-item p {
    font-size: 18px;
  }

  .featured-section {
    padding-top: 70px;
    padding-bottom: 76px;
  }

  .featured-grid {
    gap: 38px;
  }

  .featured-card__body h3 {
    font-size: 18px;
  }

  .featured-card__body p {
    font-size: 16px;
  }

  .featured-action {
    margin-top: 44px;
  }

  .instagram-section {
    padding-top: 70px;
    padding-bottom: 76px;
  }

  .instagram-handle {
    margin-bottom: 30px;
  }

  .instagram-handle span {
    font-size: clamp(44px, 14vw, 76px);
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-photo img {
    aspect-ratio: 1.25 / 1;
  }

  .instagram-action {
    margin-top: 38px;
  }

  .home-map-embed--full,
  .home-map-embed--full iframe {
    min-height: 360px;
    height: 360px;
  }
}

/* Small mobile */
@media (max-width: 520px) {
  .menu-tabs__nav {
    gap: 7px;
  }

  .menu-tabs__button {
    font-size: 15px;
    letter-spacing: 0.12em;
    padding: 7px 2px;
  }

  .instagram-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Cookie mobile */
@media (max-width: 760px) {
  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 20px;
  }

  .cookie-banner__text strong {
    font-size: 22px;
  }

  .cookie-banner__text p {
    font-size: 16px;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}
/* Menu item multiline description */
.menu-list-simple__item p {
  white-space: normal;
  margin-top: 8px;
  padding-left: 26px;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.08em;
}
