:root {
  --leaf: #2f6b45;
  --leaf-dark: #1d4630;
  --moss: #7c9a42;
  --sun: #e68a3a;
  --sky: #5c9eb8;
  --soil: #5a4534;
  --cream: #fff8eb;
  --paper: #fffdf7;
  --mist: #eef6f0;
  --ink: #21312a;
  --muted: #68756d;
  --line: rgba(33, 49, 42, 0.14);
  --shadow: 0 24px 70px rgba(47, 107, 69, 0.16);
  color-scheme: light;
  font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.8;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

.skip-link {
  background: var(--leaf-dark);
  color: white;
  left: 1rem;
  padding: 0.6rem 1rem;
  position: fixed;
  top: -4rem;
  z-index: 30;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  align-items: center;
  background: rgba(255, 253, 247, 0.9);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr auto 1fr;
  left: 0;
  padding: 0.75rem clamp(1rem, 4vw, 3rem);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.site-brand {
  color: var(--leaf-dark);
  font-size: clamp(0.98rem, 1.4vw, 1.16rem);
  font-weight: 900;
  grid-column: 1;
  justify-self: start;
  line-height: 1.2;
  white-space: nowrap;
}

.site-brand:hover,
.site-brand:focus-visible {
  color: var(--leaf);
  text-decoration: underline;
  text-decoration-color: rgba(47, 107, 69, 0.35);
  text-underline-offset: 0.25em;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: clamp(0.35rem, 1vw, 0.8rem);
  font-size: 1rem;
  font-weight: 700;
  grid-column: 2;
  justify-content: center;
  justify-self: center;
  white-space: nowrap;
}

.main-nav a {
  border-radius: 999px;
  color: var(--soil);
  padding: 0.38rem clamp(0.75rem, 1.5vw, 1.2rem);
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: var(--mist);
  color: var(--leaf-dark);
}

.header-action,
.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  line-height: 1.2;
  min-height: 2.75rem;
  padding: 0.8rem 1.15rem;
}

.header-action {
  background: var(--sun);
  color: white;
  font-size: 0.9rem;
  grid-column: 3;
  justify-self: end;
}

.hero {
  align-items: end;
  display: grid;
  min-height: min(780px, 94vh);
  overflow: hidden;
  padding: 7.5rem clamp(1rem, 5vw, 5rem) 2rem;
  position: relative;
}

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

.hero-bg {
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  transition: background-image 0.4s ease;
  z-index: 0;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 31, 24, 0.78), rgba(17, 31, 24, 0.44) 46%, rgba(17, 31, 24, 0.08)),
    linear-gradient(0deg, rgba(17, 31, 24, 0.38), transparent 42%);
  z-index: 1;
}

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

.eyebrow,
.section-kicker {
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

.section-kicker:empty {
  display: none;
}

.hero .eyebrow {
  color: #ffd19c;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5.7rem);
  letter-spacing: 0;
  line-height: 1.04;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  letter-spacing: 0;
  line-height: 1.18;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.35;
  margin-bottom: 0.65rem;
}

.hero-copy {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
  max-width: 690px;
}

.text-orange-600 {
  color: #ffb15c;
}

.hero-actions {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(4, max-content);
  max-width: 100%;
}

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

.button-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--leaf-dark);
}

.hero-strip {
  bottom: 2rem;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(3, minmax(86px, 150px));
  max-width: 100%;
  position: absolute;
  right: clamp(1rem, 5vw, 5rem);
  z-index: 2;
}

.hero-thumb {
  aspect-ratio: 4 / 3;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  cursor: pointer;
  object-fit: cover;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.hero-thumb[aria-current="true"],
.hero-thumb:hover {
  border-color: var(--sun);
  transform: translateY(-2px);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.section-inner {
  margin: 0 auto;
  max-width: 1180px;
}

.intro-band {
  background: var(--cream);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(3rem, 6vw, 5rem);
}

.intro-layout,
.split-layout,
.access-layout,
.facility-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.intro-layout p,
.split-layout p,
.access-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading {
  margin: 0 auto clamp(2rem, 5vw, 3.5rem);
  max-width: 760px;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
}

.section-heading.compact {
  max-width: 600px;
}

.news-section {
  background: var(--paper);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  padding-top: clamp(3.5rem, 7vw, 6rem);
}

.news-layout {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1.42fr);
}

.news-heading {
  margin: 0;
  max-width: 100%;
  text-align: left;
}

.news-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.news-toolbar {
  align-items: center;
  background: var(--leaf-dark);
  color: white;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0.9rem 1rem;
}

.news-toolbar span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  padding: 0.42rem 0.75rem;
}

.news-list {
  max-height: 24rem;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.news-item {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.45rem;
  padding: 1rem clamp(1rem, 3vw, 1.35rem);
}

.news-item:first-child {
  border-top: 0;
}

.news-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.news-meta time {
  color: var(--soil);
  font-weight: 900;
}

.news-label {
  align-items: center;
  border-radius: 999px;
  color: white;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  justify-content: center;
  line-height: 1.2;
  min-height: 1.8rem;
  padding: 0.35rem 0.8rem;
}

.news-label.notice {
  background: var(--leaf);
}

.news-label.report {
  background: #0b67a3;
}

.news-label.other {
  background: var(--soil);
}

.news-title-link {
  color: #0b67a3;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  font-weight: 900;
  line-height: 1.45;
  text-decoration: underline;
  text-decoration-color: rgba(11, 103, 163, 0.32);
  text-underline-offset: 0.2em;
}

.news-title-link:hover,
.news-title-link:focus-visible {
  color: var(--leaf-dark);
  text-decoration-color: rgba(29, 70, 48, 0.38);
}

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

.news-empty {
  padding: clamp(1.2rem, 4vw, 2rem);
  text-align: left;
}

.news-empty strong {
  color: var(--leaf-dark);
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 0.35rem;
}

.news-empty p {
  color: var(--muted);
  margin-bottom: 0;
}

.news-page {
  padding-top: 4rem;
}

.news-detail-section {
  background: var(--paper);
  min-height: 72vh;
}

.back-link {
  color: var(--leaf-dark);
  display: inline-flex;
  font-weight: 900;
  margin-bottom: 1rem;
  text-decoration: underline;
  text-decoration-color: rgba(47, 107, 69, 0.3);
  text-underline-offset: 0.22em;
}

.news-detail {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.news-detail-head {
  background: var(--cream);
  padding: clamp(1.5rem, 5vw, 3rem);
}

.news-detail-head h1 {
  color: var(--leaf-dark);
  font-size: clamp(2rem, 5vw, 3.8rem);
  margin: 0.8rem 0;
}

.news-detail-head p {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0;
}

.news-detail-body {
  padding: clamp(1.5rem, 5vw, 3rem);
}

.news-detail-body p {
  color: var(--ink);
  font-size: 1.04rem;
  margin-bottom: 1.1rem;
}

.news-detail-images {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.news-detail-images figure {
  margin: 0;
}

.news-detail-images img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.news-detail-images figcaption {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  padding-top: 0.45rem;
}

.feature-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.event-card,
.community-card,
.faq-item,
.contact-panel,
.video-panel,
.legacy-care-card,
.season-card,
.parent-activity-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.feature-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-body {
  padding: 1.35rem;
}

.feature-topline {
  align-items: center;
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

.icon-badge {
  align-items: center;
  aspect-ratio: 1;
  border-radius: 50%;
  color: white;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 1.15rem;
  font-weight: 800;
  justify-content: center;
  width: 2.35rem;
}

.icon-badge svg {
  fill: none;
  height: 1.3rem;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 1.3rem;
}

.icon-badge.green {
  background: var(--leaf);
}

.icon-badge.orange {
  background: var(--sun);
}

.icon-badge.blue {
  background: var(--sky);
}

.feature-body p,
.event-card p,
.community-card p,
.faq-item p,
.legacy-care-card p,
.season-card p,
.access-note {
  color: var(--muted);
}

.legacy-care-section {
  background: var(--mist);
}

.legacy-care-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.legacy-care-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.legacy-care-body {
  padding: 1.2rem;
}

.legacy-care-body h3 {
  color: var(--leaf-dark);
  font-size: 1.08rem;
  margin-bottom: 0.45rem;
}

.legacy-care-body p {
  margin-bottom: 0;
}

.video-section {
  background: var(--mist);
}

.video-panel {
  aspect-ratio: 16 / 9;
  align-items: center;
  background:
    linear-gradient(rgba(29, 70, 48, 0.2), rgba(29, 70, 48, 0.3)),
    var(--leaf-dark);
  color: white;
  display: grid;
  justify-items: center;
  padding: 2rem;
  text-align: center;
}

.play-link {
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  color: var(--leaf-dark);
  display: inline-flex;
  font-weight: 800;
  gap: 0.6rem;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
}

.play-mark {
  border-bottom: 0.45rem solid transparent;
  border-left: 0.72rem solid var(--sun);
  border-top: 0.45rem solid transparent;
  display: inline-block;
  height: 0;
  width: 0;
}

.food-section {
  background: #fffaf2;
}

.seasonal-food-section {
  background: var(--paper);
}

.food-layout {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.food-gallery {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(4, 1fr);
}

.food-gallery img {
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.food-gallery img:first-child {
  aspect-ratio: 2 / 1;
  grid-column: span 2;
  grid-row: span 2;
}

.point-list {
  display: grid;
  gap: 0.9rem;
}

.point-item {
  background: white;
  border: 1px solid var(--line);
  border-left: 5px solid var(--sun);
  border-radius: 8px;
  padding: 1.15rem;
}

.point-item h3 {
  font-size: 1.08rem;
  margin-bottom: 0.35rem;
}

.point-item p {
  color: var(--muted);
  margin: 0;
}

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

.season-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.season-card-head {
  padding: 1.2rem 1.25rem 0.9rem;
}

.season-card-head span {
  align-items: center;
  aspect-ratio: 1;
  background: var(--sun);
  border-radius: 50%;
  color: white;
  display: inline-flex;
  font-size: 1.25rem;
  font-weight: 800;
  justify-content: center;
  margin-bottom: 0.75rem;
  width: 3rem;
}

.season-card-head p {
  margin-bottom: 0;
}

.season-images {
  display: grid;
  gap: 0.45rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0 1.25rem 1.25rem;
}

.season-images figure {
  margin: 0;
}

.season-images img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.season-images figcaption {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
  padding-top: 0.35rem;
}

.event-grid,
.community-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.community-grid {
  grid-template-columns: minmax(0, 1fr);
  margin-top: 1.1rem;
}

.event-card,
.community-card {
  display: grid;
}

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

.event-images img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.event-body,
.community-body {
  padding: 1.2rem;
}

.month-label {
  color: var(--sun);
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.parent-activities-section {
  background: var(--cream);
}

.parent-activities-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.9fr);
}

.parent-activity-card {
  padding: clamp(1.25rem, 3vw, 1.8rem);
}

.parent-activity-card h3 {
  color: var(--leaf-dark);
  margin-top: 0;
}

.activity-list {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.activity-list li {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.8rem;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 0.62rem 0;
}

.activity-list li:first-child {
  border-top: 0;
}

.activity-list span {
  font-weight: 700;
  line-height: 1.6;
}

.activity-list strong {
  background: var(--mist);
  border-radius: 999px;
  color: var(--leaf-dark);
  font-size: 0.78rem;
  line-height: 1.5;
  padding: 0.18rem 0.6rem;
  white-space: nowrap;
}

.parent-activities-note {
  border-left: 4px solid var(--sun);
  color: var(--soil);
  font-weight: 700;
  margin: 1.25rem 0 0;
  padding: 0.75rem 1rem;
}

.facility-section {
  background: var(--leaf-dark);
  color: white;
}

.facility-section .section-kicker {
  color: #ffd19c;
}

.facility-section h2 {
  margin-bottom: 0;
}

.info-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
}

.info-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  gap: 1rem;
  grid-template-columns: 7rem 1fr;
  padding: 0.65rem 0;
}

.info-row dt {
  color: #ffd19c;
  font-weight: 800;
}

.info-row dd {
  margin: 0;
}

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

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  padding: 1.25rem 1.35rem;
}

.faq-item h3 {
  font-size: 1.08rem;
}

.faq-item p {
  margin-bottom: 0;
}

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

.contact-panel {
  padding: clamp(1.25rem, 4vw, 2rem);
}

.contact-list {
  display: grid;
  gap: 0.85rem;
}

.contact-item {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.85rem;
}

.contact-item strong {
  color: var(--leaf);
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.15rem;
}

.contact-value,
.contact-item span {
  display: inline-block;
  font-size: clamp(1rem, 2vw, 1.24rem);
  font-weight: 800;
  line-height: 1.45;
}

.contact-value {
  color: var(--leaf-dark);
  text-decoration: underline;
  text-decoration-color: rgba(47, 107, 69, 0.35);
  text-underline-offset: 0.2em;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.65rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.social-link {
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--leaf-dark);
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 800;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  text-decoration: none;
}

.social-link.facebook {
  background: #1877f2;
  border-color: #1877f2;
  color: white;
}

.social-link.instagram {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 42%, #8134af 72%, #515bd4 100%);
  border-color: transparent;
  color: white;
}

.social-link svg {
  fill: none;
  height: 1.15rem;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 1.15rem;
}

.social-link.facebook svg {
  fill: currentColor;
  stroke: none;
}

.social-link:hover,
.social-link:focus-visible {
  box-shadow: 0 8px 18px rgba(47, 107, 69, 0.14);
  transform: translateY(-1px);
}

.social-link.facebook:hover,
.social-link.facebook:focus-visible {
  box-shadow: 0 8px 18px rgba(24, 119, 242, 0.22);
}

.social-link.instagram:hover,
.social-link.instagram:focus-visible {
  box-shadow: 0 8px 18px rgba(221, 42, 123, 0.22);
}

.contact-action,
.copy-button,
.map-button {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  justify-content: center;
  line-height: 1.2;
  min-height: 2.35rem;
  padding: 0.65rem 0.9rem;
}

.contact-action,
.map-button {
  background: var(--leaf);
  color: white;
}

.copy-button {
  background: var(--mist);
  color: var(--leaf-dark);
}

.access-note {
  background: #f8efe1;
  border-radius: 8px;
  margin: 1.2rem 0 0;
  padding: 1rem;
}

.map-panel {
  border-radius: 8px;
  margin-top: 1rem;
  overflow: hidden;
}

.map-card {
  align-items: center;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 1rem;
}

.map-card strong,
.map-card p {
  display: block;
}

.map-card strong {
  color: var(--leaf-dark);
  line-height: 1.4;
}

.map-card p {
  color: var(--muted);
  margin: 0.2rem 0 0;
}

.map-button {
  white-space: nowrap;
}

.access-images {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.access-images figure {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
}

.access-images img {
  height: auto;
}

.access-images figcaption {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.7rem 0.85rem 0.85rem;
}

.site-footer {
  align-items: center;
  background: var(--leaf-dark);
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 1.4rem clamp(1rem, 5vw, 5rem);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #ffd19c;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .site-brand,
  .main-nav,
  .header-action {
    grid-column: auto;
  }

  .site-brand {
    justify-self: center;
  }

  .hero-strip {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 2rem;
  }

  .intro-layout,
  .split-layout,
  .access-layout,
  .facility-layout,
  .food-layout,
  .news-layout {
    grid-template-columns: 1fr;
  }

  .news-heading {
    text-align: center;
  }

  .feature-grid,
  .event-grid,
  .parent-activities-grid,
  .legacy-care-grid,
  .seasonal-food-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 0.7rem 1rem;
  }

  .site-brand {
    font-size: 0.95rem;
  }

  .main-nav {
    font-size: 0.86rem;
    gap: 0.15rem;
    justify-content: center;
    justify-self: center;
    width: 100%;
  }

  .main-nav a {
    padding: 0.25rem 0.5rem;
  }

  .header-action {
    display: none;
  }

  .hero {
    min-height: 92vh;
    padding-top: 5.4rem;
  }

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

  .hero-actions .button {
    font-size: 0.92rem;
    min-height: 3rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    text-align: center;
  }

  .hero-strip {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .food-gallery img:first-child {
    grid-column: span 2;
  }

  .season-images {
    grid-template-columns: 1fr;
  }

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

  .news-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
  }

  .activity-list li {
    gap: 0.25rem;
    grid-template-columns: 1fr;
  }

  .activity-list strong {
    justify-self: start;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .map-card {
    grid-template-columns: 1fr;
  }
}
