/* ============================================================
   HOT PLATE — styles
   Palette drawn from the printed menus: cream paper, deep
   forest green, warm brown, mustard gold, sage stamp green.
   ============================================================ */

:root {
  --cream: #FBF5E3;
  --cream-deep: #F4EACD;
  --green-dark: #263817;
  --green: #3E5527;
  --sage: #7E9873;
  --sage-light: #A9C3A6;
  --brown: #59280C;
  --gold: #C89310;
  --ink: #33291A;
  --flame: #FBF5E3;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Karla", "Gill Sans", system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
}

h1, h2, h3 { font-family: "Fraunces", Georgia, serif; }

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

/* ======= Folk-pattern side rails (like the printed menu borders) ======= */
body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 30px;
  z-index: 40;
  display: none;
  background-color: var(--green-dark);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='100' viewBox='0 0 30 100'%3E%3Crect x='1' width='1.5' height='100' fill='%23F6EDD2' opacity='0.75'/%3E%3Crect x='27.5' width='1.5' height='100' fill='%23F6EDD2' opacity='0.75'/%3E%3Ccircle cx='15' cy='10' r='2.6' fill='%23A9C3A6'/%3E%3Ccircle cx='15' cy='26' r='2.6' fill='%23A9C3A6'/%3E%3Ccircle cx='7' cy='18' r='2.6' fill='%23A9C3A6'/%3E%3Ccircle cx='23' cy='18' r='2.6' fill='%23A9C3A6'/%3E%3Ccircle cx='15' cy='18' r='3' fill='%23F6EDD2'/%3E%3Cpath d='M15 40 l4.5 4.5 L15 49 l-4.5 -4.5 z' fill='%23D9A21B'/%3E%3Ccircle cx='10' cy='70' r='2' fill='%23A9C3A6'/%3E%3Ccircle cx='15' cy='64' r='2' fill='%23A9C3A6'/%3E%3Ccircle cx='20' cy='70' r='2' fill='%23A9C3A6'/%3E%3Ccircle cx='15' cy='73' r='1.5' fill='%23F6EDD2'/%3E%3Ccircle cx='15' cy='88' r='1.8' fill='%23F6EDD2'/%3E%3Ccircle cx='9' cy='92' r='1.2' fill='%23A9C3A6'/%3E%3Ccircle cx='21' cy='92' r='1.2' fill='%23A9C3A6'/%3E%3C/svg%3E");
  background-repeat: repeat-y;
}

body::before { left: 0; }
body::after { right: 0; }

@media (min-width: 900px) {
  body::before, body::after { display: block; }
  body { padding-left: 30px; padding-right: 30px; }
}

/* ======= Loading screen ======= */
#loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}

#loader.is-done { opacity: 0; pointer-events: none; }
#loader.is-removed { display: none; }

.loader-logo {
  width: min(70vw, 300px);
  height: auto;
  animation: logo-in 0.9s ease-out both;
}

@keyframes logo-in {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .loader-logo { animation: none; }
  #loader { transition: none; }
}

/* ======= Ornamental divider under section titles ======= */
.ornament, .section-title::after {
  content: "";
  display: block;
  width: 150px;
  height: 14px;
  margin: 12px auto 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='14' viewBox='0 0 150 14'%3E%3Crect x='10' y='6.4' width='48' height='1.2' rx='0.6' fill='%237E9873'/%3E%3Crect x='92' y='6.4' width='48' height='1.2' rx='0.6' fill='%237E9873'/%3E%3Ccircle cx='64' cy='7' r='1.6' fill='%237E9873'/%3E%3Ccircle cx='86' cy='7' r='1.6' fill='%237E9873'/%3E%3Ccircle cx='75' cy='2.8' r='2.4' fill='%23D9A21B'/%3E%3Ccircle cx='75' cy='11.2' r='2.4' fill='%23D9A21B'/%3E%3Ccircle cx='70.8' cy='7' r='2.4' fill='%23D9A21B'/%3E%3Ccircle cx='79.2' cy='7' r='2.4' fill='%23D9A21B'/%3E%3Ccircle cx='75' cy='7' r='1.8' fill='%2359280C'/%3E%3C/svg%3E") no-repeat center;
}

/* ======= Hero ======= */
.hero {
  text-align: center;
  padding: 52px 24px 48px;
  max-width: 720px;
  margin: 0 auto;
}

.hero-logo {
  width: min(60vw, 220px);
  height: auto;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.6rem, 9vw, 3.8rem);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.1;
}

.hero-tagline {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.05rem, 4vw, 1.3rem);
  color: var(--green);
  font-weight: 600;
  margin-top: 10px;
}

.hero-sub {
  color: var(--ink);
  opacity: 0.75;
  margin-top: 6px;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--green);
  color: var(--cream);
  border: 1px solid var(--green-dark);
  box-shadow: 3px 3px 0 rgba(38, 56, 23, 0.35);
}

.btn-primary:hover { background: var(--green-dark); }

.btn-outline {
  border: 1.5px solid var(--green);
  color: var(--green);
}

.btn-outline:hover { background: rgba(62, 85, 39, 0.08); }

.hero-phone { margin-top: 16px; font-size: 0.95rem; }
.hero-phone a { font-weight: 700; color: var(--brown); }

/* ======= Folk pattern band (horizontal dividers) ======= */
.pattern-band {
  height: 22px;
  background-color: var(--green-dark);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='22' viewBox='0 0 56 22'%3E%3Crect y='1' width='56' height='1.5' fill='%23F6EDD2' opacity='0.75'/%3E%3Crect y='19.5' width='56' height='1.5' fill='%23F6EDD2' opacity='0.75'/%3E%3Ccircle cx='14' cy='5.5' r='2.2' fill='%23A9C3A6'/%3E%3Ccircle cx='14' cy='16.5' r='2.2' fill='%23A9C3A6'/%3E%3Ccircle cx='8.5' cy='11' r='2.2' fill='%23A9C3A6'/%3E%3Ccircle cx='19.5' cy='11' r='2.2' fill='%23A9C3A6'/%3E%3Ccircle cx='14' cy='11' r='2.5' fill='%23F6EDD2'/%3E%3Cpath d='M38 7 l4 4 -4 4 -4 -4 z' fill='%23D9A21B'/%3E%3Ccircle cx='50' cy='7' r='1.5' fill='%23F6EDD2'/%3E%3Ccircle cx='50' cy='15' r='1.5' fill='%23F6EDD2'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
}

/* ======= Sections ======= */
.section {
  padding: 56px 20px;
  max-width: 980px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 10px;
}

.section-green {
  max-width: none;
  background: var(--green-dark);
  color: var(--cream);
}

.section-green .section-title { color: var(--gold); }

.section-cream {
  max-width: none;
  background: var(--cream-deep);
}

.section-cream > * { max-width: 720px; margin-left: auto; margin-right: auto; }

/* ======= Menu ======= */
.menu-week {
  text-align: center;
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  color: var(--green);
  font-size: 1.15rem;
  margin-top: 6px;
}

.menu-orderby {
  text-align: center;
  margin: 12px auto 0;
  display: table;
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 700;
  font-size: clamp(0.78rem, 3.6vw, 0.95rem);
  white-space: nowrap;
  padding: 6px 16px;
  border-radius: 999px;
}

.menu-note {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 12px;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 34px;
}

.menu-card {
  position: relative;
  background: #FFFDF4;
  border: 1px solid #DCD0A8;
  border-radius: 12px;
  padding: 26px 28px;
}

.menu-card::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid #E9DFBE;
  border-radius: 8px;
  pointer-events: none;
}

.menu-card h3 {
  text-align: center;
  color: var(--brown);
  font-size: 1.35rem;
  font-weight: 700;
}

.menu-card .card-note {
  text-align: center;
  color: var(--green);
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: 0.92rem;
  margin-bottom: 8px;
}

.menu-card ul { list-style: none; margin-top: 10px; }

.menu-card li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px dashed #E0D5B0;
}

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

.menu-card .dish { font-weight: 600; }

.menu-card .price {
  font-weight: 700;
  color: var(--brown);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.menu-cta {
  text-align: center;
  margin-top: 40px;
}

.menu-cta p {
  max-width: 480px;
  margin: 0 auto;
  font-weight: 600;
  color: var(--green);
}

/* ======= How it works ======= */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 980px;
  margin: 34px auto 0;
}

.steps li { text-align: center; padding: 0 8px; }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-dark);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.steps h3 { font-size: 1.25rem; margin-bottom: 6px; color: var(--cream); }
.steps p { font-size: 0.95rem; opacity: 0.85; }

/* ======= About ======= */
.about-body {
  max-width: 620px;
  margin: 18px auto 0;
  text-align: center;
  font-size: 1.05rem;
}

.about-body p + p { margin-top: 14px; }
.about-body p:last-child { font-weight: 600; color: var(--green); }

/* ======= FAQ ======= */
.faq-list { margin-top: 26px; }

.faq-list details {
  background: #FFFDF4;
  border: 1px solid #DCD0A8;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 700;
  color: var(--brown);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.4rem;
  color: var(--sage);
  flex-shrink: 0;
  line-height: 1;
}

.faq-list details[open] summary::after { content: "–"; }

.faq-list details p {
  padding: 0 20px 16px;
  font-size: 0.97rem;
}

/* ======= Footer ======= */
footer {
  background: var(--green-dark);
  color: var(--cream);
  text-align: center;
  padding: 44px 20px 40px;
}

.footer-logo {
  width: 150px;
  height: auto;
  margin-bottom: 14px;
}

.footer-tag { font-weight: 600; }

.footer-contact { margin-top: 10px; }
.footer-contact a { color: var(--gold); font-weight: 700; text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }

.footer-fine { margin-top: 18px; font-size: 0.85rem; opacity: 0.6; }

/* ======= Mobile ======= */
@media (max-width: 719px) {
  .menu-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .section { padding: 44px 18px; }
}
