/* 음악하는집 — Musiczip */
:root {
  --olive: #3d4f2f;
  --olive-mid: #5a6f48;
  --olive-soft: #8a9a78;
  --olive-tint: #eef1ea;
  --cream: #faf8f5;
  --white: #ffffff;
  --ink: #1c1c1c;
  --text: #2e2e2e;
  --muted: #6a6a6a;
  --line: #e6e2db;
  --shadow: 0 8px 30px rgba(28, 28, 28, 0.08);
  --shadow-sm: 0 2px 12px rgba(28, 28, 28, 0.06);
  --radius: 14px;
  --radius-sm: 10px;
  --header-h: 78px;
  --max: 1120px;
  --font: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.logo-img {
  display: block;
  height: 38px;
  width: auto;
  max-width: min(168px, 46vw);
  object-fit: contain;
  object-position: left center;
}

.logo-mark {
  width: 42px;
  height: 42px;
  color: var(--olive);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--olive);
  letter-spacing: -0.02em;
}

.logo-text span {
  font-size: 0.68rem;
  color: var(--olive-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav a {
  padding: 0.45rem 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--olive);
  background: var(--olive-tint);
}

.nav a.active {
  color: var(--olive);
  font-weight: 600;
  background: var(--olive-tint);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--olive);
}

.nav-toggle:hover {
  background: var(--olive-tint);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

/* Main */
main {
  flex: 1;
  min-height: 40vh;
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(420px, 64vh, 680px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #2a3224;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 28, 28, 0.15) 0%, rgba(28, 28, 28, 0.55) 100%),
    radial-gradient(ellipse at 30% 40%, #5a6f48 0%, transparent 55%),
    linear-gradient(135deg, #3d4f2f 0%, #1c2418 50%, #2a3224 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-media .hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 0;
}

/* 하단 전체 그라데이션 — 가운데 카피 가독성 */
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(12, 14, 10, 0.08) 0%,
    rgba(12, 14, 10, 0.06) 42%,
    rgba(12, 14, 10, 0.48) 74%,
    rgba(12, 14, 10, 0.74) 100%
  );
}

.hero.has-image .hero-media::after {
  background: linear-gradient(
    180deg,
    rgba(12, 14, 10, 0.06) 0%,
    rgba(12, 14, 10, 0.04) 40%,
    rgba(12, 14, 10, 0.46) 72%,
    rgba(12, 14, 10, 0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 3.5rem 0 3rem;
  color: var(--white);
  display: flex;
  justify-content: center; /* 가로 가운데 */
  text-align: center;
}

.hero-copy {
  max-width: 36rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  text-transform: none;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.55rem;
  white-space: nowrap;
}

.hero-kicker::before,
.hero-kicker::after {
  content: "";
  width: 18px;
  height: 1px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.5);
}

.hero h1 {
  font-size: clamp(1.95rem, 4.4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.22;
  margin-bottom: 0.6rem;
  max-width: none;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.hero .hero-text {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 34ch;
  margin: 0 auto 1.25rem;
  line-height: 1.65;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
}

/* 히어로 위 고스트 버튼 가독성 */
.hero .btn-ghost {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  backdrop-filter: blur(8px);
}

.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.65);
}

.hero .btn-primary {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

/* Page hero (inner pages) */
.page-hero {
  padding: 2.35rem 0 1.25rem;
  text-align: center;
}

.page-hero-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-soft);
  margin-bottom: 0.55rem;
}

.page-hero h1 {
  font-size: clamp(1.7rem, 3.4vw, 2.2rem);
  color: var(--olive);
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
  line-height: 1.25;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--olive);
  background: var(--olive-tint);
  border: 1px solid #d5decc;
  border-radius: 999px;
  letter-spacing: -0.01em;
  line-height: 1.3;
  max-width: min(100%, 36rem);
}

.page-hero-sub {
  color: var(--muted);
  max-width: 44ch;
  margin-inline: auto;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 페이지별 히어로 톤 살짝 차별 */
.page-hero--studio .page-hero-badge {
  background: #eef1ea;
  border-color: #cdd8c4;
}

.page-hero--mixing .page-hero-badge {
  background: #f3f0ea;
  border-color: #e0d8cc;
  color: #4a5340;
}

.page-hero--arrangement .page-hero-badge {
  background: #f0efe8;
  border-color: #ddd6c4;
}

.page-hero--location .page-hero-badge {
  background: #e9eef5;
  border-color: #c8d4e4;
  color: #3d4f2f;
}

.page-hero--equipment .page-hero-badge {
  background: #f2f2f0;
  border-color: #ddd;
}

/* Brand service icons (spacecloud / kakao / naver) */
.brand-icon {
  width: 1.1em;
  height: 1.1em;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 0.28em;
  display: block;
}

.btn .brand-icon {
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

.btn-sm .brand-icon {
  width: 15px;
  height: 15px;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--olive);
}

.icon-link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-link-row a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text);
}

.footer-link-row a:hover {
  color: var(--olive);
}

.footer-link-row .brand-icon {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 4px;
}

.info-item .brand-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.45rem;
  margin-bottom: 0.15rem;
  box-shadow: 0 2px 8px rgba(28, 28, 28, 0.08);
}

/* Page loading */
.page-loading {
  min-height: 50vh;
  display: grid;
  place-items: center;
  padding: 3rem 1rem;
}

.page-loading-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  color: var(--olive-soft);
}

.page-loading-inner p {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.page-loading-dots {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.page-loading-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--olive-soft);
  animation: loadPulse 1s ease-in-out infinite;
}

.page-loading-dot:nth-child(2) {
  animation-delay: 0.15s;
}

.page-loading-dot:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes loadPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 1.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 999px;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary {
  background: var(--olive);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(61, 79, 47, 0.28);
}

.btn-primary:hover {
  background: var(--olive-mid);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-outline {
  background: var(--white);
  color: var(--olive);
  border: 1px solid var(--line);
}

.btn-outline:hover {
  border-color: var(--olive-soft);
  background: var(--olive-tint);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

/* Sections */
.section {
  padding: 3.25rem 0;
}

.section-tight {
  padding: 2.15rem 0;
}

.section-head {
  text-align: center;
  margin-bottom: 1.65rem;
}

.section-head h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.55rem);
  color: var(--olive);
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.section-head p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 40ch;
  margin-inline: auto;
  line-height: 1.55;
}

/* Service cards (home) */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.65rem 1.45rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 15.5rem;
}

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

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--olive-tint);
  color: var(--olive);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-card h3 {
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.45rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
  flex: 1 1 auto;
  margin-bottom: 1.15rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card .link {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--olive);
  margin-top: auto;
}

.service-card .link:hover {
  text-decoration: underline;
}

/* Info strip — 빠른 연락 CTA (푸터와 역할 분리) */
.info-strip {
  background: var(--olive-tint);
  border-block: 1px solid rgba(61, 79, 47, 0.1);
}

.info-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding: 1.35rem 0;
}

.info-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.85rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

a.info-item:hover {
  background: rgba(255, 255, 255, 0.65);
  transform: translateY(-1px);
}

.info-item strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--olive-soft);
  font-weight: 600;
}

.info-item span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--olive);
  letter-spacing: -0.01em;
}

/* Pricing panel */
.pricing-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  max-width: 520px;
  margin-inline: auto;
}

.pricing-panel-studio {
  max-width: 640px;
  padding: 2rem 1.75rem 1.85rem;
}

.pricing-panel .label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--olive-soft);
  margin-bottom: 0.5rem;
}

.pricing-panel .price {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--olive);
  letter-spacing: -0.02em;
}

.pricing-panel .price small {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}

.pricing-panel .meta {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.pricing-panel .note {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--olive-mid);
}

/* Studio: two option cards + callout */
.pricing-options-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--olive);
  letter-spacing: -0.02em;
  margin: 0.35rem 0 1rem;
}

.price-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  text-align: left;
  margin-bottom: 1rem;
}

.price-option {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.05rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-height: 100%;
}

.price-option.is-featured {
  background: #fff;
  border-color: var(--olive-soft);
  box-shadow: 0 0 0 1px rgba(90, 111, 72, 0.25), var(--shadow-sm);
}

.price-option-badge {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--olive);
  background: var(--olive-tint);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

.price-option.is-featured .price-option-badge {
  color: #fff;
  background: var(--olive);
}

.price-option-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 2.5rem 0.15rem 0;
}

.price-option-price {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--olive);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.price-option-price small {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.price-option-desc {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.45;
  margin-top: 0.2rem;
}

.price-option-hint {
  margin-top: 0.55rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #8a5a12;
  background: #fff6e5;
  border: 1px solid #f0d9a8;
  border-radius: 8px;
  padding: 0.4rem 0.55rem;
  line-height: 1.35;
}

.price-callout {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
  background: linear-gradient(135deg, #f7f3e8 0%, #eef1ea 100%);
  border: 1px solid #e0d4b0;
  border-radius: var(--radius-sm);
  padding: 0.95rem 1rem;
  margin-bottom: 0.35rem;
}

.price-callout-icon {
  flex-shrink: 0;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: #c9922a;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  line-height: 1;
  margin-top: 0.05rem;
}

.price-callout strong {
  display: block;
  color: #5c4518;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
}

.price-callout p {
  margin: 0;
  color: #6a5a3a;
  font-size: 0.86rem;
  line-height: 1.45;
}

.price-callout em {
  font-style: normal;
  font-weight: 700;
  color: var(--olive);
}

@media (max-width: 560px) {
  .price-options {
    grid-template-columns: 1fr;
  }

  .pricing-panel-studio {
    padding: 1.5rem 1.15rem 1.4rem;
  }
}

/* Gallery — 3열 균등 (wide span 시 높이 불일치 방지) */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: stretch;
}

.gallery-item,
.feature-shot {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: linear-gradient(145deg, #d8dccf, #b8c0a8);
  position: relative;
  margin: 0;
  width: 100%;
  min-width: 0;
}

.feature-shot {
  aspect-ratio: 16 / 10;
}

/* 2칸 넓힘: 가로만 2배, 높이는 1칸과 동일 (4/3 → 8/3) */
.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 8 / 3;
}

.gallery-item img,
.feature-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.gallery-item.has-media .media-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.45rem 0.65rem;
  font-size: 0.78rem;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
  z-index: 1;
}

.gallery-item .placeholder-label,
.equip-visual .placeholder-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(61, 79, 47, 0.45);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  padding: 1rem;
}

.map-note {
  font-size: 0.8rem !important;
  max-width: 40ch;
  margin-top: 0.5rem;
}

/* Quote */
.quote-block {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
  padding: 1rem 0;
}

.quote-block .marks {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--olive-soft);
  opacity: 0.5;
  font-family: Georgia, serif;
}

.quote-block p {
  font-size: 1.05rem;
  color: var(--text);
  margin: 0.5rem 0 1rem;
}

/* FAQ accordion */
.faq-list {
  max-width: 640px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  padding: 1rem 1.15rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--olive);
  flex-shrink: 0;
  line-height: 1;
}

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

.faq-item .faq-body {
  padding: 0 1.15rem 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-item .highlight {
  display: inline-block;
  background: #fde8e8;
  color: #b33a3a;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

/* Steps / process */
.steps {
  max-width: 640px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.25rem;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.step h3 {
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
  color: var(--ink);
}

.step p,
.step ul {
  font-size: 0.9rem;
  color: var(--muted);
}

.step ul {
  padding-left: 1.1rem;
  list-style: disc;
}

.step li + li {
  margin-top: 0.2rem;
}

/* Portfolio / sample grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem 1rem;
  justify-content: center;
}

/* 편곡 등 3열 — 6개면 2줄로 균형 있게 */
.portfolio-grid.portfolio-grid-3 {
  max-width: 860px;
  margin-inline: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 1.15rem;
}

.portfolio-card {
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: block;
  background: linear-gradient(160deg, #3a3a3a, #151515);
  box-shadow: var(--shadow-sm);
  color: #fff;
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}

a.portfolio-card:hover,
a.portfolio-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(28, 28, 28, 0.16);
  outline: none;
}

a.portfolio-card:focus-visible {
  box-shadow:
    0 0 0 3px var(--cream),
    0 0 0 5px var(--olive-mid),
    0 14px 32px rgba(28, 28, 28, 0.16);
}

.portfolio-card .thumb {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(90, 111, 72, 0.35), transparent 60%),
    linear-gradient(160deg, #3a3a3a, #151515);
}

.portfolio-card .thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.92;
  transform: scale(1.001);
  transition: transform 0.45s var(--ease), opacity 0.35s var(--ease);
}

a.portfolio-card:hover .thumb img,
a.portfolio-card:focus-visible .thumb img {
  opacity: 1;
  transform: scale(1.05);
}

/* 하단 가독성용 그라데이션 */
.portfolio-card .thumb-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, transparent 35%),
    linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.72) 100%);
  opacity: 0.95;
  transition: opacity 0.3s var(--ease);
}

a.portfolio-card:hover .thumb-shade {
  opacity: 1;
}

.portfolio-card .play {
  position: absolute;
  left: 50%;
  top: 44%;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--olive);
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.28s var(--ease),
    background 0.2s ease,
    box-shadow 0.28s var(--ease);
}

a.portfolio-card:hover .play,
a.portfolio-card:focus-visible .play {
  transform: translate(-50%, -50%) scale(1.08);
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}

.portfolio-card .play svg {
  width: 17px;
  height: 17px;
  margin-left: 2px;
}

.portfolio-card .sample-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0.55rem 0.85rem 0.7rem;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: #fff;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

/* 미디어 없을 때 플레이 버튼 위 제목 배치 보정 */
.portfolio-card:not(.has-media) .play {
  top: 42%;
}

.portfolio-card:not(.has-media) .sample-title {
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  text-shadow: none;
  font-weight: 500;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
}

.stars {
  color: #d4a017;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  margin-bottom: 0.65rem;
}

.testimonial p {
  font-size: 0.92rem;
  color: var(--text);
  font-style: italic;
}

/* Checklist */
.checklist {
  max-width: 560px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-sm);
}

.checklist h3 {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--olive);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.checklist li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--text);
  padding: 0.55rem 0;
  border-top: 1px solid var(--line);
}

.checklist li:first-of-type {
  border-top: none;
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--olive-tint);
  color: var(--olive);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Arrangement payment guide */
.arrangement-guide {
  max-width: 560px;
  margin-inline: auto;
}

.arrangement-guide .checklist,
.arrangement-guide .pricing-panel,
.arrangement-guide .payment-card,
.arrangement-guide .cta-box {
  max-width: none;
  width: 100%;
}

.payment-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.45rem 1.5rem 1.35rem;
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.payment-card-title {
  color: var(--olive);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.payment-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.payment-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  font-size: 0.92rem;
  color: var(--text);
  padding: 0.55rem 0;
  border-top: 1px solid var(--line);
  line-height: 1.5;
}

.payment-steps li:first-child {
  border-top: none;
  padding-top: 0.1rem;
}

.payment-account {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  background: var(--olive-tint);
  border: 1px solid #d5decc;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.payment-account-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--olive-soft);
}

.payment-account-num {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--olive);
  letter-spacing: -0.01em;
  word-break: break-all;
}

.payment-account-holder {
  font-size: 0.86rem;
  color: var(--muted);
}

/* CTA box */
.cta-box {
  text-align: center;
  background: var(--olive-tint);
  border: 1px solid #d5decc;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  max-width: 560px;
  margin-inline: auto;
}

.cta-box h3 {
  color: var(--olive);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.cta-box p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
}

.cta-box .contact-line {
  font-weight: 600;
  color: var(--ink);
  margin: 0.75rem 0 1rem;
}

.cta-box .contact-line a:hover {
  color: var(--olive);
  text-decoration: underline;
}

/* 믹싱·편곡 CTA 전화 강조 */
.cta-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin: 0.85rem 0 0.35rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid #d5decc;
  border-radius: var(--radius-sm);
}

.cta-phone-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--olive-soft);
}

.cta-phone-num {
  font-size: clamp(1.25rem, 3.5vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--olive);
  line-height: 1.2;
  text-decoration: none;
}

.cta-phone-num:hover {
  color: var(--olive-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-phone-note {
  margin: 0.45rem 0 0;
  max-width: 28ch;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--muted);
}

.cta-box .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin-top: 1rem;
}

/* Equipment grid — 카드 높이·이미지 영역 통일 */
.equip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}

.equip-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
}

.equip-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.equip-visual {
  aspect-ratio: 1 / 1;
  width: 100%;
  background: #f4f4f2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--olive-soft);
  font-size: 0.85rem;
  text-align: center;
  padding: 0;
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
}

.equip-visual .eq-icon {
  width: 56px;
  height: 56px;
  opacity: 0.55;
  margin-bottom: 0.5rem;
}

/* 제품 컷: contain 으로 잘림 방지, 배경 통일 */
.equip-visual.has-media {
  padding: 0.85rem;
  background: #f6f6f4;
}

.equip-visual.has-media .placeholder-label {
  display: none;
}

.equip-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.equip-body {
  padding: 0.95rem 1.05rem 1.15rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 4.5rem;
  background: var(--white);
}

.equip-body h3 {
  font-size: 0.98rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.equip-body p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

/* Location page */
.location-section {
  padding-top: 0.5rem;
  padding-bottom: 3.5rem;
}

.location-layout {
  max-width: 880px;
}

.map-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.map-wrap {
  overflow: hidden;
  background: #eef1ea;
  aspect-ratio: 16 / 9;
  min-height: 300px;
  max-height: 480px;
  position: relative;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.map-wrap iframe,
.map-wrap .naver-map-frame,
.map-wrap .naver-map-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #e8ebe3;
}

/* 네이버 InfoWindow (외부 페이지에서도 보이도록 인라인 병행) */
.map-iw {
  padding: 0.55rem 0.75rem;
  min-width: 140px;
  max-width: 220px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.map-iw strong {
  display: block;
  color: var(--olive);
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.map-iw p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.35;
}

.map-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background:
    radial-gradient(circle at 50% 45%, var(--olive-tint), #e8ebe3 70%);
  color: var(--olive);
  text-align: center;
  padding: 1.5rem;
}

.map-fallback p {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 32ch;
}

/* 지도 하단 툴바: 주소 + 외부 지도 버튼 */
.map-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1rem;
  padding: 0.95rem 1.15rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #fcfbf9 0%, #fff 100%);
}

.map-toolbar-label {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1 1 12rem;
}

.map-toolbar-label strong {
  color: var(--olive);
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.map-toolbar-label span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 0;
  flex: 0 0 auto;
}

/* 오시는 길 카드 */
.address-card {
  margin-top: 1.15rem;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.35rem 1.4rem 1.25rem;
}

.address-card-title {
  color: var(--olive);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.95rem;
  text-align: center;
}

.address-rows {
  display: grid;
  gap: 0;
}

.address-row {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 0.75rem 1rem;
  align-items: baseline;
  padding: 0.7rem 0;
  border-top: 1px solid var(--line);
}

.address-row:first-child {
  border-top: 0;
  padding-top: 0.15rem;
}

.address-row dt {
  color: var(--olive-soft);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.address-row dd {
  color: var(--text);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

.address-row dd a {
  color: var(--olive);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.address-note {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 400;
}

@media (max-width: 600px) {
  .map-wrap {
    aspect-ratio: 4 / 3;
    min-height: 260px;
    max-height: none;
  }

  .map-toolbar {
    flex-direction: column;
    align-items: stretch;
    padding: 0.9rem 1rem;
  }

  .map-toolbar-label span {
    white-space: normal;
  }

  .map-actions {
    justify-content: stretch;
  }

  .map-actions .btn {
    flex: 1 1 auto;
  }

  .address-row {
    grid-template-columns: 3.75rem 1fr;
    gap: 0.5rem 0.75rem;
  }

  .address-card {
    padding: 1.15rem 1.05rem 1.05rem;
  }
}

/* Footer */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 2.75rem 0 1.75rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.footer-col h4 {
  font-size: 0.82rem;
  letter-spacing: -0.01em;
  text-transform: none;
  font-weight: 700;
  color: var(--olive);
  margin-bottom: 0.7rem;
}

.footer-col p,
.footer-col a {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.7;
}

.footer-col a:hover {
  color: var(--olive);
  text-decoration: underline;
}

.footer-phones {
  font-size: 0.82rem !important;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
}

/* Focus accessibility */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--olive-mid);
  outline-offset: 3px;
}

/* Utility */
.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 1.5rem;
}

.mt-3 {
  margin-top: 2.25rem;
}

.mb-2 {
  margin-bottom: 1.5rem;
}

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

/* Mobile */
@media (max-width: 900px) {
  .service-grid,
  .testimonials,
  .equip-grid {
    grid-template-columns: 1fr;
  }

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

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

  .portfolio-grid,
  .portfolio-grid.portfolio-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    gap: 0.9rem;
  }

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

  .portfolio-card .play {
    width: 42px;
    height: 42px;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-tight {
    padding: 1.75rem 0;
  }

  .page-hero {
    padding: 1.85rem 0 1rem;
  }

  .page-hero-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
  }

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

  .gallery-item.wide {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }

  .info-strip-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.75rem 1.25rem 1.25rem;
    background: rgba(250, 248, 245, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }

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

  .nav a {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
  }

  .hero {
    min-height: clamp(380px, 58vh, 520px);
  }

  .hero-content {
    padding: 2.5rem 0 2.15rem;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero .hero-text {
    max-width: 28ch;
  }

  .logo-img {
    height: 34px;
  }

  .info-strip-grid {
    gap: 0.35rem;
    padding: 0.85rem 0;
  }

  .info-item {
    padding: 0.65rem 0.5rem;
  }

  .info-item span {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.5rem, var(--max));
  }

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

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
    min-width: 0;
    padding-inline: 0.9rem;
    font-size: 0.88rem;
  }

  .page-hero h1 {
    font-size: 1.55rem;
  }

  .portfolio-grid,
  .portfolio-grid.portfolio-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .portfolio-card .play {
    width: 38px;
    height: 38px;
  }

  .portfolio-card .play svg {
    width: 14px;
    height: 14px;
  }

  .portfolio-card .sample-title {
    font-size: 0.75rem;
    padding: 0.4rem 0.55rem 0.5rem;
  }
}

/* September 2026 — warm, photographic studio identity */
:root { --cream: #f6f3ec; --olive: #344632; --olive-mid: #485f43; --ink: #252a22; --muted: #686c61; --line: #dedfd3; --max: 1200px; --radius: 6px; --radius-sm: 4px; }
body { word-break: keep-all; overflow-wrap: break-word; }
:focus-visible { outline: 3px solid #a16b32; outline-offset: 5px; }
.skip-link { position: fixed; top: -100px; left: 20px; padding: 12px 24px; background: white; z-index: 200; }
.skip-link:focus { top: 12px; }
.site-header { background: #f6f3ecf5; border-bottom: 1px solid var(--line); }
.header-inner { min-height: 88px; }
.nav a { border-radius: 3px; font-size: .86rem; }
.nav a.active { background: #e3e9dc; color: var(--olive); font-weight: 700; border-radius: 6px; box-shadow: none; }
.hero { min-height: 650px; width: min(100% - 48px, 1500px); margin: 24px auto 0; align-items: center; border-radius: 8px; }
.hero .hero-media .hero-photo { object-position: 62% center; }
.hero.has-image .hero-media::after { background: linear-gradient(90deg,rgba(21,28,20,.84),rgba(21,28,20,.59) 39%,rgba(21,28,20,.04) 80%); }
.hero-content { width: calc(100% - 112px); padding: 72px 0; justify-content: flex-start; text-align: left; }
.hero-copy { align-items: flex-start; max-width: 650px; }
.hero-kicker { font-size: .73rem; letter-spacing: .18em; color: #e0d6b9; margin-bottom: 28px; }
.hero-kicker::before,.hero-kicker::after { display: none; }
.hero h1 { font-size: clamp(2.6rem,4.4vw,4.3rem); font-weight: 600; line-height: 1.3; letter-spacing: -.055em; margin-bottom: 26px; }
.hero .hero-text { margin: 0 0 34px; max-width: none; line-height: 1.9; font-size: 1rem; color: #efeee6; }
.hero-actions { justify-content: flex-start; }
.btn { border-radius: 4px; padding: .85rem 1.3rem; min-height: 48px; }
.hero .btn-primary { background: #f2ecd9; color: #2a3725; border-color: #f2ecd9; box-shadow: none; }
.hero .btn-ghost { background: transparent; }
.section { padding: 88px 0; }
.section-head { text-align: left; margin-bottom: 34px; }
.section-head h2 { font-size: clamp(1.65rem,2.5vw,2.2rem); letter-spacing: -.04em; font-weight: 600; }
.section-head p { margin-top: 10px; }
.service-grid { gap: 26px; }
.service-card { padding: 0 0 24px; background: transparent; border: 0; border-bottom: 1px solid #c5cbbd; box-shadow: none; border-radius: 0; overflow: hidden; }
.service-card:hover { box-shadow: none; transform: translateY(-3px); }
.service-photo { width: 100%; aspect-ratio: 1.5; object-fit: cover; border-radius: 5px; margin-bottom: 24px; }
.service-eyebrow,.eyebrow { font-size: .68rem; letter-spacing: .16em; font-weight: 600; color: #657451; }
.service-card h3 { margin: 10px 0 12px; font-size: 1.35rem; letter-spacing: -.03em; }
.service-card p { display: block; font-size: .94rem; line-height: 1.8; }
.service-card .link { margin-top: 12px; }
.space-section { background: #e9ecdf; }
.space-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.space-copy h2 { font-size: clamp(1.8rem,2.8vw,2.6rem); line-height: 1.45; letter-spacing: -.045em; font-weight: 600; margin: 20px 0; }
.space-copy > p:not(.eyebrow) { color: var(--muted); font-size: .95rem; line-height: 1.9; margin-bottom: 30px; }
.space-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.space-photos .gallery-item { aspect-ratio: 3/4; border-radius: 5px; }
.space-photos .gallery-item:nth-child(2) { margin-top: 70px; }
.space-photos .media-caption { font-size: .75rem; }
.home-invite { background: #344632; color: #f4f1e6; padding: 76px 0; text-align: center; }
.home-invite .eyebrow { color: #c6ceae; }
.home-invite h2 { font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 500; letter-spacing: -.04em; margin: 18px 0 12px; }
.home-invite p:not(.eyebrow) { color: #d1d7c8; margin-bottom: 26px; }
.home-invite .btn { background: #f2ecd9; color: #344632; }
.page-hero { padding: 60px 0 28px; }
.page-hero h1 { font-size: clamp(2rem,3.5vw,3rem); letter-spacing: -.05em; font-weight: 600; }
.page-hero-kicker { letter-spacing: .18em; font-size: .72rem; }
.page-hero-badge { border-radius: 3px; }
.gallery { gap: 20px; }
.gallery-item { border-radius: 5px; }
.pricing-panel,.cta-box,.payment-card { box-shadow: none; border-radius: 6px; }
.equipment-banner { position: relative; margin-bottom: 38px; }
.equipment-banner img { width: 100%; height: auto; object-fit: contain; border-radius: 5px; }
.equipment-banner figcaption { position: absolute; bottom: 0; width: 100%; padding: 30px; color: white; background: linear-gradient(transparent,#172015cc); }
.site-footer { padding-top: 48px; background: #eeeee5; border-top: 1px solid #d9ddcd; }
@media (max-width: 900px) {
 .hero { min-height: 560px; }
 .hero-content { width: calc(100% - 64px); }
 .service-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
 .service-photo { aspect-ratio: 1.2; }
 .service-card h3 { font-size: 1.12rem; }
 .space-layout { gap: 32px; grid-template-columns: 1fr 1.2fr; }
 .section { padding: 58px 0; }
}
@media (max-width: 768px) {
 :root { --header-h: 72px; }
 .header-inner { min-height: 72px; }
 .nav { visibility: hidden; }
 .nav.open { visibility: visible; }
 .hero { width: calc(100% - 24px); margin-top: 12px; min-height: 620px; align-items: flex-end; }
 .hero .hero-media .hero-photo { object-position: 58% center; }
 .hero.has-image .hero-media::after { background: linear-gradient(180deg,#17201500 8%,#17201577 42%,#172015ed 100%); }
 .hero-content { width: calc(100% - 40px); padding: 42px 0; }
 .hero h1 { font-size: clamp(2rem,6.9vw,3rem); }
 .hero-kicker { font-size: .62rem; margin-bottom: 18px; letter-spacing: .12em; }
 .hero .hero-text { font-size: .9rem; margin-bottom: 25px; }
 .hero-actions { width: auto; }
 .hero-actions .btn { flex: none; font-size: .84rem; }
 .service-grid { grid-template-columns: 1fr; gap: 36px; }
 .service-photo { aspect-ratio: 1.65; margin-bottom: 20px; }
 .service-card h3 { font-size: 1.35rem; }
 .space-layout { grid-template-columns: 1fr; gap: 32px; }
 .space-photos .gallery-item { aspect-ratio: 3/4; }
 .space-photos .gallery-item:nth-child(2) { margin-top: 32px; }
 .page-hero { padding: 38px 0 18px; }
 .home-invite { padding: 58px 0; }
 .equipment-banner img { height: auto; }
 .gallery { gap: 12px; }
}
@media (prefers-reduced-motion: reduce) {
 html { scroll-behavior: auto; }
 *,*::before,*::after { animation: none !important; transition: none !important; }
}
.section-head p { margin-left: 0; margin-right: 0; text-align: left; }
@media (max-width: 480px) { .gallery { grid-template-columns: 1fr; } }

/* Preserve the wide framing of the ON_01966 control-room photograph. */
.space-photos { grid-template-columns: 1fr; }
.space-photos .gallery-item { aspect-ratio: 16 / 9; }
.space-photos .gallery-item:nth-child(2) { margin-top: 0; }
.space-photos .gallery-item img { object-position: center; }