:root {
  --ink: #21170f;
  --muted: #756656;
  --paper: #fff5df;
  --paper-deep: #f7dfb5;
  --red: #e24120;
  --red-dark: #b52a17;
  --gold: #f2bd28;
  --green: #267640;
  --blue: #135eac;
  --shadow: 0 18px 45px rgba(69, 39, 14, 0.18);
  --radius: 8px;
  --ui-font: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
  --display-font: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--ui-font);
  font-weight: 500;
  background:
    radial-gradient(circle at 8% 5%, rgba(226, 65, 32, 0.12), transparent 22rem),
    radial-gradient(circle at 92% 7%, rgba(38, 118, 64, 0.13), transparent 20rem),
    linear-gradient(180deg, #fffaf0, var(--paper));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(90deg, rgba(122, 78, 28, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(122, 78, 28, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  z-index: -1;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 62px);
  background: rgba(255, 248, 232, 0.9);
  border-bottom: 1px solid rgba(128, 75, 21, 0.14);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}

.brand > span {
  min-width: 0;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 18px rgba(38, 84, 37, 0.16);
}

.brand strong {
  display: block;
  font-size: clamp(22px, 3.6vw, 36px);
  font-family: var(--display-font);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--red);
  font-family: var(--ui-font);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.35;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ui-font);
  font-weight: 700;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--red-dark);
  background: rgba(226, 65, 32, 0.1);
}

.menu-button {
  display: none;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(180deg, #ef5a25, #d73b18);
  box-shadow: 0 8px 18px rgba(196, 56, 20, 0.22);
  cursor: pointer;
  font-family: var(--ui-font);
}

.menu-button span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 4px auto;
  border-radius: 999px;
  background: #fff;
}

.menu-button b {
  display: block;
  margin-top: 4px;
  font-size: 11px;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 760px) 1fr;
  align-items: center;
  padding: clamp(28px, 5vw, 70px) clamp(18px, 5vw, 72px) 84px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(32, 18, 8, 0.86), rgba(32, 18, 8, 0.48) 42%, rgba(32, 18, 8, 0.06) 72%),
    linear-gradient(180deg, rgba(255, 248, 232, 0.2), rgba(255, 248, 232, 0) 24%, rgba(255, 248, 232, 0.18));
}

.hero::after {
  content: "";
  position: absolute;
  left: -5vw;
  right: -5vw;
  bottom: 18px;
  height: 28px;
  background:
    radial-gradient(circle at 15px 28px, transparent 17px, #1676bd 18px, #1676bd 21px, transparent 22px) 0 0 / 44px 28px repeat-x,
    linear-gradient(90deg, #1676bd, #31a8df);
  opacity: 0.82;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url("assets/photo-hero-bento.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transform: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy > p:not(.eyebrow),
.hero-actions {
  animation: warm-rise 720ms ease both;
}

.hero-copy h1 {
  animation-delay: 90ms;
}

.hero-copy > p:not(.eyebrow) {
  animation-delay: 180ms;
}

.hero-actions {
  animation-delay: 260ms;
}

.eyebrow,
.section-heading p {
  margin: 0 0 10px;
  color: var(--green);
  font-family: var(--ui-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  display: grid;
  gap: 14px;
  margin: 0;
  color: #fff;
  font-family: var(--display-font);
  line-height: 1;
  text-shadow: 0 5px 0 rgba(0, 0, 0, 0.18), 0 12px 38px rgba(61, 32, 9, 0.35);
}

.hero-kicker,
.hero-main {
  display: block;
}

.hero-kicker {
  width: max-content;
  padding: 8px 18px 10px;
  color: #2f1c08;
  border: 4px solid #fff0b8;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffe783, var(--gold));
  box-shadow:
    0 8px 0 rgba(107, 58, 8, 0.52),
    0 22px 42px rgba(0, 0, 0, 0.24);
  font-family: var(--ui-font);
  font-weight: 900;
  font-size: clamp(28px, 4.6vw, 56px);
  transform: rotate(-2deg);
}

.hero-main {
  max-width: none;
  color: #fff;
  font-size: clamp(46px, 7vw, 86px);
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-main::first-letter {
  color: var(--gold);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: #fff4dc;
  font-family: var(--ui-font);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
  line-height: 1.75;
  text-wrap: pretty;
}

.hero-actions,
.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-radius: var(--radius);
  font-family: var(--ui-font);
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.primary-link:hover,
.secondary-link:hover {
  transform: translateY(-2px);
}

.primary-link:active,
.secondary-link:active {
  transform: translateY(1px);
}

.primary-link {
  color: #fff;
  background: linear-gradient(180deg, #ef5c27, #d93c17);
  box-shadow: 0 12px 22px rgba(209, 58, 22, 0.28);
}

.secondary-link {
  color: var(--blue);
  border: 2px solid currentColor;
  background: rgba(255, 255, 255, 0.56);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1120px;
  margin: -72px auto 0;
  padding: 0 clamp(18px, 4vw, 40px);
  gap: 18px;
  position: relative;
  z-index: 3;
}

.feature-strip article {
  position: relative;
  min-height: 162px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 28px 22px 24px;
  text-align: center;
  border: 3px solid rgba(255, 238, 183, 0.95);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 212, 0.98));
  box-shadow:
    0 6px 0 rgba(101, 58, 12, 0.32),
    0 22px 40px rgba(74, 42, 14, 0.2);
  overflow: hidden;
}

.feature-strip article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  background: var(--red);
}

.feature-strip article:nth-child(2)::before {
  background: var(--blue);
}

.feature-strip article:nth-child(3)::before {
  background: var(--green);
}

.feature-strip article::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -42px;
  width: 120px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(242, 189, 40, 0.24);
}

.feature-strip small {
  position: absolute;
  top: 18px;
  left: 18px;
  color: rgba(33, 23, 15, 0.22);
  font-family: var(--ui-font);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.feature-strip strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--red);
  font-family: var(--ui-font);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.12;
}

.feature-strip article:nth-child(2) strong {
  color: var(--blue);
}

.feature-strip article:nth-child(3) strong {
  color: var(--green);
}

.feature-strip span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 12px;
  color: #332313;
  font-family: var(--ui-font);
  font-size: clamp(15px, 1.9vw, 18px);
  font-weight: 700;
  line-height: 1.45;
}

#access-info {
  scroll-margin-top: 96px;
}

.reveal-target {
  opacity: 0;
  transform: translateY(18px);
}

.reveal-target.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

@keyframes warm-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(70px, 9vw, 110px) clamp(18px, 4vw, 38px) 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section-heading.centered {
  display: block;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4.6vw, 48px);
  line-height: 1.1;
}

.section-heading a {
  color: var(--red-dark);
  font-family: var(--ui-font);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 3px solid var(--gold);
}

.card-grid,
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.menu-card,
.recommend-grid article {
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 252, 242, 0.94);
  box-shadow: 0 16px 30px rgba(70, 39, 15, 0.12);
}

.menu-card h3,
.recommend-grid h3 {
  margin: 14px 14px 8px;
  font-family: var(--ui-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.menu-card p {
  margin: 0 14px 18px;
  color: var(--red);
  font-family: var(--ui-font);
  font-weight: 700;
}

.menu-card strong {
  font-size: 30px;
  font-weight: 900;
}

.menu-card span,
.round-menu span {
  margin-left: 3px;
  font-size: 13px;
}

.menu-card p span {
  display: block;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.note {
  margin: 20px 0 0;
  color: var(--muted);
  text-align: right;
  font-family: var(--ui-font);
  font-weight: 500;
}

.mock-crop,
.mock-round {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.mock-crop {
  min-height: 150px;
  aspect-ratio: 4 / 3;
}

.crop-goya { background-image: url("assets/photo-tonkatsu.jpg"); }
.crop-karaage { background-image: url("assets/photo-karaage-nanban.jpg"); }
.crop-pork { background-image: url("assets/photo-pork-tamago.jpg"); }
.crop-yakisoba { background-image: url("assets/photo-taco-rice.jpg"); }

.okinawa-section {
  max-width: 1040px;
}

.round-menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 34px);
  margin-top: 32px;
  text-align: center;
}

.mock-round {
  width: min(100%, 190px);
  aspect-ratio: 1;
  margin: 0 auto 12px;
  border-radius: 50%;
  border: 4px solid rgba(112, 63, 25, 0.18);
  box-shadow: 0 14px 28px rgba(61, 34, 10, 0.16);
}

.round-soba { background-image: url("assets/photo-mabo-don.jpg"); }
.round-soki { background-image: url("assets/photo-karaage-curry.jpg"); }
.round-soup { background-image: url("assets/photo-chicken-katsu.jpg"); }
.round-tofu { background-image: url("assets/photo-hero-bento.jpg"); }

.round-menu h3 {
  margin: 0 0 5px;
  font-family: var(--ui-font);
  font-size: 20px;
  font-weight: 700;
}

.round-menu p {
  margin: 0;
  color: var(--red);
  font-family: var(--ui-font);
  font-size: 27px;
  font-weight: 900;
}

.service-section {
  display: grid;
  max-width: 1160px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
}

.service-photo {
  min-height: clamp(280px, 34vw, 430px);
  border-radius: var(--radius);
  background-image: url("assets/photo-catering-platter.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: var(--shadow);
}

.service-copy {
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius);
  background: rgba(255, 253, 246, 0.95);
  box-shadow: 0 16px 34px rgba(70, 39, 15, 0.12);
}

.service-copy > p:first-child {
  margin: 0 0 10px;
  color: var(--green);
  font-family: var(--ui-font);
  font-weight: 700;
  text-transform: uppercase;
}

.service-copy h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
}

.service-copy > p:not(:first-child) {
  margin: 18px 0 0;
  color: #4a3727;
  font-family: var(--ui-font);
  font-size: clamp(16px, 1.7vw, 18px);
  font-weight: 500;
  line-height: 1.8;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.service-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(38, 118, 64, 0.22);
  border-radius: 999px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.78);
  font-family: var(--ui-font);
  font-size: 14px;
  font-weight: 700;
}

.recommend-grid {
  grid-template-columns: repeat(3, 1fr);
}

.recommend-grid article {
  position: relative;
  padding-bottom: 20px;
}

.recommend-grid span {
  display: inline-block;
  margin: -18px 16px 0;
  position: relative;
  padding: 8px 16px;
  color: #fff;
  border-radius: 6px;
  background: var(--blue);
  font-family: var(--ui-font);
  font-weight: 700;
}

.recommend-grid article:nth-child(2) span { background: var(--red); }
.recommend-grid article:nth-child(3) span { background: var(--green); }

.recommend-grid p {
  margin: 0 16px;
  color: #4a3727;
  font-family: var(--ui-font);
  font-weight: 500;
  line-height: 1.7;
}

.blog-section .section-heading {
  align-items: center;
}

.blog-archive-hero {
  position: relative;
  display: grid;
  min-height: 360px;
  padding: 138px var(--page-pad) 70px;
  color: #fffdf5;
  background:
    linear-gradient(90deg, rgba(45, 24, 11, 0.9), rgba(45, 24, 11, 0.58) 52%, rgba(45, 24, 11, 0.35)),
    url("assets/photo-shop-front.jpg") center / cover;
}

.blog-archive-hero > div {
  width: min(980px, 100%);
  margin: auto auto 0;
}

.blog-archive-hero h1 {
  margin: 8px 0 12px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 1.05;
  letter-spacing: 0;
}

.blog-archive-hero p:last-child {
  max-width: 560px;
  margin: 0;
  font-family: var(--ui-font);
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 700;
  line-height: 1.75;
}

.blog-archive {
  margin-top: 58px;
}

.blog-section:not(.blog-archive) .blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-archive .blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.blog-tabs button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(38, 118, 64, 0.22);
  border-radius: 999px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.7);
  font-family: var(--ui-font);
  font-weight: 700;
  cursor: pointer;
}

.blog-tabs button.is-active {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

.blog-tabs button:focus-visible,
.blog-card button:focus-visible,
.blog-dialog-close:focus-visible {
  outline: 3px solid rgba(234, 190, 61, 0.8);
  outline-offset: 3px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  border-radius: var(--radius);
  background: rgba(255, 252, 242, 0.94);
  box-shadow: 0 16px 30px rgba(70, 39, 15, 0.12);
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(70, 39, 15, 0.16);
}

.blog-card button {
  display: grid;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.blog-card-image {
  min-height: 190px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.blog-card-body {
  display: grid;
  gap: 9px;
  padding: 18px;
}

.blog-card-meta {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.blog-card strong {
  font-size: 21px;
  line-height: 1.35;
}

.blog-title-short {
  display: none;
}

.blog-card-body > span:last-child {
  color: #4a3727;
  line-height: 1.7;
}

.blog-dialog {
  width: min(680px, calc(100vw - 34px));
  max-height: min(86vh, 920px);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #fffdf5;
  box-shadow: 0 28px 80px rgba(35, 20, 8, 0.32);
  overflow: hidden;
}

.blog-dialog:not([open]) {
  display: none;
}

.blog-dialog[open] {
  display: flex;
  flex-direction: column;
}

.blog-dialog::backdrop {
  background: rgba(33, 23, 15, 0.48);
}

.blog-dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.blog-dialog-image {
  display: block;
  flex: 0 0 auto;
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

.blog-dialog-gallery {
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  padding: 10px 10px 0;
  background: #fffdf5;
}

.blog-dialog-gallery[hidden] {
  display: none;
}

.blog-dialog-gallery img {
  width: 100%;
  height: clamp(150px, 22vw, 220px);
  border-radius: 8px;
  object-fit: cover;
}

.blog-dialog-body {
  padding: clamp(22px, 4vw, 34px);
  overflow: auto;
}

.blog-dialog-meta {
  margin: 0 0 8px;
  color: var(--green);
  font-weight: 700;
}

.blog-dialog h2 {
  margin: 0;
  font-size: clamp(25px, 4vw, 38px);
  line-height: 1.25;
}

.blog-dialog-text {
  margin: 18px 0 0;
  color: #4a3727;
  font-size: 17px;
  line-height: 1.85;
  white-space: pre-line;
}

.crop-local { background-image: url("assets/photo-shop-front.jpg"); }
.crop-tourist { background-image: url("assets/photo-okinawa-soba.jpg"); }
.crop-team { background-image: url("assets/photo-mega-karaage.jpg"); }

.shop-gallery {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.shop-section .section-heading {
  display: block;
  text-align: left;
}

.shop-gallery .mock-crop {
  min-width: 0;
  max-width: 100%;
  min-height: 180px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.crop-storefront { background-image: url("assets/photo-shop-exterior.jpg"); }
.crop-display { background-image: url("assets/photo-shop-staff-kitchen.jpg"); }
.crop-counter { background-image: url("assets/photo-shop-front.jpg"); }

.info-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-top: 24px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius);
  background: #fffdf5;
  box-shadow: var(--shadow);
}

.info-panel h3 {
  margin: 0 0 18px;
  font-size: clamp(26px, 4vw, 40px);
}

dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

dl div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: baseline;
  font-family: var(--ui-font);
}

dt {
  color: var(--green);
  font-weight: 700;
}

dd {
  margin: 0;
  font-weight: 500;
}

.contact-box {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-content: center;
  align-items: center;
  column-gap: 16px;
  row-gap: 5px;
  padding: 22px;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(226, 65, 32, 0.96), rgba(181, 42, 23, 0.98));
}

.contact-box::before {
  content: "TEL";
  display: grid;
  grid-row: 1 / 4;
  place-items: center;
  width: clamp(54px, 7vw, 72px);
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  font-family: var(--ui-font);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.contact-box p,
.contact-box span {
  margin: 0;
  font-family: var(--ui-font);
  font-weight: 700;
}

.contact-box a {
  font-family: var(--ui-font);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.contact-box span {
  width: max-content;
  padding: 3px 10px 4px;
  border-radius: 999px;
  color: #8f2517;
  background: #fff0b8;
  font-size: 13px;
}

.map-embed {
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(128, 75, 21, 0.16);
  border-radius: var(--radius);
  background: #fffdf5;
  box-shadow: var(--shadow);
}

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

.map-actions {
  justify-content: center;
}

.site-footer {
  margin-top: 96px;
  padding: 30px 18px 38px;
  color: #fff7e6;
  text-align: center;
  background: #2c1a0f;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  font-size: 24px;
}

.site-footer span {
  margin-top: 8px;
  font-family: var(--ui-font);
  font-weight: 500;
}

@media (max-width: 880px) {
  .menu-button {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    display: none;
    min-width: 210px;
    padding: 10px;
    border-radius: var(--radius);
    background: #fffaf0;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    border-radius: 6px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 86px;
    padding-bottom: 120px;
  }

  .hero-photo {
    background-position: 62% center;
  }

  .feature-strip,
  .card-grid,
  .service-section,
  .round-menu,
  .recommend-grid,
  .blog-grid,
  .blog-archive .blog-grid,
  .blog-section:not(.blog-archive) .blog-grid,
  .shop-gallery,
  .info-panel {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    margin-top: -28px;
  }

  .feature-strip article {
    border-radius: var(--radius);
  }

  .mock-crop {
    min-height: 210px;
  }

  .section-heading {
    display: block;
  }

  .blog-tabs {
    justify-content: flex-start;
    margin-top: 14px;
  }

  .section-heading a {
    display: inline-block;
    margin-top: 10px;
  }
}

@media (max-width: 560px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    padding: 10px 14px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand small {
    max-width: 15em;
    font-size: 10px;
  }

  .hero h1 {
    gap: 10px;
    max-width: 100%;
  }

  .hero {
    min-height: 600px;
    padding-bottom: 72px;
  }

  .hero-kicker {
    max-width: 100%;
    padding: 7px 14px 8px;
    font-size: clamp(25px, 8vw, 38px);
  }

  .hero-main {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 46px);
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .hero-copy {
    min-width: 0;
    max-width: 100%;
  }

  .hero-photo {
    background-position: 68% center;
  }

  .feature-strip {
    display: flex;
    gap: 7px;
    width: min(360px, calc(100vw - 24px));
    max-width: calc(100% - 24px);
    margin: -34px 12px 0;
    padding: 0;
    overflow: hidden;
  }

  .feature-strip article {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    min-height: 76px;
    align-content: center;
    padding: 12px 6px 10px;
    border-width: 2px;
    box-shadow:
      0 3px 0 rgba(101, 58, 12, 0.22),
      0 10px 22px rgba(74, 42, 14, 0.14);
  }

  .feature-strip article::before {
    height: 5px;
  }

  .feature-strip article::after {
    display: none;
  }

  .feature-strip small {
    position: static;
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    margin: 0 auto 5px;
    color: #fff;
    border-radius: 999px;
    background: rgba(226, 65, 32, 0.9);
    font-size: 10px;
  }

  .feature-strip article:nth-child(2) small {
    background: rgba(19, 94, 172, 0.9);
  }

  .feature-strip article:nth-child(3) small {
    background: rgba(38, 118, 64, 0.9);
  }

  .feature-strip strong {
    min-width: 0;
    font-size: clamp(12px, 3.25vw, 14px);
    line-height: 1.25;
    overflow-wrap: anywhere;
    word-break: keep-all;
  }

  .feature-strip span {
    display: none;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .blog-section {
    margin-top: 48px;
  }

  .blog-grid {
    gap: 10px;
  }

  .blog-card {
    width: 100%;
    max-width: calc(100vw - 40px);
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(70, 39, 15, 0.1);
  }

  .blog-card button {
    display: grid;
    grid-template-columns: 98px minmax(0, 1fr);
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    min-height: 102px;
    overflow: hidden;
    white-space: normal;
  }

  .blog-card-image {
    min-height: 100%;
  }

  .blog-card-body {
    gap: 4px;
    min-width: 0;
    width: calc(100vw - 150px);
    max-width: calc(100vw - 150px);
    overflow: hidden;
    padding: 10px 12px;
  }

  .blog-card-body > * {
    min-width: 0;
  }

  .blog-card-meta {
    font-size: 10px;
  }

  .blog-card strong {
    display: block;
    max-height: 2.72em;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.36;
    overflow-wrap: anywhere;
    word-break: break-all;
    white-space: normal;
  }

  .blog-title-full {
    display: none;
  }

  .blog-title-short {
    display: inline;
  }

  .blog-card-body > span:last-child {
    display: none;
  }

  .blog-archive-hero {
    min-height: 250px;
    padding: 102px var(--page-pad) 42px;
  }

  .blog-archive-hero h1 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .blog-archive-hero p:last-child {
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .blog-archive {
    margin-top: 34px;
  }

  .site-footer span {
    max-width: calc(100vw - 36px);
    margin-right: auto;
    margin-left: auto;
    font-size: 14px;
    line-height: 1.7;
    overflow-wrap: anywhere;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal-target {
    opacity: 1;
    transform: none;
  }
}
