﻿/*
Theme Name: AnTime
Theme URI: https://example.com/
Author: AnTime
Description: WordPress theme for AnTime.
Version: 1.0.0
Text Domain: antime
*/

:root {
  --font-serif: "Kaisei Tokumin", "Noto Serif JP", serif;
  --font-sans: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  --color-bg: #ffffff;
  --color-bg-alt: #f5efe0;
  --color-accent: #e07820;
  --color-accent-dark: #c96411;
  --color-footer: #2b1f14;
  --color-text: #333333;
  --color-muted: #6b6259;
  --color-border: #e6dcc8;
  --color-placeholder: #e7ded1;
  --color-surface: #fffaf3;
  --shadow-soft: 0 14px 40px rgba(43, 31, 20, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --content-width: 900px;
  --header-height: 50px;
  color: #7a4a2a;
}
@media screen and (min-width: 768px) {
  
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.8;
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 400;
}

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

button {
  font: inherit;
}

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

.container {
  width: min(calc(100% - 40px), var(--content-width));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-alt {
  background:
    radial-gradient(
      circle at top left,
      rgba(224, 120, 32, 0.06),
      transparent 28%
    ),
    var(--color-bg-alt);
}

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.25;
}

.section-heading p {
  margin: 0 auto;
  max-width: 680px;
  color: var(--color-muted);
  font-size: 1rem;
}

/*--------header----------*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(51, 51, 51, 0.08);
}

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__img-box {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.header__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sns-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: flex-start;
}

.sns-links__heading {
  font-family: var(--font-sans);
  flex: 0 0 100%;
  margin: 0 0 4px;
  color: inherit;
  font-size: 0.88rem;
  line-height: 1.6;
}

.sns-links__items {
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 100%;
  gap: 10px 18px;
  align-items: center;
}

.sns-link {
  font-family: var(--font-sans);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.sns-link:hover {
  opacity: 0.7;
}

.sns-link__icon {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.sns-link__text {
  line-height: 1;
}

.sns-links--drawer {
  display: none;
}

.menu-toggle {
  display: none;
  width: 64px;
  height: 56px;
  padding: 0;
  border: 1px solid rgba(154, 106, 46, 0.2);
  border-radius: 24px;
  background:
    radial-gradient(
      circle at top,
      rgba(255, 255, 255, 0.9),
      rgba(255, 248, 239, 0.95)
    ),
    #fffaf3;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  cursor: pointer;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.85),
    0 8px 18px rgba(98, 68, 28, 0.1);
  transition:
    background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-toggle:hover {
  background:
    radial-gradient(
      circle at top,
      rgba(255, 252, 247, 0.98),
      rgba(247, 232, 209, 0.95)
    ),
    #fff6ea;
  border-color: rgba(200, 134, 42, 0.38);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.9),
    0 10px 20px rgba(98, 68, 28, 0.14);
}

.menu-toggle.is-open {
  background:
    radial-gradient(
      circle at top,
      rgba(245, 226, 198, 0.95),
      rgba(234, 205, 164, 0.98)
    ),
    #f0d8b3;
  border-color: rgba(166, 102, 29, 0.34);
  box-shadow:
    inset 0 4px 10px rgba(127, 78, 24, 0.14),
    inset 0 -2px 0 rgba(255, 255, 255, 0.25),
    0 4px 10px rgba(98, 68, 28, 0.1);
  transform: translateY(1px) scale(0.985);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  flex-shrink: 0;
  background: var(--color-text);
  border-radius: 999px;
  transform-origin: center;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* .dorayaki-icon {
  position: relative;
  display: flex;
  width: 34px;
  height: 28px;
  align-items: center;
  justify-content: center;
}

.dorayaki-top,
.dorayaki-anko,
.dorayaki-bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.dorayaki-top,
.dorayaki-bottom {
  width: 32px;
  height: 10px;
  background: #c8862a;
}

.dorayaki-top {
  top: 2px;
  border-radius: 40px 40px 6px 6px;
}

.dorayaki-anko {
  top: 12px;
  width: 22px;
  height: 5px;
  background: #3b1a0a;
  border-radius: 999px;
}

.dorayaki-bottom {
  top: 18px;
  border-radius: 6px 6px 40px 40px;
}

.menu-toggle.is-open .dorayaki-top {
  transform: translateX(-50%) translateY(6px) rotate(25deg);
}

.menu-toggle.is-open .dorayaki-anko {
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
}

.menu-toggle.is-open .dorayaki-bottom {
  transform: translateX(-50%) translateY(-6px) rotate(-25deg);
} */

.site-nav {
  font-family: var(--font-sans);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--color-muted);
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--color-accent);
}

.btn {
  font-family: var(--font-sans);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(224, 120, 32, 0.15);
}

.btn-primary {
  background: var(--color-accent);
  color: #ffffff;
}

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

.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn-secondary:hover {
  background: rgba(224, 120, 32, 0.08);
  color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}

.btn-full {
  width: 100%;
}

.site-header .btn {
  min-height: 36px;
  padding: 0 14px;
  font-size: 0.86rem;
}

/* ----------hero-------- */

.hero {
  padding-top: 20px;
  /* margin-top: var(--header-height); */
  /* padding-top: calc(var(--header-height) + 72px); */
  padding-bottom: 96px;
  background:
    radial-gradient(
      circle at top right,
      rgba(224, 120, 32, 0.16),
      transparent 26%
    ),
    linear-gradient(180deg, #fff9f1 0%, #ffffff 68%);
}

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

.hero-slider {
  position: relative;
  width: min(100%, 760px);
  aspect-ratio: 16 / 9;
  margin: 0 auto 42px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--color-placeholder);
  box-shadow: var(--shadow-soft);
}

.hero-slider__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slider__img.is-active {
  opacity: 1;
}

.eyebrow {
  font-family: var(--font-sans);
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(224, 120, 32, 0.12);
  color: var(--color-accent-dark);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.hero h1 {
  margin: 0 auto;
  font-size: clamp(1.3rem, 5vw, 4.6rem);
  line-height: 1.18;
  letter-spacing: 0;
  font-weight: 400;
  text-align: left;
  width: min(80vw, 780px);
}

.hero h1 span {
  white-space: nowrap;
}

.hero__text {
  font-family: var(--font-sans);
  max-width: 700px;
  margin: 22px auto 0;
  color: var(--color-muted);
  font-size: 1.05rem;
  text-align: left;
}

.hero-visual {
  margin: 44px auto 0;
  width: min(100%, 760px);
  border-radius: 28px;
  padding: 28px;
  background:
    linear-gradient(160deg, rgba(43, 31, 20, 0.12), rgba(43, 31, 20, 0.02)),
    linear-gradient(135deg, #efe7db, #ddd1bf);
  border: 1px solid #d7c8b3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #5f4b39;
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.hero-visual-badge {
  font-family: var(--font-sans);
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 15px;
}

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

.hero-visual-copy strong {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
}

.hero__strong-img-box {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px;
  background: var(--color-placeholder);
}

.hero__strong-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual-copy span {
  font-family: var(--font-sans);
  color: rgba(43, 31, 20, 0.7);
}

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

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 1fr);
  gap: 32px;
  align-items: start;
}

.text-block h2,
.details-copy h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  line-height: 1.3;
}

.text-block p,
.details-copy p {
  font-family: var(--font-sans);
  margin: 0 0 18px;
  color: var(--color-muted);
}

.access-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 32px 32px;
  align-items: start;
}

.access-heading {
  grid-column: 1 / -1;
}

.access-heading h2 {
  margin-bottom: 0;
}

.access-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-placeholder);
  box-shadow: var(--shadow-soft);
}

.access-photo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.access-side {
  display: grid;
  gap: 22px;
}

.access-map {
  min-height: 280px;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  background: var(--color-placeholder);
}

.access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.info-card,
.service-card,
.plan-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.info-card,
.service-card {
  background: linear-gradient(180deg, #fffdf9, #ffffff);
}

.info-card h3,
.service-card h3,
.plan-card h3 {
  margin: 0 0 18px;
  font-size: 1.15rem;
}

.key-list,
.service-list,
.plan-features,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.key-list li,
.service-list li,
.plan-features li {
  font-family: var(--font-sans);
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  color: var(--color-muted);
}

.key-list li::before,
.service-list li::before,
.plan-features li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  transform: translateY(-50%);
}

/* -------------features-------------- */

.features__title {
  text-align: center;
  padding-bottom: 20px;
}

.features__img-box {
  aspect-ratio: 16 / 9;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--color-placeholder);
}
.features__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.features__top-text {
  text-align: left;
}

.features__item-img-box {
  aspect-ratio: 4 / 3;
  margin-top: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--color-placeholder);
}

.features__item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(43, 31, 20, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: radial-gradient(circle at top left, #f7efe0, #dcc9aa);
  margin-bottom: 18px;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.08rem;
}

.feature-card p {
  font-family: var(--font-sans);
  margin: 0;
  color: var(--color-muted);
}

.feature-copy {
  font-family: var(--font-sans);
  color: var(--color-muted);
}

.feature-copy p + p,
.feature-note {
  margin-top: 12px;
}

.feature-caution {
  color: #b23b2d;
  font-weight: 700;
}

.feature-note summary {
  color: var(--color-muted);
  cursor: pointer;
  list-style: none;
}

.feature-note summary::-webkit-details-marker {
  display: none;
}

.feature-note summary span {
  color: var(--color-accent-dark);
  font-weight: 700;
  white-space: nowrap;
}

.feature-note[open] summary span {
  display: none;
}

.feature-note p {
  margin-top: 12px;
}

.cta-panel {
  text-align: center;
  padding: 72px 32px;
  border-radius: 32px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.54),
      rgba(255, 255, 255, 0.28)
    ),
    linear-gradient(120deg, rgba(224, 120, 32, 0.07), rgba(255, 255, 255, 0));
  border: 1px solid rgba(43, 31, 20, 0.08);
}

.cta__img-box {
  max-width: 720px;
  margin-inline: auto;
}

.cta-panel h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.24;
}

.cta-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-title span {
  white-space: nowrap;
}

.cta-panel p {
  font-family: var(--font-sans);
  max-width: 640px;
  margin: 0 auto 28px;
  color: var(--color-muted);
  text-align: left;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.plan-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
}

.plan-card.recommended {
  border: 2px solid var(--color-accent);
  position: relative;
  background: linear-gradient(180deg, #fffaf3, #ffffff);
}

.plan-badge {
  font-family: var(--font-sans);
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(224, 120, 32, 0.12);
  color: var(--color-accent-dark);
  font-weight: 700;
  font-size: 0.82rem;
}

.plan-price {
  margin: 0 0 14px;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1.2;
}

.plan-price span {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-muted);
  font-weight: 500;
  margin-left: 6px;
}

.menu-copy {
  font-family: var(--font-sans);
  margin: 0 0 18px;
  color: var(--color-muted);
}

.plan-features {
  margin-bottom: 28px;
  flex: 1;
}

.plan-features li::before {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: transparent;
  border: 2px solid var(--color-accent);
  top: 0.85em;
}

.menu-grid .plan-card {
  background: linear-gradient(180deg, #fffdf9, #ffffff);
}

.menu-card-label {
  justify-self: start;
  margin: 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(224, 120, 32, 0.11);
  color: var(--color-accent-dark);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
}

.menu-card-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: baseline;
  font-family: var(--font-sans);
}

.menu-card-price {
  color: var(--color-accent-dark);
  font-size: 1.15rem;
  font-weight: 800;
}

.menu-card-set {
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.service-more,
.news-actions,
.access-actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.menu__item-img-box {
  text-align: center;
  aspect-ratio: 169 / 115;
  overflow: hidden;
  border-radius: 20px;
  background: var(--color-placeholder);
}

.menu__item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

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

.news-card {
  background: linear-gradient(180deg, #fffdf9, #ffffff);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  min-width: 0;
}

.news-card:hover {
  border-color: rgba(224, 120, 32, 0.36);
  box-shadow: 0 16px 36px rgba(43, 31, 20, 0.11);
  transform: translateY(-2px);
}

.news-card a {
  display: grid;
  gap: 10px;
  height: 100%;
  padding: 24px;
}

.news-card time {
  font-family: var(--font-sans);
  color: var(--color-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.news-card__category {
  justify-self: start;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(224, 120, 32, 0.11);
  color: var(--color-accent-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

.news-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.45;
}

.news-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.news-page {
  padding-top: var(--header-height);
}

.news-article-list {
  display: grid;
  gap: 28px;
}

.news-article {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: start;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.news-article__img-box {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 18px;
  background: var(--color-placeholder);
}

.news-article__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-article__body {
  font-family: var(--font-sans);
}

.news-article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.news-article__meta time {
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.news-article h2 {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.35;
}

.news-article p {
  margin: 0 0 14px;
  color: var(--color-muted);
}

.news-article p:last-child {
  margin-bottom: 0;
}

.news-archive,
.single-news {
  padding-top: var(--header-height);
}

.news-hero {
  padding: 72px 0 56px;
  background:
    radial-gradient(
      circle at top right,
      rgba(224, 120, 32, 0.14),
      transparent 26%
    ),
    linear-gradient(180deg, #fff9f1 0%, #ffffff 78%);
  text-align: center;
}

.news-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
}

.news-hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 18px auto 0;
  color: var(--color-muted);
}

.news-list-section {
  background: #ffffff;
}

.news-archive-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-item {
  background: linear-gradient(180deg, #fffdf9, #ffffff);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.news-item:hover {
  border-color: rgba(224, 120, 32, 0.36);
  box-shadow: 0 16px 36px rgba(43, 31, 20, 0.11);
  transform: translateY(-2px);
}

.news-item-link {
  display: grid;
  grid-template-columns: minmax(180px, 0.48fr) minmax(0, 1fr);
  gap: 22px;
  height: 100%;
  padding: 22px;
}

.news-item-link--text-only {
  grid-template-columns: 1fr;
}

.news-item-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
  background: var(--color-placeholder);
}

.news-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-item-body {
  display: grid;
  align-content: start;
  gap: 10px;
  font-family: var(--font-sans);
}

.news-item-date {
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.news-item-title {
  margin: 0;
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  line-height: 1.42;
}

.news-item-excerpt {
  margin: 0;
  color: var(--color-muted);
}

.news-item-more {
  color: var(--color-accent-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.pagination {
  margin-top: 36px;
  font-family: var(--font-sans);
  text-align: center;
}

.pagination .nav-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.pagination .page-numbers {
  min-width: 38px;
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-text);
  font-weight: 700;
}

.pagination .page-numbers.current {
  border-color: var(--color-accent);
  background: rgba(224, 120, 32, 0.12);
  color: var(--color-accent-dark);
}

.news-empty {
  margin: 0;
  color: var(--color-muted);
  text-align: center;
}

.single-news-article {
  background: #ffffff;
}

.single-news-article .container {
  max-width: 920px;
}

.single-news-header {
  margin-bottom: 28px;
  text-align: center;
}

.single-news-date {
  display: inline-block;
  margin-top: 8px;
  color: var(--color-muted);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
}

.single-news-title {
  margin: 14px 0 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.3;
}

.single-news-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
}

.single-news-categories a {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(224, 120, 32, 0.11);
  color: var(--color-accent-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.single-news-media {
  margin-bottom: 30px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-placeholder);
  box-shadow: var(--shadow-soft);
}

.single-news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-news-content {
  font-family: var(--font-sans);
  color: var(--color-text);
  line-height: 1.9;
}

.single-news-content > * {
  margin-top: 0;
  margin-bottom: 1.2em;
}

.single-news-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.single-news-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  font-family: var(--font-sans);
}

.single-news-nav a {
  color: var(--color-accent-dark);
  font-weight: 700;
}

.single-news-next {
  text-align: right;
}

.single-news-back {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.menu-page {
  /* padding-top: var(--header-height); */
}

.menu-hero {
  padding: 72px 0 56px;
  background:
    radial-gradient(
      circle at top right,
      rgba(224, 120, 32, 0.14),
      transparent 26%
    ),
    linear-gradient(180deg, #fff9f1 0%, #ffffff 78%);
  text-align: center;
}

.menu-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.2;
}

.menu-hero .menu-hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.menu-hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 18px auto 0;
  color: var(--color-muted);
}

.menu-hero .menu-hero-lead {
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.8;
}

.menu-hero .menu-hero-note {
  margin-top: 8px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.menu-anchor-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.menu-anchor-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.menu-anchor-list a:hover {
  color: var(--color-accent-dark);
  border-color: rgba(224, 120, 32, 0.42);
  background: #ffffff;
}

.menu-detail {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.contact-page {
  /* padding-top: var(--header-height); */
}

.contact-layout {
  max-width: 720px;
}

.contact-form {
  display: grid;
  gap: 22px;
  padding: 32px;
  background: linear-gradient(180deg, #fffdf9, #ffffff);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.contact-form .wpcf7-form {
  display: grid;
  gap: 22px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-weight: 700;
  color: var(--color-text);
}

.contact-form p {
  margin: 0;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--color-text);
}

.form-field input,
.form-field textarea,
.contact-form input:not([type="submit"]),
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 12px 14px;
  background: #ffffff;
  color: var(--color-text);
  font: inherit;
}

.form-field textarea,
.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.contact-form input:not([type="submit"]):focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(224, 120, 32, 0.24);
  border-color: var(--color-accent);
}

.contact-submit,
.contact-form input[type="submit"] {
  font-family: var(--font-sans);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--color-accent);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  justify-self: start;
}

.contact-form input[type="submit"]:hover {
  background: var(--color-accent-dark);
}

.contact-form-empty {
  color: var(--color-muted);
}

.menu-detail-layout {
  display: grid;
  gap: 32px;
}

.menu-detail-heading {
  font-family: var(--font-sans);
  max-width: 760px;
}

.menu-detail-heading h2 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.25;
}

.menu-detail-heading p {
  margin: 0 0 16px;
  color: var(--color-muted);
}

.menu-detail-heading p:last-child {
  margin-bottom: 0;
}

.menu-note {
  margin-top: 10px;
  color: var(--color-muted);
}

.menu-note summary {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-accent-dark);
  font-weight: 700;
  cursor: pointer;
}

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

.menu-note summary::after {
  content: "+";
  margin-left: 8px;
}

.menu-note[open] summary::after {
  content: "-";
}

.menu-note p {
  margin: 12px 0 0;
  padding: 14px 16px;
  border-left: 3px solid rgba(224, 120, 32, 0.32);
  background: rgba(255, 250, 243, 0.72);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.menu-note-recommend {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  font-weight: 700;
  color: var(--color-accent-dark);
}

.menu-note-recommend-img {
  width: 72px;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
}

.menu-detail-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.menu-detail-img-box {
  display: grid;
  gap: 16px;
}

.menu-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-detail-image-list {
  display: grid;
  gap: 16px;
}

.menu-detail-image-list .menu-detail-img {
  aspect-ratio: 169 / 115;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-placeholder);
  box-shadow: var(--shadow-soft);
}

.menu-detail-copy {
  font-family: var(--font-sans);
}

.menu-category {
  margin: 0 0 10px;
  color: var(--color-accent-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.menu-detail-copy p {
  margin: 0 0 22px;
  color: var(--color-muted);
}

.menu-items {
  display: grid;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--color-border);
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  gap: 10px 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(230, 220, 200, 0.86);
  align-items: start;
}

.menu-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

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

.menu-item-header {
  grid-column: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: baseline;
}

.menu-item-media {
  grid-column: 1;
  grid-row: 1 / span 3;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-placeholder);
}

.menu-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item-name {
  margin: 0;
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.menu-item-label {
  display: inline-block;
  margin-left: 8px;
  color: var(--color-accent);
  font-size: 0.82rem;
  white-space: nowrap;
}

.menu-item-prices {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 10px;
  color: var(--color-accent-dark);
  font-weight: 700;
  white-space: nowrap;
}

.menu-item-price:empty,
.menu-item-set:empty {
  display: none;
}

.menu-item-set {
  color: var(--color-muted);
  font-size: 0.92rem;
}

.menu-item-description {
  grid-column: 2;
  margin: 0;
  color: var(--color-muted);
}

.menu-item-note {
  grid-column: 2;
  margin: 0;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.menu-item .detail-list {
  grid-column: 2;
}

.menu-item--full .menu-item-header,
.menu-item--full .menu-item-description,
.menu-item--full .menu-item-note,
.menu-item--full .detail-list,
.menu-item--full .menu-item-variants {
  grid-column: 1;
}

.menu-item-variants {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 4px;
}

.menu-item-variant {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.menu-item-variant-img {
  width: 84px;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--color-placeholder);
}

.menu-item-variant p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.menu-item-variant strong,
.menu-item-variant span {
  display: block;
}

.menu-item-variant strong {
  color: var(--color-text);
}

.menu-detail-copy--text-only .menu-item {
  grid-template-columns: 1fr;
}

.menu-detail-copy--text-only .menu-item-header,
.menu-detail-copy--text-only .menu-item-description,
.menu-detail-copy--text-only .menu-item-note,
.menu-detail-copy--text-only .menu-item .detail-list {
  grid-column: 1;
}

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

.detail-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--color-muted);
}

.detail-list li::before {
  content: "";
  position: absolute;
  top: 0.85em;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  transform: translateY(-50%);
}

.faq-list {
  border-top: 1px solid rgba(51, 51, 51, 0.12);
}

.faq-item {
  border-bottom: 1px solid rgba(51, 51, 51, 0.12);
}

.faq-question {
  font-family: var(--font-sans);
  width: 100%;
  background: transparent;
  border: 0;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  cursor: pointer;
}

summary.faq-question {
  list-style: none;
}

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

.faq-question:hover {
  color: var(--color-accent-dark);
}

.faq-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.1);
}

.faq-item[open] .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.1);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner > * {
  font-family: var(--font-sans);
  margin: 0;
  padding: 0 0 24px;
  color: var(--color-muted);
}

.faq-answer-inner > * + * {
  margin-top: 12px;
}

.faq-empty {
  margin: 0;
  color: var(--color-muted);
  text-align: center;
}

.site-footer {
  background: var(--color-footer);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding-bottom: 36px;
}

.footer-column h3 {
  margin: 0 0 16px;
  font-size: 1rem;
  color: #ffffff;
}

.footer-links li {
  font-family: var(--font-sans);
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: #ffffff;
}

.sns-links--footer {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
  font-family: var(--font-sans);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0 26px;
  text-align: center;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1024px) {
  :root {
    --content-width: 920px;
  }

  .header-inner {
    gap: 16px;
  }

  .nav-wrap {
    gap: 16px;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.9rem;
  }

  .btn {
    padding: 0 22px;
  }

  .features-grid,
  .news-list,
  .plans-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  }

  .access-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 1fr);
  }
}

@media (max-width: 1120px) {
  .site-header {
    overflow: visible;
  }

  .header-inner {
    position: relative;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0;
    height: var(--header-height);
  }

  .logo {
    margin-right: auto;
  }

  .menu-toggle {
    display: inline-flex;
    flex-shrink: 0;
    width: 44px;
    height: 40px;
    border-radius: 16px;
  }

  .nav-wrap {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(51, 51, 51, 0.08);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
  }

  .nav-wrap.is-open {
    display: flex;
  }

  .site-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(51, 51, 51, 0.08);
    white-space: nowrap;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .nav-actions {
    display: grid;
    gap: 10px;
  }

  .nav-actions .btn {
    width: 100%;
  }

  .sns-links--drawer {
    display: flex;
    padding-top: 4px;
  }
}

@media (min-width: 901px) {
  .access-side {
    display: contents;
  }

  .access-side .service-card {
    grid-column: 2;
  }

  .access-map {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 420px;
    margin-top: 24px;
    border-radius: var(--radius-lg);
  }

  .access-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 50px;
  }

  .site-header {
    overflow: visible;
  }

  .section {
    padding: 72px 0;
  }

  .header-inner {
    position: relative;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0;
    height: var(--header-height);
  }

  .logo {
    margin-right: auto;
  }

  .menu-toggle {
    display: inline-flex;
    flex-shrink: 0;
    width: 44px;
    height: 40px;
    border-radius: 16px;
  }

  .nav-wrap {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(51, 51, 51, 0.08);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
  }

  .nav-actions {
    display: grid;
    gap: 10px;
  }

  .sns-links--drawer {
    display: flex;
    padding-top: 4px;
  }

  .nav-wrap.is-open {
    display: flex;
  }

  .site-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(51, 51, 51, 0.08);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .nav-actions .btn {
    width: 100%;
  }

  .hero {
    padding-bottom: 72px;
  }

  .hero-slider {
    width: 100%;
    margin: 0 auto 32px;
  }

  .hero-slider {
    border-radius: 28px;
  }

  .hero h1 {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(1.18rem, 5.6vw, 2rem);
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .split-layout,
  .access-layout,
  .features-grid,
  .news-list,
  .news-item-link,
  .news-article,
  .plans-grid,
  .footer-grid,
  .single-news-nav,
  .menu-detail-inner {
    grid-template-columns: 1fr;
  }

  .access-heading {
    grid-column: auto;
  }

  .access-photo {
    aspect-ratio: 16 / 10;
  }

  .access-side {
    gap: 18px;
  }

  .access-map {
    min-height: 320px;
  }

  .menu-hero {
    padding: 56px 0 44px;
  }

  .menu-anchor-list {
    justify-content: stretch;
  }

  .menu-anchor-list a {
    flex: 1 1 150px;
  }

  .cta-panel {
    padding: 56px 24px;
  }

  .hero-visual {
    padding: 22px;
  }

  .info-card,
  .service-card,
  .plan-card,
  .feature-card,
  .news-card a,
  .news-article {
    padding: 24px;
  }

  .news-article__img-box {
    width: 100%;
    aspect-ratio: 16 / 10;
  }

  .news-item-media {
    aspect-ratio: 16 / 10;
  }

  .single-news-next {
    text-align: left;
  }

  .menu-item-header {
    grid-column: 1;
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .menu-item-media,
  .menu-item-description,
  .menu-item-note,
  .menu-item .detail-list,
  .menu-item-variants {
    grid-column: 1;
  }

  .menu-item-media {
    grid-row: auto;
  }

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

  .menu-item-prices {
    justify-content: flex-start;
    white-space: normal;
  }

  .contact-form {
    padding: 24px;
  }

  .faq-question {
    padding: 20px 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 24px), var(--content-width));
  }

  .section {
    padding: 56px 0;
  }

  #access.section {
    padding-bottom: 64px;
  }

  .header-inner {
    gap: 12px;
    padding: 0;
  }

  .header__img-box {
    width: 38px;
    height: 38px;
  }

  .logo {
    font-size: 1.05rem;
  }

  .menu-toggle {
    width: 42px;
    height: 38px;
    border-radius: 14px;
  }

  .nav-wrap {
    top: calc(100% + 8px);
    padding: 16px;
    border-radius: 16px;
  }

  .hero {
    padding-bottom: 56px;
  }

  .hero-slider {
    margin-bottom: 28px;
  }

  .hero-slider,
  .hero-visual,
  .access-photo,
  .access-map,
  .features__img,
  .features__item-img,
  .menu__item-img,
  .menu-detail-img-box,
  .news-article__img-box {
    border-radius: 16px;
  }

  .hero__text,
  .section-heading p,
  .text-block p,
  .details-copy p,
  .cta-panel p,
  .menu-detail-copy p {
    font-size: 0.96rem;
  }

  .section-heading {
    margin-bottom: 32px;
    text-align: left;
  }

  .hero-actions {
    gap: 12px;
  }

  .btn {
    width: 100%;
    min-width: 0;
    padding-right: 18px;
    padding-left: 18px;
    white-space: normal;
  }

  .site-header .btn {
    white-space: nowrap;
  }

  .btn {
    min-height: 48px;
    padding: 0 18px;
  }

  .cta-panel {
    padding: 40px 18px;
    border-radius: 20px;
  }

  .info-card,
  .service-card,
  .plan-card,
  .feature-card,
  .news-article {
    padding: 20px;
    border-radius: 18px;
  }

  .news-card a {
    padding: 20px;
  }

  .contact-form {
    padding: 20px;
    border-radius: 18px;
  }

  .contact-submit {
    width: 100%;
  }

  .menu-hero {
    padding: 44px 0 36px;
  }

  .menu-anchor-list a {
    flex-basis: 100%;
  }

  .footer-grid {
    gap: 20px;
  }
}

@media screen and (min-width: 560px) {
  .access-actions .btn-reservation {
    min-width: 190px;
    padding: 0 40px;
  }
}

.plan-price span {
  line-height: 0.8;
}

.plan-price .hot {
  color: #c65a28;
  font-weight: 700;
}

  .plan-price .ice {
    color: #2f6fa8;
    font-weight: 700;
  }

@media (min-width: 320px) and (max-width: 340px) {
  .hero h1 {
    font-size: 1.08rem;
  }
}
