:root {
  --color-main: #26402a;
  --color-base: #f8f3e8;
  --color-sub-bg: #efe3cf;
  --color-accent: #b23a32;
  --color-green-mid: #55755a;
  --color-gray-tag: #767676;
  --color-text: #2b2b2b;
  --color-text-light: #666666;
  --color-border: #d8cdbb;
  --color-white: #ffffff;
  --shadow-soft: 0 18px 40px rgba(38, 64, 42, 0.1);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: linear-gradient(180deg, #fffdf8 0%, #faf6ee 100%);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
}

h1,
h2,
h3,
h4 {
  font-family: "Noto Serif JP", serif;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

iframe {
  border: 0;
}

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

.section {
  padding: 48px 0;
  background: #fffdf8;
}

.section--about,
.section--access {
  background: #f6efe3;
}

.section--commitments {
  background: #fffdf8;
}

.section--news,
.section--cta {
  background: #fffdf8;
}

.section--cta {
  padding-bottom: 48px;
}

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

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--color-text-light);
  font-size: 0.875rem;
  font-family: "Noto Serif JP", serif;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--color-main);
}

.breadcrumbs__sep {
  opacity: 0.6;
}


h1,
h2,
h3 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.45;
}

h1 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
}

h2 {
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
}

h3 {
  font-size: 1.125rem;
}

p {
  margin: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 16px 32px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--color-main);
  color: var(--color-white);
  font-weight: 500;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.button--header::before,
.button--footer::before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79a15.54 15.54 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1-.24 11.36 11.36 0 0 0 3.57.57 1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.49a1 1 0 0 1 1 1 11.36 11.36 0 0 0 .57 3.57 1 1 0 0 1-.25 1.01Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79a15.54 15.54 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1-.24 11.36 11.36 0 0 0 3.57.57 1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.49a1 1 0 0 1 1 1 11.36 11.36 0 0 0 .57 3.57 1 1 0 0 1-.25 1.01Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  opacity: 0.92;
}

.button--ghost,
.button--ghost-dark {
  background: var(--color-white);
  color: var(--color-main);
  border-color: rgba(38, 64, 42, 0.2);
}

.button--ghost-dark {
  background: var(--color-white);
  border-color: var(--color-main);
  border-width: 2px;
  box-shadow: 0 8px 18px rgba(38, 64, 42, 0.08);
}

.button--ghost-dark:hover,
.button--ghost-dark:focus-visible {
  background: var(--color-main);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(38, 64, 42, 0.18);
}

[data-reveal] {
  --reveal-delay: 0ms;
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, 40px, 0);
  transition:
    opacity 1s ease,
    transform 1.15s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1s ease;
  transition-delay: var(--reveal-delay);
  will-change: opacity, transform, filter;
}

[data-reveal="left"] {
  transform: translate3d(-56px, 0, 0);
}

[data-reveal="right"] {
  transform: translate3d(56px, 0, 0);
}

[data-reveal="left-soft"] {
  transform: translate3d(-48px, 0, 0) scale(0.96);
}

[data-reveal="soft"] {
  transform: translate3d(0, 32px, 0);
}

[data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, 0.97);
  border-bottom: 1px solid rgba(216, 205, 187, 0.7);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.site-brand__logo {
  display: block;
  width: auto;
  height: 72px;
}

.site-nav .menu,
.site-footer__nav .menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav {
  margin-left: auto;
}

.site-nav a,
.site-footer__nav a {
  font-size: 0.95rem;
  font-weight: 500;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.button--header,
.button--footer {
  min-height: auto;
  padding: 8px 16px;
}

.site-header__instagram,
.site-footer__instagram {
  display: inline-block;
  width: 28px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 8px;
  position: relative;
}

.site-header__instagram::before,
.site-footer__instagram::before,
.site-header__instagram::after,
.site-footer__instagram::after {
  content: "";
  position: absolute;
}

.site-header__instagram::before,
.site-footer__instagram::before {
  inset: 6px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.site-header__instagram::after,
.site-footer__instagram::after {
  top: 4px;
  right: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.button__label--short {
  display: none;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 72px 0 152px;
  min-height: 560px;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 243, 232, 0.92) 0%, rgba(248, 243, 232, 0.82) 28%, rgba(248, 243, 232, 0.24) 58%, rgba(248, 243, 232, 0.08) 100%);
}

.hero__inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 432px;
}

.hero__content {
  max-width: 448px;
  padding: 40px 0;
}

.hero__content p {
  margin-top: 16px;
  color: var(--color-text);
  font-size: 0.9375rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.info-strip {
  margin-top: -128px;
  position: relative;
  z-index: 2;
}

.info-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: 0;
  background: rgba(255, 251, 244, 0.95);
  border: 1px solid var(--color-border);
  border-radius: 0;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.info-card {
  padding: 12px 16px;
  border-right: 1px solid rgba(216, 205, 187, 0.7);
}

.info-card:last-child {
  border-right: 0;
}

.info-card__label {
  font-family: "Noto Serif JP", serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(43, 43, 43, 0.84);
}

.info-card__value {
  margin-top: 8px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.375rem;
  font-weight: 500;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text);
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, transform 0.2s ease;
}

.section-link::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-bottom: 2px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.section-link:hover,
.section-link:focus-visible {
  color: var(--color-accent);
  border-bottom-color: currentColor;
}

.section-link:hover::after,
.section-link:focus-visible::after {
  transform: translateX(4px) rotate(45deg);
}

.news-list {
  border-top: 1px solid rgba(216, 205, 187, 0.9);
}

.news-list-item {
  border-bottom: 1px solid rgba(216, 205, 187, 0.9);
}

.news-list-link {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr) 40px;
  gap: 32px;
  align-items: center;
  padding: 24px 0;
}

.news-list-thumb {
  width: 176px;
  aspect-ratio: 4 / 2.3;
  overflow: hidden;
  border-radius: 8px;
  background: #f3ead9;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.news-list-thumb__logo {
  width: 64%;
  height: auto;
  object-fit: contain;
}

.news-list-body {
  min-width: 0;
  display: grid;
  gap: 16px;
}

.news-list-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 0.875rem;
}

.news-list-title {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.7;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}

.news-list-arrow {
  justify-self: end;
  align-self: center;
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease, color 0.2s ease;
}

.news-list-link:hover .news-list-arrow,
.news-list-link:focus-visible .news-list-arrow {
  transform: translateX(4px) rotate(45deg);
  color: var(--color-main);
}

.news-single-page {
  min-height: 70vh;
}

.archive-page,
.news-single-page,
.menu-page,
.simple-page {
  padding-top: 40px;
}

.news-single {
  display: grid;
  gap: 32px;
}

.news-single__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.news-single__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
}

.news-single__thumb {
  overflow: hidden;
  border-radius: 8px;
  background: #f3ead9;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.news-single__logo {
  width: min(320px, 48%);
  object-fit: contain;
}

.news-single__content {
  display: grid;
  gap: 24px;
  font-family: "Noto Serif JP", serif;
  font-size: 0.9375rem;
  line-height: 2;
}

.news-single-page h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.news-single__content,
.news-single__content * {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}

.news-single__footer {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.news-single__back {
  min-width: 224px;
  background: transparent;
  color: var(--color-main);
  border-color: var(--color-main);
  box-shadow: none;
}

.news-single__back:hover,
.news-single__back:focus-visible {
  background: var(--color-main);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(38, 64, 42, 0.16);
}



.tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 500;
}

.tag--new {
  background: var(--color-accent);
}

.tag--hours {
  background: var(--color-green-mid);
}

.tag--media {
  background: var(--color-main);
}

.tag--info {
  background: var(--color-gray-tag);
}








.about {
  display: grid;
  gap: 32px;
}

.about__visual,
.access-photo,
.reserve-banner__visual {
  overflow: visible;
}

.about__heading {
  max-width: 720px;
}

.about__section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.about__section--reverse .about__visual {
  order: 2;
}

.about__section--reverse .about__content {
  order: 1;
}

.about__visual {
  aspect-ratio: 16 / 10;
  background: rgba(255, 255, 255, 0.76);
}

.about__content {
  display: grid;
  gap: 16px;
}

.about__body {
  display: grid;
  gap: 16px;
  font-family: "Noto Serif JP", serif;
  font-size: 0.9375rem;
  line-height: 2;
}

.about__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.commitment-card {
  padding: 32px 24px;
  background: transparent;
}

.commitment-card__visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.commitment-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.access-photo img,
.reserve-banner__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.access-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 16px;
  align-items: stretch;
}

.access-map,
.access-panel,
.access-photo {
  min-height: 360px;
  overflow: hidden;
}

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

.access-panel {
  padding: 0 0 0 16px;
  background: transparent;
  border: 0;
  font-family: "Noto Serif JP", serif;
}

.access-panel dl {
  display: grid;
  gap: 16px;
  margin: 16px 0 0;
}

.access-panel div {
  display: grid;
  gap: 8px;
}

.access-panel dt {
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
}

.access-panel dd {
  margin: 0;
}

.reserve-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  padding: 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.reserve-banner__visual {
  min-height: 100%;
  display: flex;
  align-items: center;
}

.reserve-banner__visual--left {
  background: transparent;
  aspect-ratio: 16 / 9;
}

.reserve-banner__content {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  min-height: auto;
  height: 100%;
  padding: 16px;
  position: relative;
  z-index: 1;
  margin-left: 0;
  background: transparent;
}

.reserve-banner__content h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  line-height: 1.5;
}

.reserve-banner__divider {
  width: 64px;
  height: 2px;
  background: rgba(47, 79, 55, 0.7);
}

.reserve-banner__phone {
  margin: 0;
  color: var(--color-main);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 16px;
}

.reserve-banner__phone::before {
  content: "";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  background-color: var(--color-main);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79a15.54 15.54 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1-.24 11.36 11.36 0 0 0 3.57.57 1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.49a1 1 0 0 1 1 1 11.36 11.36 0 0 0 .57 3.57 1 1 0 0 1-.25 1.01Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79a15.54 15.54 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1-.24 11.36 11.36 0 0 0 3.57.57 1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.49a1 1 0 0 1 1 1 11.36 11.36 0 0 0 .57 3.57 1 1 0 0 1-.25 1.01Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.reserve-banner__button {
  justify-self: start;
  min-width: 248px;
  min-height: 64px;
  border-radius: 8px;
  font-size: 1.25rem;
  box-shadow: 0 12px 24px rgba(38, 64, 42, 0.16);
}

.reserve-banner__button::after {
  content: "→";
  margin-left: 16px;
  font-size: 1.1em;
}

footer.site-footer {
  background:
    radial-gradient(circle at top right, rgba(217, 154, 36, 0.14), transparent 20%),
    linear-gradient(135deg, #1e3423, #2f4f37);
  color: var(--color-white);
  padding: 40px 0 24px;
  font-family: "Noto Serif JP", serif;
}

.site-footer,
.site-footer * {
  font-family: "Noto Serif JP", serif;
}

.site-footer a,
.site-footer p,
.site-footer li,
.site-footer .menu,
.site-footer__copy {
  color: inherit;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 32px;
  align-items: center;
}

.site-footer__copy {
  margin: 24px 0 0;
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.88;
}

.site-footer__inner {
  grid-template-columns: 1.3fr 0.8fr;
  align-items: end;
}

.site-footer__brand {
  display: grid;
  gap: 8px;
}

.site-footer__brand p {
  margin: 0;
}

.site-footer__socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.site-footer__nav .menu {
  display: grid;
  gap: 16px;
  justify-items: end;
  text-align: right;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__mail {
  display: inline-block;
  width: 28px;
  height: 28px;
  position: relative;
  color: var(--color-white);
}

.site-footer__mail::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2m0 4-8 5-8-5V6l8 5 8-5Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2m0 4-8 5-8-5V6l8 5 8-5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.menu-page .commitment-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 16px;
  text-align: center;
}

.menu-page .commitment-card h2,
.menu-page .commitment-card h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  min-height: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.menu-page .commitment-card p {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  line-height: 2;
}

.menu-page__image {
  width: min(100%, 360px);
  margin: 0 auto;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.menu-page__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

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

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .menu-toggle span {
    width: 24px;
    height: 2px;
    margin: 0 auto;
    background: currentColor;
  }

  .mobile-menu.is-open {
    display: grid;
    gap: 24px;
    padding: 0 24px 24px;
    border-bottom: 1px solid rgba(216, 205, 187, 0.7);
    background: rgba(255, 255, 255, 0.96);
  }

  .mobile-menu .menu {
    display: grid;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .button--mobile {
    width: 100%;
  }

  .hero__inner,
  .access-layout,
  .reserve-banner,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

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

  .about__section--reverse .about__visual,
  .about__section--reverse .about__content {
    order: initial;
  }

  .commitment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__visual {
    min-height: 420px;
  }

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

  .news-list-link {
    grid-template-columns: 144px minmax(0, 1fr) 32px;
    gap: 24px;
  }

  .news-list-thumb {
    width: 144px;
  }

  .news-single__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .news-single__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 0.9375rem;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .section {
    padding: 48px 0;
  }

  .site-header__inner {
    min-height: 76px;
  }

  .button--header {
    display: inline-flex;
    min-height: 40px;
    padding: 8px 12px;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .site-brand__logo {
    height: 56px;
  }

  .site-header__actions {
    gap: 8px;
  }

  .site-header__actions .site-header__instagram {
    display: none;
  }

  .button__label--long {
    display: none;
  }

  .button__label--short {
    display: inline;
  }

  .hero {
    padding-top: 32px;
    padding-bottom: 120px;
    min-height: 0;
  }

  .hero__content {
    padding: 16px 0 0;
  }

  .hero__inner {
    min-height: 320px;
  }

  h1 {
    font-size: clamp(1.625rem, 8vw, 2rem);
  }

  h2 {
    font-size: clamp(1.375rem, 6vw, 1.75rem);
  }

  h3 {
    font-size: 1rem;
  }

  .section-heading {
    flex-direction: column;
    align-items: start;
    gap: 16px;
    margin-bottom: 16px;
  }

  .info-strip {
    margin-top: -96px;
  }

  .news-grid,
  .commitment-grid,
  .info-strip__grid {
    grid-template-columns: 1fr;
  }

  .about {
    gap: 32px;
  }

  .about__section {
    gap: 24px;
  }

  .news-list-link {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 0;
  }

  .news-list-thumb {
    width: 100%;
    max-width: 192px;
  }

  .news-list-arrow {
    display: none;
  }

  .news-list-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
  }

  .news-list-title::after {
    content: "";
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    margin-top: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
  }

  .news-single__layout {
    gap: 24px;
  }

  .commitment-grid {
    border-left: 0;
  }

  .commitment-card {
    padding: 32px 0;
    border-right: 0;
  }

  .info-card {
    border-right: 0;
    border-bottom: 1px solid rgba(216, 205, 187, 0.7);
  }

  .info-card:last-child {
    border-bottom: 0;
  }

  .reserve-banner__phone {
    font-size: 1.625rem;
  }
  .reserve-banner {
    gap: 24px;
  }

  .reserve-banner__content {
    margin-left: 0;
    height: auto;
    padding: 0;
    background: transparent;
    align-items: center;
    text-align: center;
  }

  .reserve-banner__phone {
    justify-content: center;
  }

  .site-footer__nav {
    display: none;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    align-items: start;
    justify-items: start;
  }

  .site-footer__brand {
    justify-items: start;
    gap: 4px;
  }

  .site-footer__socials {
    margin-top: 16px;
    justify-content: flex-start;
  }

  .site-footer__brand p,
  .site-footer__copy {
    font-size: 0.875rem;
  }

  .reserve-banner__decor {
    width: 160px;
    opacity: 0.9;
  }
}
