/* ============================================
   Design tokens
   ============================================ */
:root {
  --navy: #1e3a5f;
  --navy-800: #172e4a;
  --navy-600: #2b4f7f;
  --orange: #f06a3c;
  --orange-600: #d95526;
  --ink: #11213a;
  --ink-soft: #46566e;
  --line: #e5e7eb;
  --bg: #fafafa;
  --bg-soft: #f3f4f6;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(17, 33, 58, 0.06);
  --shadow-md: 0 8px 24px rgba(17, 33, 58, 0.08);
  --shadow-lg: 0 18px 48px rgba(17, 33, 58, 0.14);
  --header-h: 68px;
  --container: 1180px;
  --font-sans: "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo",
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--navy);
}
.section-lead {
  color: var(--ink-soft);
  margin: 0 0 40px;
  font-size: 1rem;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(240, 106, 60, 0.3);
}
.btn-primary:hover { background: var(--orange-600); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }
.btn-block { width: 100%; }

/* ============================================
   Header / Navigation
   ============================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 22px; height: 22px; border-radius: 6px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy) 55%, var(--orange) 55%, var(--orange) 100%);
}
.brand-name {
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--navy);
  font-size: 1.05rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.primary-nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 28px;
}
.primary-nav a {
  font-weight: 500;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
}
.primary-nav a:hover { color: var(--navy); }
.primary-nav a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--orange);
}
.nav-cta { padding: 9px 18px; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  background: transparent; border: 0;
  width: 36px; height: 36px;
  flex-direction: column; justify-content: center; gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block; height: 2px; width: 22px; background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
  margin: 0 auto;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  padding: calc(var(--header-h) + 60px) 0 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(30, 58, 95, 0.55) 0%, rgba(23, 46, 74, 0.72) 100%),
    url("../images/workspace.png") center/cover no-repeat;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; }
.eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  background: rgba(240, 106, 60, 0.9);
  border-radius: 999px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 900;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.hero-desc { font-size: 1.1rem; margin: 0 0 32px; color: rgba(255,255,255,0.92); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-meta {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 24px;
  color: rgba(255,255,255,0.86);
  font-size: 0.95rem;
}
.hero-meta li {
  position: relative;
  padding-left: 18px;
}
.hero-meta li::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  transform: translateY(-50%);
}

/* ============================================
   Sections - shared spacing
   ============================================ */
section.philosophy,
section.space,
section.perks,
section.pricing,
section.audience,
section.faq,
section.location {
  padding: 96px 0;
}

/* ============================================
   Philosophy
   ============================================ */
.phil-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}
.phil-card {
  background: var(--white);
  padding: 32px 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.phil-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.phil-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--bg-soft);
  color: var(--orange);
  display: grid; place-items: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.phil-card h3 { margin: 0 0 10px; color: var(--navy); font-size: 1.15rem; }
.phil-card p { margin: 0; color: var(--ink-soft); }

/* ============================================
   Space gallery
   ============================================ */
.space { background: var(--bg-soft); }

.gallery-group { margin-bottom: 48px; }
.gallery-group:last-child { margin-bottom: 0; }
.gallery-group-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.gallery-group-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}
.gallery-group-head h3::before {
  content: "";
  display: inline-block;
  width: 4px; height: 14px;
  background: var(--orange);
  border-radius: 2px;
  margin-right: 10px;
  vertical-align: -2px;
}
.gallery-group-head p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.gallery {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}
.gallery-item figure {
  position: relative;
  margin: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  display: flex; flex-direction: column;
}
.gallery-item figure:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.gallery-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.gallery-item figcaption { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.gallery-item h4 { margin: 0; color: var(--navy); font-size: 1.1rem; }
.gallery-item p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }
.gallery-meta {
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: auto;
  padding-top: 6px;
}
.gallery-link {
  display: inline-block;
  margin-top: 6px;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.88rem;
}
.gallery-link:hover { color: var(--orange-600); }

.gallery-tag {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 1;
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
}
.gallery-tag.tag-soft { background: rgba(255,255,255,0.92); color: var(--navy); border: 1px solid var(--line); }
.gallery-tag.tag-dual {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy) 50%, var(--orange) 50%, var(--orange) 100%);
}

.gallery-item.feature figure { border: 2px solid var(--orange); }

/* ============================================
   Specs
   ============================================ */
/* ============================================
   Member perks (부가 혜택)
   ============================================ */
.perk-grid {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: grid; gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
.perk-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.perk-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.perk-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(240, 106, 60, 0.1);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.perk-icon svg { width: 26px; height: 26px; display: block; }
.perk-body { display: flex; flex-direction: column; gap: 8px; }
.perk-label {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.perk-body strong {
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.perk-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}
.perk-foot {
  color: var(--ink-soft);
  text-align: center;
  margin: 0;
  font-size: 0.9rem;
}

/* ============================================
   Pricing
   ============================================ */
.pricing { background: var(--bg-soft); }

.plan-track { margin-bottom: 56px; }
.plan-track:last-child { margin-bottom: 0; }
.plan-track-head { margin: 0 0 20px; }
.plan-track-head h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}
.plan-track-head h3::before {
  content: "";
  display: inline-block;
  width: 4px; height: 18px;
  background: var(--orange);
  border-radius: 2px;
  margin-right: 12px;
  vertical-align: -3px;
}
.plan-track-head p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.track-aside {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 500;
  margin-left: 6px;
}

.plan-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}
.plan-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.plan-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.plan-card.featured {
  border: 2px solid var(--orange);
  box-shadow: 0 12px 30px rgba(240,106,60,0.18);
}
.badge {
  position: absolute;
  top: -12px; right: 18px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.06em;
}
.plan-card h4 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.room-count {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  background: var(--navy);
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.plan-track-team .plan-card {
  background: linear-gradient(180deg, var(--white) 0%, #fbf7f4 100%);
}
.plan-discount {
  margin-top: 20px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}
.plan-discount .discount-label {
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  margin-right: 4px;
}
.plan-discount strong { color: var(--orange); font-weight: 700; }
.plan-discount .divider { opacity: 0.4; }
.price { margin: 0 0 6px; }
.price strong {
  font-size: 1.9rem;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.price span { color: var(--ink-soft); font-size: 0.95rem; }
.plan-sub { margin: 0 0 20px; color: var(--ink-soft); font-size: 0.9rem; }
.plan-features {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.plan-features li {
  position: relative;
  padding: 7px 0 7px 22px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.plan-features li::before {
  content: "✓";
  position: absolute; left: 0; top: 7px;
  color: var(--orange); font-weight: 900;
}

.meeting-fee {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--line);
}
.meeting-fee table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.meeting-fee th,
.meeting-fee td {
  padding: 12px 8px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.meeting-fee th { color: var(--navy); font-weight: 700; background: var(--bg-soft); }
.meeting-fee tr:last-child td { border-bottom: 0; }
.meeting-note { margin: 12px 0 0; color: var(--ink-soft); font-size: 0.9rem; }

/* ============================================
   Team rooms (5~10인실 팀룸)
   ============================================ */
.team-rooms { padding: 96px 0; }

/* 1. Intro band */
.tr-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) 1.15fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 56px;
}
.tr-intro-photo { margin: 0; }
.tr-intro-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.tr-intro-stats {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.tr-intro-stats li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
}
.tr-intro-stats strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 10px;
}
.tr-intro-stats strong span {
  font-size: 0.5em;
  font-weight: 700;
  color: var(--ink-soft);
  margin-left: 2px;
}
.tr-intro-label {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.45;
}

/* Common sub-header */
.tr-sub {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.tr-sub::before {
  content: "";
  display: inline-block;
  width: 4px; height: 16px;
  background: var(--orange);
  border-radius: 2px;
  margin-right: 10px;
  vertical-align: -2px;
}

.tr-features { margin-bottom: 0; }

/* Features (6 items) — clean horizontal card with SVG icon */
.tr-feature-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.tr-feature-grid li {
  background: var(--white);
  padding: 22px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: background-color 0.15s ease;
}
.tr-feature-grid li:hover { background: #fbf7f4; }
.tr-feature-grid .tr-icon {
  flex: 0 0 auto;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(240, 106, 60, 0.1);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.tr-feature-grid .tr-icon svg { width: 20px; height: 20px; display: block; }
.tr-feature-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.tr-feature-body strong {
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.tr-feature-body span {
  color: var(--ink-soft);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ============================================
   Audience
   ============================================ */
.audience-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.audience-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.audience-list li {
  padding: 16px 18px;
  background: var(--bg-soft);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.98rem;
}
.audience-list strong { color: var(--navy); margin-right: 6px; }
.audience-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   FAQ
   ============================================ */
.faq { background: var(--bg-soft); }
.faq-list {
  list-style: none; padding: 0; margin: 0;
  max-width: 820px;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-list details {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 4px 4px;
  border: 1px solid var(--line);
  transition: border-color 0.2s ease;
}
.faq-list details[open] { border-color: var(--orange); }
.faq-list summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--orange);
  font-weight: 700;
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--ink-soft);
}

/* ============================================
   Location
   ============================================ */
.location-wrap {
  display: grid;
  grid-template-columns: minmax(0, 380px) 1fr;
  gap: 48px;
  align-items: start;
}
.info-list {
  margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.info-list > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.info-list dt { color: var(--navy); font-weight: 700; margin: 0; }
.info-list dd { margin: 0; color: var(--ink-soft); }
.info-list a { color: var(--ink); border-bottom: 1px solid var(--orange); }
.map-figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-figure img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--navy-800);
  color: rgba(255,255,255,0.88);
  padding: 56px 0 36px;
}
.footer-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 36px;
  align-items: start;
}
.footer-brand { margin: 0 0 6px; color: var(--white); font-size: 1.2rem; }
.footer-tag { margin: 0; color: rgba(255,255,255,0.6); font-size: 0.92rem; }
.footer-info {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  font-size: 0.92rem;
}
.footer-info > div { display: flex; gap: 10px; }
.footer-info dt { color: var(--orange); font-weight: 700; min-width: 52px; }
.footer-info dd { margin: 0; color: rgba(255,255,255,0.75); }
.copyright {
  grid-column: 1 / -1;
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .phil-grid,
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .plan-grid { grid-template-columns: repeat(2, 1fr); }
  .perk-grid { grid-template-columns: 1fr; }
  .audience-wrap,
  .location-wrap { grid-template-columns: 1fr; gap: 36px; }
  .tr-intro { grid-template-columns: 1fr; gap: 28px; }
  .tr-feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section.philosophy,
  section.space,
  section.perks,
  section.pricing,
  section.audience,
  section.faq,
  section.location { padding: 72px 0; }

  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .primary-nav ul {
    flex-direction: column; gap: 0;
  }
  .primary-nav a {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }
  .hero { min-height: 560px; padding-top: calc(var(--header-h) + 40px); }
  .hero-meta { gap: 14px; font-size: 0.88rem; }

  .phil-grid,
  .gallery,
  .plan-grid { grid-template-columns: 1fr; }
  .perk-card { padding: 26px 22px; }
  .tr-feature-grid,
  .tr-intro-stats { grid-template-columns: 1fr; }
  .team-rooms { padding: 72px 0; }

  .footer-wrap { grid-template-columns: 1fr; }
  .footer-info { grid-template-columns: 1fr; }
}
