@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

/* ─── Variables ─── */
:root {
  --bg: #FDFAF6;
  --bg-alt: #F5EDE0;
  --bg-dark: #241E1A;
  --bg-dark2: #1A1512;
  --accent: #B8815A;
  --accent-deep: #8B5E3C;
  --accent-light: #EDCFAE;
  --text: #2A2320;
  --text-mid: #6B5B52;
  --text-light: #A89585;
  --white: #FFFFFF;
  --card-bg: #FFFCF8;
  --border: #E8D8C8;
  --shadow-sm: 0 2px 12px rgba(90,60,40,0.08);
  --shadow-md: 0 8px 32px rgba(90,60,40,0.12);
  --shadow-lg: 0 20px 60px rgba(90,60,40,0.16);
  --radius: 14px;
  --radius-sm: 8px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Noto Sans KR', sans-serif;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Typography ─── */
.display-title {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.15;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
}
.section-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 300;
  max-width: 560px;
  line-height: 1.8;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,129,90,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--bg-dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(36,30,26,0.3);
}
.btn-kakao {
  background: #FEE500;
  color: #3A1D1D;
}
.btn-kakao:hover { background: #F5DB00; transform: translateY(-2px); }
.btn-telegram {
  background: #229ED9;
  color: #fff;
}
.btn-telegram:hover { background: #1A87C0; transform: translateY(-2px); }

/* ─── Section Common ─── */
.section { padding: 90px 20px; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: var(--white); }
.container {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}
.section-header {
  margin-bottom: 56px;
}
.section-header .section-label { margin-bottom: 12px; }
.section-header .section-title { margin-bottom: 16px; }

/* ─── Badge ─── */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-coming {
  background: #EEE;
  color: #999;
  border: 1px solid #DDD;
}
.badge-accent {
  background: var(--accent-light);
  color: var(--accent-deep);
}

/* ─── Cards ─── */
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px 28px;
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
}

/* ─────────────────────────────────────────────
   HEADER / NAV
───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 20px;
  background: rgba(253,250,246,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta .btn { padding: 10px 22px; font-size: 0.82rem; }

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 20px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('image1.webp') center/cover no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26,21,18,0.72) 0%, rgba(26,21,18,0.35) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  padding-top: 68px;
}
.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.4s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--accent-light);
}
.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  font-weight: 300;
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.6s forwards;
}
.hero-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.7s forwards;
}
.hero-keyword {
  padding: 5px 14px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  background: rgba(255,255,255,0.07);
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.9s forwards;
}
.hero-notice {
  margin-top: 20px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  opacity: 0;
  animation: fadeUp 0.7s ease 1.1s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
}
.hero-scroll span {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ─────────────────────────────────────────────
   INTRO STRIP
───────────────────────────────────────────── */
.intro-strip {
  background: var(--bg-dark);
  padding: 28px 20px;
}
.intro-strip-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.intro-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.7);
}
.intro-stat::after {
  content: '';
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.15);
  display: block;
}
.intro-stat:last-child::after { display: none; }
.intro-stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--accent-light);
  line-height: 1;
}
.intro-stat-label {
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* ─────────────────────────────────────────────
   SERVICES
───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
}
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img { transform: scale(1.04); }
.service-card-img-wrap { overflow: hidden; }
.service-card-body { padding: 24px 22px; }
.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.1rem;
}
.service-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.service-card-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.service-tag {
  padding: 3px 10px;
  background: var(--bg-alt);
  border-radius: 50px;
  font-size: 0.72rem;
  color: var(--text-mid);
  font-weight: 400;
}

/* Last two cards span to balance */
.services-grid .service-card:nth-child(4),
.services-grid .service-card:nth-child(5) {
  /* normal in 3-col, but let's keep it simple */
}

/* ─────────────────────────────────────────────
   DIFFERENTIATORS
───────────────────────────────────────────── */
.diff-section {
  background: var(--bg-dark);
  padding: 90px 20px;
}
.diff-section .section-label { color: var(--accent-light); }
.diff-section .section-title { color: var(--white); }
.diff-section .section-desc { color: rgba(255,255,255,0.55); max-width: 540px; }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.diff-card {
  padding: 32px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  transition: all 0.3s ease;
}
.diff-card:hover {
  border-color: rgba(184,129,90,0.5);
  background: rgba(184,129,90,0.06);
  transform: translateY(-4px);
}
.diff-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.diff-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}
.diff-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  line-height: 1.8;
}

/* ─────────────────────────────────────────────
   PROCESS
───────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 52px;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-light), var(--accent-light), transparent);
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}
.process-step:hover .step-num {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
}

/* ─────────────────────────────────────────────
   TARGET
───────────────────────────────────────────── */
.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.target-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s ease;
}
.target-card:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.target-emoji {
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.target-text-title {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
.target-text-desc {
  font-size: 0.8rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   GALLERY
───────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
  margin-top: 52px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:nth-child(1) { grid-row: span 2; height: 100%; min-height: 460px; }
.gallery-item:nth-child(2) { height: 220px; }
.gallery-item:nth-child(3) { height: 220px; }
.gallery-item:nth-child(4) { height: 220px; }
.gallery-item:nth-child(5) { height: 220px; }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(36,30,26,0);
  transition: background 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .overlay { background: rgba(36,30,26,0.3); }
.gallery-label {
  font-size: 0.8rem;
  font-weight: 400;
  color: white;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
  letter-spacing: 0.06em;
}
.gallery-item:hover .gallery-label { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────────
   VISIT COMING SOON
───────────────────────────────────────────── */
.visit-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #2E201A 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.visit-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(184,129,90,0.12);
}
.visit-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(184,129,90,0.08);
}
.visit-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.visit-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.visit-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
}
.visit-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 28px;
}
.visit-badge {
  display: inline-block;
  padding: 7px 20px;
  border-radius: 50px;
  background: rgba(184,129,90,0.15);
  border: 1px solid rgba(184,129,90,0.3);
  color: var(--accent-light);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ─────────────────────────────────────────────
   FAQ
───────────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--accent-light); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: var(--card-bg);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  transition: background 0.2s;
}
.faq-question:hover { background: var(--bg-alt); }
.faq-item.open .faq-question { background: var(--bg-alt); }
.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--accent);
  transition: all 0.3s ease;
}
.faq-item.open .faq-icon {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.87rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ─────────────────────────────────────────────
   FINAL CTA
───────────────────────────────────────────── */
.cta-section {
  background: url('image2.webp') center/cover no-repeat;
  position: relative;
  padding: 100px 20px;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,21,18,0.78);
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.cta-section .section-label { color: var(--accent-light); }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin: 14px 0 18px;
}
.cta-desc {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 40px;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.cta-note {
  margin-top: 24px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark2);
  padding: 48px 20px 28px;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-brand-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
  line-height: 1.7;
  max-width: 280px;
}
.footer-links-title {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.footer-links a {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ─────────────────────────────────────────────
   FLOATING CTA (mobile)
───────────────────────────────────────────── */
.float-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  padding: 12px 16px;
  background: rgba(26,21,18,0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(184,129,90,0.2);
  gap: 10px;
}

/* ─────────────────────────────────────────────
   TERMS / PRIVACY PAGE
───────────────────────────────────────────── */
.doc-page {
  padding-top: 68px;
  min-height: 100vh;
}
.doc-hero {
  background: var(--bg-dark);
  padding: 60px 20px 50px;
  text-align: center;
}
.doc-hero-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 12px;
}
.doc-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.doc-hero-date {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.doc-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}
.doc-section {
  margin-bottom: 44px;
}
.doc-section-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.doc-section-num {
  color: var(--accent);
  margin-right: 6px;
}
.doc-text {
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 10px;
}
.doc-list {
  list-style: disc;
  padding-left: 20px;
}
.doc-list li {
  font-size: 0.87rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 4px;
}
.doc-table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0;
  font-size: 0.85rem;
}
.doc-table th {
  background: var(--bg-alt);
  padding: 10px 14px;
  text-align: left;
  font-weight: 500;
  color: var(--text);
  border: 1px solid var(--border);
  font-size: 0.82rem;
}
.doc-table td {
  padding: 10px 14px;
  color: var(--text-mid);
  font-weight: 300;
  border: 1px solid var(--border);
  vertical-align: top;
}
.doc-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 400;
  margin-top: 20px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.doc-back-link:hover { border-color: var(--accent); }

/* ─────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .target-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1) { grid-row: span 1; min-height: 200px; }
  .gallery-item:nth-child(n) { height: 200px; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; max-width: 320px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-top { flex-direction: column; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .float-cta { display: flex; }
  .intro-strip-inner { gap: 20px; }
  .intro-stat::after { display: none; }
}

@media (max-width: 480px) {
  .diff-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(n) { height: 240px; }
  .hero-title { font-size: 2rem; }
}
