/* BORUTA — white canvas, khaki accents, minimal frames */

:root {
  --white: #ffffff;
  --bg-page: #ffffff;
  --bg-muted: #f7f6f3;
  --ink: #1a1a1a;
  --ink-soft: #2d2d2d;
  --ink-muted: #5c5c5c;
  --line: transparent;
  --line-hair: rgba(26, 26, 26, 0.08);
  --accent-khaki: #c4b896;
  --accent-khaki-deep: #a8986e;
  --accent-khaki-soft: rgba(196, 184, 150, 0.22);
  --cta-dark: #1a1a1a;
  --title-bar: #e8e4dc;
  --watermark: rgba(255, 255, 255, 0.06);
  --hero-overlay: rgba(26, 26, 26, 0.35);
  --font-en: "Inter", "Segoe UI", system-ui, sans-serif;
  --font-jp: "Noto Sans JP", "Hiragino Sans", "Yu Gothic UI", sans-serif;
  --header-h: 80px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.65s;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg-page);
  line-height: 1.75;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
}

/* —— Header —— */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--line-hair);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.header-inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 3vw, 40px);
  gap: 16px;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--ink);
  flex-shrink: 0;
}

.logo-type {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.logo-type-en {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.logo-type-main {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.nav-desktop {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  display: none;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(10px, 1.8vw, 28px);
  max-width: 56vw;
}

@media (min-width: 1025px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 4px 2px;
  color: inherit;
}

.nav-item__en {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-item__jp {
  font-size: 10px;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
  font-weight: 500;
}

.nav-item::after {
  content: "";
  display: block;
  margin-top: 4px;
  width: 100%;
  height: 2px;
  background: var(--accent-khaki-deep);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease-out);
}

.nav-item:hover::after,
.nav-item.is-active::after {
  transform: scaleX(1);
  background: var(--accent-khaki-deep);
}

.header-cta {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}

.btn-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 86px;
  height: var(--header-h);
  flex-shrink: 0;
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-align: center;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.btn-cta:hover {
  filter: brightness(1.06);
}

.btn-cta:active {
  filter: brightness(0.94);
}

.btn-cta__icon {
  display: flex;
}

.btn-cta--dark {
  background: var(--cta-dark);
}

.btn-cta--khaki,
.btn-cta--olive {
  background: var(--accent-khaki-deep);
  color: var(--ink);
}

.btn-cta--khaki:hover,
.btn-cta--olive:hover {
  filter: brightness(1.05);
}

.btn-cta--khaki .btn-cta__icon svg,
.btn-cta--olive .btn-cta__icon svg {
  stroke: currentColor;
}

.burger {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-hair);
  display: block;
  width: 20px;
  height: 1px;
  background: var(--ink);
  position: relative;
}

.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transition: transform 0.35s var(--ease-out), top 0.35s var(--ease-out);
}

.burger span::before {
  top: -6px;
}

.burger span::after {
  top: 6px;
}

.burger.is-open span {
  background: transparent;
}

.burger.is-open span::before {
  top: 0;
  transform: rotate(45deg);
}

.burger.is-open span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-drawer {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 40;
  background: var(--white);
  padding: 24px clamp(20px, 5vw, 40px);
  border-top: 1px solid var(--line-hair);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.nav-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-drawer .nav-drawer-links {
  display: flex;
  flex-direction: column;
}

.nav-drawer .nav-item {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-hair);
  display: none;
}

.drawer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.drawer-actions .btn-cta {
  width: auto;
  height: 76px;
  border-radius: 4px;
}

/* Legacy tiny buttons fallback (一覧など) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-outline {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn-outline:hover {
  background: var(--bg-muted);
}

.btn-solid {
  background: var(--cta-dark);
  color: var(--white);
  border: 1px solid var(--cta-dark);
}

.btn-solid:hover {
  background: var(--accent-khaki-deep);
  border-color: var(--accent-khaki-deep);
  color: var(--ink);
}

.btn-khaki {
  background: var(--accent-khaki);
  color: var(--ink);
  border: 1px solid var(--accent-khaki-deep);
}

.btn-khaki:hover {
  filter: brightness(0.96);
}

.btn-outline:hover {
  background: var(--accent-khaki-soft);
}

.btn-outline--khaki {
  border-color: var(--accent-khaki-deep);
  color: var(--ink);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 40px) 24px 100px;
  color: #f6f6f6;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: kenburns 22s ease-in-out infinite alternate;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg {
    animation: none;
    transform: scale(1.03);
  }

  html {
    scroll-behavior: auto;
  }

  .scroll-indicator {
    animation: fadeInOpacity 1s var(--ease-out) 1.1s forwards;
  }

  .scroll-indicator__motion {
    animation: none !important;
  }

  .card:hover,
  .social-row a:hover,
  .btn-outline:hover,
  .btn-solid:hover {
    transform: none;
  }
}

@keyframes kenburns {
  0% {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.1) translate3d(-1.2%, -0.6%, 0);
  }
}

.hero-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.25) 0%,
    var(--hero-overlay) 50%,
    rgba(26, 26, 26, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.hero-kicker {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.15s forwards;
}

.hero-copy {
  margin: 22px 0 0;
  font-family: var(--font-jp);
  font-size: clamp(24px, 3.6vw, 40px);
  font-weight: 600;
  line-height: 1.45;
}

.hero-copy span {
  display: block;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) forwards;
}

.hero-copy span:nth-child(1) {
  animation-delay: 0.35s;
}
.hero-copy span:nth-child(2) {
  animation-delay: 0.55s;
}

.hero-sub-en {
  margin-top: 20px;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.8s forwards;
}

.scroll-indicator {
  position: absolute;
  left: clamp(18px, 4vw, 56px);
  bottom: clamp(32px, 6vh, 72px);
  z-index: 2;
  opacity: 0;
  animation: fadeInOpacity 1s var(--ease-out) 1.1s forwards;
}

.scroll-indicator__motion {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: scrollBob 2.8s ease-in-out infinite 1.4s;
}

.scroll-indicator__line {
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.55);
}

.scroll-indicator__text {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInOpacity {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scrollBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.hero--mini .hero-copy {
  font-size: clamp(20px, 3vw, 32px);
}

.page-main {
  padding-top: var(--header-h);
}

/* —— Section headings (gray bar / POPO-style) —— */
.section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 64px);
}

.section--band {
  background: var(--bg-muted);
}

.section-heading {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.section-kicker-en {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--ink);
}

.section-title-jp {
  position: relative;
  display: inline-block;
  margin: 18px 0 0;
  padding: 0 8px 4px;
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 700;
  line-height: 1.35;
}

.section-title-jp::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.14em;
  height: 0.48em;
  background: var(--title-bar);
  z-index: -1;
}

.lead {
  max-width: 560px;
  margin: 24px auto 0;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.9;
}

/* Split / service block — image + copy, no frame */
.split-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 48px);
  max-width: 960px;
  margin: 0 auto;
  min-height: 0;
  border: 0;
}

.split-feature__media {
  background-size: cover;
  background-position: center;
  aspect-ratio: 21 / 9;
  min-height: 220px;
  order: -1;
}

.split-feature__panel {
  position: relative;
  overflow: visible;
  background: transparent;
  color: var(--ink);
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

.split-feature__watermark {
  display: none;
}

.split-feature__en {
  margin: 0;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  opacity: 0.65;
  color: var(--ink-muted);
}

.split-feature__jp {
  margin: 16px 0 0;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.65;
  max-width: 28em;
}

.split-feature__link {
  margin-top: 24px;
}

.split-feature__link .btn-outline {
  border-color: var(--accent-khaki-deep);
  color: var(--ink);
}

.split-feature__link .btn-outline:hover {
  background: var(--accent-khaki-soft);
}

/* Section photography (flat, no frames) */
.section-figure {
  margin: 0 auto clamp(32px, 5vw, 56px);
  max-width: 1100px;
}

.section-figure img {
  width: 100%;
  display: block;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

/* Service cards grid (subpages etc.) */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 22px);
  max-width: 1080px;
  margin: 0 auto;
}

.card {
  background: transparent;
  border: 0;
  padding: clamp(12px, 2vw, 18px) 0;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  transition: translate 0.45s var(--ease-out), opacity 0.45s var(--ease-out);
  opacity: 0;
  translate: 0 14px;
}

.card.is-visible {
  opacity: 1;
  translate: 0 0;
}

.card:hover {
  translate: 0 -2px;
}

.card-en {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--accent-khaki-deep);
}

.card-title {
  font-size: 16px;
  font-weight: 700;
}

.card-body {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.85;
}

/* News */
.news-strip {
  max-width: 820px;
  margin: 0 auto;
}

.news-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-hair);
  transition: padding-left 0.35s var(--ease-out), background 0.35s var(--ease-out);
  opacity: 0;
  translate: 0 12px;
}

.news-item.is-visible {
  opacity: 1;
  translate: 0 0;
}

.news-item:hover {
  padding-left: 10px;
  background: var(--bg-muted);
}

.news-date {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}

.news-meta {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent-khaki-deep);
}

.news-title-line {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.news-title-line strong {
  font-size: 15px;
  font-weight: 600;
}

.tag {
  justify-self: end;
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.4;
}

/* CTA ribbon */
.cta-ribbon {
  background: var(--bg-muted);
  border: 0;
}

.cta-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 68px) 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-copy h2 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.cta-copy p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-muted);
}

.cta-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  padding: 48px clamp(20px, 5vw, 64px) 32px;
  background: var(--white);
  border-top: 1px solid var(--line-hair);
}

.footer-brand {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.footer-grid {
  max-width: 1080px;
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  font-size: 13px;
  color: var(--ink-muted);
}

.footer-meta {
  line-height: 2;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover {
  border-color: var(--accent-khaki-deep);
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  border: 0;
  background: var(--accent-khaki-soft);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.social-row a:hover {
  background: var(--bg-muted);
}

.copyright {
  margin-top: 36px;
  text-align: center;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
}

.two-col {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.prose-block h3 {
  font-size: 15px;
  font-weight: 700;
}

.prose-block p {
  color: var(--ink-muted);
  font-size: 14px;
}

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

.list-check li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: var(--ink-muted);
  font-size: 14px;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--accent-khaki-deep);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: transparent;
  border: 0;
}

.price-table th,
.price-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line-hair);
  text-align: left;
}

.price-table th {
  width: 34%;
  font-weight: 700;
  background: transparent;
}

.price-table tr:last-child td,
.price-table tr:last-child th {
  border-bottom: 0;
}

.map-embed {
  border: 0;
  overflow: hidden;
  min-height: 360px;
  background: var(--bg-muted);
}

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

/* —— 体験予約ページ：カレンダー —— */
.reserve-intro {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.9;
}

.reserve-steps {
  max-width: 720px;
  margin: clamp(36px, 6vw, 56px) auto 0;
  display: grid;
  gap: 20px;
}

.reserve-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: flex-start;
}

.reserve-step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-khaki-soft);
  color: var(--ink);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reserve-step h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
}

.reserve-step p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.85;
}

.calendar-panel {
  max-width: 480px;
  margin: clamp(36px, 6vw, 52px) auto 0;
  padding: clamp(24px, 4vw, 36px) clamp(20px, 4vw, 32px);
  background: var(--bg-muted);
}

.calendar-panel__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.calendar-panel__title {
  margin: 0;
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.calendar-legend {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-muted);
}

.calendar-legend__dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--accent-khaki);
  border: 1px solid var(--accent-khaki-deep);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.calendar-grid__wd {
  text-align: center;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  padding: 6px 0 10px;
}

.calendar-grid__cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
}

.calendar-grid__cell--empty {
  background: transparent;
  pointer-events: none;
}

.calendar-grid__cell--trial {
  background: var(--accent-khaki-soft);
  font-weight: 700;
  box-shadow: inset 0 0 0 1px var(--accent-khaki-deep);
}

.calendar-grid__cell--today {
  box-shadow: inset 0 0 0 2px var(--ink);
}

.calendar-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.75;
  text-align: center;
}

@media (max-width: 1024px) {
  .header-cta {
    display: none;
  }

  .nav-drawer {
    display: block;
  }
}

@media (min-width: 1025px) {
  .burger {
    display: none;
  }
}

@media (max-width: 960px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .split-feature {
    grid-template-columns: 1fr;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .tag {
    justify-self: start;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .price-table th {
    width: auto;
    display: block;
  }

  .price-table td {
    display: block;
  }

  .price-table tr {
    display: block;
    border-bottom: 1px solid var(--line-hair);
  }

  .price-table tr:last-child {
    border-bottom: 0;
  }
}
