:root {
  --color-ink: #3F3A34;
  --color-navy: #3F3A34;
  --color-muted: #6F665D;
  --color-white: #ffffff;
  --color-ivory: #FBF8F2;
  --color-cream: #F6F0E8;
  --color-green: #7E8F7A;
  --color-green-soft: #EAF1EC;
  --color-green-pale: #F4F7F2;
  --color-gold: #9B836A;
  --color-orange: #B58B6A;
  --color-line: #E9DED1;
  --shadow-soft: 0 22px 58px rgba(80, 65, 45, 0.1);
  --shadow-card: 0 18px 45px rgba(80, 65, 45, 0.08);
  --radius-card: 24px;
  --radius-image: 28px;
  --container: 1120px;
  --header-height: 78px;
  --font-sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-sans);
  line-height: 1.8;
  background: var(--color-ivory);
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

section {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--color-white);
  background: var(--color-green);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(251, 247, 239, 0.92);
  border-bottom: 1px solid rgba(229, 221, 207, 0.75);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(calc(100% - 32px), 1220px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--color-white);
  font-weight: 700;
  background: var(--color-green);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.22);
}

.logo-text {
  display: grid;
  line-height: 1.25;
}

.logo-text strong {
  font-size: 1rem;
  color: var(--color-navy);
}

.logo-text small {
  font-size: 0.72rem;
  color: var(--color-muted);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 0.92rem;
  color: var(--color-navy);
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  display: grid;
  line-height: 1.2;
  font-size: 0.72rem;
  color: var(--color-muted);
}

.header-phone strong {
  font-size: 0.98rem;
  color: var(--color-green);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-line);
  background: var(--color-white);
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle-line {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-green);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  font-weight: 700;
  line-height: 1.35;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.button-small {
  min-height: 42px;
  padding: 9px 18px;
  font-size: 0.9rem;
}

.button-primary {
  color: var(--color-white);
  background: var(--color-green);
  border-color: var(--color-green);
}

.button-outline {
  color: var(--color-green);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(49, 90, 70, 0.32);
}

.hero {
  position: relative;
  min-height: min(780px, 82svh);
  padding: calc(var(--header-height) + 78px) 0 74px;
  color: var(--color-white);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  transform: scale(1.03);
  animation: slow-zoom 16s ease-out both;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(24, 39, 55, 0.82) 0%, rgba(24, 39, 55, 0.62) 42%, rgba(24, 39, 55, 0.18) 100%),
    linear-gradient(0deg, rgba(24, 39, 55, 0.25), rgba(24, 39, 55, 0.25));
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: end;
  gap: 40px;
}

.hero-content {
  max-width: 760px;
}

.hero-label {
  color: #f4d494;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 1.16;
  font-weight: 800;
  color: var(--color-white);
  text-wrap: balance;
}

.hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: rgba(255, 255, 255, 0.94);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-badges li {
  padding: 8px 14px;
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 0;
}

.hero-phone {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.hero-phone a {
  margin-left: 8px;
  color: var(--color-white);
  font-weight: 800;
}

.hero-subcard {
  align-self: end;
  padding: 12px;
  background: rgba(251, 247, 239, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.hero-subcard p {
  margin: 12px 4px 2px;
  color: var(--color-navy);
  font-size: 0.92rem;
  line-height: 1.7;
}

.hero-subimage {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-image);
}

.section {
  padding: 94px 0;
}

.section:nth-of-type(even) {
  background: var(--color-white);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading.compact {
  margin: 0;
  text-align: left;
}

.section-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--color-gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section h2,
.section-heading h2,
.news-inner h2 {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(1.72rem, 3vw, 2.7rem);
  line-height: 1.35;
}

.section-heading p,
.section-copy p,
.director-copy p,
.reservation-copy p {
  color: var(--color-muted);
}

.section-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 54px;
}

.section-copy h2 {
  margin: 0 0 20px;
  color: var(--color-navy);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.35;
}

.approach-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-auto-rows: 150px;
  gap: 14px;
}

.approach-gallery .image-shell {
  border-radius: var(--radius-image);
}

.gallery-large {
  grid-row: span 2;
}

.image-shell {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(220, 232, 222, 0.95), rgba(242, 234, 220, 0.95)),
    var(--color-green-pale);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.58) inset;
}

.image-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(24, 39, 55, 0.06));
}

.image-shell img {
  transition: transform 0.55s ease, opacity 0.2s ease;
}

.image-shell:hover img {
  transform: scale(1.04);
}

.image-shell.is-missing img {
  opacity: 0;
}

.image-shell.is-missing::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(49, 90, 70, 0.35);
  border-radius: inherit;
}

.feature-grid,
.symptom-grid,
.menu-grid,
.testimonial-grid,
.reservation-cards,
.interior-grid {
  display: grid;
  gap: 22px;
}

.four-columns {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 52px;
}

.feature-card,
.symptom-card,
.reason-card,
.price-card,
.testimonial-card,
.reservation-card,
.news-item,
.contact-form,
.access-info {
  background: var(--color-white);
  border: 1px solid rgba(229, 221, 207, 0.9);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.feature-card {
  padding: 26px;
}

.card-number,
.reason-card span,
.flow-number {
  color: var(--color-gold);
  font-weight: 800;
}

.feature-card h3,
.symptom-card h3,
.reason-card h3,
.price-card h3,
.testimonial-card h3,
.reservation-card h3,
.flow-item h3,
.contact-form h3 {
  margin: 0 0 10px;
  color: var(--color-navy);
  line-height: 1.45;
}

.feature-card p,
.symptom-card p,
.reason-card p,
.price-card p,
.testimonial-card p,
.reservation-card p,
.flow-item p {
  margin: 0;
  color: var(--color-muted);
}

.news-band {
  position: relative;
  z-index: 2;
  margin-top: -26px;
}

.news-inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px;
  background: var(--color-white);
  border: 1px solid rgba(229, 221, 207, 0.95);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

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

.news-item {
  padding: 18px 20px;
  box-shadow: none;
}

.news-item time {
  color: var(--color-green);
  font-size: 0.88rem;
  font-weight: 800;
}

.news-item h3 {
  margin: 4px 0 4px;
  color: var(--color-navy);
  font-size: 1rem;
}

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

.data-status {
  margin: 0 0 18px;
  color: var(--color-muted);
  text-align: center;
}

.js-only {
  display: none;
}

.is-js .js-only {
  display: block;
}

.symptoms-section {
  background: var(--color-green-pale);
}

.symptom-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.symptom-card {
  position: relative;
  min-height: 220px;
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.symptom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(49, 90, 70, 0.16);
}

.symptom-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  color: var(--color-green);
  font-weight: 800;
  background: var(--color-green-soft);
  border: 1px solid rgba(49, 90, 70, 0.16);
  border-radius: 50%;
}

.reason-section {
  background: var(--color-white);
}

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

.reason-card {
  position: relative;
  padding: 34px 34px 34px 96px;
  overflow: hidden;
}

.reason-card span {
  position: absolute;
  top: 26px;
  left: 28px;
  font-size: 2.3rem;
  line-height: 1;
}

.menu-section {
  background: linear-gradient(180deg, var(--color-ivory), var(--color-cream));
}

.menu-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  position: relative;
  min-height: 240px;
  padding: 28px;
  overflow: hidden;
}

.price-card.featured {
  border-color: rgba(199, 154, 68, 0.5);
  background: #fffaf0;
}

.price-tag {
  display: inline-block;
  margin: 0 0 14px;
  padding: 4px 10px;
  color: var(--color-white);
  background: var(--color-orange);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  margin: 14px 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.price-row span {
  color: var(--color-muted);
  font-weight: 700;
}

.price-row strong {
  color: var(--color-green);
  font-size: 1.7rem;
  line-height: 1;
}

.flow-section {
  background: var(--color-white);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.flow-item {
  position: relative;
  min-height: 250px;
  padding: 28px;
  background: var(--color-green);
  border-radius: var(--radius-card);
  color: var(--color-white);
  overflow: hidden;
}

.flow-item::after {
  content: "";
  position: absolute;
  inset: auto -30px -46px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.flow-number {
  display: block;
  margin-bottom: 40px;
  color: #f2d18c;
  font-size: 2.6rem;
  line-height: 1;
}

.flow-item h3,
.flow-item p {
  color: var(--color-white);
}

.flow-item p {
  opacity: 0.88;
}

.testimonials-section {
  background: var(--color-green-pale);
}

.testimonial-grid,
.reservation-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  padding: 28px;
}

.stars {
  color: var(--color-gold);
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-card h3 {
  margin-top: 20px;
  font-size: 1rem;
}

.testimonial-card small {
  color: var(--color-muted);
}

.director-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  align-items: center;
}

.director-image {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-image);
  box-shadow: var(--shadow-soft);
}

.director-copy {
  padding: 36px 0;
}

.director-copy h2 {
  margin: 0 0 12px;
}

.director-name {
  margin: 0 0 16px;
  color: var(--color-navy);
  font-size: 1.6rem;
  font-weight: 800;
}

.director-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.director-tags li {
  padding: 6px 12px;
  color: var(--color-green);
  background: var(--color-green-soft);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.faq-section {
  background: var(--color-white);
}

.faq-list {
  max-width: 900px;
  margin-inline: auto;
}

.faq-item {
  margin-bottom: 12px;
  background: var(--color-ivory);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
}

.faq-item summary {
  position: relative;
  padding: 20px 58px 20px 22px;
  color: var(--color-navy);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--color-white);
  background: var(--color-green);
  border-radius: 50%;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--color-muted);
}

.access-section {
  background: var(--color-ivory);
}

.access-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.access-info {
  padding: 28px;
}

.access-info dl {
  margin: 0;
}

.access-info div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-line);
}

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

.access-info dt {
  color: var(--color-green);
  font-weight: 800;
}

.access-info dd {
  margin: 0;
  color: var(--color-navy);
}

.access-info dd span {
  display: block;
}

.map-area {
  min-height: 360px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.map-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  min-height: 360px;
  padding: 28px;
  color: var(--color-green);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(220, 232, 222, 0.85), rgba(255, 255, 255, 0.9)),
    repeating-linear-gradient(45deg, rgba(49, 90, 70, 0.06) 0 8px, transparent 8px 16px);
  border: 1px solid rgba(49, 90, 70, 0.16);
}

.map-placeholder p {
  margin: 0;
  color: var(--color-navy);
  font-weight: 800;
}

.map-placeholder a {
  color: var(--color-green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.interior-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.interior-grid .image-shell {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-image);
}

.reservation-section {
  background: var(--color-green);
  color: var(--color-white);
}

.reservation-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 44px;
  align-items: start;
}

.reservation-copy .section-label,
.reservation-copy h2,
.reservation-copy p {
  color: var(--color-white);
}

.reservation-copy p {
  opacity: 0.9;
}

.reservation-image {
  aspect-ratio: 4 / 3;
  margin-top: 26px;
  border-radius: var(--radius-image);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.reservation-content {
  display: grid;
  gap: 22px;
}

.reservation-card {
  padding: 24px;
  color: var(--color-ink);
}

.reservation-card .button {
  width: 100%;
  margin-top: 18px;
}

.contact-form {
  padding: 30px;
  color: var(--color-ink);
}

.contact-form h3 {
  font-size: 1.35rem;
}

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

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

.form-grid label.full {
  grid-column: 1 / -1;
}

.form-grid span {
  color: var(--color-navy);
  font-weight: 800;
}

.form-grid em {
  color: #b55335;
  font-style: normal;
  font-size: 0.82rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--color-ink);
  background: var(--color-white);
  border: 1px solid #d8d1c4;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-grid textarea {
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(49, 90, 70, 0.15);
}

.form-grid .is-invalid {
  border-color: #b55335;
}

.form-error {
  min-height: 1.2em;
  color: #b55335;
  font-size: 0.82rem;
}

.form-note,
.form-message {
  color: var(--color-muted);
}

.form-message {
  margin-bottom: 0;
  font-weight: 700;
}

.site-footer {
  padding: 54px 0 24px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--color-navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1fr 0.75fr;
  gap: 34px;
}

.footer-logo .logo-mark {
  background: var(--color-gold);
}

.footer-logo .logo-text strong,
.footer-logo .logo-text small,
.site-footer h2,
.site-footer a {
  color: var(--color-white);
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.footer-links,
.footer-social {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a,
.footer-social a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.copyright {
  width: min(calc(100% - 40px), var(--container));
  margin: 34px auto 0;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.66);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.84rem;
  text-align: center;
}

.mobile-cta {
  display: none;
}

.is-js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.is-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.is-js .delay-1 {
  transition-delay: 0.08s;
}

.is-js .delay-2 {
  transition-delay: 0.16s;
}

.is-js .delay-3 {
  transition-delay: 0.24s;
}

@keyframes slow-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 12px;
    font-size: 0.84rem;
  }

  .header-actions {
    gap: 8px;
  }

  .header-phone {
    display: none;
  }

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

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

  body {
    padding-bottom: 68px;
  }

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

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    justify-items: stretch;
    padding: 12px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .site-nav a {
    padding: 13px 12px;
    border-bottom: 1px solid var(--color-line);
  }

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

  .site-nav a::after {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 52px) 0 54px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(24, 39, 55, 0.86), rgba(24, 39, 55, 0.58)),
      linear-gradient(0deg, rgba(24, 39, 55, 0.32), rgba(24, 39, 55, 0.32));
  }

  .hero-inner,
  .section-grid,
  .director-layout,
  .reservation-layout,
  .access-layout {
    grid-template-columns: 1fr;
  }

  .hero-subcard {
    max-width: 320px;
  }

  .section {
    padding: 70px 0;
  }

  .news-inner {
    grid-template-columns: 1fr;
  }

  .approach-gallery {
    grid-auto-rows: 132px;
  }

  .symptom-grid,
  .menu-grid,
  .testimonial-grid,
  .reservation-cards,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 8px;
    gap: 8px;
    background: rgba(251, 247, 239, 0.96);
    border-top: 1px solid var(--color-line);
    box-shadow: 0 -8px 22px rgba(31, 41, 51, 0.12);
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    min-height: 44px;
    color: var(--color-white);
    background: var(--color-green);
    border-radius: 8px;
    font-size: 0.86rem;
    font-weight: 800;
    text-align: center;
  }

  .mobile-cta a:nth-child(2) {
    color: var(--color-green);
    background: var(--color-white);
    border: 1px solid rgba(49, 90, 70, 0.25);
  }
}

@media (max-width: 640px) {
  .logo-mark {
    width: 38px;
    height: 38px;
  }

  .logo-text strong {
    font-size: 0.94rem;
  }

  .logo-text small {
    font-size: 0.66rem;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-badges {
    gap: 8px;
  }

  .hero-badges li {
    font-size: 0.84rem;
  }

  .hero-cta,
  .reservation-card .button {
    width: 100%;
  }

  .hero-cta .button {
    width: 100%;
  }

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

  .section-heading.compact {
    text-align: left;
  }

  .approach-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 112px;
  }

  .gallery-large {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 9;
  }

  .four-columns,
  .symptom-grid,
  .menu-grid,
  .reason-list,
  .flow-list,
  .testimonial-grid,
  .reservation-cards,
  .interior-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .symptom-card,
  .reason-card,
  .price-card,
  .testimonial-card,
  .reservation-card,
  .contact-form,
  .access-info {
    padding: 22px;
  }

  .reason-card {
    padding-left: 78px;
  }

  .reason-card span {
    left: 22px;
    font-size: 1.9rem;
  }

  .flow-item {
    min-height: auto;
  }

  .flow-number {
    margin-bottom: 20px;
  }

  .director-image {
    aspect-ratio: 4 / 4.6;
  }

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

  .map-area,
  .map-placeholder {
    min-height: 280px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .is-js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Soft redesign layer for the Yawaragi update */
:root {
  --color-ink: #3F3A34;
  --color-navy: #3F3A34;
  --color-muted: #6F665D;
  --color-white: #ffffff;
  --color-ivory: #FBF8F2;
  --color-cream: #F6F0E8;
  --color-green: #7E8F7A;
  --color-green-soft: #EAF1EC;
  --color-green-pale: #F4F7F2;
  --color-gold: #9B836A;
  --color-orange: #B58B6A;
  --color-line: #E9DED1;
  --shadow-soft: 0 22px 58px rgba(80, 65, 45, 0.1);
  --shadow-card: 0 18px 45px rgba(80, 65, 45, 0.08);
  --radius-card: 24px;
  --radius-image: 28px;
}

body {
  color: var(--color-ink);
  background: linear-gradient(180deg, #fbf8f2 0%, #f8f5ef 48%, #ffffff 100%);
}

.site-header {
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(216, 200, 184, 0.45);
  box-shadow: 0 8px 24px rgba(80, 65, 45, 0.05);
}

.logo-mark {
  background: linear-gradient(135deg, #9B836A, #7E8F7A);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.logo-text strong,
.site-nav,
.site-nav a,
.header-phone strong {
  color: var(--color-navy);
}

.site-nav a::after {
  background: var(--color-gold);
}

.header-phone {
  color: var(--color-muted);
}

.menu-toggle {
  border-color: rgba(216, 200, 184, 0.72);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
}

.menu-toggle-line {
  background: var(--color-gold);
}

.button {
  min-height: 50px;
  box-shadow: none;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 18px 36px rgba(143, 122, 99, 0.2);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #9B836A 0%, #7E8F7A 100%);
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(143, 122, 99, 0.2);
}

.button-outline {
  color: #8F7A63;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(216, 200, 184, 0.82);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: #FBF8F2;
}

.hero {
  min-height: min(760px, 86svh);
  padding: calc(var(--header-height) + 70px) 0 78px;
  color: var(--color-ink);
  background: linear-gradient(135deg, #FBF8F2 0%, #F6F0E8 58%, #EAF1EC 100%);
}

.hero-bg {
  inset: auto -6% 8% auto;
  width: min(58vw, 680px);
  height: 76%;
  opacity: 0.16;
  filter: blur(1.4px) saturate(0.78);
  border: 0;
  border-radius: 36px;
  box-shadow: none;
  transform: rotate(-2deg);
}

.hero-bg img {
  transform: scale(1.04);
  animation: none;
}

.hero-overlay {
  background: linear-gradient(115deg, rgba(251, 248, 242, 0.98) 0%, rgba(246, 240, 232, 0.9) 56%, rgba(234, 241, 236, 0.78) 100%);
}

.hero-inner {
  z-index: 1;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  align-items: center;
  gap: 56px;
}

.hero-content {
  max-width: 640px;
}

.hero-label,
.section-label {
  color: var(--color-gold);
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero h1 {
  max-width: 620px;
  color: var(--color-navy);
  font-size: 3.45rem;
  font-weight: 700;
  line-height: 1.28;
}

.hero-lead {
  max-width: 620px;
  color: var(--color-muted);
  line-height: 2;
}

.hero-badges {
  gap: 9px;
}

.hero-badges li {
  color: #6F665D;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(216, 200, 184, 0.64);
  box-shadow: 0 12px 26px rgba(80, 65, 45, 0.06);
}

.hero-phone {
  color: var(--color-muted);
}

.hero-phone a {
  color: var(--color-gold);
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 500px);
  min-height: 560px;
  padding: 34px 24px 70px 56px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  top: 6%;
  left: 0;
  z-index: 0;
  width: 74%;
  height: 70%;
  background-image: url("../images/interior-treatment-room.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 32px;
  opacity: 0.22;
  filter: blur(1.5px) saturate(0.8) brightness(1.05);
}

.hero-main-image {
  position: relative;
  z-index: 2;
  width: min(100%, 390px);
  aspect-ratio: 4 / 5;
  margin-left: auto;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 60px rgba(80, 65, 45, 0.14);
  filter: saturate(0.92) brightness(1.04);
}

.hero-floating-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 3px;
  max-width: 210px;
  padding: 16px 18px;
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(216, 200, 184, 0.5);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(80, 65, 45, 0.12);
  backdrop-filter: blur(10px);
}

.hero-floating-card span {
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-floating-card strong {
  color: var(--color-navy);
  font-size: 1rem;
  line-height: 1.45;
}

.hero-floating-card strong span {
  color: inherit;
  font-size: inherit;
}

.hero-floating-card small {
  color: var(--color-muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.hero-offer-card {
  left: 4px;
  bottom: 118px;
}

.hero-care-card {
  top: 72px;
  right: 0;
}

.hero-photo-card {
  position: absolute;
  right: 12px;
  bottom: 0;
  z-index: 3;
  width: 174px;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(80, 65, 45, 0.12);
}

.section {
  padding: 92px 0;
  background: #fffdf9;
}

.section:nth-of-type(even) {
  background: #FBF8F2;
}

.approach-section,
.reason-section,
.flow-section,
.faq-section {
  background: #fffdf9;
}

.symptoms-section,
.testimonials-section,
.access-section {
  background: #FBF8F2;
}

.menu-section {
  background: linear-gradient(180deg, #F6F0E8 0%, #EAF1EC 100%);
}

.section-heading {
  margin-bottom: 50px;
}

.section h2,
.section-heading h2,
.news-inner h2,
.section-copy h2 {
  color: var(--color-navy);
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1.45;
}

.section-heading p,
.section-copy p,
.director-copy p,
.reservation-copy p {
  color: var(--color-muted);
}

.image-shell {
  border-radius: var(--radius-image);
  border: 1px solid rgba(216, 200, 184, 0.42);
  background: linear-gradient(135deg, rgba(234, 241, 236, 0.92), rgba(246, 240, 232, 0.92));
  box-shadow: 0 20px 50px rgba(80, 65, 45, 0.1);
}

.image-shell::after {
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(63,58,52,0.12));
}

.image-shell img {
  filter: saturate(0.9) brightness(1.03);
}

.approach-gallery .image-shell,
.director-image,
.interior-grid .image-shell,
.reservation-image,
.map-area {
  border-radius: var(--radius-image);
}

.feature-card,
.symptom-card,
.reason-card,
.price-card,
.testimonial-card,
.reservation-card,
.news-item,
.contact-form,
.access-info,
.faq-item {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(216, 200, 184, 0.42);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.feature-card,
.symptom-card,
.reason-card,
.price-card,
.testimonial-card,
.reservation-card,
.contact-form,
.access-info {
  padding: 28px;
}

.feature-card h3,
.symptom-card h3,
.reason-card h3,
.price-card h3,
.testimonial-card h3,
.reservation-card h3,
.flow-item h3,
.contact-form h3,
.faq-item summary {
  color: var(--color-navy);
}

.card-number,
.reason-card span,
.flow-number,
.stars {
  color: var(--color-gold);
}

.symptom-card:hover,
.price-card:hover,
.feature-card:hover,
.testimonial-card:hover,
.reservation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(80, 65, 45, 0.11);
}

.symptom-icon,
.director-tags li {
  color: #7E8F7A;
  background: #EAF1EC;
  border-color: rgba(126, 143, 122, 0.18);
}

.news-band {
  margin-top: -34px;
}

.news-inner {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(216, 200, 184, 0.52);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.news-item time,
.access-info dt,
.map-placeholder,
.map-placeholder a,
.price-row strong {
  color: var(--color-green);
}

.price-card.featured {
  border-color: rgba(181, 139, 106, 0.45);
  background: rgba(255, 250, 244, 0.92);
}

.price-tag {
  color: #fff;
  background: linear-gradient(135deg, #B58B6A, #9B836A);
}

.flow-item {
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(216, 200, 184, 0.42);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.flow-item::after {
  background: rgba(126, 143, 122, 0.09);
}

.flow-item h3,
.flow-item p {
  color: var(--color-navy);
}

.flow-item p {
  color: var(--color-muted);
  opacity: 1;
}

.faq-item {
  background: rgba(255, 255, 255, 0.82);
}

.faq-item summary::after {
  background: var(--color-green);
}

.map-placeholder {
  background:
    linear-gradient(135deg, rgba(234, 241, 236, 0.9), rgba(255, 255, 255, 0.92)),
    repeating-linear-gradient(45deg, rgba(143, 122, 99, 0.045) 0 8px, transparent 8px 16px);
  border: 1px solid rgba(216, 200, 184, 0.48);
}

.reservation-section {
  color: var(--color-ink);
  background: linear-gradient(135deg, #EAF1EC 0%, #F1E7DA 100%);
}

.reservation-copy .section-label {
  color: var(--color-gold);
}

.reservation-copy h2 {
  color: var(--color-navy);
}

.reservation-copy p {
  color: var(--color-muted);
  opacity: 1;
}

.reservation-image {
  box-shadow: 0 20px 50px rgba(80, 65, 45, 0.12);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  min-height: 52px;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(216, 200, 184, 0.8);
  border-radius: 14px;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(155, 131, 106, 0.14);
}

.form-grid .is-invalid {
  border-color: #9D5F52;
}

.form-error,
.form-grid em {
  color: #9D5F52;
}

.site-footer {
  background: #3F3A34;
}

.footer-logo .logo-mark {
  background: linear-gradient(135deg, #B58B6A, #7E8F7A);
}

@media (max-width: 1120px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero-inner {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .site-nav {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(216, 200, 184, 0.62);
    border-radius: 22px;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 48px) 0 58px;
  }

  .hero-bg {
    right: -28%;
    bottom: 18%;
    width: 92%;
    height: 48%;
    opacity: 0.1;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(251, 248, 242, 0.98) 0%, rgba(246, 240, 232, 0.92) 100%);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-content {
    max-width: none;
  }

  .hero-visual {
    display: grid;
    gap: 12px;
    justify-self: center;
    width: min(100%, 520px);
    min-height: 0;
    padding: 18px 0 0;
  }

  .hero-visual::before {
    display: none;
  }

  .hero-main-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    margin: 0;
  }

  .hero-floating-card,
  .hero-photo-card {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
  }

  .hero-photo-card {
    aspect-ratio: 16 / 9;
  }

  .mobile-cta {
    background: rgba(251, 248, 242, 0.96);
    box-shadow: 0 -8px 22px rgba(80, 65, 45, 0.1);
  }

  .mobile-cta a {
    background: linear-gradient(135deg, #9B836A, #7E8F7A);
    border-radius: 14px;
  }

  .mobile-cta a:nth-child(2) {
    color: #8F7A63;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(216, 200, 184, 0.7);
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 2.18rem;
    line-height: 1.36;
  }

  .hero-lead {
    line-height: 1.9;
  }

  .hero-badges li {
    padding: 7px 12px;
  }

  .section {
    padding: 68px 0;
  }

  .section h2,
  .section-heading h2,
  .news-inner h2,
  .section-copy h2 {
    font-size: 1.9rem;
  }

  .feature-card,
  .symptom-card,
  .reason-card,
  .price-card,
  .testimonial-card,
  .reservation-card,
  .contact-form,
  .access-info {
    padding: 24px;
  }
}
/* Hero width correction for flex layout */
.hero-inner {
  flex: 0 0 min(calc(100% - 40px), var(--container));
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

@media (max-width: 900px) {
  .hero-inner {
    flex-basis: min(calc(100% - 28px), var(--container));
    width: min(calc(100% - 28px), var(--container));
  }
}
/* Hero centering correction */
.hero {
  display: block;
}
/* Hero background layering correction */
.hero-bg,
.hero-overlay {
  position: absolute;
}

.hero-inner {
  position: relative;
}
/* Reason card number spacing correction */
.reason-card {
  padding: 34px 34px 34px 108px;
}

.reason-card span {
  top: 32px;
  left: 34px;
  width: 46px;
  text-align: center;
  font-size: 2.15rem;
  line-height: 1;
}

@media (max-width: 640px) {
  .reason-card {
    padding: 66px 24px 24px;
  }

  .reason-card span {
    top: 24px;
    left: 24px;
    width: auto;
    font-size: 1.75rem;
    text-align: left;
  }
}
/* Image insertion refinement */
.hero-room-card {
  top: 238px;
  left: 20px;
}

.hero-photo-card {
  width: 190px;
  aspect-ratio: 16 / 10;
}

.approach-gallery {
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: clamp(164px, 12vw, 190px) clamp(164px, 12vw, 190px) clamp(156px, 11vw, 182px);
  align-items: stretch;
  gap: 18px;
}

.gallery-large {
  grid-row: span 2;
}

.gallery-wide {
  grid-column: 1 / -1;
}

.approach-gallery .image-shell img {
  object-position: center;
}

.approach-gallery > .image-shell:nth-child(2) img,
.approach-gallery > .image-shell:nth-child(3) img,
.gallery-wide img {
  object-position: center 45%;
}

.price-card {
  display: flex;
  flex-direction: column;
}

.price-card-image {
  aspect-ratio: 16 / 10;
  margin: 0 0 18px;
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(80, 65, 45, 0.08);
}

.price-card-image img {
  object-position: center;
}

.director-section {
  background: linear-gradient(135deg, #fffdf9 0%, #f6f0e8 100%);
}

.director-image {
  box-shadow: 0 24px 58px rgba(80, 65, 45, 0.12);
}

.director-image img {
  object-position: center top;
}

.interior-grid .image-shell {
  box-shadow: 0 20px 44px rgba(80, 65, 45, 0.1);
}

@media (max-width: 900px) {
  .hero-room-card {
    top: auto;
    left: auto;
  }

  .approach-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-large,
  .gallery-wide {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .approach-gallery .image-shell {
    aspect-ratio: 16 / 10;
  }

  .gallery-wide {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 640px) {
  .approach-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .approach-gallery .image-shell,
  .gallery-wide {
    aspect-ratio: 4 / 3;
  }

  .price-card-image {
    aspect-ratio: 16 / 9;
    margin-bottom: 16px;
  }
}
@media print {
  .site-header,
  .mobile-cta,
  .hero-subcard,
  .button,
  .menu-toggle {
    display: none !important;
  }

  body {
    padding-bottom: 0;
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
    color: #000;
  }

  .hero-bg,
  .hero-overlay {
    display: none;
  }

  .hero h1,
  .hero-lead,
  .hero-phone,
  .hero-phone a {
    color: #000;
  }

  .section {
    padding: 36px 0;
  }
}

.is-hidden {
  display: none !important;
}


/* Approach mobile crop correction */
@media (max-width: 640px) {
  .approach-gallery {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .approach-gallery > .image-shell {
    grid-column: 1 / -1 !important;
    width: 100%;
    aspect-ratio: 4 / 3;
  }
}

/* Approach mobile row-height correction */
@media (max-width: 640px) {
  .approach-gallery {
    grid-template-rows: auto !important;
    grid-auto-rows: auto !important;
  }

  .approach-gallery > .image-shell {
    grid-row: auto !important;
    min-height: 0;
  }
}

/* Public safety states */
a.is-disabled,
.button.is-disabled {
  cursor: not-allowed;
  opacity: 0.58;
  pointer-events: none;
}

.contact-form.is-disabled {
  opacity: 0.88;
}

.contact-form.is-disabled input,
.contact-form.is-disabled select,
.contact-form.is-disabled textarea,
.contact-form.is-disabled button {
  cursor: not-allowed;
}

.contact-form.is-disabled input,
.contact-form.is-disabled select,
.contact-form.is-disabled textarea {
  background: #f4eee5;
  color: #86796b;
}

/* Hero face overlap correction */
.hero-care-card {
  top: 48px;
  right: auto;
  left: 18px;
}

@media (max-width: 900px) {
  .hero-care-card,
  .hero-room-card {
    inset: auto;
  }
}

/* News layout correction */
.news-inner {
  grid-template-columns: 220px minmax(0, 1fr);
  grid-template-areas:
    "heading status"
    "heading list";
  align-items: start;
}

.news-inner .section-heading {
  grid-area: heading;
}

.news-inner .data-status {
  grid-area: status;
  justify-self: start;
  margin: 0 0 12px;
  text-align: left;
}

.news-list {
  grid-area: list;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.news-item {
  min-width: 0;
}

@media (max-width: 900px) {
  .news-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "status"
      "list";
  }

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

@media (max-width: 640px) {
  .news-list {
    grid-template-columns: 1fr;
  }
}
