@import url("https://fonts.googleapis.com/css2?family=Kosugi+Maru&family=Shippori+Mincho:wght@600;700&family=Zen+Maru+Gothic:wght@500;700;900&display=swap");

:root {
  --ink: #2a2119;
  --muted: #776250;
  --paper: #fff3d7;
  --paper-deep: #f0d6a6;
  --surface: #fff9eb;
  --line: #cfaa70;
  --green: #2e765c;
  --red: #b6402d;
  --blue: #276a9a;
  --orange: #e18b2f;
  --yellow: #f4c84a;
  --pink: #d85c7d;
  --shadow: 0 18px 38px rgba(73, 45, 20, 0.15);
  --lift: 0 20px 48px rgba(74, 41, 18, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 18%, rgba(244, 200, 74, 0.2) 0 3px, transparent 4px),
    radial-gradient(circle at 88% 12%, rgba(216, 92, 125, 0.14) 0 4px, transparent 5px),
    linear-gradient(90deg, rgba(90, 61, 31, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(90, 61, 31, 0.032) 1px, transparent 1px),
    var(--paper);
  background-size: 76px 76px, 92px 92px, 28px 28px, 28px 28px;
  color: var(--ink);
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  line-height: 1.85;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(24px, 5vw, 64px);
  background: rgba(255, 249, 235, 0.94);
  border-bottom: 3px solid rgba(182, 64, 45, 0.2);
  box-shadow: 0 8px 24px rgba(67, 41, 19, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  color: var(--red);
  font-family: "Kosugi Maru", "Zen Maru Gothic", sans-serif;
  font-size: 1.68rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  color: #5f4d3c;
  font-size: 0.92rem;
  font-weight: 900;
}

.nav a {
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav a:hover {
  background: rgba(244, 200, 74, 0.32);
  color: #8a2f23;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #2d1b12;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: sepia(0.08) saturate(1.05) contrast(1.02);
}

.hero::before,
.hero::after,
.film-grain {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(43, 24, 13, 0.82), rgba(88, 45, 20, 0.28) 54%, rgba(244, 200, 74, 0.08)),
    linear-gradient(0deg, rgba(43, 24, 13, 0.72), rgba(43, 24, 13, 0.08) 58%, rgba(255, 211, 103, 0.18)),
    radial-gradient(circle at 82% 16%, rgba(255, 205, 92, 0.36), transparent 34%);
}

.hero::after {
  z-index: 2;
  border: 18px solid rgba(255, 232, 187, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 238, 203, 0.24), inset 0 -150px 180px rgba(28, 17, 10, 0.42);
}

.film-grain {
  z-index: 3;
  opacity: 0.18;
  background-image:
    repeating-radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0.5) 1px, transparent 1px, transparent 4px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0, transparent 1px, transparent 7px);
  mix-blend-mode: soft-light;
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(1060px, 100%);
  padding: 80px clamp(24px, 5vw, 76px);
  color: #fff8e7;
  text-shadow: 0 2px 18px rgba(28, 17, 10, 0.48);
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-block;
  padding: 7px 13px;
  background: rgba(255, 249, 235, 0.94);
  border-left: 7px solid var(--yellow);
  color: #7e3424;
  text-shadow: none;
  box-shadow: 6px 6px 0 rgba(41, 25, 13, 0.18);
}

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

h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-size: clamp(3.05rem, 6.5vw, 5.45rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 18px;
  font-size: 1.18rem;
  font-weight: 900;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 18px;
  text-shadow: none;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 14px;
  background: rgba(255, 249, 235, 0.94);
  color: #713823;
  border: 2px solid rgba(255, 227, 148, 0.85);
  border-radius: 999px;
  box-shadow: 4px 4px 0 rgba(42, 33, 25, 0.16);
  font-size: 0.94rem;
  font-weight: 900;
}

.hero-actions,
.access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 5px 5px 0 rgba(42, 33, 25, 0.18);
  transition: box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.button.primary {
  background: var(--red);
  color: #fffaf1;
}

.button.secondary {
  background: rgba(255, 248, 232, 0.14);
  border-color: rgba(255, 248, 232, 0.76);
  color: #fff8e7;
}

.button:hover {
  box-shadow: 2px 2px 0 rgba(42, 33, 25, 0.2);
  transform: translate(3px, 3px);
}

.section {
  padding: 96px clamp(24px, 5vw, 76px);
}

.intro {
  display: grid;
  grid-template-columns: 180px minmax(0, 920px);
  gap: clamp(34px, 6vw, 76px);
  background:
    linear-gradient(180deg, rgba(255, 249, 235, 0.94), rgba(255, 249, 235, 0.98)),
    var(--surface);
  border-bottom: 1px solid rgba(199, 168, 121, 0.5);
}

.intro h2,
.section-heading h2,
.access h2 {
  margin-bottom: 20px;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-size: clamp(2.2rem, 4vw, 3.15rem);
  line-height: 1.28;
  letter-spacing: 0;
}

.intro p {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 700;
}

.welcome {
  background:
    linear-gradient(135deg, rgba(244, 200, 74, 0.18), rgba(39, 106, 154, 0.08)),
    var(--surface);
}

.welcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}

.welcome-card {
  min-height: 198px;
  padding: 28px;
  background: rgba(255, 249, 235, 0.96);
  border: 2px solid rgba(207, 170, 112, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.welcome-card:nth-child(1) {
  border-top: 9px solid var(--yellow);
}

.welcome-card:nth-child(2) {
  border-top: 9px solid var(--pink);
}

.welcome-card:nth-child(3) {
  border-top: 9px solid var(--green);
}

.welcome-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: #7f3527;
  font-size: 1.25rem;
  font-weight: 900;
}

.welcome-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.topics {
  background:
    radial-gradient(circle at 10% 10%, rgba(216, 92, 125, 0.15), transparent 28%),
    linear-gradient(135deg, rgba(255, 249, 235, 0.94), rgba(255, 229, 171, 0.82)),
    var(--surface);
  border-top: 1px solid rgba(199, 168, 121, 0.5);
}

.topics .section-heading p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
  max-width: 1080px;
  margin: 0 auto;
}

.topic-card {
  transform: rotate(-0.65deg);
}

.topic-card img {
  height: 520px;
  object-position: center 42%;
}

.topic-card figcaption {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 1.02rem;
}

.topic-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  background: var(--red);
  border-radius: 999px;
  color: #fffaf1;
  font-size: 0.78rem;
  font-weight: 900;
}

.memory {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: 48px;
  align-items: start;
  background:
    linear-gradient(180deg, rgba(99, 50, 28, 0.08), rgba(246, 232, 203, 0.82)),
    linear-gradient(90deg, rgba(46, 118, 92, 0.1), transparent 40%, rgba(225, 139, 47, 0.13)),
    var(--paper-deep);
  border-top: 1px solid rgba(199, 168, 121, 0.5);
  border-bottom: 1px solid rgba(199, 168, 121, 0.5);
}

.memory-copy {
  position: sticky;
  top: 110px;
  max-width: 520px;
}

.memory-copy h2 {
  margin-bottom: 18px;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-size: clamp(2.2rem, 3.6vw, 2.95rem);
  line-height: 1.28;
}

.memory-copy p {
  color: var(--muted);
  font-weight: 800;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.photo-card {
  position: relative;
  margin: 0;
  padding: 10px 10px 14px;
  background: #fff8e8;
  border: 1px solid rgba(199, 168, 121, 0.72);
  border-radius: 6px;
  box-shadow: 10px 12px 0 rgba(113, 77, 39, 0.14);
  cursor: zoom-in;
  overflow: hidden;
  transform: rotate(-1.1deg);
  transition: box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.photo-card::before {
  content: "拡大して見る";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 6px 11px;
  background: rgba(255, 249, 235, 0.94);
  border: 1px solid rgba(207, 170, 112, 0.8);
  border-radius: 999px;
  color: #7e3424;
  font-size: 0.78rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 10px 10px 52px;
  z-index: 1;
  background:
    linear-gradient(120deg, transparent 0 36%, rgba(255, 255, 255, 0.42) 46%, transparent 56%),
    linear-gradient(0deg, rgba(42, 33, 25, 0.18), transparent 34%);
  background-size: 220% 100%, 100% 100%;
  background-position: 130% 0, 0 0;
  border-radius: 3px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, background-position 420ms ease;
}

.photo-card:hover,
.photo-card:focus-visible {
  border-color: rgba(182, 64, 45, 0.48);
  box-shadow: var(--lift);
  transform: rotate(0deg) translateY(-4px);
  outline: none;
}

.photo-card:hover::before,
.photo-card:focus-visible::before {
  opacity: 1;
  transform: translateY(0);
}

.photo-card:hover::after,
.photo-card:focus-visible::after {
  opacity: 1;
  background-position: -80% 0, 0 0;
}

.photo-card.wide {
  grid-column: span 3;
}

.photo-card.tall {
  grid-column: span 2;
}

.photo-card.tall {
  transform: rotate(1.2deg);
}

.photo-card.tilt-left {
  transform: rotate(-0.8deg);
}

.photo-card.tilt-right {
  transform: rotate(0.9deg);
}

.photo-card.tilt-soft {
  transform: rotate(0.35deg);
}

.photo-card img {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 3px;
  filter: sepia(0.08) saturate(0.96) contrast(1.02);
  transition: filter 180ms ease, transform 180ms ease;
}

.photo-card:hover img,
.photo-card:focus-visible img {
  filter: sepia(0.02) saturate(1.08) contrast(1.04);
  transform: scale(1.025);
}

.photo-card.tall img {
  height: 430px;
  object-position: center 42%;
}

.photo-card.wide img {
  height: 330px;
}

.photo-card figcaption {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  color: #74402e;
  font-size: 0.88rem;
  font-weight: 900;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(44px, 0.12fr) minmax(0, 1fr) minmax(44px, 0.12fr);
  align-items: center;
  gap: 16px;
  padding: 72px clamp(18px, 4vw, 56px) 36px;
  background:
    radial-gradient(circle at 20% 15%, rgba(244, 200, 74, 0.2), transparent 28%),
    rgba(34, 22, 14, 0.88);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-frame {
  position: relative;
  z-index: 1;
  grid-column: 2;
  justify-self: center;
  width: min(100%, 1080px);
  max-height: calc(100vh - 130px);
  margin: 0;
  padding: 14px 14px 18px;
  background: #fff9eb;
  border: 2px solid rgba(244, 200, 74, 0.86);
  border-radius: 10px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.44);
  transform: translateY(12px) scale(0.98);
  transition: transform 180ms ease;
}

.lightbox.is-open .lightbox-frame {
  transform: translateY(0) scale(1);
}

.lightbox-frame img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 210px);
  object-fit: contain;
  background: #22160e;
  border-radius: 6px;
}

.lightbox-frame figcaption {
  margin-top: 12px;
  color: #6f351f;
  font-weight: 900;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: relative;
  z-index: 2;
  border: 0;
  background: rgba(255, 249, 235, 0.96);
  color: #7e3424;
  cursor: pointer;
  font-family: inherit;
  font-weight: 900;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.22);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  min-height: 42px;
  padding: 8px 16px;
  border-radius: 999px;
}

.lightbox-nav {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 2.4rem;
  line-height: 1;
}

.lightbox-prev {
  grid-column: 1;
  justify-self: end;
}

.lightbox-next {
  grid-column: 3;
  justify-self: start;
}

.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  background: #f4c84a;
  outline: 3px solid rgba(255, 249, 235, 0.72);
}

body.lightbox-open {
  overflow: hidden;
}

.services {
  background:
    linear-gradient(180deg, rgba(232, 207, 166, 0.66), rgba(246, 232, 203, 0.9)),
    var(--paper-deep);
}

.section-heading {
  max-width: 1080px;
  margin: 0 auto 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  min-height: 258px;
  padding: 28px;
  background: rgba(255, 248, 232, 0.94);
  border: 2px solid rgba(168, 66, 46, 0.2);
  border-top: 8px solid var(--red);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.service-card:hover {
  box-shadow: var(--lift);
  transform: translateY(-4px);
}

.service-card:nth-child(2) {
  border-top-color: var(--blue);
}

.service-card:nth-child(3) {
  border-top-color: var(--green);
}

.service-card span {
  display: inline-block;
  margin-bottom: 28px;
  padding-bottom: 3px;
  border-bottom: 2px solid currentColor;
  color: var(--blue);
  font-family: "Kosugi Maru", "Zen Maru Gothic", sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
  line-height: 1.36;
}

.service-card p {
  color: var(--muted);
  font-weight: 700;
}

.notice {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 26px;
  padding: 22px 72px;
  background:
    linear-gradient(90deg, rgba(46, 118, 92, 0.98), rgba(39, 106, 154, 0.94)),
    var(--green);
  color: #fff8e7;
  text-align: center;
}

.notice p {
  margin: 0;
  font-weight: 900;
}

.notice a {
  font-family: "Kosugi Maru", "Zen Maru Gothic", sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  text-decoration: none;
}

.faq {
  background:
    linear-gradient(135deg, rgba(39, 106, 154, 0.08), rgba(46, 118, 92, 0.1)),
    var(--surface);
  border-bottom: 1px solid rgba(199, 168, 121, 0.5);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}

.faq-list article {
  min-height: 220px;
  padding: 26px;
  background: rgba(255, 249, 235, 0.96);
  border: 2px solid rgba(207, 170, 112, 0.72);
  border-top: 8px solid var(--blue);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.faq-list article:nth-child(2) {
  border-top-color: var(--red);
}

.faq-list article:nth-child(3) {
  border-top-color: var(--green);
}

.faq-list h3 {
  margin-bottom: 12px;
  color: #6f351f;
  font-size: 1.25rem;
  line-height: 1.4;
}

.faq-list p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.access {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 60px;
  align-items: stretch;
  background:
    linear-gradient(180deg, rgba(255, 249, 235, 0.92), rgba(255, 249, 235, 0.98)),
    var(--surface);
}

.access-info {
  align-self: center;
}

dl {
  margin: 28px 0;
  border-top: 2px solid var(--line);
}

dl div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(199, 168, 121, 0.72);
}

dt {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
}

dd {
  margin: 0;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.map-frame {
  position: relative;
  min-height: 440px;
  border: 2px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(90deg, rgba(255, 248, 232, 0.92), rgba(255, 238, 205, 0.82)),
    repeating-linear-gradient(0deg, transparent 0, transparent 52px, rgba(46, 102, 82, 0.13) 53px),
    repeating-linear-gradient(90deg, transparent 0, transparent 52px, rgba(168, 66, 46, 0.12) 53px),
    #efe0bd;
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 440px;
  height: 100%;
  border: 0;
  filter: sepia(0.12) saturate(0.9) contrast(0.98);
}

.map-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 440px;
  padding: 52px;
}

.map-overlay {
  position: absolute;
  left: 22px;
  bottom: 22px;
  min-height: auto;
  width: min(360px, calc(100% - 44px));
  padding: 22px;
  background: rgba(255, 248, 232, 0.94);
  border: 1px solid rgba(199, 168, 121, 0.78);
  box-shadow: 8px 10px 0 rgba(42, 33, 25, 0.14);
}

.map-kicker {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.map-card h3 {
  max-width: 540px;
  margin-bottom: 14px;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-size: 2.45rem;
  line-height: 1.2;
}

.map-overlay h3 {
  margin-bottom: 16px;
  font-size: 1.55rem;
}

.map-card p:not(.map-kicker) {
  max-width: 470px;
  color: var(--muted);
  font-weight: 700;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 72px;
  background: #2a2119;
  color: #f5e7c8;
  font-size: 0.82rem;
}

.footer p {
  margin: 0;
}

.footer a {
  color: #fff8e7;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 14px 24px;
  }

  .hero {
    min-height: 690px;
  }

  .hero img {
    object-position: 52% center;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(37, 21, 11, 0.82), rgba(88, 45, 20, 0.24) 72%),
      radial-gradient(circle at 70% 20%, rgba(255, 183, 88, 0.36), transparent 34%);
  }

  .hero-copy,
  .section,
  .notice,
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  h1 {
    font-size: 3.05rem;
  }

  .intro,
  .memory,
  .access {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .memory-copy {
    position: static;
    max-width: none;
  }

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

  .topic-card img {
    height: 420px;
  }

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

  .photo-card,
  .photo-card.tall {
    transform: none;
  }

  .photo-card.wide,
  .photo-card.tall {
    grid-column: span 1;
  }

  .photo-card img,
  .photo-card.tall img {
    height: 340px;
  }

  .lightbox {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 76px 18px 28px;
  }

  .lightbox-frame {
    grid-column: 1;
    width: 100%;
  }

  .lightbox-prev,
  .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .lightbox-prev {
    left: 14px;
  }

  .lightbox-next {
    right: 14px;
  }

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

  .faq-list {
    grid-template-columns: 1fr;
  }

  .faq-list article {
    min-height: auto;
  }

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

  .service-card {
    min-height: auto;
  }

  .map-frame,
  .map-card {
    min-height: 360px;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .nav {
    justify-content: flex-start;
    gap: 8px 14px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 650px;
  }

  .hero-copy {
    padding-top: 110px;
    padding-bottom: 44px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .intro h2,
  .memory-copy h2,
  .section-heading h2,
  .access h2,
  .map-card h3 {
    font-size: 2rem;
  }

  .button {
    width: 100%;
  }

  .photo-strip {
    grid-template-columns: 1fr;
  }

  .photo-card img,
  .photo-card.tall img,
  .photo-card.wide img,
  .topic-card img {
    height: 330px;
  }

  .photo-card::before {
    opacity: 1;
    transform: none;
  }

  .lightbox-frame {
    padding: 10px 10px 14px;
  }

  .lightbox-frame img {
    max-height: calc(100vh - 220px);
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .map-card {
    padding: 28px;
  }
}
