/* ================================================================
   RESET
================================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

:root {
  --bg-main: #f7f4ee;
  --bg-secondary: #efe9e1;
  --accent: #b44a3a;
  --accent-dark: #8c3529;
  --text: #2e2e2e;
  --text-muted: #6b6058;
  --border: #d8cec2;
  --white: #ffffff;

  --font-serif: "Shippori Mincho", "Noto Serif JP", serif;
  --font-sans: "Noto Sans JP", sans-serif;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-soft: 0 4px 24px rgba(46, 46, 46, 0.08);
  --shadow-card: 0 8px 40px rgba(46, 46, 46, 0.12);

  --container-padding: 0 80px;
}

body {
  background: var(--bg-main);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.8;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

/* ============================
       Utility
============================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.container-padding {
  padding: var(--container-padding);
}

.u-section-label {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.u-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 3.2vw, 2.3rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 18px;
}

.u-divider {
  width: 44px;
  height: 2px;
  background: var(--accent);
  margin: 18px 0 26px;
}
.u-divider--center {
  margin-left: auto;
  margin-right: auto;
}

.u-body-text {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.95;
  max-width: 560px;
}
.u-body-text--center {
  margin: 0 auto;
  text-align: center;
}
.section__header {
  text-align: center;
  margin-bottom: 64px;
}

/* ============================
       Header / Navigation
    ============================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#header.scrolled {
  box-shadow: var(--shadow-soft);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 40px 80px;
}

.header__logo {
  font-family: var(--font-serif);
  font-size: clamp(0.6rem, 1.8vw, 0.7rem);
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.04em;
  line-height: 1.5;
  white-space: nowrap;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  font-size: clamp(0.75rem, 1vw, 1rem);
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.15em;
  transition: color var(--transition);
  font-weight: 400;
}
nav a:hover {
  color: var(--accent);
}

nav .btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  color: var(--white);
}

.header-cta {
  background: var(--accent);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 4px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  transition: background var(--transition);
}
.header-cta:hover {
  background: var(--accent-dark);
  color: var(--white);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* ============================
       Hero
============================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url("../images/hero-image.jpg") center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 14s ease-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  animation: fadeUp 1.1s 0.3s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__tag {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  padding: 5px 14px;
  margin-bottom: 20px;
  font-family: var(--font-serif);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-catch {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  letter-spacing: 0.06em;
  font-weight: 300;
}

.hero__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  padding: 8px 16px;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 4px;
  transition:
    background var(--transition),
    transform var(--transition);
  font-weight: 500;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  padding: 16px 32px;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 4px;
  transition:
    background var(--transition),
    border-color var(--transition);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.9);
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  z-index: 2;
  cursor: pointer;
  animation: fadeIn 2s 1.5s both;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  animation: scrollAnim 1.8s 2s infinite;
}
@keyframes scrollAnim {
  from {
    top: -100%;
  }
  to {
    top: 200%;
  }
}

/* ============================
       Scroll Reveal
============================ */
.u-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.u-reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================
       Mobile Nav Overlay
============================ */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--bg-main);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  overflow-y: auto;
}
.nav__overlay.open {
  display: flex;
}
.nav__overlay a {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.1em;
}
.nav__overlay .btn-primary {
  font-size: 1rem;
  padding: 14px 32px;
}

#nav-toggle-btn.active span:nth-child(1) {
  transform: rotate(45deg);
  transform-origin: 0% 0%;
}

#nav-toggle-btn.active span:nth-child(2) {
  opacity: 0;
}

#nav-toggle-btn.active span:nth-child(3) {
  transform: rotate(-45deg);
  transform-origin: 0% 100%;
}

/* ============================
       concept
============================ */

.concept {
  background: var(--bg-main);
  padding: 108px 0;
}
.concept__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.concept__media {
  position: relative;
}
.concept__image {
  height: 520px;
  border-radius: 2px;
  overflow: hidden;
}
.concept__image img {
  height: 100%;
  transition: transform 0.9s ease;
}
.concept__image:hover img {
  transform: scale(1.04);
}
.concept__badge {
  position: absolute;
  bottom: -22px;
  right: -22px;
  width: 116px;
  height: 116px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  font-family: var(--font-serif);
  box-shadow: var(--shadow-card);
}
.concept__badge-price {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
}
.concept__badge-price sup {
  font-size: 0.75rem;
  vertical-align: super;
}
.concept__badge-label {
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  margin-top: 4px;
}
.concept__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-top: 30px;
}
.concept__feature {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.concept__feature-icon {
  color: var(--accent);
  font-size: 0.48rem;
  margin-top: 7px;
  flex-shrink: 0;
}

/* ============================
       MENU
============================ */

.menu {
  background: var(--bg-secondary);
  padding: 108px 0;
}
.menu__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.menu__tab {
  padding: 9px 24px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: none;
  cursor: pointer;
  font-family: var(--font-serif);
  letter-spacing: 0.08em;
  transition: all var(--transition);
}
.menu__tab--active,
.menu__tab:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.menu__panel {
  display: none;
}
.menu__panel--active {
  display: block;
}
.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.menu__note {
  text-align: center;
  margin-top: 44px;
}
.menu__note-inner {
  display: inline-block;
  background: var(--white);
  border-left: 3px solid var(--accent);
  padding: 12px 28px;
  font-size: 0.84rem;
  color: var(--text-muted);
  border-radius: 0 3px 3px 0;
}

.menu-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.menu-card__body {
  padding: 16px 18px 18px;
}
.menu-card__tag {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-family: var(--font-serif);
  margin-bottom: 5px;
}
.menu-card__name {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
  line-height: 1.4;
}
.menu-card__desc {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.menu-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.menu-card__price {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
}
.menu-card__badge {
  font-size: 0.6rem;
  background: var(--accent);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 2px;
  letter-spacing: 0.1em;
  font-family: var(--font-serif);
}
/* ============================
       Responsive
============================ */

.atmosphere-section {
  background: var(--white);
  padding: 108px 0;
}

/* Slider Container */
.atmosphereSwiper {
  padding-bottom: 80px !important;
}

.atmosphereSwiper .swiper-slide {
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
}

.atmosphereSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  position: relative;
  max-width: 100%;
}

.atmosphereSwiper .swiper-pagination {
  position: static !important;
  width: auto !important;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
}

.atmosphereSwiper .swiper-pagination-bullet {
  background: var(--border);
  opacity: 1;
}

.atmosphereSwiper .swiper-pagination-bullet-active {
  background: var(--accent);
}

.swiper-navigation-group {
  display: flex;
  gap: 12px;
}

.atmosphereSwiper .swiper-button-next::after,
.atmosphereSwiper .swiper-button-prev::after {
  display: none !important;
}

.atmosphereSwiper .swiper-button-next,
.atmosphereSwiper .swiper-button-prev {
  position: static !important;
  width: 50px !important;
  height: 50px !important;
  margin: 0 !important;
  border: 2px solid var(--accent);
  background: transparent;
  border-radius: 50%;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

/* Hover State (Red Circle Fill, White Arrow) */
.atmosphereSwiper .swiper-button-next:hover,
.atmosphereSwiper .swiper-button-prev:hover {
  background-color: var(--accent); /* Red Fill */
  color: #ffffff; /* White Arrow */
}

/* Ensure SVG scales correctly */
.atmosphereSwiper .swiper-button-next svg,
.atmosphereSwiper .swiper-button-prev svg {
  width: 22px;
  height: 22px;
}

/* ============================
       NEWS
============================ */
.news-section {
  padding: 108px 0;
  background: var(--bg-secondary);
}
.news__page-section {
  padding: 108px 0;
  background: var(--white);
}
.news__list {
  list-style: none;
  margin-bottom: 60px;
}
.news__item {
  display: grid;
  grid-template-columns: 130px auto 1fr;
  gap: 24px;
  align-items: baseline;
  padding: clamp(22px, 2.5vw, 28px) 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
}
.news__item:hover {
  padding-left: 10px;
  color: var(--accent);
  cursor: pointer;
}
.news__item time {
  font-size: 0.85rem;
  color: var(--text-muted);
  width: 100px;
}
.news__categories {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.news__category {
  font-size: 0.7rem;
  background: var(--accent);
  color: #fff;
  padding: 2px 8px;
  border-radius: 2px;
  width: fit-content;
}
.news__date {
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.news__text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
  font-weight: 400;
}
.news-preview__link-all {
  display: block;
  width: max-content;
  margin: 1.5rem auto 0;
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--accent);
  text-align: center;
  letter-spacing: 0.1em;
  padding-bottom: 2px;
  transition: gap var(--transition);
  text-decoration: none;
}
.news__list-btn {
  text-align: center;
  margin: 16px auto;
}

/* ================================================================
   NEWS LIST
   ================================================================ */

.nwl__filters {
  position: sticky;
  top: 88px;
  z-index: 30;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 clamp(36px, 5vw, 56px);
  padding: 14px;
  border: 1px solid rgba(12, 26, 46, 0.08);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(12, 26, 46, 0.06);
}

.nwl__filter {
  flex: 0 0 auto;
  appearance: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  color: var(--accent);
  padding: 12px 18px;
  border: 1px solid rgba(12, 26, 46, 0.12);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  white-space: nowrap;
}

.nwl__filter:hover,
.nwl__filter.active {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}
.nwd__fallback,
.nwl__fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 32px 24px;
  border: 1px solid #b35f5f;
  border-radius: 20px;
  background: rgba(255, 107, 107, 0.05);
  box-shadow: 0 12px 30px rgba(211, 47, 47, 0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #993939;
}
.nwl__more {
  display: flex;
  justify-content: center;
  margin-top: clamp(48px, 6vw, 72px);
}
.nwl__more-btn {
  font-family: var(--ff-en);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--accent);
  padding: 18px 52px;
  border: 1px solid var(--accent);
  background: transparent;
  transition: all 0.4s var(--ease);
}
.nwl__more-btn:hover {
  background: var(--accent);
  color: var(--white);
}
.nwl__filters-wrap {
  position: sticky;
  top: 88px;
  z-index: 30;
  margin-bottom: clamp(36px, 5vw, 56px);
}
/* loader */
.nwl__loader {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  width: 100%;
  min-height: 300px;
}
.spinner {
  width: 34px;
  height: 34px;
  border: 3px solid rgba(12, 26, 46, 0.12);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* ============================
       LOCATION
============================ */
.access-section {
  padding: 108px 0;
  background: var(--bg-main);
}
.access__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.access__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}
.access__table th,
.access__table td {
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 0.9rem;
}
.access__table th {
  width: 120px;
  color: var(--accent);
  font-family: var(--font-serif);
}
.access__btn {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--accent);
  font-family: var(--font-serif);
  letter-spacing: 0.06em;
  transition: gap var(--transition);
}
.map-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================
       FOOTER
============================ */
.footer {
  background: var(--bg-secondary);
  color: var(--text);
  padding: 80px 0 40px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 40px;
}
.footer__logo {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 3.5vw, 1.8rem);
  white-space: nowrap;
}
.footer__address {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text);
}
.footer__nav {
  display: flex;
  gap: 60px;
}
.footer__nav-group h4 {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer__nav-group ul {
  list-style: none;
}
.footer__nav-group li {
  margin-bottom: 10px;
}
.footer__nav-group a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  transition: 0.3s;
}
.footer__nav-group a:hover {
  color: var(--accent);
}
.footer__bottom {
  border-top: 1px solid rgba(140, 53, 41, 0.2);
  padding-top: 30px;
  text-align: center;
}
.copyright {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.mobile-cta,
.web-cta {
  display: none;
  position: fixed;
  bottom: 18px;
  z-index: 150;
  background: var(--accent);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 50px;
  font-family: var(--font-serif);
  font-size: 0.86rem;
  letter-spacing: 0.07em;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(180, 74, 58, 0.48);
  transition: opacity 0.3s;
  text-decoration: none;
  animation: pulse 2.8s infinite;
}

.mobile-cta {
  left: 18px;
}

.web-cta {
  right: 18px;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(180, 74, 58, 0.48);
  }
  50% {
    box-shadow: 0 6px 32px rgba(180, 74, 58, 0.75);
  }
}
/* ============================
       Responsive
============================ */
@media (max-width: 1024px) {
  nav {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .menu__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .concept__grid,
  .store-info__grid,
  .reservation__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .concept__image {
    height: 300px;
  }
  .concept__badge {
    width: 96px;
    height: 96px;
    right: -10px;
    bottom: -10px;
  }
  .concept__badge-price {
    font-size: 1.35rem;
  }
  .access__grid {
    grid-template-columns: 1fr;
  }
  .mobile-cta,
  .web-cta {
    display: inline-flex;
  }
  .footer {
    padding: 80px 0;
  }
}

@media (max-width: 992px) {
  .hero__content {
    padding: 0 24px 72px;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 0 16px;
  }
  #hero {
    height: 100svh;
    min-height: 520px;
  }
  .hero__content {
    padding: 0 16px 88px;
  }
  .hero__title {
    font-size: clamp(1.65rem, 8.2vw, 2.35rem);
    line-height: 1.35;
    max-width: 12ch;
    text-wrap: balance;
  }
  .hero__scroll {
    bottom: 18px;
  }
  .hero__btns {
    flex-direction: column;
  }
  .btn-primary,
  .btn-outline {
    justify-content: center;
    width: 100%;
    max-width: 280px;
  }
  .header__inner {
    padding: 0 20px;
  }
  .concept__features {
    grid-template-columns: 1fr;
  }
  .concept,
  .menu,
  .atmosphere-section {
    padding: 72px 0;
  }
  #reservation {
    padding: 72px 0;
  }
  .news__category {
    width: fit-content;
  }
  .news__item {
    grid-template-columns: 1fr;
    gap: 10px 18px;
  }
  .news__text {
    grid-column: 1/-1;
    font-size: 14.5px;
  }
  .nwl__filters {
    top: 72px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 12px;
    border-radius: 14px;
    scrollbar-width: none;
  }

  .nwl__filters::-webkit-scrollbar {
    display: none;
  }
  .access__grid {
    grid-template-columns: 1fr;
  }
  .footer__top {
    flex-direction: column;
  }
  .footer__nav {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

@media (max-width: 540px) {
  .hero__title {
    font-size: clamp(1.5rem, 8vw, 1.95rem);
  }
  .menu__grid {
    grid-template-columns: 1fr;
  }
  .nwl__filter {
    font-size: 11px;
    padding: 11px 14px;
  }
  .mobile-cta,
  .web-cta {
    padding: 10px 14px;
    font-size: 0.75rem;
    bottom: 14px;
  }

  .mobile-cta {
    left: 12px;
  }

  .web-cta {
    right: 12px;
  }

  .phone-icon,
  .web-icon {
    width: 16px;
    height: 16px;
  }
}
