@font-face {
  font-family: "Noto Sans JP Critical";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/noto-sans-jp-400-critical.woff2?v=20260901") format("woff2");
}

@font-face {
  font-family: "Noto Sans JP Critical";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/noto-sans-jp-700-critical.woff2?v=20260901") format("woff2");
}

@font-face {
  font-family: "Noto Sans JP Critical";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("fonts/noto-sans-jp-800-critical.woff2?v=20260901") format("woff2");
}

:root {
  --orange: #f8ad00;
  --red: #e13333;
  --blue: #3992ff;
  --orange-soft: #fff7df;
  --red-soft: #fff0f0;
  --blue-soft: #edf5ff;
  --navy: #222222;
  --navy-deep: #171717;
  --ink: #222222;
  --text: #333333;
  --muted: #4b5563;
  --line: #e5e7eb;
  --surface: #f8f9fa;
  --white: #ffffff;
  --gradient: linear-gradient(45deg, #f8ad00, #e13333, #3992ff);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --radius: 12px;
  --container: 1200px;
  --site-header-height: 86px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Yu Gothic UI", "Hiragino Sans", sans-serif;
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

html.noto-ready body { font-family: "Noto Sans JP", "Yu Gothic UI", "Hiragino Sans", sans-serif; }
.site-header, .hero { font-family: "Noto Sans JP Critical", "Yu Gothic UI", "Hiragino Sans", sans-serif; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); line-height: 1.35; }

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

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-deep);
  border-radius: 8px;
}

.skip-link:focus { transform: translateY(0); }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.brand-line { height: 4px; background: var(--gradient); }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 5px 24px rgba(0, 0, 0, 0.05);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 82px;
  gap: clamp(16px, 1.5vw, 24px);
}

.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.header-logo { display: block; width: clamp(220px, 24vw, 280px); height: auto; }

.header-navigation { display: flex; align-items: center; justify-content: flex-end; flex: 1; min-width: 0; gap: 26px; }
.global-nav { display: flex; align-items: center; gap: 24px; }
.global-nav a { color: var(--navy); font-size: 0.88rem; font-weight: 700; white-space: nowrap; }
.global-nav a:hover, .global-nav a:focus-visible { color: var(--red); }
.global-nav a[aria-current="page"] { color: var(--red); }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 9px;
}

.nav-toggle > span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--navy); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 22px;
  gap: 10px;
  color: var(--white);
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(248, 173, 0, 0.24);
  font-weight: 800;
  line-height: 1.4;
}

.button:hover, .button:focus-visible { background: var(--orange); filter: brightness(1.02); }
.button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button-small { min-height: 44px; padding: 10px 18px; font-size: 0.88rem; }
.header-cta { white-space: nowrap; }
.button-secondary { color: var(--navy); background: var(--white); border-color: var(--line); box-shadow: none; }
.button-secondary:hover, .button-secondary:focus-visible { color: var(--red); background: var(--red-soft); }

.hero {
  position: relative;
  min-height: calc(100vh - var(--site-header-height));
  min-height: calc(100svh - var(--site-header-height));
  overflow: hidden;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 36%, rgba(255, 255, 255, 0.84) 53%, rgba(255, 255, 255, 0.24) 76%, rgba(255, 255, 255, 0.04) 100%),
    url("assets/images/hero-interior-16x9.webp") center center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(34, 34, 34, 0.08));
}

.hero-grid {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--site-header-height));
  min-height: calc(100svh - var(--site-header-height));
  padding-block: clamp(40px, 6vh, 86px);
  padding-block: clamp(40px, 6svh, 86px);
}

.hero-copy { width: min(100%, 840px); transform: translateY(-4vh); }

.eyebrow { margin-bottom: 16px; color: var(--red); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.2em; }
.hero-category { margin-bottom: 14px; color: var(--navy); font-weight: 800; font-size: 1.5rem; letter-spacing: 0.05em; }
.hero h1 { max-width: 840px; margin-bottom: 20px; font-size: clamp(2.25rem, 4.3vw, 4.5rem); font-weight: 800; line-height: 1.5; letter-spacing: 0.02em; text-shadow: 0 4px 30px rgba(255, 255, 255, 0.8); }
.hero h1 span {
  color: var(--ink);
  background: none;
  -webkit-text-fill-color: currentColor;
}
.hero-lead { margin-bottom: 12px; color: var(--navy); font-size: 1.12rem; font-weight: 800; }
.hero-description { max-width: 640px; margin-bottom: 56px; font-size: 1.04rem; line-height: 1.8; letter-spacing: 0.03em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 12px 18px;
  list-style: none;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 700;
}

.trust-list li { display: flex; align-items: center; gap: 6px; }
.trust-list svg { width: 18px; height: 18px; fill: none; stroke: var(--red); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.media-placeholder {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 36px;
  color: rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(145deg, rgba(34, 34, 34, 0.88), rgba(34, 34, 34, 0.57)),
    var(--gradient);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(34, 34, 34, 0.18);
  text-align: center;
}

.media-placeholder::before, .media-placeholder::after { content: ""; position: absolute; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50%; }
.media-placeholder::before { width: 320px; height: 320px; top: -120px; right: -120px; }
.media-placeholder::after { width: 220px; height: 220px; bottom: -100px; left: -80px; }
.media-kicker { position: relative; margin-bottom: 12px; color: #ffd46b; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.18em; }
.media-placeholder strong { position: relative; margin-bottom: 8px; color: var(--white); font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.2; }
.media-placeholder > span { position: relative; }
.hero-visual-note { position: absolute; right: 22px; bottom: 20px; left: 22px; display: flex; justify-content: center; gap: 8px; }
.hero-visual-note span { padding: 6px 10px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 999px; font-size: 0.7rem; font-weight: 700; }

:focus-visible {
  outline: 3px solid rgba(57, 146, 255, 0.4);
  outline-offset: 4px;
}

.section { padding-block: 60px; }
.section-white { background: var(--white); }
.section-gray { background: var(--surface); }

.section-kicker,
.card-kicker {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.section-title {
  margin-bottom: 28px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.section-title::after {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin-top: 18px;
  background: var(--gradient);
  border-radius: 99px;
}

.section-lead { max-width: 760px; margin-bottom: 48px; color: var(--muted); font-size: 1.02rem; }

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: end;
  margin-bottom: 42px;
  gap: 50px;
}

.section-heading-row .section-title { margin-bottom: 0; }
.section-intro { margin-bottom: 2px; color: var(--muted); }

.breadcrumbs {
  color: var(--muted);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.breadcrumbs .container {
  display: flex;
  min-height: 44px;
  align-items: center;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 8px 0;
  gap: 6px;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  line-height: 1.5;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 6px;
  color: #9aa3ad;
}

.breadcrumbs a { color: var(--navy); font-weight: 700; }
.breadcrumbs a:hover, .breadcrumbs a:focus-visible { color: var(--red); }

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 30px 25px;
  background:
    radial-gradient(circle at 88% 18%, rgba(248, 173, 0, 0.14), transparent 32%),
    linear-gradient(135deg, #ffffff, #f8f9fa);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(34, 34, 34, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(34, 34, 34, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(to right, black, transparent 84%);
  mask-image: linear-gradient(to right, black, transparent 84%);
}

.page-hero .container { position: relative; }
.page-hero h1 { max-width: 920px; margin-bottom: 20px; font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1.2; letter-spacing: -0.05em; }
.page-hero-lead { margin-bottom: 0; color: var(--muted); font-size: 1.05rem; }
.page-hero-area { max-width: 820px; margin: 14px 0 0; color: var(--navy); font-size: 0.9rem; font-weight: 700; }
.page-content { background: var(--white); }
.detail-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr); align-items: start; gap: clamp(42px, 7vw, 86px); }
.content-stack { display: grid; gap: 24px; }
.content-card { padding: 32px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.content-card h2, .content-card h3 { margin-bottom: 16px; }
.content-card p:last-child, .content-card ul:last-child { margin-bottom: 0; }
.info-table { margin: 0; border-top: 1px solid var(--line); }
.info-row { display: grid; grid-template-columns: 170px minmax(0, 1fr); padding: 20px 0; gap: 24px; border-bottom: 1px solid var(--line); }
.info-row dt { color: var(--muted); font-size: 0.82rem; font-weight: 800; }
.info-row dd { margin: 0; color: var(--navy); }
.info-row ul { margin: 0; padding-left: 1.2em; }
.info-row li { margin-bottom: 5px; }
.company-photo { overflow: hidden; margin: 0; border-radius: 16px; box-shadow: 0 24px 58px rgba(0, 0, 0, 0.13); }
.company-photo img { display: block; width: 100%; height: auto; }
.page-cta-panel { display: flex; align-items: center; justify-content: space-between; padding: 38px 42px; gap: 30px; background: var(--navy-deep); border-radius: 16px; color: rgba(255, 255, 255, 0.76); }
.page-cta-panel h2 { margin-bottom: 8px; color: var(--white); font-size: clamp(1.6rem, 3vw, 2.35rem); }
.page-cta-panel p { margin-bottom: 0; }
.page-cta-panel .button { flex: 0 0 auto; }
.page-section-heading { max-width: 820px; margin-bottom: 42px; }
.page-section-heading .section-title { margin-bottom: 18px; }
.page-section-heading p:last-child { margin-bottom: 0; color: var(--muted); }
.page-case-list { display: grid; gap: 22px; }
.page-case-list .case-card { min-height: 190px; }
.page-case-list .case-visual img { min-height: 190px; }
.case-data-status { margin: 0 0 18px; padding: 12px 16px; color: var(--muted); background: var(--surface); border: 1px solid var(--line); border-radius: 9px; font-size: 0.88rem; }
.case-data-status[data-kind="error"] { color: #8d2525; background: #fff3f3; border-color: #efc1c1; }
.case-data-empty { grid-column: 1 / -1; margin: 0; padding: 34px 24px; color: var(--muted); text-align: center; background: var(--white); border: 1px dashed var(--line); border-radius: 13px; }
.case-card-fallback { display: flex; align-items: center; justify-content: center; flex-direction: column; padding: 22px; color: var(--white); text-align: center; background: linear-gradient(135deg, #1f2937, #111827); }
.case-card-fallback span { color: inherit; font-size: clamp(0.9rem, 1.4vw, 1.15rem); font-weight: 800; line-height: 1.5; letter-spacing: 0.03em; }
.case-card-fallback small { margin-top: 8px; color: var(--orange); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.16em; }
.credit-case-list { display: grid; gap: 14px; }
.credit-case-card { display: grid; grid-template-columns: 267px minmax(0, 1fr); min-height: 200px; overflow: hidden; color: inherit; background: var(--white); border: 1px solid var(--line); border-radius: 13px; box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06); }
a.credit-case-card:hover { border-color: rgba(225, 51, 51, 0.45); }
.credit-case-visual { align-self: stretch; width: 100%; min-height: 200px; aspect-ratio: 4 / 3; overflow: hidden; background: #202020; }
.credit-case-visual img { display: block; width: 100%; height: 100%; object-fit: cover; }
.credit-case-visual-logo { padding: 24px 20px; background: var(--white); }
.credit-case-visual-logo img { min-height: 0; object-fit: contain; }
.credit-case-visual-text { display: flex; align-items: center; justify-content: center; flex-direction: column; padding: 18px; text-align: center; }
.credit-case-visual-text span { color: var(--white); font-size: 1.2rem; font-weight: 800; letter-spacing: 0.04em; }
.credit-case-visual-text small { margin-top: 6px; color: var(--orange); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.18em; }
.credit-case-body { display: flex; min-width: 0; align-items: flex-start; flex-direction: column; padding: 15px 18px 12px; }
.credit-case-body .card-kicker { margin-bottom: 6px; line-height: 2; }
.credit-case-body h3 { margin-bottom: 6px; font-size: clamp(0.9rem, 1.2vw, 1rem); line-height: 1.35; }
.credit-case-meta { display: grid; width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0 0 6px; gap: 4px 14px; }
.credit-case-meta > div { padding-top: 3px; border-top: 1px solid var(--line); }
.credit-case-meta dt { margin-bottom: 1px; color: var(--muted); font-size: 0.6rem; font-weight: 700; line-height: 1.35; }
.credit-case-meta dd { margin: 0; color: var(--navy); font-size: 0.72rem; font-weight: 700; line-height: 1.35; }
.credit-case-note { margin-bottom: 18px; color: var(--muted); font-size: 0.88rem; }
.credit-case-body .text-link { align-self: flex-end; margin-top: auto; font-size: 0.72rem; }
.credit-case-status { display: inline-flex; margin-top: auto; padding: 4px 9px; color: var(--navy); background: var(--orange-soft); border-radius: 999px; font-size: 0.64rem; font-weight: 800; }
.portfolio-case-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.portfolio-case-card { overflow: hidden; color: inherit; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
a.portfolio-case-card:hover { border-color: rgba(225, 51, 51, 0.45); }
.portfolio-case-visual { display: grid; aspect-ratio: 16 / 10; place-items: center; overflow: hidden; background: #202020; }
.portfolio-case-visual img { display: block; width: 100%; height: 100%; object-fit: cover; }
.portfolio-case-visual span { color: rgba(255, 255, 255, 0.68); font-size: 0.76rem; font-weight: 700; line-height: 1.7; text-align: center; letter-spacing: 0.08em; }
.portfolio-case-body { padding: 28px; }
.portfolio-case-body h3 { margin-bottom: 10px; font-size: clamp(1.25rem, 2.2vw, 1.65rem); line-height: 1.45; }
.portfolio-case-body > p:not(.card-kicker) { color: var(--muted); }
.portfolio-case-body .text-link { display: inline-block; margin-top: 16px; }
.portfolio-case-status { color: var(--red); font-size: 0.78rem; font-weight: 800; }
.case-detail-section { padding-top: 72px; }
.case-detail-feature { width: min(100%, 1040px); margin: 0 auto clamp(36px, 5vw, 52px); }
.case-detail-feature img { display: block; width: 100%; height: auto; }
.case-detail-heading { width: min(100%, 1040px); margin: 0 auto clamp(50px, 6vw, 72px); }
.case-detail-heading h1 { max-width: 1080px; margin-bottom: 0; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.35; letter-spacing: -0.035em; }
.case-detail-date { display: block; margin-top: 18px; color: var(--muted);  font-weight: 700; text-align: right; letter-spacing: 0.05em; }
.case-detail-prose { width: min(100%, 820px); margin-inline: auto; }
.case-detail-prose > p { margin-bottom: 24px; }
.case-detail-prose h2 { margin: 64px 0 32px; font-size: clamp(1.55rem, 3vw, 2.35rem); line-height: 1.5; }
.case-detail-prose h3 { margin: 52px 0 20px; font-size: clamp(1.3rem, 2.4vw, 1.75rem); }
.case-detail-prose ul { margin: 0 0 28px; padding: 20px 24px 20px 48px; background: var(--surface); border-left: 4px solid var(--orange); border-radius: 0 10px 10px 0; }
.case-detail-prose li { margin-bottom: 8px; }
.case-detail-prose li:last-child { margin-bottom: 0; }
.case-detail-contact { display: flex; align-items: center; justify-content: space-between; margin-top: 58px; padding: 28px 30px; gap: 28px; background: var(--orange-soft); border-radius: 14px; }
.case-detail-contact p { margin: 0; }
.case-detail-contact .button { flex: 0 0 auto; }
.case-photo-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: clamp(70px, 9vw, 112px); gap: 18px; }
.case-photo-gallery figure { overflow: hidden; margin: 0; border-radius: 12px; background: var(--surface); }
.case-photo-gallery img { display: block; width: 100%; height: auto; }
.case-detail-back { display: flex; flex-wrap: wrap; justify-content: flex-end; margin: 48px 0 0; gap: 12px 22px; text-align: right; }
.price-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.price-grid-four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.price-card { display: flex; min-height: 100%; flex-direction: column; padding: 32px 28px; }
.price-card h2, .price-card h3 { margin-bottom: 8px; font-size: 1.28rem; }
.price-time { margin-bottom: 14px; color: var(--muted); font-size: 0.8rem; font-weight: 700; }
.price-amount { margin-bottom: 20px; color: var(--navy); font-size: clamp(1.65rem, 3vw, 2.25rem); font-weight: 800; }
.price-amount small { font-size: 0.72rem; }
.price-card ul { margin: 0; padding-left: 1.2em; color: var(--muted); font-size: 0.88rem; }
.price-card li { margin-bottom: 7px; }
.option-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.option-card { padding: 26px; }
.option-card h3 { margin-bottom: 7px; font-size: 1.05rem; }
.option-card strong { display: block; margin-bottom: 8px; color: var(--red); font-size: 1.22rem; }
.option-card p { margin-bottom: 0; color: var(--muted); font-size: 0.88rem; }
.member-profile-list { display: grid; gap: clamp(64px, 9vw, 120px); }
.member-profile-list > .profile-page-grid + .profile-page-grid { padding-top: clamp(64px, 9vw, 120px); border-top: 1px solid var(--line); }
.profile-page-grid { display: grid; grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr); align-items: start; gap: clamp(44px, 7vw, 88px); }
.profile-page-photo { position: sticky; top: 112px; overflow: hidden; margin: 0; border-radius: 16px; box-shadow: 0 24px 58px rgba(0, 0, 0, 0.13); }
.profile-page-photo img { display: block; width: 100%; height: auto; }
.profile-lead h1, .profile-lead h2 { margin-bottom: 8px; font-size: clamp(2rem, 4vw, 3.2rem); }
.profile-lead h1 span, .profile-lead h2 span { margin-left: 8px; color: var(--muted); font-size: 0.9rem; }
.profile-lead > p { color: var(--muted); }
.profile-lead .profile-catchcopy { margin: 22px 0 18px; color: var(--navy); font-size: clamp(1.28rem, 2.5vw, 1.65rem); font-weight: 800; }
.profile-detail-link { margin-top: 26px; }
.tag-list { display: flex; flex-wrap: wrap; margin: 24px 0 0; padding: 0; gap: 8px; list-style: none; }
.tag-list li { padding: 7px 11px; color: var(--navy); background: var(--orange-soft); border-radius: 999px; font-size: 0.76rem; font-weight: 700; }
.cameraman-page-hero { padding-block: 64px 52px; }
.cameraman-list-section { padding-block: 58px; }
.cameraman-list-section .member-profile-list { gap: 26px; }
.cameraman-list-section .member-profile-list > .profile-page-grid + .profile-page-grid { padding-top: 26px; }
.cameraman-list-section .cameraman-member-card { grid-template-columns: 210px minmax(0, 1fr); align-items: center; gap: clamp(30px, 4vw, 52px); }
.cameraman-list-section .profile-page-photo { position: static; width: 210px; aspect-ratio: 1 / 1; border-radius: 12px; box-shadow: 0 16px 38px rgba(0, 0, 0, 0.1); }
.cameraman-list-section .profile-page-photo img { width: 100%; height: 100%; object-fit: cover; }
.cameraman-list-section .profile-lead h2 { font-size: clamp(1.75rem, 2.8vw, 2.35rem); }
.cameraman-list-section .profile-lead > p { margin-bottom: 9px; font-size: 0.9rem; line-height: 1.7; }
.cameraman-list-section .profile-lead .profile-catchcopy { margin: 7px 0 10px; font-size: clamp(1.05rem, 2vw, 1.3rem); }
.cameraman-list-section .tag-list { margin-top: 12px; gap: 6px; }
.cameraman-list-section .tag-list li { padding: 5px 9px; font-size: 0.7rem; }
.cameraman-list-section .profile-detail-link { margin-top: 11px; margin-bottom: 0; }
.member-info-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 34px; gap: 16px; }
.member-info-card { padding: 24px; }
.member-info-card h3 { margin-bottom: 12px; font-size: 1rem; }
.member-info-card ul { margin: 0; padding-left: 1.2em; color: var(--muted); }
.member-info-card p { margin: 0 0 8px; }
.member-info-card p:last-child { margin-bottom: 0; }
.member-info-card a { color: var(--red); font-weight: 700; overflow-wrap: anywhere; }
.equipment-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.equipment-grid .content-card { padding: 26px; }
.equipment-grid ul { margin: 0; padding-left: 1.2em; color: var(--muted); }
.equipment-grid .content-card > p { color: var(--muted); }
.equipment-grid .content-card > p:not(:first-of-type) { margin-top: 18px; }
.career-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(36px, 7vw, 88px); }
.career-column h3 { margin-bottom: 26px; font-size: clamp(1.35rem, 2.5vw, 1.75rem); }
.timeline { margin: 0; padding: 0; list-style: none; border-left: 2px solid var(--line); }
.timeline li { position: relative; padding: 0 0 24px 24px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before { content: ""; position: absolute; width: 10px; height: 10px; top: 7px; left: -6px; background: var(--red); border-radius: 50%; }
.timeline time { display: block; color: var(--red); font-size: 0.78rem; font-weight: 800; }
.timeline strong { display: block; color: var(--navy); }
.timeline span { display: block; color: var(--muted); }
.achievement-list { width: min(100%, 920px); margin-inline: auto; }
.achievement-list li { padding-bottom: 20px; }
.achievement-list strong { font-size: 1.02rem; }
.legal-content { width: min(100%, 920px); margin: 0 auto; }
.legal-summary { margin-bottom: 44px; padding: 24px 28px; background: var(--orange-soft); border-left: 4px solid var(--orange); border-radius: 0 10px 10px 0; }
.legal-content section { padding: 34px 0; border-top: 1px solid var(--line); }
.legal-content section:first-of-type { border-top: 0; }
.legal-content h2 { margin-bottom: 20px; font-size: clamp(1.45rem, 3vw, 2rem); }
.legal-content h3 { margin: 24px 0 10px; font-size: 1.08rem; }
.legal-content ul { padding-left: 1.25em; }
.legal-content li { margin-bottom: 8px; }
.legal-table .info-row { grid-template-columns: 220px minmax(0, 1fr); }
.page-contact-note { margin-top: 18px; color: var(--muted); font-size: 0.8rem; }

.surface-card {
  background: var(--white);
  border: 1px solid rgba(219, 227, 236, 0.85);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-slot {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(145deg, rgba(34, 34, 34, 0.88), rgba(34, 34, 34, 0.58)),
    var(--gradient);
}

.media-slot::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -90px;
  right: -60px;
  border: 1px solid rgba(147, 197, 253, 0.2);
  border-radius: 50%;
}

.news-list { border-top: 1px solid var(--line); }

.news-item {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) auto;
  align-items: center;
  padding: 26px 8px;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.news-item time { color: var(--red); font-size: 0.84rem; font-weight: 800; letter-spacing: 0.06em; }
.news-item h3 { margin-bottom: 5px; font-size: 1.04rem; }
.news-item p { margin-bottom: 0; color: var(--muted); font-size: 0.9rem; }
.news-item strong { color: var(--navy); letter-spacing: 0.05em; }
.news-label { padding: 5px 11px; color: var(--red); background: var(--red-soft); border-radius: 999px; font-size: 0.72rem; font-weight: 800; }
.news-label-muted { color: var(--muted); background: #edf1f5; }

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

.feature-card { position: relative; overflow: hidden; }
.feature-number { position: absolute; z-index: 2; top: 16px; left: 16px; display: grid; width: 45px; height: 45px; place-items: center; color: var(--white); background: var(--gradient); border-radius: 9px; font-size: 0.82rem; font-weight: 800; }
.feature-placeholder { display: grid; min-height: 218px; place-items: center; }
.feature-placeholder span { position: relative; padding: 6px 10px; border: 1px solid rgba(255, 255, 255, 0.17); border-radius: 999px; font-size: 0.72rem; font-weight: 700; }
.feature-body { padding: 28px; }
.feature-body h3 { min-height: 4.15em; margin-bottom: 16px; font-size: 1.25rem; }
.feature-body p { margin-bottom: 13px; color: var(--muted); font-size: 0.9rem; }
.feature-body p:last-child { margin-bottom: 0; }

.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.service-card { overflow: hidden; }
.service-card-link { color: inherit; }
.service-visual { position: relative; overflow: hidden; aspect-ratio: 8 / 5; }
.service-visual img { display: block; width: 100%; height: 100%; object-fit: cover; }
.service-number { position: absolute; top: 16px; left: 16px; display: grid; width: 42px; height: 42px; place-items: center; color: var(--white); background: rgba(225, 51, 51, 0.92); border-radius: 8px; font-size: 0.76rem; font-weight: 800; letter-spacing: 0.02em; }
.service-body { padding: 24px; }
.service-body p { margin-bottom: 6px; color: var(--red); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.16em; }
.service-body h2, .service-body h3 { margin-bottom: 8px; font-size: 1.16rem; }
.service-body span { color: var(--muted); font-size: 0.8rem; }

.service-category + .service-category { margin-top: 72px; padding-top: 72px; border-top: 1px solid var(--line); }
.service-category > h2 { margin-bottom: 28px; font-size: clamp(1.55rem, 3vw, 2.25rem); line-height: 1.35; }
.service-category > h2 span { color: var(--red); font-size: 0.56em; white-space: nowrap; }
.service-item-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.service-item-card { overflow: hidden; }
.service-item-visual { overflow: hidden; aspect-ratio: 8 / 5; background: var(--orange-soft); }
.service-item-visual img { display: block; width: 100%; height: 100%; object-fit: cover; }
.service-item-body { padding: 24px; }
.service-item-body h3 { margin: 0; font-size: 1.08rem; line-height: 1.65; }
.service-item-body p { margin: 10px 0 0; color: var(--muted); font-size: 0.86rem; line-height: 1.75; }
.service-item-body a { color: var(--red); text-decoration: underline; text-underline-offset: 0.18em; }

.case-list { display: grid; gap: 18px; }

.case-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.case-visual { min-height: 160px; overflow: hidden; background: #e9ecef; }
.case-visual img { display: block; width: 100%; height: 100%; min-height: 160px; object-fit: cover; }
.case-copy { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.75fr); grid-template-areas: "kicker meta" "title meta" "link meta"; align-items: center; padding: 16px 28px; column-gap: 28px; }
.case-copy .card-kicker { grid-area: kicker; margin-bottom: 2px; }
.case-copy h3 { grid-area: title; margin-bottom: 6px; font-size: clamp(1.08rem, 1.8vw, 1.35rem); line-height: 1.45; letter-spacing: -0.025em; }
.case-meta { display: grid; grid-area: meta; margin: 0; gap: 5px; }
.case-meta > div { display: grid; grid-template-columns: 74px minmax(0, 1fr); min-width: 0; gap: 8px; }
.case-meta dt { margin-bottom: 3px; color: var(--muted); font-size: 0.7rem; font-weight: 700; }
.case-meta dd { margin: 0; overflow-wrap: anywhere; color: var(--navy); font-size: 0.86rem; font-weight: 700; }
.text-link { display: inline-flex; align-items: center; align-self: flex-start; gap: 8px; color: var(--red); font-weight: 800; }
.case-copy .text-link { grid-area: link; }
.text-link svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.inline-link { color: var(--red); font-weight: 700; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
.inline-link-light { color: var(--white); }
.inline-link:hover, .inline-link:focus-visible { text-decoration-thickness: 2px; }

.team-grid { display: grid; grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1.14fr); align-items: center; gap: clamp(48px, 8vw, 100px); }
.team-visual { aspect-ratio: 1; overflow: hidden; margin: 0; border-radius: 16px; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.16); }
.team-visual img { display: block; width: 100%; height: 100%; object-fit: cover; }
.team-copy .section-title { margin-bottom: 30px; }
.team-role { margin-bottom: 6px; color: var(--red); font-size: 0.78rem; font-weight: 800; }
.team-copy h3 { margin-bottom: 20px; font-size: 1.85rem; }
.team-copy h3 span { margin-left: 7px; color: var(--muted); font-size: 0.8rem; font-weight: 700; }
.team-copy > p:not(.section-kicker, .team-role) { color: var(--muted); }
.profile-points { display: flex; flex-wrap: wrap; margin: 26px 0 0; padding: 0; gap: 8px; list-style: none; }
.profile-points li { padding: 7px 11px; color: var(--navy); background: var(--blue-soft); border-radius: 999px; font-size: 0.76rem; font-weight: 700; }

.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.review-card { position: relative; padding: 34px 30px 28px; }
.quote-mark { position: absolute; top: 2px; right: 20px; color: #ffedbc; font-family: Georgia, serif; font-size: 5rem; line-height: 1; }
.review-type { position: relative; margin-bottom: 18px; color: var(--red); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; }
.review-card blockquote { position: relative; margin: 0 0 24px; color: var(--navy); font-weight: 600; }
.review-source { margin-bottom: 0; padding-top: 16px; color: var(--muted); border-top: 1px solid var(--line); font-size: 0.82rem; font-weight: 700; }

.component-slot { min-height: 120px; }
.component-slot-header,
.component-slot-footer { display: contents; }
.component-slot-faq { min-height: 480px; background: var(--surface); }
.component-slot-booking { min-height: 520px; background: var(--navy-deep); }
.component-slot-footer { min-height: 390px; background: #171717; }
.component-loading, .component-error { width: calc(100% - 48px); margin: 0 auto; padding: 48px 0; color: var(--muted); }
.component-error { color: #b91c1c; }

.faq-layout { display: grid; grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr); gap: clamp(48px, 8vw, 100px); }
.faq-heading { position: sticky; top: 120px; align-self: start; }
.faq-heading p:last-child { color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: flex-start; padding: 25px 46px 25px 0; gap: 16px; color: var(--navy); font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::marker { content: ""; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; color: var(--red); font-size: 1.45rem; font-weight: 400; line-height: 1; }
.faq-list summary { position: relative; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list summary > span, .faq-answer > span { display: grid; width: 28px; height: 28px; flex: 0 0 28px; place-items: center; border-radius: 6px; font-size: 0.78rem; }
.faq-list summary > span { color: var(--white); background: var(--red); }
.faq-answer { display: flex; padding: 0 46px 26px 0; gap: 16px; color: var(--muted); }
.faq-answer > span { color: var(--red); background: var(--red-soft); font-weight: 800; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul { margin: 0 0 18px; padding-left: 1.3em; }
.faq-answer li { margin-bottom: 8px; }
.faq-list-full { width: min(100%, 1080px); margin: 0 auto; }
.faq-list-full summary { padding-right: 0; cursor: default; pointer-events: none; }
.faq-list-full summary::after { display: none; }
.faq-list-full .faq-answer { padding-right: 0; }

.schedule-heading { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr); align-items: end; margin-bottom: 42px; gap: 50px; }
.schedule-heading .section-title { margin-bottom: 0; }
.schedule-heading > p { margin-bottom: 2px; color: var(--muted); }
.calendar-frame { overflow: hidden; padding: 10px; }
.calendar-frame iframe { display: block; width: 100%; min-height: 720px; border: 0; border-radius: 8px; background: var(--white); }

.booking { position: relative; overflow: hidden; color: rgba(255, 255, 255, 0.78); background: var(--navy-deep); }
.booking::before { content: ""; position: absolute; width: 520px; height: 520px; top: -280px; right: -170px; border: 1px solid rgba(147, 197, 253, 0.14); border-radius: 50%; }
.booking-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr); align-items: center; gap: clamp(48px, 8vw, 100px); }
.section-kicker-light { color: #ffd46b; }
.booking h2 { max-width: 760px; margin-bottom: 24px; color: var(--white); font-size: clamp(2rem, 4vw, 3.6rem); letter-spacing: -0.045em; }
.booking-copy > p { max-width: 700px; }
.booking-copy ul { margin: 28px 0 32px; padding: 0; list-style: none; }
.booking-copy li { display: flex; align-items: center; margin-bottom: 9px; gap: 9px; color: var(--white); font-size: 0.9rem; font-weight: 700; }
.booking-copy li svg { width: 19px; height: 19px; fill: none; stroke: var(--orange); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.button-light { color: var(--navy); background: var(--white); border-color: var(--white); box-shadow: none; }
.button-light:hover, .button-light:focus-visible { color: var(--red); background: var(--red-soft); }
.booking-contact { padding: 34px; background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 14px; }
.booking-contact .card-kicker { color: #ffd46b; }
.booking-contact h3 { margin-bottom: 26px; color: var(--white); font-size: 1.4rem; }
.booking-contact a { display: flex; flex-direction: column; padding: 18px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.13); }
.booking-contact a span { font-size: 0.72rem; font-weight: 700; }
.booking-contact a strong { color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: 0.04em; }
.booking-contact > p:last-child { margin: 22px 0 0; font-size: 0.8rem; }

.site-footer { color: #c7c7c7; background: #171717; }
.footer-line { height: 4px; background: var(--gradient); }
.footer-grid { display: grid; grid-template-columns: 1.45fr repeat(3, 1fr); padding-block: 70px 56px; gap: 44px; }
.brand-footer { margin-bottom: 20px; }
.footer-logo { display: block; width: min(190px, 100%); height: auto; }
.footer-grid h2 { margin-bottom: 18px; color: var(--white); font-size: 0.82rem; letter-spacing: 0.08em; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid a { margin-bottom: 9px; font-size: 0.82rem; }
.footer-grid a:hover, .footer-grid a:focus-visible { color: var(--white); }
.footer-grid p { margin-bottom: 8px; font-size: 0.78rem; }
.footer-grid strong { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; padding-block: 22px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer-bottom p { margin: 0; font-size: 0.72rem; }

@media (max-width: 1400px) {
  :root { --site-header-height: 76px; }
  .header-inner {
    min-height: 72px;
    gap: clamp(8px, 1.15vw, 16px);
  }
  .header-logo { width: clamp(190px, 18vw, 230px); }
  .global-nav { gap: clamp(8px, 1.15vw, 16px); }
  .global-nav a { font-size: clamp(0.84rem, 1vw, 0.88rem); }
  .header-cta { min-height: 44px; padding-inline: clamp(12px, 1.25vw, 18px); font-size: clamp(0.84rem, 1vw, 0.88rem); }
}

@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { display: grid; grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr); }
  .feature-body h3 { min-height: 0; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-grid-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.35fr repeat(3, 0.85fr); gap: 28px; }
}

@media (max-width: 870px) {
  .hero {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
      url("assets/images/hero-interior-16x9.webp") 60% center / cover no-repeat;
  }
  .header-inner { min-height: 72px; }
  .header-logo { width: 210px; }
  .nav-toggle { display: block; }
  .header-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 22px 24px 26px;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
  }
  .header-navigation.is-open { display: flex; flex-direction: column; }
  .global-nav { align-items: stretch; flex-direction: column; gap: 0; }
  .global-nav a { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 0.94rem; }
  .header-cta { align-self: flex-start; margin-top: 6px; padding: 10px 18px; font-size: 0.88rem; }
  .hero-grid {
    padding-block: clamp(48px, 8vh, 72px);
    padding-block: clamp(48px, 8svh, 72px);
  }
  .hero-copy { max-width: 720px; }
  .section { padding-block: 92px; }
  .section-heading-row, .schedule-heading { grid-template-columns: 1fr; align-items: start; gap: 12px; }
  .detail-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .profile-page-grid { grid-template-columns: 1fr; }
  .profile-page-photo { position: static; width: min(100%, 560px); }
  .member-info-grid { grid-template-columns: 1fr; }
  .company-photo { width: min(100%, 560px); }
  .page-cta-panel { align-items: flex-start; flex-direction: column; }
  .feature-card { display: block; }
  .case-card, .team-grid, .faq-layout, .booking-grid { grid-template-columns: 1fr; }
  .case-visual { min-height: 160px; }
  .portfolio-case-grid { grid-template-columns: 1fr; }
  .team-visual { width: min(100%, 560px); min-height: 0; justify-self: center; }
  .faq-heading { position: static; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .container { width: calc(100% - 32px); }
  .header-logo { width: 210px; }
  .hero-grid { padding-block: 58px; }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.7rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-list { display: grid; grid-template-columns: 1fr; }
  .section { padding-block: 72px; }
  .breadcrumbs .container { min-height: 42px; }
  .breadcrumbs li { font-size: 0.74rem; }
  .page-hero { padding-block: 70px 58px; }
  .page-hero h1 { font-size: clamp(2.25rem, 12vw, 3.2rem); }
  .info-row { grid-template-columns: 1fr; padding-block: 18px; gap: 6px; }
  .content-card { padding: 26px 22px; }
  .option-grid, .equipment-grid, .career-grid { grid-template-columns: 1fr; }
  .cameraman-list-section .cameraman-member-card { grid-template-columns: 1fr; gap: 24px; }
  .cameraman-list-section .profile-page-photo { width: min(100%, 220px); }
  .legal-table .info-row { grid-template-columns: 1fr; }
  .profile-lead h1 span, .profile-lead h2 span { display: block; margin: 5px 0 0; }
  .page-cta-panel { padding: 30px 24px; }
  .section-title { font-size: clamp(1.85rem, 9vw, 2.5rem); }
  .news-item { grid-template-columns: 1fr; align-items: start; padding-block: 24px; gap: 8px; }
  .news-label { justify-self: start; }
  .service-grid { grid-template-columns: 1fr; }
  .service-visual { min-height: 0; }
  .service-category + .service-category { margin-top: 52px; padding-top: 52px; }
  .service-category > h2 span { display: block; margin-top: 5px; font-size: 0.6em; white-space: normal; }
  .service-item-grid { grid-template-columns: 1fr; }
  .case-visual { min-height: 150px; }
  .case-copy { grid-template-columns: 1fr; grid-template-areas: "kicker" "title" "meta" "link"; padding: 22px 24px; }
  .case-copy h3 { margin-bottom: 12px; }
  .case-meta { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: 12px; gap: 10px; }
  .case-meta > div { display: block; }
  .credit-case-body { padding: 24px 22px; }
  .credit-case-meta { grid-template-columns: 1fr; }
  .credit-case-card { grid-template-columns: 1fr; }
  .credit-case-visual { min-height: 0; aspect-ratio: 4 / 3; }
  .portfolio-case-body { padding: 24px 22px; }
  .case-detail-heading h1 { font-size: clamp(1.8rem, 8vw, 2.55rem); }
  .case-detail-section { padding-top: 52px; }
  .case-detail-prose h2 { margin-top: 52px; }
  .case-detail-prose h3 { margin-top: 44px; }
  .case-detail-contact { align-items: flex-start; flex-direction: column; padding: 24px 22px; }
  .case-photo-gallery { grid-template-columns: 1fr; gap: 14px; }
  .team-visual { min-height: 0; }
  .team-copy h3 span { display: block; margin: 5px 0 0; }
  .review-card { padding: 30px 24px 24px; }
  .faq-list summary { padding-right: 34px; }
  .faq-list-full summary { padding-right: 0; }
  .faq-answer { padding-right: 0; }
  .calendar-frame { padding: 5px; }
  .calendar-frame iframe { min-height: 620px; }
  .booking-contact { padding: 26px 22px; }
  .footer-grid { grid-template-columns: 1fr; padding-block: 56px 44px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

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

.section-button {
  float: center;
  margin: 12px auto;
}