/* Tigard Donut — FRIENDLY edition. Big type, big buttons, plain language. */
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;800;900&display=swap");

:root {
  --bg: #fcf6ed;
  --card: #ffffff;
  --logo-bg: #fcf6ed;
  --ink: #1f1611;
  --ink-2: #4a3a30;
  --line: #e8dcc6;
  --pink: #f25e83;
  --pink-deep: #c43762;
  --green: #2e8a4e;
  --green-deep: #1f6638;
  --butter: #ffd35e;
  --blue: #2f6fb0;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Nunito", -apple-system, system-ui, sans-serif;
  font-size: 19px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body { overflow-x: clip; }
a { color: var(--blue); text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 2px; }
a.plain { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
input, select, textarea, button { font-family: inherit; }
section[id] { scroll-margin-top: 110px; }

/* ===== Top banner ===== */
.f-banner {
  background: var(--green);
  color: white;
  padding: 14px 20px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  transition: background-color .25s;
}
.f-banner .dot {
  display: inline-block;
  width: 12px; height: 12px;
  background: var(--butter);
  border-radius: 999px;
  margin-right: 8px;
  vertical-align: middle;
  animation: blink 1.6s ease-in-out infinite;
}
.f-banner-open { background: var(--green); }
.f-banner-open .dot { background: #b9e0c4; animation: blink 1.6s ease-in-out infinite; }
.f-banner-closing { background: #c46a1f; }
.f-banner-closing .dot { background: var(--butter); animation: blink 0.8s ease-in-out infinite; }
.f-banner-closed { background: #4a3a30; }
.f-banner-closed .dot { background: rgba(255,255,255,0.55); animation: none; }
.f-banner-preopen { background: #2c5e7a; }
.f-banner-preopen .dot { background: var(--butter); animation: none; }
@keyframes blink { 50% { opacity: 0.4; } }

/* ===== Header ===== */
.f-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--card);
  border-bottom: 3px solid var(--ink);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px clamp(20px, 4vw, 40px);
}
.f-logo {
  display: flex; align-items: center; gap: 12px;
  font-weight: 900; font-size: 22px;
  color: var(--ink);
  text-decoration: none;
}
.f-logo img {
  width: 72px;
  height: 72px;
  display: block;
  background: var(--logo-bg);
  border-radius: 16px;
  object-fit: contain;
  padding: 0;
  border: 2px solid var(--ink);
}
.f-logo-text { letter-spacing: -0.01em; }
.f-foot-logo {
  width: 180px;
  height: 180px;
  margin: 0 auto 16px;
  display: block;
  border-radius: 28px;
  background: var(--logo-bg);
  object-fit: contain;
  padding: 0;
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}
.f-header-links {
  display: flex; gap: 18px;
  justify-self: center;
  font-size: 18px;
  font-weight: 600;
}
.f-header-links a {
  color: var(--ink);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
}
.f-header-links a:hover { background: var(--bg); }
.f-call-big {
  display: inline-flex; align-items: center; gap: 8px;
  width: max-content;
  justify-self: end;
  background: var(--pink);
  color: white;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  white-space: nowrap;
}
.f-call-big:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }

/* ===== Buttons ===== */
.f-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 60px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 3px solid var(--ink);
  background: var(--ink);
  color: white;
  font-weight: 800;
  font-size: 19px;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 4px 4px 0 var(--ink);
}
.f-btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.f-btn.pink { background: var(--pink); color: white; }
.f-btn.pink:hover { box-shadow: 6px 6px 0 var(--pink-deep); }
.f-btn.green { background: var(--green); color: white; }
.f-btn.green:hover { box-shadow: 6px 6px 0 var(--green-deep); }
.f-btn.butter { background: var(--butter); color: var(--ink); }
.f-btn.white { background: white; color: var(--ink); }
.f-btn.huge { min-height: 72px; font-size: 22px; padding: 16px 36px; }

/* ===== Hero ===== */
.f-hero {
  padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.f-hero h1 {
  margin: 0;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}
.f-hero h1 .pink { color: var(--pink); }
.f-hero p.lede {
  margin: 24px 0 32px;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 26ch;
}
.f-hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.f-hero-photo {
  position: relative;
  background: var(--pink);
  border: 4px solid var(--ink);
  border-radius: 32px;
  aspect-ratio: 1;
  display: grid; place-items: center;
  box-shadow: 10px 10px 0 var(--ink);
  overflow: hidden;
}
.f-hero-photo svg { width: 80%; height: 80%; }
.f-hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.f-hero-photo .tag {
  position: absolute; top: 20px; left: 20px;
  background: var(--butter);
  color: var(--ink);
  padding: 8px 16px;
  border-radius: 999px;
  border: 3px solid var(--ink);
  font-weight: 800;
  font-size: 16px;
}

/* ===== Three steps ===== */
.f-steps {
  background: var(--ink);
  color: white;
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 40px);
}
.f-steps h2 {
  text-align: center;
  margin: 0 0 48px;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.f-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.f-step {
  background: white;
  color: var(--ink);
  border-radius: 24px;
  padding: 32px;
  border: 3px solid white;
  text-align: center;
}
.f-step-num {
  width: 72px; height: 72px;
  border-radius: 999px;
  background: var(--butter);
  color: var(--ink);
  border: 3px solid var(--ink);
  display: grid; place-items: center;
  margin: 0 auto 20px;
  font-weight: 900;
  font-size: 36px;
}
.f-step h3 {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 900;
}
.f-step p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-2);
}

/* ===== Menu ===== */
.f-menu {
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 40px);
  max-width: 1400px;
  margin: 0 auto;
}
.f-menu-head {
  text-align: center;
  margin-bottom: 48px;
}
.f-menu-head h2 {
  margin: 0 0 12px;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.f-menu-head p {
  margin: 0;
  font-size: 20px;
  color: var(--ink-2);
}
.f-menu-head .f-menu-note {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-2);
  opacity: 0.75;
  font-style: italic;
}
.f-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.f-donut {
  background: var(--card);
  border: 3px solid var(--ink);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s;
}
.f-donut:hover { transform: translateY(-4px); }
.f-donut .pic {
  aspect-ratio: 1/1;
  background: var(--bg);
  display: grid; place-items: center;
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
}
.f-donut .pic.pink { background: var(--pink); }
.f-donut .pic.butter { background: var(--butter); }
.f-donut .pic.green { background: #b9e0c4; }
.f-donut .pic.cream { background: #ffe7c8; }
.f-donut .pic.blue { background: #c0d8f0; }
.f-donut .pic svg { width: 75%; height: 75%; }
.f-donut .pic img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform .35s ease; }
@media (hover: hover) {
  .f-donut:hover .pic img { transform: scale(1.04); }
}
.f-donut .body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}
.f-donut h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.1;
}
.f-donut .desc {
  margin: 0;
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.4;
  flex: 1;
}
.f-donut .price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px dashed var(--line);
  padding-top: 14px;
}
.f-donut .price {
  font-size: 26px;
  font-weight: 900;
  color: var(--pink);
}
.f-donut .each {
  font-size: 16px;
  color: var(--ink-2);
}

/* ===== Order — step by step ===== */
.f-order {
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 40px);
  background: white;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.f-order-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.f-order-head {
  text-align: center;
  margin-bottom: 32px;
}
.f-order-head h2 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.f-order-head p {
  margin: 0;
  font-size: 20px;
  color: var(--ink-2);
}

.f-progress {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}
.f-progress .step {
  display: flex; align-items: center; gap: 12px;
}
.f-progress .ball {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: white;
  border: 3px solid var(--ink);
  display: grid; place-items: center;
  font-weight: 900;
  font-size: 20px;
}
.f-progress .ball.on { background: var(--pink); color: white; }
.f-progress .ball.done { background: var(--green); color: white; }
.f-progress .bar {
  width: 36px; height: 4px;
  background: var(--ink);
  border-radius: 2px;
}
.f-progress .label {
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-2);
}
.f-progress .step.on .label { color: var(--ink); }

.f-card {
  background: var(--bg);
  border: 3px solid var(--ink);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 40px);
}
.f-card h3 {
  margin: 0 0 8px;
  font-size: 30px;
  font-weight: 900;
}
.f-card .help {
  margin: 0 0 24px;
  font-size: 18px;
  color: var(--ink-2);
}

.f-size-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.f-size-card {
  background: white;
  border: 3px solid var(--ink);
  border-radius: 18px;
  padding: 22px;
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: transform .15s;
}
.f-size-card:hover { transform: translateY(-2px); }
.f-size-card.on { background: var(--pink); color: white; }
.f-size-card .num {
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}
.f-size-card .lab { font-size: 20px; font-weight: 800; }
.f-size-card .sub { font-size: 16px; opacity: 0.75; }
.f-size-card .price {
  font-size: 22px;
  font-weight: 900;
}
.f-size-card.on .sub { opacity: 0.9; }

.f-field-group {
  display: grid;
  gap: 18px;
}
.f-field {
  display: grid;
  gap: 8px;
}
.f-field label {
  font-size: 18px;
  font-weight: 800;
}
.f-field .help-text {
  font-size: 16px;
  color: var(--ink-2);
}
.f-input, .f-select, .f-area {
  width: 100%;
  height: 60px;
  padding: 0 18px;
  border: 3px solid var(--ink);
  border-radius: 14px;
  background: white;
  color: var(--ink);
  font-size: 19px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.f-area { height: auto; padding: 16px 18px; min-height: 110px; resize: vertical; }
.f-input:focus, .f-select:focus, .f-area:focus { border-color: var(--pink); box-shadow: 0 0 0 4px rgba(242,94,131,0.2); }
.f-form-error {
  margin: 18px 0 0;
  color: var(--pink-deep);
  font-size: 17px;
  font-weight: 900;
}

.f-step-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.f-step-actions .f-btn { flex: 1; min-width: 200px; }

.f-summary {
  background: var(--butter);
  border: 3px solid var(--ink);
  border-radius: 18px;
  padding: 24px;
  margin-bottom: 24px;
}
.f-summary h4 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 900;
}
.f-summary .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 2px dashed rgba(31,22,17,0.25);
  font-size: 18px;
}
.f-summary .row:last-child { border-bottom: 0; }
.f-summary .row .l { font-weight: 700; }
.f-summary .row .v { font-weight: 800; text-align: right; }

.f-success {
  background: var(--green);
  color: white;
  border: 3px solid var(--ink);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
}
.f-success .check {
  width: 80px; height: 80px;
  border-radius: 999px;
  background: white;
  color: var(--green);
  margin: 0 auto 20px;
  display: grid; place-items: center;
  border: 4px solid var(--ink);
}
.f-success h3 {
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 900;
}
.f-success p {
  margin: 0 0 28px;
  font-size: 20px;
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Visit ===== */
.f-visit {
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 40px);
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.f-visit-card {
  background: var(--card);
  border: 3px solid var(--ink);
  border-radius: 24px;
  padding: 36px;
  display: grid;
  gap: 22px;
  align-content: start;
}
.f-visit-card h2 {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.f-info-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
}
.f-info-row .icon {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--butter);
  border: 3px solid var(--ink);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.f-info-row .icon.pink { background: var(--pink); color: white; }
.f-info-row .icon.green { background: var(--green); color: white; }
.f-info-row .l {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-2);
}
.f-info-row .v {
  font-size: 20px;
  font-weight: 800;
}
.f-info-row .v a { color: inherit; text-decoration: none; }

.f-hours {
  border-top: 3px dashed var(--line);
  padding-top: 22px;
}
.f-hours h4 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-2);
}
.f-hours .row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 10px 0;
  border-bottom: 2px dashed var(--line);
  font-size: 18px;
}
.f-hours .row:last-child { border-bottom: 0; }
.f-hours .row .d { font-weight: 800; }
.f-hours .row .t { font-weight: 600; color: var(--ink-2); }
.f-hours .row.now {
  background: var(--butter);
  margin: 0 -16px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 0;
}
.f-hours .row.now .d::after {
  content: " · OPEN NOW";
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 900;
}

.f-map {
  border: 3px solid var(--ink);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: var(--green-soft);
  min-height: 480px;
}
.f-map-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.f-map .leaflet-container {
  width: 100%;
  height: 100%;
  font-family: inherit;
  background: var(--green-soft);
}
.f-map .leaflet-control-attribution {
  font-size: 11px;
}
.f-map .leaflet-popup-content-wrapper,
.f-map .leaflet-popup-tip {
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 rgba(31,22,17,0.18);
}
.f-map .leaflet-popup-content {
  margin: 10px 12px;
  font-size: 14px;
  line-height: 1.35;
}
.f-map-sticker {
  position: absolute; top: 24px; right: 24px;
  background: var(--butter);
  border: 3px solid var(--ink);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  transform: rotate(4deg);
  z-index: 3;
  box-shadow: 4px 4px 0 rgba(31,22,17,0.18);
}

/* ===== FAQ ===== */
.f-faq {
  background: var(--card);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 40px);
  border-top: 3px solid var(--ink);
}
.f-faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.f-faq h2 {
  text-align: center;
  margin: 0 0 32px;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
}
.f-faq details {
  background: var(--bg);
  border: 3px solid var(--ink);
  border-radius: 18px;
  padding: 22px 26px;
  margin-bottom: 14px;
}
.f-faq details[open] { background: var(--butter); }
.f-faq summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 20px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.f-faq summary::-webkit-details-marker { display: none; }
.f-faq summary::after {
  content: "+";
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  display: grid; place-items: center;
  font-size: 24px;
  flex-shrink: 0;
}
.f-faq details[open] summary::after { content: "−"; background: var(--pink); }
.f-faq p {
  margin: 16px 0 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
}

/* ===== Footer ===== */
.f-foot {
  background: var(--ink);
  color: white;
  padding: clamp(40px, 5vw, 64px) clamp(20px, 4vw, 40px);
  text-align: center;
}
.f-foot h3 {
  margin: 0 0 12px;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.f-foot h3 .pink { color: var(--butter); font-style: italic; }
.f-foot h3 .butter { color: var(--butter); }
.f-foot p {
  margin: 0 0 28px;
  font-size: 20px;
  color: rgba(255,255,255,0.8);
}
.f-foot-primary {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.f-foot-primary .f-btn { min-width: 240px; }
.f-foot-primary .f-btn.pink:hover { box-shadow: 6px 6px 0 var(--pink-deep); }
.f-foot-secondary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.f-foot-also {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
}
.f-foot-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.f-foot-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color .15s, border-color .15s;
}
.f-foot-links a:hover {
  color: white;
  border-bottom-color: var(--butter);
}
.f-foot-links .sep {
  color: rgba(255,255,255,0.35);
  font-weight: 700;
}
.f-foot-bottom {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== Responsive ===== */
@media (max-width: 1180px) {
  .f-header { gap: 12px; padding-left: 20px; padding-right: 20px; }
  .f-logo { font-size: 20px; }
  .f-logo img { width: 62px; height: 62px; }
  .f-header-links { gap: 6px; font-size: 15px; }
  .f-header-links a { padding: 7px 10px; }
  .f-call-big { padding: 8px 13px; font-size: 14px; }
}
@media (max-width: 980px) {
  .f-header-links { display: none; }
  .f-hero { grid-template-columns: 1fr; text-align: center; padding-top: 32px; padding-bottom: 32px; }
  .f-hero p.lede { margin-left: auto; margin-right: auto; }
  .f-hero-cta { justify-content: center; }
  .f-hero-photo { max-width: 460px; margin: 0 auto; }
  .f-steps-grid { grid-template-columns: 1fr; }
  .f-menu-grid { grid-template-columns: 1fr 1fr; }
  .f-visit { grid-template-columns: 1fr; }
  .f-progress .label { display: none; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  section[id] { scroll-margin-top: 74px; }
  .f-banner { padding: 8px 10px; font-size: 15px; line-height: 1.25; }
  .f-banner .dot { width: 10px; height: 10px; margin-right: 6px; }
  .f-call-big { padding: 7px 10px; font-size: 13px; gap: 5px; border-width: 2px; box-shadow: 2px 2px 0 var(--ink); }
  .f-call-big svg { width: 15px; height: 15px; }
  .f-header { padding: 7px 14px; gap: 8px; }
  .f-logo img { width: 56px; height: 56px; border-radius: 13px; }
  .f-logo { font-size: 18px; gap: 10px; }
  .f-hero { padding: 24px 20px 30px; gap: 22px; }
  .f-hero h1 { font-size: clamp(2rem, 8.5vw, 2.75rem); }
  .f-hero p.lede { margin: 18px auto 22px; font-size: 19px; line-height: 1.45; }
  .f-hero-photo { max-width: 340px; aspect-ratio: 4/5; border-radius: 24px; box-shadow: 6px 6px 0 var(--ink); }
  .f-hero-photo .tag { top: 14px; left: 14px; padding: 6px 12px; font-size: 14px; border-width: 2px; }
  .f-hero-cta { flex-direction: column; align-items: stretch; }
  .f-hero-cta .f-btn { width: 100%; }
  .f-btn { min-height: 54px; padding: 12px 22px; font-size: 17px; box-shadow: 3px 3px 0 var(--ink); }
  .f-btn.huge { font-size: 18px; min-height: 56px; padding: 12px 24px; }
  .f-menu { padding: 34px 0 36px; }
  .f-menu-head { padding: 0 20px; margin-bottom: 20px; }
  .f-menu-head h2 { font-size: 34px; margin-bottom: 8px; }
  .f-menu-head p { font-size: 17px; line-height: 1.35; }
  .f-menu-head .f-menu-note { margin-top: 8px; font-size: 13px; }
  .f-menu-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    padding: 0 20px 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .f-menu-grid::-webkit-scrollbar { display: none; }
  .f-donut { flex: 0 0 min(78vw, 300px); scroll-snap-align: start; border-radius: 20px; }
  .f-donut .pic { aspect-ratio: 1/1; }
  .f-donut .body { padding: 16px; gap: 9px; }
  .f-donut h3 { font-size: 22px; }
  .f-donut .desc { font-size: 16px; line-height: 1.35; }
  .f-donut .price-row { padding-top: 10px; }
  .f-donut .price { font-size: 23px; }
  .f-order { padding: 34px 20px; }
  .f-order-head { margin-bottom: 20px; }
  .f-order-head h2 { font-size: 36px; margin-bottom: 8px; }
  .f-order-head p { font-size: 17px; }
  .f-progress { margin-bottom: 20px; gap: 8px; }
  .f-progress .ball { width: 38px; height: 38px; font-size: 18px; border-width: 2px; }
  .f-progress .bar { width: 28px; }
  .f-card { padding: 20px; border-radius: 20px; }
  .f-card h3 { font-size: 26px; }
  .f-card .help { margin-bottom: 16px; font-size: 16px; }
  .f-size-grid { grid-template-columns: 1fr; gap: 10px; }
  .f-size-card { padding: 14px; border-radius: 15px; gap: 12px; }
  .f-size-card .num { font-size: 34px; }
  .f-size-card .lab { font-size: 18px; }
  .f-size-card .sub { font-size: 14px; }
  .f-field-group { gap: 14px; }
  .f-field label { font-size: 16px; }
  .f-input, .f-select, .f-area { height: 54px; font-size: 17px; border-radius: 12px; padding: 0 14px; }
  .f-area { min-height: 92px; padding: 12px 14px; }
  .f-summary { padding: 16px; margin-bottom: 18px; }
  .f-summary h4 { margin-bottom: 10px; font-size: 20px; }
  .f-summary .row { font-size: 16px; }
  .f-step-actions { flex-direction: column-reverse; }
  .f-step-actions .f-btn { width: 100%; }
  .f-step-actions { margin-top: 20px; }
  .f-success { padding: 28px 20px; }
  .f-success .check { width: 64px; height: 64px; margin-bottom: 14px; }
  .f-success h3 { font-size: 30px; }
  .f-success p { font-size: 17px; margin-bottom: 20px; }
  .f-visit { padding: 34px 20px; gap: 18px; }
  .f-visit-card { padding: 24px 20px; gap: 16px; border-radius: 20px; }
  .f-visit-card h2 { font-size: 36px; }
  .f-info-row { grid-template-columns: 48px 1fr; gap: 14px; }
  .f-info-row .icon { width: 48px; height: 48px; }
  .f-info-row .v { font-size: 18px; line-height: 1.35; }
  .f-hours { padding-top: 16px; }
  .f-hours h4 { margin-bottom: 8px; font-size: 16px; }
  .f-hours .row { grid-template-columns: 82px 1fr; gap: 8px; padding: 7px 0; font-size: 16px; }
  .f-hours .row .t { text-align: right; }
  .f-hours .row.now { margin: 0 -10px; padding: 8px 10px; }
  .f-hours .row.now .d::after { display: block; margin-top: 1px; font-size: 12px; }
  .f-map { min-height: 300px; border-radius: 20px; }
  .f-map-sticker { top: 18px; right: 16px; font-size: 14px; padding: 8px 12px; }
  .f-faq { padding: 34px 20px; }
  .f-faq h2 { font-size: 34px; margin-bottom: 20px; }
  .f-faq details { padding: 16px 18px; border-radius: 16px; margin-bottom: 10px; }
  .f-faq summary { font-size: 17px; }
  .f-faq summary::after { width: 30px; height: 30px; font-size: 20px; }
  .f-faq p { font-size: 16px; line-height: 1.45; }
  .f-foot { padding: 26px 16px 24px; }
  .f-foot-logo { width: 88px; height: 88px; border-radius: 16px; margin-bottom: 10px; box-shadow: 4px 4px 0 var(--ink); }
  .f-foot h3 { font-size: 32px; margin-bottom: 8px; }
  .f-foot p { font-size: 15px; margin-bottom: 16px; }
  .f-foot-primary {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 18px;
  }
  .f-foot-primary .f-btn {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding: 12px 18px;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    border-width: 2px;
    box-shadow: 3px 3px 0 var(--ink);
  }
  .f-foot-primary .f-btn svg { width: 18px; height: 18px; }
  .f-foot-secondary { gap: 8px; }
  .f-foot-also { font-size: 12px; }
  .f-foot-links { gap: 10px; font-size: 14px; }
  .f-foot-links a { font-size: 14px; }
  .f-foot-bottom { flex-direction: column; align-items: center; text-align: center; margin-top: 22px; padding-top: 14px; font-size: 13px; gap: 6px; }
}
