:root {
  --orange: #f08a24;
  --orange-dark: #d96f10;
  --orange-soft: #fff0dd;
  --yellow: #ffd95a;
  --green: #236a2b;
  --brown: #6c5735;
  --text: #2f2f2f;
  --muted: #686868;
  --white: #fff;
  --line: #06c755;
  --instagram: #e4405f;
  --shadow: 0 14px 34px rgba(147, 84, 18, 0.13);
  --radius: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  color: var(--text);
  line-height: 1.95;
  background: #fffaf3;
  font-size: 18px;
}

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

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.section-light {
  background: linear-gradient(180deg, #fff7ec, #fff0dd);
}

.section-flow {
  background: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 46px;
}

.section-title span {
  display: inline-block;
  color: var(--orange-dark);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: clamp(30px, 4.2vw, 42px);
  line-height: 1.5;
}

.lead {
  font-size: 21px;
  color: var(--muted);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 17px;
  transition: 0.25s;
  box-shadow: var(--shadow);
  border: none;
}

.btn-line {
  background: var(--line);
  color: #fff;
}

.btn-instagram {
  background: var(--instagram);
  color: #fff;
}

.btn-main {
  background: var(--orange);
  color: #fff;
}

.btn-outline {
  background: #fff;
  color: var(--orange-dark);
  border: 2px solid var(--orange);
}

.btn-outline-white {
  background: #fff;
  color: var(--orange-dark);
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 250, 243, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(240, 138, 36, 0.16);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--orange-dark);
  font-size: 20px;
  letter-spacing: 0.02em;
}

.header-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  font-weight: 800;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  color: #484848;
}

.nav .nav-cta {
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
}

.nav .nav-cta.line {
  background: var(--line);
}

.nav .nav-cta.instagram {
  background: var(--instagram);
}

.hero {
  position: relative;
  padding: 92px 0 90px;
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 217, 90, 0.50), transparent 23%),
    radial-gradient(circle at 10% 92%, rgba(240, 138, 36, 0.18), transparent 28%),
    linear-gradient(110deg, rgba(255, 250, 243, 0.95) 0%, rgba(255, 242, 223, 0.93) 56%, rgba(255, 226, 187, 0.92) 100%);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 250, 243, 0.80), rgba(255, 242, 223, 0.82)),
    url("images/shop-exterior.png");
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  z-index: 0;
  filter: saturate(0.85);
}

.hero::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -130px;
  width: 370px;
  height: 370px;
  border-radius: 50%;
  background: rgba(240, 138, 36, 0.18);
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 54px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: #fff;
  color: var(--orange-dark);
  border: 1px solid rgba(240, 138, 36, 0.32);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(42px, 5.8vw, 64px);
  line-height: 1.34;
  margin-bottom: 24px;
}

.hero h1 strong {
  color: var(--orange-dark);
}

.hero-text {
  font-size: 24px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 680px;
  line-height: 1.9;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points span {
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 800;
  color: var(--orange-dark);
  box-shadow: 0 8px 20px rgba(147, 84, 18, 0.09);
}

.hero-visual {
  display: grid;
  gap: 22px;
}

.hero-visual-simple {
  align-items: stretch;
}

.hero-card {
  background: #fff;
  border-radius: 28px;
  padding: 34px 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(240, 138, 36, 0.14);
}

.hero-card h3 {
  color: var(--orange-dark);
  font-size: 34px;
  margin-bottom: 18px;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.hero-card li {
  padding-left: 30px;
  position: relative;
  font-size: 21px;
  line-height: 1.9;
}

.hero-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 900;
}

.problem-grid,
.feature-grid,
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 46px;
}

.problem-card,
.feature-card,
.menu-card,
.menu-note,
.info-table,
.map-box,
.faq-item,
.gallery-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(240, 138, 36, 0.10);
}

.problem-card {
  padding: 30px;
}

.problem-card h3,
.feature-card h3,
.menu-card h3,
.menu-note h3,
.faq-item h3,
.gallery-card h3 {
  color: var(--orange-dark);
}

.problem-card p,
.feature-card p,
.menu-card p,
.menu-note p,
.faq-item p,
.gallery-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.problem-card h3,
.menu-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.feature-card {
  padding: 30px;
  border-top: 5px solid var(--orange);
}

.feature-number {
  color: var(--brown);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.feature-card h3 {
  font-size: 28px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 18px;
}

.menu-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-card.recommend {
  border: 3px solid var(--orange);
  position: relative;
}

.menu-label {
  position: absolute;
  top: -16px;
  left: 24px;
  background: var(--orange);
  color: #fff;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.menu-time {
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 6px;
}

.menu-price {
  font-size: 34px;
  font-weight: 900;
  color: var(--orange-dark);
  margin-bottom: 18px;
}

.menu-price small {
  font-size: 15px;
  font-weight: 800;
}

.menu-note {
  margin-top: 36px;
  padding: 30px;
}

.menu-note h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 42px;
}

.gallery-card {
  overflow: hidden;
}

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

.gallery-card figcaption {
  padding: 24px;
}

.gallery-card h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.flow {
  display: grid;
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
}

.flow-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  align-items: start;
  background: #fff;
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(240, 138, 36, 0.10);
}

.flow-num {
  width: 58px;
  height: 58px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 22px;
}

.flow-item h3 {
  font-size: 24px;
  margin-bottom: 6px;
  color: var(--orange-dark);
}

.flow-item p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.cta {
  background:
    linear-gradient(135deg, rgba(216, 111, 16, 0.95), rgba(240, 138, 36, 0.93)),
    var(--orange);
  color: #fff;
  text-align: center;
  padding: 78px 0;
}

.cta h2 {
  font-size: clamp(34px, 4.4vw, 48px);
  margin-bottom: 18px;
  line-height: 1.55;
}

.cta p {
  opacity: 0.95;
  margin-bottom: 30px;
  font-size: 22px;
  line-height: 1.9;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.info-table,
.map-box {
  padding: 30px;
}

.info-row {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #f1e0c8;
}

.info-row:last-child {
  border-bottom: none;
}

.info-row dt {
  font-weight: 900;
  color: var(--orange-dark);
  font-size: 18px;
}

.info-row dd {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.access-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
}

.access-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 18px;
}

.access-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.faq-item {
  padding: 26px 30px;
}

.faq-item h3 {
  font-size: 23px;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 18px;
}

.footer {
  background: #3a2c1f;
  color: #fff;
  padding: 38px 0;
  text-align: center;
  font-size: 15px;
}

.footer-inner {
  display: grid;
  place-items: center;
  gap: 12px;
}

.footer-logo {
  width: 82px;
  height: 82px;
  object-fit: contain;
  background: #fff;
  border-radius: 18px;
  padding: 6px;
}

.fixed-cta {
  display: none;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero {
    padding: 72px 0;
  }

  .hero-grid,
  .access-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .feature-grid,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .hero-text {
    font-size: 21px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 82px;
    font-size: 17px;
  }

  .header-inner {
    min-height: 66px;
  }

  .logo-area span {
    font-size: 16px;
  }

  .header-logo {
    width: 44px;
    height: 44px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .hero-text {
    font-size: 19px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    font-size: 16px;
  }

  .hero-card {
    padding: 26px 24px;
  }

  .hero-card h3 {
    font-size: 29px;
  }

  .hero-card li,
  .lead,
  .cta p,
  .problem-card p,
  .feature-card p,
  .menu-card p,
  .menu-note p,
  .flow-item p,
  .info-row dd,
  .faq-item p,
  .gallery-card p,
  .access-copy {
    font-size: 17px;
  }

  .problem-card h3,
  .menu-card h3,
  .gallery-card h3 {
    font-size: 24px;
  }

  .feature-card h3,
  .menu-note h3 {
    font-size: 25px;
  }

  .flow-item {
    grid-template-columns: 1fr;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .gallery-card img {
    height: 260px;
  }

  .access-photo {
    height: 240px;
  }

  .fixed-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 2000;
  }

  .fixed-cta a {
    min-height: 52px;
    border-radius: 14px;
    font-size: 14px;
    box-shadow: none;
  }
}


/* Detailed menu update */
.menu-grid,
.menu-note {
  display: none;
}

.menu-category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 46px;
}

.menu-category-card {
  background: #fff;
  border-radius: 26px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(240, 138, 36, 0.12);
}

.menu-category-main {
  grid-column: span 2;
}

.menu-category-head {
  margin-bottom: 24px;
}

.menu-kicker {
  color: var(--orange-dark);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.menu-category-head h3 {
  color: var(--orange-dark);
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.45;
  margin-bottom: 12px;
}

.menu-category-head p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.9;
}

.price-list {
  display: grid;
  gap: 16px;
}

.price-list.compact {
  gap: 14px;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px;
  border-radius: 20px;
  background: #fff8ee;
  border: 1px solid rgba(240, 138, 36, 0.14);
}

.price-row h4 {
  color: var(--text);
  font-size: 23px;
  line-height: 1.5;
  margin-bottom: 4px;
}

.price-row p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.recommend-row {
  background: linear-gradient(135deg, #fff4df, #fff);
  border: 3px solid var(--orange);
}

.menu-label-inline {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 4px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 8px;
}

.price-box {
  min-width: 150px;
  text-align: right;
  color: var(--orange-dark);
}

.price-box span {
  display: block;
  font-size: 17px;
  font-weight: 900;
}

.price-box strong {
  display: block;
  font-size: 28px;
  line-height: 1.25;
}

.price-box small {
  display: block;
  font-size: 13px;
  font-weight: 800;
}

.menu-detail-note {
  margin-top: 22px;
  padding: 20px;
  border-radius: 18px;
  background: #fffaf3;
  border: 1px dashed rgba(240, 138, 36, 0.36);
}

.menu-detail-note p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.menu-detail-note p + p {
  margin-top: 8px;
}

.aroma-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.aroma-plan {
  padding: 22px;
  border-radius: 20px;
  background: #fff8ee;
  border: 1px solid rgba(240, 138, 36, 0.14);
}

.aroma-plan h4 {
  color: var(--orange-dark);
  font-size: 25px;
  margin-bottom: 12px;
}

.aroma-plan dl {
  display: grid;
  gap: 10px;
}

.aroma-plan dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1e0c8;
}

.aroma-plan dl div:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.aroma-plan dt,
.aroma-plan dd {
  font-size: 18px;
  line-height: 1.6;
}

.aroma-plan dt {
  color: var(--text);
  font-weight: 800;
}

.aroma-plan dd {
  color: var(--orange-dark);
  font-weight: 900;
  white-space: nowrap;
}

.sp-only {
  display: none;
}

@media (max-width: 980px) {
  .menu-category-grid {
    grid-template-columns: 1fr;
  }

  .menu-category-main {
    grid-column: span 1;
  }

  .price-row {
    grid-template-columns: 1fr;
  }

  .price-box {
    text-align: left;
  }

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

@media (max-width: 640px) {
  .menu-category-card {
    padding: 26px 22px;
  }

  .menu-category-head h3 {
    font-size: 28px;
  }

  .menu-category-head p {
    font-size: 17px;
  }

  .price-row {
    padding: 20px;
  }

  .price-row h4 {
    font-size: 22px;
  }

  .price-box strong {
    font-size: 28px;
  }

  .aroma-plan dl div {
    display: grid;
    gap: 4px;
  }

  .aroma-plan dd {
    white-space: normal;
  }

  .sp-only {
    display: inline;
  }
}


.manager-recommend-row {
  background: linear-gradient(135deg, #fff0dd, #ffffff);
  border: 3px solid var(--orange-dark);
}

.menu-label-inline.manager {
  background: var(--orange-dark);
}


.access-map-image {
  object-fit: contain;
  background: #fff;
  padding: 8px;
  border: 1px solid #f1e0c8;
}


/* Smartphone readability optimization */
@media (max-width: 640px) {
  .hero-text br,
  .lead br,
  .problem-card p br,
  .feature-card h3 br,
  .feature-card p br,
  .menu-category-head p br,
  .price-row p br,
  .menu-detail-note p br,
  .gallery-card p br,
  .flow-item p br,
  .access-copy br,
  .faq-item p br,
  .cta p br {
    display: none;
  }

  .section-title h2 br {
    display: none;
  }

  .hero h1 br {
    display: block;
  }

  .hero-card li br {
    display: none;
  }

  .hero {
    padding: 54px 0 58px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.32;
    letter-spacing: -0.02em;
  }

  .hero-text {
    font-size: 18px;
    line-height: 1.9;
    max-width: 100%;
  }

  .section-title h2 {
    font-size: 30px;
    line-height: 1.55;
  }

  .lead {
    font-size: 18px;
    line-height: 1.9;
    text-align: left;
  }

  .problem-card,
  .feature-card,
  .menu-category-card,
  .gallery-card figcaption,
  .flow-item,
  .info-table,
  .map-box,
  .faq-item {
    padding: 22px;
  }

  .problem-card h3,
  .menu-card h3,
  .gallery-card h3 {
    font-size: 23px;
    line-height: 1.45;
  }

  .feature-card h3,
  .menu-note h3,
  .menu-category-head h3 {
    font-size: 25px;
    line-height: 1.55;
  }

  .problem-card p,
  .feature-card p,
  .menu-category-head p,
  .price-row p,
  .menu-detail-note p,
  .gallery-card p,
  .flow-item p,
  .access-copy,
  .faq-item p {
    font-size: 17px;
    line-height: 1.9;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .price-row {
    gap: 12px;
  }

  .price-row h4 {
    font-size: 21px;
    line-height: 1.45;
  }

  .aroma-plan dt,
  .aroma-plan dd {
    font-size: 17px;
  }

  .cta h2 {
    font-size: 30px;
    line-height: 1.55;
  }

  .cta p {
    font-size: 18px;
    text-align: left;
  }

  .access-photo {
    height: auto;
    max-height: none;
  }

  .access-map-image {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .gallery-card img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 34px;
  }

  .btn {
    padding: 0 18px;
    font-size: 15px;
  }

  .logo-area span {
    font-size: 14px;
  }
}


/* Hero beginner card spacing adjustment */
@media (max-width: 640px) {
  .hero-card {
    padding: 24px 24px 22px;
    border-radius: 22px;
  }

  .hero-card h3 {
    font-size: 28px;
    margin-bottom: 14px;
    line-height: 1.35;
  }

  .hero-card ul {
    gap: 10px;
  }

  .hero-card li {
    font-size: 17px;
    line-height: 1.55;
    padding-left: 24px;
  }

  .hero-card li::before {
    top: 0;
    font-size: 15px;
  }

  .hero-visual {
    gap: 14px;
  }
}

@media (max-width: 390px) {
  .hero-card {
    padding: 22px 22px 20px;
  }

  .hero-card h3 {
    font-size: 26px;
  }

  .hero-card li {
    font-size: 16px;
    line-height: 1.5;
  }
}


/* Hero beginner card final optimization */
.hero-card {
  max-width: 520px;
  margin-left: auto;
  padding: 30px 30px 28px;
}

.hero-card h3 {
  line-height: 1.35;
  margin-bottom: 16px;
}

.hero-card ul {
  gap: 12px;
}

.hero-card li {
  font-size: 19px;
  line-height: 1.65;
  padding-left: 26px;
  word-break: normal;
  overflow-wrap: anywhere;
}

.hero-card li::before {
  font-size: 16px;
}

@media (max-width: 640px) {
  .hero-card {
    max-width: none;
    margin-left: 0;
    padding: 22px 22px 20px;
  }

  .hero-card h3 {
    font-size: 27px;
    margin-bottom: 12px;
  }

  .hero-card ul {
    gap: 8px;
  }

  .hero-card li {
    font-size: 17px;
    line-height: 1.55;
    padding-left: 22px;
  }
}

@media (max-width: 390px) {
  .hero-card h3 {
    font-size: 25px;
  }

  .hero-card li {
    font-size: 16px;
    line-height: 1.5;
  }
}


/* Better line wrapping to avoid 1-2 character overflows */
.phrase-block {
  display: inline-block;
}

.hero-card li,
.feature-card h3,
.feature-card p,
.problem-card p,
.menu-category-head p,
.price-row p,
.menu-detail-note p,
.gallery-card p,
.flow-item p,
.access-copy,
.faq-item p,
.cta p {
  text-wrap: pretty;
}

.feature-card h3 {
  letter-spacing: -0.01em;
}

@media (max-width: 640px) {
  .phrase-block {
    display: inline-block;
  }

  .feature-card h3 {
    font-size: 24px;
    line-height: 1.5;
  }

  .hero-card li {
    font-size: 16px;
    line-height: 1.6;
  }
}

@media (max-width: 390px) {
  .feature-card h3 {
    font-size: 23px;
  }

  .hero-card li {
    font-size: 15.5px;
  }
}


/* Menu accordion */
.menu-category-grid,
.menu-grid,
.menu-note {
  display: none;
}

.menu-accordion-list {
  display: grid;
  gap: 18px;
  margin-top: 44px;
}

.menu-accordion {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(240, 138, 36, 0.14);
  overflow: hidden;
}

.menu-accordion summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 28px 30px;
}

.menu-accordion summary::-webkit-details-marker {
  display: none;
}

.summary-text h3 {
  color: var(--orange-dark);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.45;
  margin-bottom: 6px;
  text-wrap: pretty;
}

.summary-text p:not(.menu-kicker) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.summary-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  font-size: 24px;
  line-height: 1;
  transition: 0.2s;
}

.menu-accordion[open] .summary-icon {
  transform: rotate(45deg);
  background: var(--orange-dark);
}

.menu-accordion-body {
  padding: 0 30px 30px;
  animation: accordionFade 0.22s ease;
}

.menu-intro {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 20px;
  text-wrap: pretty;
}

@keyframes accordionFade {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .menu-accordion-list {
    gap: 14px;
    margin-top: 34px;
  }

  .menu-accordion {
    border-radius: 20px;
  }

  .menu-accordion summary {
    padding: 22px;
    gap: 12px;
  }

  .summary-text h3 {
    font-size: 23px;
    line-height: 1.45;
  }

  .summary-text p:not(.menu-kicker) {
    font-size: 15.5px;
  }

  .summary-icon {
    width: 38px;
    height: 38px;
    font-size: 21px;
  }

  .menu-accordion-body {
    padding: 0 22px 24px;
  }

  .menu-intro {
    font-size: 16.5px;
  }
}
