/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #1a3f7a;
  --navy2:   #1e4fa0;
  --gold:    #1e4fa0;
  --gold2:   #2d65c2;
  --cream:   #f5f0e8;
  --light:   #fafaf7;
  --gray:    #6b7280;
  --gray2:   #9ca3af;
  --white:   #ffffff;
  --lm-dark: #111827;
  --lm-red:  #c0392b;

  --ff-serif: 'Cormorant Garamond', 'Noto Serif KR', serif;
  --ff-sans:  'Noto Sans KR', sans-serif;

  --radius: 4px;
  --shadow: 0 4px 24px rgba(13,27,42,0.10);
  --shadow-lg: 0 12px 48px rgba(13,27,42,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}

/* ── TYPOGRAPHY HELPERS ── */
.section-label {
  font-family: var(--ff-serif);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-title.centered,
.section-sub.centered {
  text-align: center;
}

.section-sub {
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 48px;
  max-width: 520px;
}

.centered { margin-left: auto; margin-right: auto; }

.section {
  padding: 100px 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: #1a3f7a;
  color: #ffffff;
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: #1e4fa0; transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  background: #1a3f7a;
  color: #ffffff;
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 13px 32px;
  text-decoration: none;
  border: 1.5px solid #1a3f7a;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.btn-outline:hover { background: #1e4fa0; border-color: #1e4fa0; transform: translateY(-2px); }

/* dark variant for non-hero */
.btn-outline.dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline.dark:hover { border-color: var(--gold); color: var(--gold); }

/* ── NAVBAR ── */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  transition: background 0.35s, box-shadow 0.35s;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(26,63,122,0.08);
}

.nav-header.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 20px rgba(26,63,122,0.1);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-svg {
  height: 38px;
  width: auto;
}
.footer-logo-svg {
  height: 36px;
  width: auto;
  margin-bottom: 14px;
  display: block;
}

/* ── L-MASTER BANNER removed ── */

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #4b4a58;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
  transform-origin: left;
}

.nav-link:hover, .nav-link.active { color: var(--navy); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a3f7a;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #ffffff;
  padding: 16px 32px 24px;
  border-top: 1px solid rgba(26,63,122,0.1);
  box-shadow: 0 8px 20px rgba(26,63,122,0.08);
}
.mobile-menu.open { display: flex; }
.mob-link {
  color: #4b4a58;
  text-decoration: none;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(26,63,122,0.07);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #ffffff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #ffffff;
}

/* decorative geometric lines - 파란 계열로 변경 */
.hero-bg::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(61,74,176,0.1);
  transform: rotate(15deg);
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 8%;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(61,74,176,0.06);
  transform: rotate(30deg);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(61,74,176,0.04) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  padding-top: 68px;
}

.hero-sub {
  font-size: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4b4a58;
  margin-bottom: 20px;
  font-weight: 400;
}
.hero-firm {
  font-family: var(--ff-serif);
  font-size: 22px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.delay-4 { animation-delay: 0.8s; }

.column-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
  flex-wrap: wrap;
}
.column-header-row .section-title { margin-bottom: 8px; }
.column-header-row .section-sub   { margin-bottom: 0; }

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  color: #4b4a58;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll-indicator span {
  font-size: 9px;
  letter-spacing: 0.25em;
  color: rgba(26,63,122,0.4);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(26,63,122,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.7; transform: scaleY(1.2); }
}

/* ── ANIMATIONS ── */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── ABOUT ── */
.about-section { background: var(--light); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-desc {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 15px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(13,27,42,0.1);
}

.stat-num {
  display: block;
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.05em;
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-card {
  background: var(--white);
  border: 1px solid rgba(13,27,42,0.07);
  padding: 28px 24px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.about-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.about-card-icon {
  font-size: 24px;
  margin-bottom: 12px;
}
.about-card h3 {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--navy);
}
.about-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ── SERVICE ── */
.service-section { background: var(--white); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  border: 1px solid rgba(13,27,42,0.1);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  background: var(--white);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-family: var(--ff-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(13,27,42,0.08);
  line-height: 1;
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: var(--ff-serif);
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--navy);
}
.service-card p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.service-link:hover { color: var(--navy); }

/* ── L-MASTER ── */
.lmaster-section {
  background: var(--lm-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.lmaster-bg-text {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  font-family: var(--ff-serif);
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 700;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.02em;
}

.lmaster-badge {
  display: inline-block;
  background: var(--lm-red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 5px 14px;
  margin-bottom: 24px;
}

.lmaster-header {
  max-width: 700px;
  margin-bottom: 72px;
}

.lmaster-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.lmaster-logo-icon {
  font-size: 28px;
}
.lmaster-logo-text {
  font-family: var(--ff-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.lmaster-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}
.lmaster-title em {
  font-style: italic;
  color: var(--gold);
}
.lmaster-sub {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  line-height: 1.8;
  max-width: 600px;
}

.lmaster-why {
  margin-bottom: 72px;
}
.lmaster-why-title {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 32px;
  letter-spacing: 0.03em;
}

.lmaster-reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lmaster-reason {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 32px 28px;
  transition: background 0.25s, border-color 0.25s;
}
.lmaster-reason:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.3);
}
.reason-icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.lmaster-reason h4 {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}
.lmaster-reason p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* Plans */
.lmaster-plans { margin-bottom: 64px; }

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.plan-card {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.25s;
}
.plan-card.featured {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.plan-badge {
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 5px;
}
.plan-card h4 {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
  margin-top: 16px;
}
.plan-card.featured h4 { margin-top: 32px; }
.plan-price {
  font-family: var(--ff-serif);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 24px;
  line-height: 1;
}
.plan-won { font-size: 1.4rem; }
.plan-features {
  list-style: none;
  margin-bottom: 28px;
}
.plan-features li {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.plan-cta {
  display: block;
  text-align: center;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  padding: 13px 24px;
  text-decoration: none;
  transition: background 0.25s;
}
.plan-cta:hover { background: var(--gold2); }
.plan-cta.outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.plan-cta.outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.lmaster-cta-banner {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.lmaster-cta-banner p {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
}

/* ── COLUMN ── */
.column-section { background: var(--cream); }

.column-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.column-card {
  background: var(--white);
  padding: 32px 28px;
  border: 1px solid rgba(13,27,42,0.06);
  transition: box-shadow 0.25s, transform 0.25s;
}
.column-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.column-card.featured-card {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
}
.column-card.featured-card h3 {
  font-size: 22px;
}

.col-category {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.column-card h3 {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}
.column-card p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 16px;
}
.col-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--gray2);
}
.col-read {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  transition: color 0.2s;
}
.col-read:hover { color: var(--navy); }
.col-more-wrap {
  text-align: center;
  margin-top: 48px;
}
.col-more-wrap .btn-outline {
  color: var(--navy);
  border-color: var(--navy);
}
.col-more-wrap .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── CLIENTS ── */
.clients-section { background: var(--white); }

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(13,27,42,0.08);
  border: 1px solid rgba(13,27,42,0.08);
  margin-bottom: 56px;
}
.client-logo {
  background: var(--white);
  padding: 32px 20px;
  text-align: center;
  font-family: var(--ff-serif);
  font-size: 14px;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
}
.client-logo:hover {
  background: var(--light);
  color: var(--navy);
}

.testimonial {
  border-left: 3px solid var(--gold);
  padding: 24px 32px;
  background: var(--light);
  max-width: 700px;
  margin: 0 auto;
}
.testimonial blockquote {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 12px;
}
.testimonial cite {
  font-size: 13px;
  color: var(--gray);
}

/* ── CONTACT ── */
.contact-section { background: var(--navy); color: var(--white); }
.contact-section .section-label { color: var(--gold); }
.contact-section .section-title { color: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-desc {
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  font-size: 15px;
  line-height: 1.8;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.contact-item strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}
.contact-item p { color: rgba(255,255,255,0.65); font-size: 14px; }

/* Form */
.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--ff-sans);
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--navy2); }

.btn-primary.full-width {
  width: 100%;
  text-align: center;
  padding: 16px;
  font-size: 14px;
}

/* ── FOOTER ── */
.footer {
  background: #080f18;
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.45);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 4px;
}
.footer-copy { margin-top: 16px !important; font-size: 11px !important; }
.footer-links { display: flex; flex-direction: column; gap: 4px; }
.footer-links h4 {
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 13px;
  padding: 3px 0;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .lmaster-reasons { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; }
  .column-grid { grid-template-columns: 1fr; }
  .column-card.featured-card { grid-column: span 1; grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .lmaster-cta-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .hero-cta { flex-direction: column; gap: 12px; }
  .service-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 24px; }
  .clients-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
}

/* ── About Why Items ── */
.about-why-item {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(13,27,42,0.08);
}
.about-why-item:last-of-type { border-bottom: none; margin-bottom: 0; }
.about-why-num {
  font-family: var(--ff-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: rgba(201,168,76,0.25);
  line-height: 1;
  min-width: 40px;
  padding-top: 4px;
}
.about-why-title {
  font-family: var(--ff-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 10px;
}

/* ────────────────────────────────────
   COMMON SUB-PAGE STYLES
──────────────────────────────────── */
.page-hero{background:var(--navy);padding:110px 0 60px;margin-top:0}
.page-hero .section-label{color:var(--gold);margin-bottom:10px}
.page-hero h1{font-family:var(--ff-serif);font-size:clamp(2rem,5vw,3.4rem);font-weight:300;color:#fff;line-height:1.2;margin-top:8px}
.page-hero p{color:rgba(255,255,255,.5);font-size:15px;margin-top:14px;line-height:1.85}

/* About Why */
.about-why-item{display:flex;gap:22px;margin-bottom:36px;padding-bottom:36px;border-bottom:1px solid rgba(13,27,42,.09)}
.about-why-item:last-of-type{border-bottom:none;margin-bottom:0}
.about-why-num{font-family:var(--ff-serif);font-size:2.4rem;font-weight:300;color:rgba(201,168,76,.3);line-height:1;min-width:44px;padding-top:2px}
.about-why-title{font-family:var(--ff-serif);font-size:18px;font-weight:600;color:var(--navy);line-height:1.5;margin-bottom:10px}

/* Service detail */
.svc-detail{padding:72px 0}
.svc-detail:nth-child(odd){background:#fff}
.svc-detail:nth-child(even){background:#f5f0e8}
.svc-inner{max-width:900px;margin:0 auto;padding:0 32px;display:grid;grid-template-columns:140px 1fr;gap:48px;align-items:start}
.svc-num-big{font-family:var(--ff-serif);font-size:5rem;font-weight:300;color:rgba(201,168,76,.22);line-height:1;text-align:right}
.svc-title{font-family:var(--ff-serif);font-size:1.9rem;font-weight:500;color:var(--navy);margin-bottom:16px}
.svc-body p{font-size:15px;line-height:1.95;color:#374151;margin-bottom:12px}
.svc-tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:18px}
.svc-tag{font-size:11px;font-weight:600;letter-spacing:.1em;color:var(--gold);background:rgba(201,168,76,.1);padding:4px 12px;border:1px solid rgba(201,168,76,.25)}

/* Clients logo grid */
.logo-grid{display:flex;flex-wrap:wrap;gap:14px;justify-content:center;align-items:center;margin-top:40px}
.cl-box{width:154px;height:70px;background:#fff;border:1px solid rgba(13,27,42,.09);display:flex;align-items:center;justify-content:center;padding:10px 14px;transition:all .2s;box-sizing:border-box}
.cl-box:hover{border-color:rgba(201,168,76,.4);box-shadow:0 4px 16px rgba(13,27,42,.08)}
.cl-box svg{max-width:100%;max-height:100%}

/* Testimonials */
.testi-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;margin-top:48px}
.testi-card{background:#f5f0e8;padding:28px 32px;border-left:3px solid var(--gold)}
.testi-card blockquote{font-size:14.5px;color:#374151;line-height:1.85;margin-bottom:12px;font-style:italic}
.testi-card cite{font-size:12px;color:#9ca3af;font-style:normal}

/* Contact standalone */
.contact-wrap{background:#fff;padding:0}
.contact-wrap .contact-section{background:#fff}
.contact-wrap .section-title{color:var(--navy)}
.contact-wrap .contact-desc{color:#374151}

@media(max-width:700px){
  .svc-inner{grid-template-columns:1fr;gap:12px}
  .svc-num-big{font-size:2.8rem;text-align:left}
  .testi-grid{grid-template-columns:1fr}
  .cl-box{width:130px;height:60px}
}

/* ────────────────────────────────────
   Contact 페이지 — 흰 배경 재정의
──────────────────────────────────── */
.contact-page-body .contact-section {
  background: #fff !important;
  color: var(--navy) !important;
}
.contact-page-body .section-label { color: var(--gold) !important; }
.contact-page-body .contact-section .section-title { color: var(--navy) !important; }
.contact-page-body .contact-desc { color: #374151 !important; }
.contact-page-body .contact-item p { color: #6b7280 !important; }
.contact-page-body .contact-item strong { color: var(--gold) !important; }

/* 폼 배경 — 흰 배경이므로 연한 회색으로 */
.contact-page-body .contact-form-wrap {
  background: #f9f7f3 !important;
  border: 1px solid rgba(13,27,42,.1) !important;
}
.contact-page-body .contact-form label {
  color: var(--navy) !important;
}
.contact-page-body .contact-form input,
.contact-page-body .contact-form select,
.contact-page-body .contact-form textarea {
  background: #fff !important;
  border: 1.5px solid rgba(13,27,42,.15) !important;
  color: var(--navy) !important;
}
.contact-page-body .contact-form select {
  appearance: none !important;
  -webkit-appearance: none !important;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230d1b2a' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center !important;
}
.contact-page-body .contact-form select option {
  background: #fff !important;
  color: var(--navy) !important;
}
.contact-page-body .contact-form input::placeholder,
.contact-page-body .contact-form textarea::placeholder {
  color: #9ca3af !important;
}
.contact-page-body .contact-form input:focus,
.contact-page-body .contact-form select:focus,
.contact-page-body .contact-form textarea:focus {
  border-color: var(--gold) !important;
  outline: none;
}

/* index.html 의 contact section — 기존 navy 배경 유지 */
/* (별도 override 불필요, 원래 .contact-section 스타일 그대로) */

/* ── Nav Dropdown ── */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown > .nav-link::after { content: none; }
.dropdown-menu {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 10px; /* 갭 유지 — 마우스가 이탈 안 하게 */
  z-index: 9999;
}
.dropdown-menu-inner {
  background: #ffffff;
  border: 1px solid rgba(26,63,122,.15);
  border-top: 2px solid var(--gold);
  min-width: 148px;
  padding: 6px 0;
  box-shadow: 0 8px 28px rgba(26,63,122,.12);
}
.nav-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.dropdown-menu a {
  display: block;
  padding: 11px 20px;
  font-size: 13px;
  color: #4b4a58;
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--ff-sans);
  letter-spacing: .02em;
  transition: color .15s, background .15s;
}
.dropdown-menu a:hover {
  color: var(--navy);
  background: rgba(26,63,122,.05);
}
