/* Romanian Shaorma — folk-inspired demo (stefanweb.uk style) */

:root {
  --cream: #f9f7f2;
  --cream-deep: #f0ebe3;
  --ink: #1a120b;
  --ink-soft: #3d342c;
  --red: #c41e3a;
  --red-bright: #e53935;
  --folk-red: #c41e3a;
  --folk-green: #2d5a27;
  --gold: #d4a017;
  --gold-light: #f5d76e;
  --ro-blue: #002b7f;
  --ro-yellow: #fcd116;
  --ro-red: #ce1126;
  --white: #fff;
  --shadow: rgba(26, 18, 11, 0.12);
  --shadow-deep: rgba(26, 18, 11, 0.22);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --font-script: "Caveat", cursive;
  --max: 76rem;
  --header-h: 4.5rem;
  --radius-sketchy: 255px 15px 225px 15px / 15px 225px 15px 255px;
  --radius-curvy: 18px 42px 18px 42px / 42px 18px 42px 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Desktop feels ~80% zoomed — scale rem-based UI without breaking mobile */
@media (min-width: 1024px) {
  html {
    font-size: 80%;
  }

  :root {
    --max: 72rem;
  }
}

@media (min-width: 1400px) {
  :root {
    --max: 68rem;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--cream);
}

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

a {
  color: var(--red);
}

a:hover {
  color: var(--red-bright);
}

/* Diversified Romanian embroidery borders */
.folk-border {
  height: 2rem;
  background: url("../svg/embroidery-strip.svg") repeat-x center;
  background-size: auto 100%;
  border: none;
  image-rendering: pixelated;
}

.folk-border--thick {
  height: 2.5rem;
}

.folk-border--stars {
  height: 2.5rem;
  background-image: url("../svg/emb-stars.svg");
  background-size: auto 100%;
}

.folk-border--diamonds {
  height: 1.75rem;
  background-image: url("../svg/emb-diamonds.svg");
  background-size: auto 100%;
}

.folk-border--chevrons {
  height: 2.25rem;
  background-image: url("../svg/emb-chevrons.svg");
  background-size: auto 100%;
}

.folk-border--vine {
  height: 1.5rem;
  background-image: url("../svg/emb-vine.svg");
  background-size: auto 100%;
  background-color: transparent;
}

.folk-corner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
}

.folk-corner img {
  width: 3rem;
  height: 3rem;
  opacity: 0.9;
}

.folk-side {
  display: none;
}

@media (min-width: 1100px) {
  .folk-side {
    display: block;
    position: absolute;
    top: 2rem;
    bottom: 2rem;
    width: 1.5rem;
    background: url("../svg/emb-hearts.svg") repeat-y center;
    background-size: 100% auto;
    opacity: 0.55;
    pointer-events: none;
  }

  .folk-side--left { left: 0.75rem; }
  .folk-side--right { right: 0.75rem; }
}

/* Folk drawings */
.folk-draw {
  width: 4.5rem;
  height: auto;
  margin: 0 auto 0.85rem;
  display: block;
}

.folk-draw--lg {
  width: 6.5rem;
}

.folk-draw--inline {
  width: 3.25rem;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.35rem;
}

/* Header */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: linear-gradient(to bottom, rgba(26, 18, 11, 0.75), transparent);
}

.site-header.is-solid {
  position: sticky;
  top: 0;
  background: var(--cream);
  box-shadow: 0 2px 16px var(--shadow);
}

.site-header.is-solid .logo-text,
.site-header.is-solid .main-nav a {
  color: var(--ink);
}

.site-header.is-solid .logo-text {
  color: var(--ink);
}

.site-header.is-solid .main-nav a {
  color: var(--ink-soft);
}

.site-header.is-solid .main-nav a:hover,
.site-header.is-solid .main-nav a[aria-current="page"] {
  color: var(--red);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

.logo:hover {
  text-decoration: none;
}

.logo-flag {
  display: flex;
  flex-direction: column;
  width: 4px;
  height: 1.75rem;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-flag span {
  flex: 1;
}

.logo-flag span:nth-child(1) {
  background: var(--ro-blue);
}

.logo-flag span:nth-child(2) {
  background: var(--ro-yellow);
}

.logo-flag span:nth-child(3) {
  background: var(--ro-red);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  color: var(--white);
}

.logo-line {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
}

.logo-line--sm {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  opacity: 0.92;
}

.logo-flame {
  width: 1.35rem;
  height: auto;
  flex-shrink: 0;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.15rem;
  flex-wrap: wrap;
  justify-content: center;
}

.main-nav a {
  display: block;
  padding: 0.45rem 0.75rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--gold-light);
  text-decoration: none;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  background: var(--red);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(198, 40, 40, 0.35);
  transition: transform 0.15s, background 0.15s;
}

.btn-cta:hover {
  background: var(--red-bright);
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.35rem;
  border: 2px solid var(--white);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

.btn-cta--wide {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
}

.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  padding: 0.4rem 0.65rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
}

.site-header.is-solid .nav-toggle {
  background: var(--cream-deep);
  border-color: var(--ink);
  color: var(--ink);
}

/* Hero */
.hero-banner {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 6rem 1.25rem 4rem;
  overflow: hidden;
}

.hero-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 18, 11, 0.55) 0%,
    rgba(26, 18, 11, 0.72) 45%,
    rgba(26, 18, 11, 0.88) 100%
  );
}

.hero-banner__content {
  position: relative;
  z-index: 2;
  max-width: 44rem;
}

.hero-eyebrow {
  font-family: var(--font-script);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: var(--red-bright);
  margin: 0 0 0.35rem;
}

.hero-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.5vw, 3.5rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  font-weight: 700;
}

.hero-banner h1 .script {
  font-family: var(--font-script);
  color: var(--red-bright);
  font-weight: 600;
  font-size: 1.08em;
}

.hero-banner .lead {
  margin: 0 auto 1.75rem;
  max-width: 32rem;
  font-size: 1.05rem;
  opacity: 0.92;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.ornament {
  display: block;
  width: 10rem;
  max-width: 70%;
  margin: 1rem auto 0;
  opacity: 0.9;
}

/* Inner page hero (shorter) */
.page-hero-banner {
  min-height: 42vh;
  padding-top: 5.5rem;
}

/* Section typography */
.section {
  padding: 3rem 1.25rem;
}

@media (min-width: 1024px) {
  .section {
    padding: 2.75rem 1.25rem;
  }

  .hero-banner {
    min-height: 78vh;
    padding: 5rem 1.25rem 3.25rem;
  }

  .page-hero-banner {
    min-height: 34vh;
    padding-top: 5rem;
  }
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-eyebrow {
  font-family: var(--font-script);
  font-size: 1.45rem;
  color: var(--gold);
  text-align: center;
  margin: 0 0 0.25rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  color: var(--ink);
  text-align: center;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.section-intro {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2.75rem;
}

/* Sketchy cards */
.card-sketchy {
  background: var(--white);
  padding: 2rem 1.5rem 1.75rem;
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-sketchy);
  box-shadow: 6px 8px 0 rgba(26, 18, 11, 0.06);
  text-align: center;
  height: 100%;
}

.card-sketchy--accent {
  border-color: var(--red);
  box-shadow: 6px 8px 0 rgba(198, 40, 40, 0.12);
}

.card-icon {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ff6b6b, var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 0 0 6px rgba(198, 40, 40, 0.15);
}

.card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.card-sketchy h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  margin: 0 0 0.65rem;
}

.card-sketchy p {
  margin: 0;
  font-size: 0.95rem;
}

.card-ornament {
  width: 5rem;
  margin: 1rem auto 0;
  opacity: 0.85;
}

.grid-3 {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Polaroid gallery */
.gallery-polaroids {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 1.5rem;
  padding: 1rem 0 0.5rem;
}

.polaroid {
  background: var(--white);
  padding: 0.55rem 0.55rem 1.85rem;
  box-shadow: 0 12px 28px var(--shadow-deep);
  width: calc(20% - 1.25rem);
  min-width: 140px;
  max-width: 200px;
  transition: transform 0.25s;
}

.polaroid:hover {
  transform: scale(1.04) rotate(0deg) !important;
  z-index: 2;
}

.polaroid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.polaroid figcaption {
  font-family: var(--font-script);
  font-size: 1.05rem;
  text-align: center;
  margin-top: 0.55rem;
  color: var(--ink);
  line-height: 1.2;
}

.polaroid--tilt-l {
  transform: rotate(-3.5deg);
}

.polaroid--tilt-r {
  transform: rotate(2.8deg);
}

.polaroid--tilt-l2 {
  transform: rotate(-1.8deg);
}

.polaroid--tilt-r2 {
  transform: rotate(4deg);
}

/* desktop polaroid widths handled in base .polaroid rules */

/* Menu cards with photos */
.menu-showcase {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .menu-showcase {
    grid-template-columns: repeat(3, 1fr);
  }
}

.menu-card {
  background: var(--white);
  border: 2px solid var(--cream-deep);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px var(--shadow);
  transition: transform 0.2s;
}

.menu-card:hover {
  transform: translateY(-4px);
}

.menu-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-card__body {
  padding: 1.25rem 1.15rem 1.35rem;
}

.menu-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.menu-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0;
  color: var(--ink);
}

.menu-card .price {
  font-weight: 700;
  color: var(--red);
  font-size: 1.05rem;
}

.menu-card p {
  margin: 0;
  font-size: 0.92rem;
}

/* Dark folk section */
.section-dark {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
  padding: 4rem 1.25rem;
  position: relative;
}

.section-dark .section-title {
  color: var(--white);
}

.section-dark .section-eyebrow {
  color: var(--gold-light);
}

.section-dark .review-card {
  color: var(--ink);
}

.section-dark .review-card p {
  color: var(--ink-soft);
}

.section-dark .card-sketchy {
  color: var(--ink-soft);
}

.section-dark .card-sketchy h3 {
  color: var(--ink);
}

.section-dark .folk-draw,
.section-dark .folk-corner img.folk-draw {
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.2));
}

.section-dark .folk-corner {
  margin-bottom: 0.75rem;
}

.pillar-icon {
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* Testimonials */
.reviews-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--white);
  color: var(--ink);
  padding: 1.35rem;
  border-radius: 10px;
  box-shadow: 0 6px 20px var(--shadow);
  border: 1px solid var(--cream-deep);
}

.review-stars {
  color: var(--gold);
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.review-card p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--ink-soft);
}

.review-meta {
  font-size: 0.82rem;
  color: #78716c;
}

/* About split */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.split img.rounded {
  border-radius: 16px;
  box-shadow: 0 16px 40px var(--shadow-deep);
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.split h2 {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 1.85rem;
  margin: 0 0 1rem;
}

.split p {
  margin: 0 0 1rem;
}

.flag-word {
  font-weight: 700;
}

.flag-word .b {
  color: var(--ro-blue);
}

.flag-word .y {
  color: var(--gold);
}

.flag-word .r {
  color: var(--ro-red);
}

/* Full menu page — 5 embroidered chapters */
.menu-jump-wrap {
  background: var(--ink);
  padding: 0.65rem 0.75rem;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 16px var(--shadow);
}

.site-header.is-solid ~ main .menu-jump-wrap,
.menu-page .menu-jump-wrap {
  top: var(--header-h);
}

.menu-jump {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0.4rem;
  list-style: none;
  padding: 0.15rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.menu-jump::-webkit-scrollbar {
  display: none;
}

.menu-jump a {
  display: block;
  padding: 0.45rem 0.9rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  border: 1px solid rgba(245, 215, 110, 0.35);
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.menu-jump a:hover,
.menu-jump a:focus {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.menu-chapters {
  padding: 0;
  position: relative;
}

.menu-chapter {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.menu-chapter:nth-child(odd) {
  background: var(--cream);
}

.menu-chapter:nth-child(even) {
  background: var(--cream-deep);
}

.menu-chapter__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.75rem 1rem;
  display: grid;
  gap: 1.15rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .menu-chapter__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 1.75rem;
    padding: 2rem 1.5rem;
    align-items: center;
    max-width: 58rem;
  }

  .menu-chapter--reverse .menu-chapter__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  }

  .menu-chapter--reverse .menu-chapter__visual {
    order: 2;
  }

  .menu-chapter--reverse .menu-chapter__panel {
    order: 1;
  }
}

.menu-chapter__visual {
  position: relative;
  margin: 0 auto;
  max-width: 22rem;
  width: 100%;
}

.menu-chapter__visual::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid var(--folk-red);
  border-radius: var(--radius-curvy);
  opacity: 0.55;
  pointer-events: none;
}

.menu-chapter__visual::after {
  content: "";
  position: absolute;
  top: -0.85rem;
  right: -0.35rem;
  width: 2.5rem;
  height: 2.5rem;
  background: url("../svg/emb-rosette.svg") center / contain no-repeat;
  opacity: 0.85;
  pointer-events: none;
  z-index: 3;
}

.menu-chapter__visual img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: var(--radius-curvy);
  border: 2.5px solid var(--ink);
  box-shadow: 6px 8px 0 rgba(196, 30, 58, 0.1);
}

.menu-chapter__badge {
  position: absolute;
  top: -0.5rem;
  left: 0.75rem;
  background: var(--folk-red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(196, 30, 58, 0.3);
}

.menu-chapter__panel {
  text-align: left;
  padding: 1.1rem 1.1rem 0.9rem;
  position: relative;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius-sketchy);
  box-shadow: 5px 6px 0 rgba(26, 18, 11, 0.05);
  height: auto;
  display: flex;
  flex-direction: column;
}

.menu-chapter__panel .panel-foot {
  margin-top: 0.65rem;
  padding-top: 0.55rem;
}

.menu-chapter__panel .panel-foot .folk-border--vine {
  height: 0.95rem;
  opacity: 0.9;
}

.menu-chapter__num {
  font-family: var(--font-script);
  font-size: 1.45rem;
  color: var(--folk-red);
  line-height: 1;
  display: block;
  margin-bottom: 0.1rem;
}

.menu-chapter__panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  margin: 0 0 0.4rem;
  color: var(--ink);
}

.menu-chapter__panel .folk-draw {
  width: 2.75rem;
  margin-bottom: 0.35rem;
}

.menu-price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.35rem;
}

.menu-price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.4rem 0;
  border-bottom: 1px dashed #d4a01766;
}

.menu-price-list li:last-child {
  border-bottom: none;
}

.menu-price-list .item-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
}

.menu-price-list .item-price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--folk-red);
  white-space: nowrap;
  background: #fde8ec;
  padding: 0.15rem 0.55rem;
  border-radius: 6px;
}

.menu-ingredients {
  margin: 0;
  font-size: 0.88rem;
  color: #57534e;
  padding: 0.85rem 1rem;
  background: var(--cream);
  border-left: 4px solid var(--folk-red);
  border-radius: 0 10px 10px 0;
}

.notice-box {
  background: #fdebd0;
  border: 2px solid #f0c674;
  border-radius: var(--radius-curvy);
  padding: 0.9rem 1.15rem;
  text-align: center;
  margin: 1.5rem 1rem 0;
  font-weight: 600;
  color: var(--ink);
  max-width: 36rem;
  margin-inline: auto;
}

.notice-box .folk-draw--inline {
  width: 2.5rem;
}

/* Contact */
.service-cards {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .service-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-split {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact-split {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 2px solid var(--cream-deep);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: #faf8f4;
  margin-bottom: 1rem;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
  border-bottom: 1px dotted #ccc;
}

.map-frame {
  border: 3px solid var(--red);
  border-radius: var(--radius-sketchy);
  overflow: hidden;
  box-shadow: 0 12px 32px var(--shadow);
  margin-top: 2rem;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

/* Location band */
.location-band {
  background: var(--white);
  padding: 3rem 1.25rem;
}

.location-card {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: center;
  background: var(--cream);
  border: 2px solid var(--cream-deep);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 28px var(--shadow);
}

@media (min-width: 768px) {
  .location-card {
    grid-template-columns: 1fr 1.2fr;
  }
}

.location-card h2 {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  padding: 0 0 1.5rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 1.5rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer .logo-text {
  color: var(--white);
}

.footer-about p {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  max-width: 22rem;
}

.footer h4 {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 0.85rem;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.footer a:hover {
  color: var(--gold-light);
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.footer-tags span {
  font-size: 0.72rem;
  padding: 0.25rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.75;
}

.footer-bottom a {
  color: var(--gold-light);
}

.demo-note {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--gold-light);
  opacity: 0.9;
}

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

.mt-lg {
  margin-top: 2rem;
}

/* Mobile nav + phone optimisation */
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .header-cta-desktop {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 18, 11, 0.98);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .site-header.is-solid .main-nav {
    background: var(--cream);
  }

  .main-nav.is-open {
    max-height: 320px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-nav ul {
    flex-direction: column;
    padding: 0.75rem 1rem 1rem;
  }

  .site-header {
    position: fixed;
  }

  .site-header.is-solid {
    position: sticky;
  }

  .hero-banner {
    min-height: 78vh;
    padding: 5.5rem 1rem 2.5rem;
  }

  .hero-banner h1 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn-cta,
  .hero-actions .btn-outline-light {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .page-hero-banner {
    min-height: 36vh;
    padding-top: 5.25rem;
  }

  .section {
    padding: 2.5rem 1rem;
  }

  .section-dark {
    padding: 2.5rem 1rem;
  }

  .values,
  .grid-3 {
    gap: 1rem;
  }

  .card-sketchy {
    padding: 1.35rem 1.1rem;
  }

  .menu-showcase {
    grid-template-columns: 1fr;
  }

  .menu-chapter__visual::after {
    width: 2.5rem;
    height: 2.5rem;
    top: -0.85rem;
    right: 0;
  }

  .menu-chapter__visual::before {
    inset: -6px;
  }

  .menu-chapter__panel {
    padding: 1.25rem 1rem;
  }

  .menu-jump-wrap {
    top: 0;
  }

  .site-header.is-solid ~ * .menu-jump-wrap,
  body:has(.site-header.is-solid) .menu-jump-wrap {
    top: var(--header-h);
  }

  .footer-inner {
    gap: 1.5rem;
  }

  .logo-line {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .logo-line--sm {
    font-size: 0.62rem;
  }

  .logo-flame {
    width: 1.1rem;
  }

  .service-cards {
    gap: 1rem;
  }

  .location-card {
    padding: 1.25rem;
  }

  .map-frame iframe {
    height: 260px;
  }

  .split img.rounded {
    max-height: 280px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 1rem;
  }

  .header-inner {
    padding: 0.65rem 0.85rem;
    min-height: 3.75rem;
  }

  .folk-border,
  .folk-border--thick,
  .folk-border--stars,
  .folk-border--chevrons {
    height: 1.35rem;
  }

  .folk-border--diamonds {
    height: 1rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 901px) {
  .header-cta-mobile {
    display: none !important;
  }

  .bottom-nav {
    display: none !important;
  }
}

/* ——— Ingredient chips ——— */
.ing-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.85rem 0 1rem;
  list-style: none;
  padding: 0;
}

.ing-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.65rem 0.35rem 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 999px;
  line-height: 1.2;
}

.ing-chip img {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.ing-chip--meat {
  background: #fde8ec;
  border-color: #f5b8c2;
  color: #8b1530;
}

.ing-chip--fries {
  background: #fff6db;
  border-color: #f0d78a;
  color: #7a5c00;
}

.ing-chip--veg {
  background: #e8f2e6;
  border-color: #b5d4ae;
  color: #2d5a27;
}

.ing-chip--sauce {
  background: #fde8e8;
  border-color: #efb4b4;
  color: #a12c2c;
}

.ing-chip--dairy {
  background: #fff8e1;
  border-color: #ffe082;
  color: #8d6e00;
}

.ing-chip--sweet {
  background: #fce4ec;
  border-color: #f48fb1;
  color: #ad1457;
}

.ing-chip--drink {
  background: #e3f2fd;
  border-color: #90caf9;
  color: #1565c0;
}

.menu-ingredients {
  display: none;
}

.menu-chapter__panel .menu-lead {
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.menu-price-list .item-name {
  font-size: 1.12rem;
}

.menu-price-list .item-price {
  font-size: 1.25rem;
}

/* ——— Bottom app nav (phone) ——— */
.bottom-nav {
  display: none;
}

@media (max-width: 900px) {
  .bottom-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 300;
    background: var(--cream);
    border-top: 2px solid var(--folk-red);
    box-shadow: 0 -8px 28px rgba(26, 18, 11, 0.14);
    padding: 0.35rem 0.25rem calc(0.35rem + env(safe-area-inset-bottom));
  }

  .bottom-nav::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: url("../svg/emb-vine.svg") repeat-x center;
    background-size: auto 100%;
    pointer-events: none;
  }

  .bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    padding: 0.4rem 0.2rem;
    text-decoration: none;
    color: var(--ink-soft);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 10px;
  }

  .bottom-nav__item svg {
    width: 1.45rem;
    height: 1.45rem;
  }

  .bottom-nav__item[aria-current="page"],
  .bottom-nav__item:hover {
    color: var(--folk-red);
    background: #fde8ec;
    text-decoration: none;
  }

  .nav-toggle {
    display: none !important;
  }

  .main-nav {
    display: none !important;
  }

  body {
    padding-bottom: 4.75rem;
  }

  /* Value cards: 2 on top, 1 full width centered */
  .grid-3 {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .grid-3 > :last-child {
    grid-column: 1 / -1;
    max-width: 18rem;
    width: 100%;
    margin-inline: auto;
  }

  .grid-3 .card-sketchy {
    padding: 1rem 0.75rem;
  }

  .grid-3 .card-sketchy h3 {
    font-size: 0.95rem;
  }

  .grid-3 .card-sketchy p {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .grid-3 .folk-draw {
    width: 2.75rem;
  }

  .grid-3 .card-ornament {
    display: none;
  }

  /* Horizontal staggered gallery — not a straight carousel */
  .gallery-polaroids {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, minmax(0, auto));
    grid-auto-columns: minmax(42vw, 160px);
    gap: 0.65rem 0.85rem;
    overflow-x: auto;
    overflow-y: visible;
    padding: 1.75rem 1rem 2.25rem;
    margin: 0 -1rem;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    justify-content: start;
    align-items: start;
  }

  .gallery-polaroids .polaroid {
    width: 100%;
    max-width: none;
    min-width: 0;
    scroll-snap-align: start;
    margin: 0;
  }

  .gallery-polaroids .polaroid:nth-child(4n + 1) {
    transform: rotate(-5deg) translateY(0);
  }

  .gallery-polaroids .polaroid:nth-child(4n + 2) {
    transform: rotate(4deg) translateY(1.35rem);
  }

  .gallery-polaroids .polaroid:nth-child(4n + 3) {
    transform: rotate(2deg) translateY(0.35rem);
  }

  .gallery-polaroids .polaroid:nth-child(4n + 4) {
    transform: rotate(-3deg) translateY(1.85rem);
  }

  .gallery-polaroids .polaroid:nth-child(5) {
    transform: rotate(6deg) translateY(-0.35rem);
  }

  .gallery-polaroids .polaroid:nth-child(8) {
    transform: rotate(-6deg) translateY(2.1rem);
  }

  .gallery-hint {
    display: block;
    text-align: center;
    font-family: var(--font-script);
    font-size: 1.05rem;
    color: var(--folk-red);
    margin: 0 0 0.25rem;
  }

  /* Compact menu chapters on phone */
  .menu-chapter__inner {
    padding: 1.5rem 0.85rem;
    gap: 1rem;
  }

  .menu-chapter__visual {
    max-width: 100%;
  }

  .menu-chapter__visual img {
    aspect-ratio: 16 / 10;
    border-width: 2px;
    box-shadow: 6px 8px 0 rgba(196, 30, 58, 0.1);
  }

  .menu-chapter__visual::before {
    inset: -5px;
  }

  .menu-chapter__visual::after {
    width: 2.1rem;
    height: 2.1rem;
    top: -0.65rem;
    right: 0.15rem;
  }

  .menu-chapter__badge {
    font-size: 0.62rem;
    padding: 0.3rem 0.65rem;
    top: -0.45rem;
    left: 0.65rem;
  }

  .menu-chapter__panel {
    padding: 1rem 0.9rem 0.85rem;
    border-width: 2px;
  }

  .menu-chapter__panel .folk-draw {
    width: 2.5rem;
    margin-bottom: 0.35rem;
  }

  .menu-chapter__num {
    font-size: 1.45rem;
  }

  .menu-chapter__panel h2 {
    font-size: 1.45rem;
    margin-bottom: 0.4rem;
  }

  .menu-chapter__panel .menu-lead {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .ing-chips {
    margin: 0.5rem 0 0.65rem;
    gap: 0.3rem;
  }

  .ing-chip {
    font-size: 0.7rem;
    padding: 0.28rem 0.5rem 0.28rem 0.3rem;
  }

  .menu-price-list li {
    padding: 0.45rem 0;
  }

  .menu-price-list .item-name {
    font-size: 0.98rem;
  }

  .menu-price-list .item-price {
    font-size: 1.05rem;
    padding: 0.1rem 0.4rem;
  }

  .menu-chapter__panel .panel-foot {
    padding-top: 0.65rem;
  }

  .notice-box {
    margin-top: 1rem;
    padding: 0.75rem 0.9rem;
    font-size: 0.9rem;
  }

  .menu-jump a {
    font-size: 0.65rem;
    padding: 0.4rem 0.75rem;
  }
}

.gallery-hint {
  display: none;
}
