:root {
  --color-bg: #64686f;
  --color-bg-dark: #4f535b;
  --color-text: #f5f2ec;
  --color-muted: rgba(245, 242, 236, 0.72);
  --color-border: rgba(245, 242, 236, 0.34);
  --color-panel: rgba(245, 242, 236, 0.08);
  --color-hover-navy: #26384f;

  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Georgia, "Times New Roman", serif;

  --max-width: 1120px;
  --side-padding: clamp(20px, 5vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-main);
  line-height: 1.8;
}

/* ページ遷移のフェード（読み込み時フェードイン / 離脱時フェードアウト） */
.js body {
  animation: page-in 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.js body.is-leaving {
  animation: page-out 380ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes page-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes page-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  border-bottom: 1px solid rgba(245, 242, 236, 0.38);
  background: rgba(80, 84, 91, 0.24);
  backdrop-filter: blur(10px);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 32px);
  padding: 22px var(--side-padding);
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 15px;
}

.site-nav a {
  opacity: 0.9;
  transition:
    color 450ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-nav a:hover {
  color: var(--color-hover-navy);
  opacity: 1;
}

.site-nav a.is-active {
  opacity: 1;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #5d626a;
  --hero-scroll: 0;
}

/* スクロール連動のパララックスはこの器が担い、中の各スライドが入れ替わる */
.hero-visual {
  position: absolute;
  inset: 0;
  background: #777b82;
  transform: translate3d(0, calc(var(--hero-scroll) * 48px), 0)
    scale(calc(1.015 + var(--hero-scroll) * 0.035));
  transform-origin: center;
  /* スライド3枚を重ねるため、この器で確保する合成レイヤーは transform だけに絞る。
     opacity と filter まで含めると高解像度端末で描画が乱れることがある。 */
  will-change: transform;
}

.js .hero-visual {
  animation: hero-visual-in 950ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-visual::after {
  content: none;
}

/* 文字を読みやすくする暗幕は各スライドの背景に重ねる。
   疑似要素で上から被せる方法は、変形と合成レイヤーが掛かったこの器の中では
   高解像度端末で塗り残しが出たため採らない。 */
.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
}

.js .hero-slide {
  transition: opacity 1600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.is-active {
  opacity: 1;
}

/* JS が無い環境では1枚目だけを出す */
html:not(.js) .hero-slide:not(.is-active) {
  display: none;
}

.hero-slide--1 {
  background-image:
    linear-gradient(rgba(45, 48, 54, 0.16), rgba(45, 48, 54, 0.42)),
    url("../assets/images/URC2026.JPG");
}

.hero-slide--2 {
  background-image:
    linear-gradient(rgba(45, 48, 54, 0.16), rgba(45, 48, 54, 0.42)),
    url("../assets/images/hero-ares.jpg");
}

.hero-slide--3 {
  background-image:
    linear-gradient(rgba(45, 48, 54, 0.16), rgba(45, 48, 54, 0.42)),
    url("../assets/images/hero-dance.jpg");
}

/* 縦長画面では横長写真を cover すると被写体が大きく切れるため、
   縦位置で構図を取り直した別バージョンに差し替える。 */
@media (max-width: 767px) {
  .hero-slide--1 {
    background-image:
      linear-gradient(rgba(45, 48, 54, 0.16), rgba(45, 48, 54, 0.42)),
      url("../assets/images/hero-urc-tall.jpg");
  }

  .hero-slide--2 {
    background-image:
      linear-gradient(rgba(45, 48, 54, 0.16), rgba(45, 48, 54, 0.42)),
      url("../assets/images/hero-ares-tall.jpg");
  }

  .hero-slide--3 {
    background-image:
      linear-gradient(rgba(45, 48, 54, 0.16), rgba(45, 48, 54, 0.42)),
      url("../assets/images/hero-dance-tall.jpg");
  }
}

.hero-content {
  position: absolute;
  bottom: clamp(108px, 16vh, 160px);
  left: 50%;
  z-index: 1;
  width: min(92vw, 760px);
  transform: translate3d(-50%, calc(var(--hero-scroll) * -32px), 0);
  opacity: calc(1 - var(--hero-scroll) * 1.15);
  text-align: center;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.34);
  will-change: opacity, transform;
}

.js .hero-content {
  animation: none;
}

.js .hero h1,
.js .hero-label,
.js .hero-nav a {
  animation: hero-copy-in 1050ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.js .hero h1 {
  animation-delay: 620ms;
}

.js .hero-label {
  animation-delay: 820ms;
}

.js .hero-nav a:nth-child(1) {
  animation-delay: 1040ms;
}

.js .hero-nav a:nth-child(2) {
  animation-delay: 1140ms;
}

.js .hero-nav a:nth-child(3) {
  animation-delay: 1240ms;
}

.js .hero-nav a:nth-child(4) {
  animation-delay: 1340ms;
}

.hero h1 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 5.6vw, 72px);
  font-weight: 400;
  line-height: 1;
}

.hero-label {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 34px);
  font-style: italic;
  line-height: 1.1;
}

/* ホーム ファーストビューの各ページリンク（文字） */
.hero-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px clamp(24px, 4vw, 48px);
  margin-top: clamp(28px, 4vh, 44px);
}

.hero-nav a {
  position: relative;
  color: rgba(245, 242, 236, 0.7);
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 22px);
  letter-spacing: 0.06em;
  transition: color 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-nav a:hover {
  color: var(--color-hover-navy);
}

.hero-nav a:hover::after {
  transform: scaleX(1);
}

.section {
  padding: clamp(88px, 13vw, 160px) var(--side-padding);
  border-bottom: 1px solid var(--color-border);
}

/* サブページの軽いヒーロー */
.page-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 50svh;
  padding: clamp(132px, 22vh, 220px) var(--side-padding) clamp(56px, 9vh, 96px);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.04);
}

.page-hero--about::before {
  background-image:
    linear-gradient(rgba(45, 48, 54, 0.5), rgba(45, 48, 54, 0.66)),
    url("../assets/images/2022_4_10_sakura-3.jpg");
}

/* 海の写真はギャラリー本体に載せたので、見出し背景は別の一枚を使う */
.page-hero--photography::before {
  background-image:
    linear-gradient(rgba(45, 48, 54, 0.5), rgba(45, 48, 54, 0.66)),
    url("../assets/images/FH000012.JPG");
}

.page-hero--video::before {
  background-image:
    linear-gradient(rgba(45, 48, 54, 0.5), rgba(45, 48, 54, 0.66)),
    url("../assets/images/IMG_8771.JPG");
}

.page-hero--contact::before {
  background-image:
    linear-gradient(rgba(45, 48, 54, 0.52), rgba(45, 48, 54, 0.68)),
    url("../assets/images/FH000021.JPG");
}

.page-hero-inner {
  max-width: var(--max-width);
}

.js .page-hero-inner {
  animation: page-hero-in 1200ms cubic-bezier(0.16, 1, 0.3, 1) 180ms both;
}

.page-hero-label {
  margin-bottom: 16px;
  color: var(--color-muted);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.16em;
}

.page-hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 112px);
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

@keyframes page-hero-in {
  from {
    opacity: 0;
    filter: blur(14px);
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

/* 独立ページの本文セクション */
.page-section {
  padding-top: clamp(72px, 10vw, 120px);
  border-bottom: none;
}

.contact-layout h2,
.about-title h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 400;
  line-height: 1;
}

.about-layout {
  display: grid;
  grid-template-areas:
    "image title"
    "image copy";
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}

/* ヒーローを持つサブページ: タイトル列を省いた2カラム */
.about-layout--compact {
  grid-template-areas: "image copy";
  /* 本文が写真より高くなるため、中央揃えだと写真が宙に浮く */
  align-items: start;
}

.about-title {
  grid-area: title;
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-top: clamp(12px, 4vw, 52px);
}

.about-title .section-label {
  margin-bottom: 0;
}

.about-title h2 {
  font-size: clamp(24px, 3.2vw, 42px);
}

.profile-image-placeholder {
  position: relative;
  grid-area: image;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: clamp(560px, 62vw, 760px);
  border: 1px solid var(--color-border);
  border-radius: 0;
  background: var(--color-panel);
  color: var(--color-muted);
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  overflow: hidden;
}

.profile-image-placeholder img,
.work-image-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy {
  grid-area: copy;
}

.about-copy h3 {
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 400;
  line-height: 1;
}

.about-copy p {
  max-width: 620px;
  color: var(--color-muted);
}

.dance-history {
  max-width: 620px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.dance-history h4 {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
}

.dance-history h5 {
  margin: 30px 0 14px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.dance-history ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  color: var(--color-muted);
  font-size: 14px;
  list-style: none;
}

/* バックダンス歴: 日付を左列、内容を右列に置く */
.backdance {
  gap: 13px;
}

.backdance li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 2px 16px;
  text-align: left;
}

.backdance-date {
  color: rgba(245, 242, 236, 0.55);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.works-section {
  overflow: hidden;
}

.horizontal-track {
  display: grid;
  grid-auto-columns: minmax(280px, 36vw);
  grid-auto-flow: column;
  gap: 24px;
  max-width: none;
  /* セクションの左右パディングを打ち消して画面端まで伸ばす */
  margin-right: calc(var(--side-padding) * -1);
  margin-left: calc(var(--side-padding) * -1);
  padding: 0 var(--side-padding) 22px;
  /* mandatory スナップが左パディングを飲み込んで1枚目が見切れるのを防ぐ */
  scroll-padding-left: var(--side-padding);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--color-border) transparent;
}

.work-card {
  min-width: 0;
  scroll-snap-align: start;
  color: inherit;
}

.work-image-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  min-height: clamp(360px, 44vw, 560px);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-panel);
  color: var(--color-muted);
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.1em;
  overflow: hidden;
}

.work-card h3 {
  margin: 18px 0 4px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
}

.work-card p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 14px;
}

.work-image-placeholder img {
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Photography: 縦横比の違う写真を段組みで積むマソンリー配置。
   CSS の column を使うので JS も固定の縦横比も要らず、写真本来の形のまま並ぶ。 */
.photo-grid {
  column-count: 3;
  column-gap: clamp(12px, 1.6vw, 22px);
  max-width: 1280px;
  margin: 0 auto;
}

.photo-grid figure {
  /* 段の境界で写真が分断されるのを防ぐ */
  break-inside: avoid;
  margin: 0 0 clamp(12px, 1.6vw, 22px);
  overflow: hidden;
  background: var(--color-panel);
}

.photo-grid img {
  width: 100%;
  height: auto;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-grid figure:hover img {
  transform: scale(1.03);
}

/* Video: 映像とテキストが左右交互に並ぶ縦スクロールの一覧 */
.film-list {
  display: grid;
  gap: clamp(72px, 12vh, 148px);
  max-width: 1280px;
  margin: 0 auto;
}

.film {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
}

.film-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--color-border);
  background: #2d3036;
  overflow: hidden;
}

.film-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.film-meta {
  text-align: center;
}

.film-title {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
}

.film-note {
  margin-bottom: 10px;
  color: var(--color-muted);
  font-family: var(--font-display);
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.6;
}

.film-year {
  margin-bottom: 0;
  color: var(--color-muted);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.1em;
}

/* iframe に blur を掛けると描画が重いので、フェードと移動のみで見せる */
.js .film.reveal {
  filter: none;
}

.contact-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.contact-layout p {
  max-width: 560px;
  margin: 28px auto 0;
  color: var(--color-muted);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 32px;
  margin-top: 34px;
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 40px);
}

.contact-links a {
  border-bottom: 1px solid currentColor;
}

/* Contact フォーム */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.form-field {
  margin-bottom: 28px;
}

.form-field label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.form-field .required {
  padding: 2px 9px;
  border-radius: 4px;
  background: #c0564f;
  color: var(--color-text);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-panel);
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  transition:
    border-color 400ms cubic-bezier(0.16, 1, 0.3, 1),
    background 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.form-field textarea {
  min-height: 168px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(245, 242, 236, 0.4);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(245, 242, 236, 0.7);
  background: rgba(245, 242, 236, 0.14);
}

.form-submit {
  margin-top: 8px;
  padding: 14px 48px;
  border: 1px solid var(--color-text);
  border-radius: 999px;
  background: var(--color-text);
  color: var(--color-bg-dark);
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition:
    background 500ms cubic-bezier(0.16, 1, 0.3, 1),
    color 500ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.form-submit:hover {
  transform: translateY(-3px);
  background: transparent;
  color: var(--color-text);
}

.form-note {
  margin: 24px 0 0;
  color: var(--color-muted);
  font-size: 13px;
}

.form-status {
  margin: 18px 0 0;
  min-height: 1.4em;
  color: var(--color-text);
  font-size: 14px;
}

.contact-alt {
  margin: 40px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 14px;
  text-align: center;
}

.contact-alt .contact-links {
  margin-top: 18px;
  font-size: clamp(18px, 3vw, 26px);
}

/* 404 ページ */
.not-found {
  display: grid;
  place-content: center;
  min-height: 72svh;
  text-align: center;
}

.not-found .page-hero-title {
  margin-bottom: 28px;
  font-size: clamp(40px, 7vw, 84px);
}

.not-found-note {
  margin-bottom: 30px;
  color: var(--color-muted);
}

.not-found-back a {
  border-bottom: 1px solid currentColor;
  font-family: var(--font-display);
  font-size: 18px;
  transition: color 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

.not-found-back a:hover {
  color: var(--color-hover-navy);
}

.site-footer {
  padding: 34px var(--side-padding);
  color: var(--color-muted);
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-muted);
  transition:
    color 450ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 450ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--color-text);
  border-color: var(--color-text);
  transform: translateY(-3px);
}

/* Home: ヒーロー1画面を崩さないよう、フッターを画面下部に重ねる */
.home-page .site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  padding-top: 0;
  padding-bottom: 26px;
  color: rgba(245, 242, 236, 0.85);
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.5);
}

.home-page .social-links a {
  border-color: rgba(245, 242, 236, 0.5);
  color: rgba(245, 242, 236, 0.85);
}

.js .reveal {
  opacity: 0;
  filter: blur(16px);
  transform: translateY(44px);
  transition:
    opacity 1200ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 1200ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

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

@keyframes hero-copy-in {
  from {
    opacity: 0;
    filter: blur(14px);
    transform: translateY(34px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes hero-visual-in {
  from {
    opacity: 0;
    filter: blur(10px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .hero-visual {
    transform: scale(1.015);
  }

  .hero-content {
    opacity: 1;
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .site-nav {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }

  .about-layout {
    grid-template-areas:
      "title"
      "image"
      "copy";
    grid-template-columns: 1fr;
  }

  .about-layout--compact {
    grid-template-areas:
      "image"
      "copy";
  }

  .about-title {
    justify-content: center;
    margin-top: 0;
  }

  .about-copy {
    text-align: center;
  }

  .about-copy p,
  .dance-history {
    margin-right: auto;
    margin-left: auto;
  }

  /* 狭い画面では日付を内容の上に積む */
  .backdance li {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .profile-image-placeholder {
    width: min(100%, 520px);
    min-height: 520px;
    margin: 0 auto;
  }

  .horizontal-track {
    grid-auto-columns: minmax(260px, 74vw);
  }

  .photo-grid {
    column-count: 2;
  }

  /* 狭い画面では横並びをやめ、映像の下にテキストを積む */
  .film {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 560px) {
  .site-nav {
    gap: 18px;
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 14px;
  }

  .hero-visual::after {
    inset: 18% 8%;
  }

  .profile-image-placeholder {
    min-height: 380px;
  }

  .work-image-placeholder {
    min-height: 340px;
  }

  .photo-grid {
    column-count: 1;
  }
}
