/* Quiet Luxury homepage — direct port of the approved mockup. Scoped under .ql- classes
   so nothing in styles.css can bleed in or override it. */

html {
  overflow-x: hidden;
}

.ql-page {
  --ql-ink: #1a1714;
  --ql-charcoal: #2c2622;
  --ql-stone: #fafafa;
  --ql-paper: #fafafa;
  --ql-rose: #b97d82;
  --ql-rose-dim: #8c6a6c;
  --ql-ink-soft: #5b5650;
  --ql-hairline: rgba(26, 23, 20, 0.12);
  --ql-hairline-dark: rgba(255, 255, 255, 0.16);
  --ql-serif: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --ql-sans: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;

  position: relative;
  width: 100%;
  background: var(--ql-stone);
  color: var(--ql-ink);
  font-family: var(--ql-sans);
  line-height: 1.6;
}

.ql-page * {
  box-sizing: border-box;
}

.ql-page a {
  color: inherit;
  text-decoration: none;
}

.ql-page .fixed-cta {
  font-family: var(--ql-sans);
}

.ql-page .fixed-cta-form {
  background: var(--ql-ink);
  color: #ffffff;
}

.ql-page .fixed-cta-form:hover {
  background: var(--ql-charcoal);
}

.ql-page .fixed-cta-kakao {
  background: #f2efeb;
  color: var(--ql-ink);
}

.ql-page .fixed-cta-kakao:hover {
  background: #e5dfd6;
  color: var(--ql-ink);
}

.ql-page .fixed-cta a + a {
  border-top: 0;
}

@media (max-width: 900px) {
  .ql-page .fixed-cta {
    background: #f2efeb;
  }

  .ql-page .fixed-cta a + a {
    border-left: 1px solid rgba(26, 23, 20, 0.12);
  }

  .ql-page .fixed-cta-kakao {
    background: #f2efeb;
    color: var(--ql-ink);
  }

  .ql-page .fixed-cta-form {
    background: var(--ql-ink);
    color: #ffffff;
  }
}

.ql-eyebrow {
  display: inline-block;
  font-size: 12px;
  //font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ql-rose);
}

.ql-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border: 1px solid var(--ql-rose);
  border-radius: 2px;
  font-size: 13px;
  //font-weight: 500;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease;
}

.ql-btn.on-light {
  color: var(--ql-ink);
  border-color: var(--ql-ink-soft);
}

.ql-btn.on-light:hover {
  background: var(--ql-ink);
  color: #ffffff;
}

.ql-btn.on-dark {
  color: #fbf8f3;
  border-color: rgba(240, 230, 225, 0.55);
}

.ql-btn.on-dark:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* ---------- NAV ---------- */
.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(20px, 5vw, 64px);
  min-height: 72px;
  background: rgba(250, 250, 250, 0.96);
  border: 0;
  border-bottom: 1px solid var(--ql-hairline);
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  background: rgba(250, 250, 250, 0.98);
  border-bottom: 1px solid var(--ql-hairline);
  box-shadow: 0 8px 28px rgba(26, 23, 20, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header .ql-logo {
  height: 26px;
  max-height: none;
  width: auto;
  filter: none;
  transition: filter 220ms ease;
}

.site-header.is-scrolled .ql-logo {
  filter: none;
}

.site-header.is-scrolled .ql-nav-links a {
  color: var(--ql-ink-soft);
}

.site-header.is-scrolled .ql-nav-links a:hover,
.site-header.is-scrolled .ql-nav-links a.is-active {
  color: var(--ql-rose);
}

.site-header.is-scrolled .ql-btn.on-dark {
  color: var(--ql-ink);
  border-color: var(--ql-ink-soft);
}

.site-header.is-scrolled .ql-btn.on-dark:hover {
  background: var(--ql-ink);
  color: #ffffff;
}

/* Unify header layout on all ql-page (override legacy styles.css grid) */
@media (min-width: 901px) {
  .ql-page .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 72px;
    padding: 0 clamp(20px, 5vw, 64px);
    grid-template-columns: unset;
    grid-template-rows: unset;
  }

  .ql-page .brand {
    grid-column: auto;
    grid-row: auto;
    width: auto;
    flex-shrink: 0;
  }

  .ql-page .site-menu {
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 40px);
  }

  .ql-page .site-nav {
    grid-column: auto;
    grid-row: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: clamp(16px, 2.4vw, 36px);
  }

  .ql-page .nav-toggle {
    display: none;
  }
}

.ql-page .site-header::before {
  background: transparent;
}

.ql-mobile-break {
  display: none;
}

.ql-desktop-break {
  display: block;
}

.ql-nav-right {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
}

.ql-nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 36px);
  flex-wrap: wrap;
  color: inherit;
}

.ql-nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ql-ink-soft);
}

.ql-nav-links a:hover,
.ql-nav-links a.is-active {
  color: var(--ql-rose);
}

/* ---------- HERO ---------- */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ql-ink);
  padding: 0;
}

.home-hero-polaroid {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  transform: none;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.home-hero-polaroid:active {
  cursor: grabbing;
}

.home-hero-polaroid .ql-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  object-position: 54% 30%;
  /*filter: grayscale(1) contrast(1.08) brightness(0.78);*/
  opacity: 0;
  transition: opacity 1400ms ease;
}

.home-hero-polaroid .ql-photo.is-active {
  opacity: 1;
}

.home-hero-polaroid picture.ql-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  object-position: 54% 20%;
  filter: grayscale(1) contrast(1.08) brightness(0.78);
}

.ql-hero-dots {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 5vw, 64px);
  bottom: 32px;
  display: flex;
  gap: 10px;
}

.ql-hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease;
}

.ql-hero-dot.is-active {
  background: var(--ql-rose);
  border-color: var(--ql-rose);
}

.home-hero-polaroid .ql-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(26, 23, 20, 0.6) 0%, rgba(26, 23, 20, 0.35) 42%, rgba(26, 23, 20, 0.16) 68%, rgba(185, 125, 130, 0.18) 100%),
    linear-gradient(115deg, rgba(26, 23, 20, 0.35) 0%, rgba(44, 38, 34, 0.1) 45%, rgba(185, 125, 130, 0.22) 100%);
    }

.home-hero-copy {
  position: relative;
  z-index: 2;
  order: 0;
  width: auto;
  max-width: 760px;
  margin: 0;
  padding: 0 clamp(24px, 7vw, 96px) clamp(48px, 7vw, 72px);
  color: #fbf8f3;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  text-shadow: none;
  pointer-events: none;
}

.home-hero-copy a {
  pointer-events: auto;
}

.home-hero-copy .ql-tag {
  display: inline-block;
  padding: 7px 16px;
  margin: 0 0 18px;
  border: 1px solid var(--ql-rose-dim);
  border-radius: 999px;
  font-size: 11px;
  //font-weight: 600;
  letter-spacing: 0.22em;
  color: #f0e6e1;
}

.home-hero-copy p.ql-kicker {
  margin: 0 0 10px;
  color: #d9c9c3;
  font-family: var(--ql-sans) !important;
  font-weight: 300;
  font-size: 14.5px;
}

.home-hero-copy h1 {
  max-width: none;
  margin: 0 0 28px;
  color: #fbf8f3;
  font-family: var(--ql-sans);
  font-weight: 600;
  font-size: clamp(30px, 4.4vw, 44px);
  line-height: 1.34;
  letter-spacing: -0.01em;
}

@media (max-width: 900px) {
  .home-hero {
    display: flex;
    min-height: 100svh;
    padding: 0;
  }

  .home-hero-polaroid,
  .home-hero-polaroid .ql-photo {
    width: 100%;
    min-height: 100svh;
    margin: 0;
    padding: 0;
    transform: none;
  }

  .home-hero-polaroid .ql-photo {
    object-position: center 42%;
  }

  .home-hero-polaroid .ql-slide--video {
    object-fit: cover;
    object-position: center 46%;
  }

  .home-hero-polaroid .ql-slide--couple img {
    object-fit: cover;
    object-position: center 44%;
    background: none;
  }

  .home-hero-polaroid .ql-slide--outdoor {
    object-fit: cover;
    object-position: center 58%;
  }

  .home-hero-copy {
    padding: clamp(96px, 22vw, 140px) 22px 80px;
  }

  .home-hero-copy .ql-tag {
    margin-bottom: 14px;
    padding: 6px 13px;
    font-size: 9.9px;
  }

  .home-hero-copy p.ql-kicker {
    margin-bottom: 8px;
    font-size: 13px;
  }

  .home-hero-copy h1 {
    margin-bottom: 22px;
    font-size: clamp(24.8px, 5.6vw, 31.5px);
    line-height: 1.38;
  }

  .home-hero-copy .ql-btn {
    padding: 11px 22px;
    font-size: 11.7px;
  }
}

/* ---------- SECTION SHELL ---------- */
.ql-section {
  padding: clamp(64px, 9vw, 108px) clamp(20px, 5vw, 64px);
}

.ql-section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

/* ---------- STATS ---------- */
.ql-stats {
  background: var(--ql-ink);
  color: var(--ql-paper);
}

.ql-stats-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}

.ql-stats-head h2 {
  margin: 8px 0 0;
  font-family: var(--ql-sans);
  font-weight: 600;
  font-size: 25px;
  color: #fbf8f3;
}

.ql-badge-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 22px 10px 14px;
  border: 1px solid var(--ql-rose-dim);
  border-radius: 999px;
}

.ql-badge-pill img {
  display: block;
  height: 30px;
  width: auto;
}

.ql-badge-pill span {
  font-size: 12px;
  //font-weight: 600;
  letter-spacing: 0.04em;
  color: #f0e6e1;
  max-width: 22ch;
  line-height: 1.5;
}

.ql-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid var(--ql-hairline-dark);
  padding-top: 44px;
}

article.ql-stat {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

p.ql-num {
  position: relative;
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: baseline;
  margin-bottom: 14px;
  font-family: 'Iowan Old Style', 'Palatino Linotype', Georgia, serif !important;
  font-size: 52px;
  font-weight: 500;
  font-style: normal;
  color: var(--ql-rose);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* legacy styles.css `.home-stats span { display: block }` breaks odometer commas onto new lines */
.home-stats.ql-stats-row span {
  display: inline;
  margin-bottom: 0;
}

.home-stats.ql-stats-row .odometer-digit {
  display: inline-block;
}

p.ql-num::after {
  content: "";
  position: absolute;
  left: 1px;
  bottom: -10px;
  width: 34px;
  height: 2px;
  background: var(--ql-rose);
  opacity: 0.7;
}

.ql-stat .ql-num span {
  margin-bottom: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.ql-stat .ql-num-suffix {
  display: inline;
  margin-left: 1px;
}

/* Odometer.js (MIT) — structural rules only, typography inherits from p.ql-num */
.odometer.odometer-auto-theme {
  display: inline-block;
  vertical-align: baseline;
  position: relative;
  white-space: nowrap;
}

.odometer.odometer-auto-theme .odometer-digit {
  display: inline-block;
  vertical-align: baseline;
  position: relative;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer {
  display: inline-block;
  vertical-align: baseline;
  visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner {
  text-align: left;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon {
  display: block;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner {
  display: block;
  backface-visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value {
  display: block;
  transform: translateZ(0);
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value {
  position: absolute;
}

.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner {
  transition: transform 1.6s ease;
}

.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
  transform: translateY(-100%);
}

.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner {
  transform: translateY(-100%);
}

.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
  transition: transform 1.6s ease;
  transform: translateY(0);
}

.ql-stat .ql-label {
  margin: 20px 0 6px;
  font-size: 15px;
  //font-weight: 500;
  color: #f2ece6;
}

.ql-stat .ql-date {
  font-size: 12px;
  font-weight: 300;
  color: #948b7f;
}

.ql-stats-foot {
  margin-top: 40px;
  font-size: 12px;
  font-weight: 300;
  color: #8b8276;
}

/* ---------- AWARDS (compact strip inside stats) ---------- */
.ql-awards-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 32px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--ql-hairline-dark);
}

.ql-awards-strip-label {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ql-rose);
  white-space: nowrap;
}

.ql-awards-strip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.ql-medal {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.ql-medal img {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.ql-medal figcaption {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: #cbc2b6;
  white-space: nowrap;
}

/* ---------- INTRO ---------- */
.ql-intro {
  background: var(--ql-paper);
  --ff-heart-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
}

.ql-route-card {
  position: relative;
  padding: 0;
  background: transparent;
  border-radius: 3px;
  overflow: hidden;
}

.ql-route-card .ql-fireflies {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.ql-route-map {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
}

.ql-firefly {
  position: absolute;
  left: var(--ff-x);
  top: var(--ff-y);
  width: var(--ff-size);
  height: var(--ff-size);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 236, 180, 1) 0%,
    rgba(224, 186, 108, 0.72) 38%,
    transparent 74%
  );
  box-shadow:
    0 0 8px rgba(255, 228, 160, 0.9),
    0 0 18px rgba(212, 175, 95, 0.55),
    0 0 30px rgba(185, 125, 130, 0.18);
  opacity: 0;
  will-change: transform, opacity;
  animation: ql-firefly-drift var(--ff-duration) ease-in-out var(--ff-delay) forwards;
}

.ql-firefly--soft {
  width: calc(var(--ff-size) * 1.6);
  height: calc(var(--ff-size) * 1.6);
  background: radial-gradient(
    circle,
    rgba(255, 242, 205, 0.62) 0%,
    rgba(224, 186, 108, 0.32) 48%,
    transparent 82%
  );
  box-shadow:
    0 0 12px rgba(255, 228, 160, 0.4),
    0 0 22px rgba(212, 175, 95, 0.22);
}

.ql-firefly--heart {
  width: calc(var(--ff-size) * 1.05);
  height: calc(var(--ff-size) * 0.95);
  border-radius: 0;
  background: linear-gradient(165deg, #fff2cc 0%, #efd08a 46%, #d9a85f 100%);
  box-shadow: none;
  -webkit-mask-image: var(--ff-heart-mask);
  mask-image: var(--ff-heart-mask);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  filter:
    drop-shadow(0 0 6px rgba(255, 228, 160, 0.9))
    drop-shadow(0 0 14px rgba(212, 175, 95, 0.52))
    drop-shadow(0 0 24px rgba(185, 125, 130, 0.18));
}

@keyframes ql-firefly-drift {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.5);
  }

  16% {
    opacity: 1;
    transform: translate3d(calc(var(--ff-dx) * 0.12), calc(var(--ff-dy) * 0.12), 0) scale(1.08);
  }

  48% {
    opacity: 0.78;
    transform: translate3d(calc(var(--ff-dx) * 0.48), calc(var(--ff-dy) * 0.48), 0) scale(1);
  }

  78% {
    opacity: 0.34;
    transform: translate3d(calc(var(--ff-dx) * 0.86), calc(var(--ff-dy) * 0.86), 0) scale(0.9);
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--ff-dx), var(--ff-dy), 0) scale(0.5);
  }
}

.ql-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.ql-intro-copy {
  border-left: 1px solid var(--ql-hairline);
  padding-left: 40px;
}

.ql-intro-copy p.ql-serif-line {
  margin: 10px 0 20px;
  font-family: var(--ql-serif);
  font-style: italic;
  font-size: 32px;
  color: var(--ql-ink);
}

.ql-intro-copy h2 {
  margin: 0 0 22px;
  font-family: var(--ql-sans);
  font-weight: 600;
  font-size: 25px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.ql-intro-copy p {
  margin: 0 0 14px;
  max-width: 46ch;
  color: var(--ql-ink-soft);
  font-weight: 200;
  font-size: 15px;
  line-height: 1.85;
}

.ql-route-caption {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ql-ink-soft);
}

/* ---------- FEATURES ---------- */
.ql-features {
  background: var(--ql-stone);
}

.ql-features-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.ql-features-head h2 {
  margin: 10px 0 0;
  font-family: var(--ql-sans);
  font-weight: 600;
  font-size: 27px;
  line-height: 1.45;
}

.ql-features-head h2 .ql-serif-word {
  font-family: var(--ql-serif);
}

.ql-feature-slider {
  --feature-card-width: min(86vw, 340px);
}

.ql-feature-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ql-feature-dots {
  display: none;
}

.ql-feature-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--ql-paper);
  border-radius: 3px;
}

.ql-feature-card .ql-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ql-ink);
}

.ql-feature-card .ql-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*filter: grayscale(1) contrast(1.06) brightness(0.82);*/
}

.ql-feature-card .ql-img-wrap--bright img {
  /*filter: grayscale(1) contrast(1.02) brightness(1.15);*/
}

.ql-feature-card .ql-img-wrap .ql-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26, 23, 20, 0.08) 0%, rgba(185, 125, 130, 0.2) 100%);
}

.ql-feature-card .ql-img-wrap--bright .ql-wash {
  background: linear-gradient(160deg, rgba(26, 23, 20, 0.08) 0%, rgba(185, 125, 130, 0.2) 100%);
}

.ql-feature-card .ql-badge-img {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  padding: 30px;
  background: var(--ql-ink);
}

.ql-feature-card .ql-badge-img img {
  width: 100%;
  max-width: 220px;
  height: auto;
}

.ql-feature-card .ql-body {
  padding: 26px 26px 32px;
}

.ql-feature-tag {
  display: block;
  margin-bottom: 12px;
  font-size: 11px;
  //font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--ql-rose-dim);
}

.ql-feature-card h3 {
  margin: 0 0 10px;
  font-family: var(--ql-sans);
  font-weight: 600;
  font-size: 17.5px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.ql-feature-card p {
  margin: 0;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ql-ink-soft);
}

.ql-feature-card .ql-badge-pill.on-light {
  display: inline-flex;
  margin-top: 14px;
  padding: 6px 14px 6px 8px;
  border-color: var(--ql-hairline);
}

.ql-feature-card .ql-badge-pill.on-light img {
  height: 22px;
}

.ql-feature-card .ql-badge-pill.on-light span {
  color: var(--ql-ink-soft);
}

/* ---------- NEXT STEP ---------- */
.ql-nextstep {
  background: var(--ql-paper);
}

.ql-nextstep .ql-section-inner {
  text-align: center;
}

.ql-nextstep-head {
  margin-bottom: 48px;
}

.ql-nextstep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.ql-nextstep-card {
  position: relative;
  display: flex;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid var(--ql-hairline);
  border-radius: 3px;
  transition:
    border-color 280ms ease,
    box-shadow 280ms ease,
    transform 280ms ease;
}

.ql-nextstep-card:hover {
  border-color: rgba(26, 23, 20, 0.16);
  box-shadow: 0 10px 28px rgba(26, 23, 20, 0.06);
  transform: translateY(-2px);
}

.ql-nextstep .reveal-fade,
.ql-nextstep .reveal-up {
  transform: translateY(12px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.ql-nextstep-media {
  position: absolute;
  inset: 0;
  background-position: top;
  background-size: cover;
  filter: grayscale(0.25) contrast(1.04) brightness(0.88);
  transform: scale(1);
  transition: transform 0.8s ease, filter 0.8s ease;
}

.ql-nextstep-card--service .ql-nextstep-media {
  background-image: url("./assets/nextstep-service.jpg");
}

.ql-nextstep-card--flow .ql-nextstep-media {
  background-image: url("./assets/hero-slide-3.jpg");
}

.ql-nextstep-card--faq .ql-nextstep-media {
  background-image: url("./assets/nextstep-faq.jpg");
}

.ql-nextstep-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 23, 20, 0.04) 0%,
    rgba(26, 23, 20, 0.18) 42%,
    rgba(26, 23, 20, 0.52) 100%
  );
  transition: opacity 200ms ease;
}

.ql-nextstep-card.emphasis .ql-nextstep-wash {
  background: linear-gradient(
    180deg,
    rgba(26, 23, 20, 0.12) 0%,
    rgba(26, 23, 20, 0.34) 45%,
    rgba(26, 23, 20, 0.68) 100%
  );
}

.ql-nextstep-glass {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  margin-top: auto;
  padding: 22px 20px 20px;
  background: rgba(250, 250, 250, 0.74);
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.35s ease;
}

.ql-nextstep-card:hover .ql-nextstep-media {
  transform: scale(1.02);
  filter: grayscale(0.15) contrast(1.04) brightness(0.9);
}

.ql-nextstep-card:hover .ql-nextstep-glass {
  background: rgba(250, 250, 250, 0.8);
}

.ql-nextstep-card.emphasis .ql-nextstep-glass {
  background: rgba(26, 23, 20, 0.58);
  border-top-color: rgba(255, 255, 255, 0.1);
}

.ql-nextstep-card.emphasis:hover .ql-nextstep-glass {
  background: rgba(26, 23, 20, 0.64);
}

.ql-nextstep-label {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ql-rose);
}

.ql-nextstep-card.emphasis .ql-nextstep-label {
  color: #d9b4b7;
}

.ql-nextstep-card h3 {
  margin: 0 0 10px;
  font-family: var(--ql-sans);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.35;
  color: var(--ql-ink);
}

.ql-nextstep-card.emphasis h3 {
  color: #fbf8f3;
}

.ql-nextstep-card p {
  margin: 0;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ql-ink-soft);
}

.ql-nextstep-card.emphasis p {
  color: rgba(251, 248, 243, 0.78);
}

.ql-nextstep-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ql-ink);
  transition: color 0.25s ease;
}

.ql-nextstep-card.emphasis .ql-nextstep-link {
  color: #fbf8f3;
}

.ql-nextstep-card:hover .ql-nextstep-link {
  color: var(--ql-rose);
}

.ql-nextstep-card.emphasis:hover .ql-nextstep-link {
  color: #e8c8c2;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .ql-nextstep-glass {
    background: rgba(250, 250, 250, 0.94);
  }

  .ql-nextstep-card.emphasis .ql-nextstep-glass {
    background: rgba(26, 23, 20, 0.88);
  }
}

/* ---------- MESSAGE (대표 메시지) ---------- */
.ql-message {
  background: var(--ql-paper);
}

.ql-message .ql-eyebrow {
  display: block;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.ql-message-grid {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}

.ql-message-photo {
  min-height: clamp(300px, 36vw, 430px);
  aspect-ratio: 5 / 6;
  background-image: url("https://storage.googleapis.com/studio-design-asset-files/projects/BRO309P6qD/s-1084x1512_v-fms_webp_81b6ebde-4737-4456-9092-13a65d4ffb24_middle.webp");
  background-size: cover;
  background-position: right center;
  border-radius: 3px;
  filter: grayscale(0.15) contrast(1.02);
}

.ql-message-role {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ql-rose);
}

.ql-message-copy h2 {
  margin: 0 0 18px;
  font-family: var(--ql-sans);
  font-weight: 600;
  font-size: clamp(26px, 3.2vw, 34px);
  color: var(--ql-ink);
}

.ql-message-lead {
  margin: 0 0 22px;
  font-family: var(--ql-serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.65;
  color: var(--ql-ink);
}

.ql-message-copy p {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--ql-ink-soft);
}

.ql-message-copy p:last-child {
  margin-bottom: 0;
}

.ql-message-signature {
  margin: 28px 0 0;
}

@media (max-width: 860px) {
  .ql-message-grid {
    grid-template-columns: 1fr;
    width: min(680px, 100%);
    margin: 0 auto;
  }

  .ql-message-photo {
    width: min(360px, 100%);
    margin: 0 auto;
  }
}

/* ---------- CONTACT ---------- */
.ql-contact {
  background: var(--ql-ink);
  text-align: center;
}

.ql-contact .ql-section-inner {
  max-width: 560px;
  margin: 0 auto;
}

.ql-contact h2 {
  margin: 10px 0 14px;
  font-family: var(--ql-sans);
  font-weight: 600;
  font-size: 27px;
  color: #fbf8f3;
}

.ql-contact p {
  margin: 0 0 32px;
  color: #c9c0b4;
  font-weight: 300;
  font-size: 14.5px;
}

.ql-contact p.ql-contact-note {
  margin: 24px 0 0;
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(201, 192, 180, 0.75);
}

.ql-contact .ql-btn.ql-btn--lux {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(
    128deg,
    #f3dcc8 0%,
    #d9a88e 18%,
    #c98f98 42%,
    #e0b8a4 68%,
    #f7ead8 100%
  );
  background-size: 220% 220%;
  color: var(--ql-ink);
  border-color: rgba(255, 238, 224, 0.5);
  font-size: 13.5px;
  font-weight: 600;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
  animation: ql-btn-gradient-shift 9s ease-in-out infinite;
  transition: box-shadow 0.3s ease, filter 0.3s ease, border-color 0.3s ease;
}

.ql-contact .ql-btn.ql-btn--lux::after {
  content: "";
  position: absolute;
  inset: -50% -70%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.58) 50%,
    transparent 60%
  );
  transform: translateX(-130%) rotate(14deg);
  animation: ql-btn-shimmer 5s ease-in-out infinite;
  pointer-events: none;
}

.ql-contact .ql-btn.ql-btn--lux:hover {
  color: var(--ql-ink);
  border-color: rgba(255, 244, 232, 0.72);
  filter: brightness(1.05);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

@keyframes ql-btn-gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes ql-btn-shimmer {
  0%,
  70% {
    transform: translateX(-130%) rotate(14deg);
  }

  100% {
    transform: translateX(130%) rotate(14deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ql-contact .ql-btn.ql-btn--lux {
    animation: none;
    background-position: 50% 50%;
  }

  .ql-contact .ql-btn.ql-btn--lux::after {
    animation: none;
    opacity: 0;
  }

  @media (max-width: 900px) {
    .site-menu {
      transition: none;
    }
  }
}

@media (max-width: 900px) {
  html:has(.ql-page) {
    font-size: 14.4px;
  }

  .ql-page .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: fixed;
    z-index: 250;
    min-height: 58px;
    padding: 10px 16px;
    background: rgba(250, 250, 250, 0.96);
    border-bottom: 1px solid var(--ql-hairline);
    box-shadow: 0 8px 28px rgba(26, 23, 20, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .ql-page .site-header.is-scrolled {
    background: rgba(250, 250, 250, 0.98);
    border-bottom: 1px solid var(--ql-hairline);
    box-shadow: 0 8px 28px rgba(26, 23, 20, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .ql-page .site-header::before {
    background: rgba(250, 250, 250, 0.96);
  }

  .ql-page .site-header.is-scrolled::before {
    background: rgba(250, 250, 250, 0.98);
  }

  .ql-page .nav-toggle {
    border: 0;
    background: transparent;
    color: var(--ql-ink);
    position: relative;
    z-index: 230;
  }

  html.nav-open .ql-page .site-header,
  .ql-page .site-header.is-open {
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    pointer-events: none;
  }

  html.nav-open .ql-page .site-header::before,
  .ql-page .site-header.is-open::before {
    background: transparent;
  }

  html.nav-open .ql-page .site-header .brand,
  .ql-page .site-header.is-open .brand {
    visibility: hidden;
  }

  html.nav-open .ql-page .nav-toggle,
  .ql-page .site-header.is-open .nav-toggle {
    color: var(--ql-ink);
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 10px);
    right: 16px;
    z-index: 260;
    pointer-events: auto;
  }

  html.nav-open .site-menu,
  html.nav-open .ql-page .site-menu {
    background: #fafafa;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }

  .mobile-menu-top {
    padding: calc(env(safe-area-inset-top, 0px) + 58px) 20px 28px;
  }

  .mobile-menu-brand {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .mobile-menu-brand img,
  .mobile-menu-logo {
    height: 56px;
    margin: 0 auto;
    filter: none;
  }

  .mobile-menu-body {
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 16px;
    padding-bottom: 12px;
  }

  .mobile-menu-close {
    font-family: var(--ql-sans);
  }

  .mobile-menu-cta {
    border-radius: 999px;
    font-family: var(--ql-sans);
  }

  .ql-page .site-menu .ql-nav-links,
  .ql-page .site-nav.ql-nav-links {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    text-align: center;
  }

  html.nav-open .site-menu .ql-nav-links a,
  html.nav-open .site-menu .site-nav.ql-nav-links a {
    padding: 18px 12px;
    border-bottom: 1px solid rgba(26, 23, 20, 0.08);
    border-left: 0;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--ql-ink-soft);
    opacity: 1;
    text-align: center;
    background: transparent;
    transition: color 160ms ease;
  }

  html.nav-open .site-menu .ql-nav-links a.is-active,
  html.nav-open .site-menu .site-nav.ql-nav-links a.is-active,
  html.nav-open #site-menu a.is-active {
    color: var(--ql-ink);
    font-weight: 600;
    letter-spacing: 0.06em;
    border-left: 0;
    border-top: 0;
    border-bottom: 1px solid rgba(26, 23, 20, 0.08);
    background: transparent;
    box-shadow: none;
  }

  .ql-page .site-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--ql-hairline);
    font-size: 13.5px;
    color: var(--ql-ink);
  }

  .ql-page .site-nav a.is-active {
    color: var(--ql-rose);
    font-weight: 600;
  }

  .ql-page .ql-nav-cta {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }

  .ql-hero {
    min-height: 560px;
  }

  .ql-hero-content h1 {
    font-size: clamp(25.2px, 5.6vw, 34.2px);
  }

  .ql-intro-grid {
    grid-template-columns: 1fr;
  }

  .ql-intro-copy {
    border-left: 0;
    padding-left: 0;
  }

  .ql-intro-copy .ql-eyebrow {
    font-size: 10.8px;
  }

  .ql-intro-copy p.ql-serif-line {
    margin: 8px 0 14px;
    font-size: clamp(24.8px, 5.6vw, 29.2px);
  }

  .ql-intro-copy h2 {
    margin-bottom: 16px;
    font-size: 22.5px;
    line-height: 1.45;
  }

  .ql-intro-copy p {
    margin-bottom: 12px;
    font-size: 13.5px;
    line-height: 1.75;
  }

  .ql-intro-copy .ql-btn {
    padding: 11px 22px;
    font-size: 11.7px;
  }

  .ql-route-caption {
    margin-top: 14px;
    font-size: 10.8px;
  }

  .ql-stats-row,
  .ql-nextstep-grid {
    grid-template-columns: 1fr;
  }

  .ql-feature-slider {
    margin-inline: -20px;
  }

  .ql-feature-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 max(20px, calc((100% - var(--feature-card-width)) / 2)) 4px;
  }

  .ql-feature-track::-webkit-scrollbar {
    display: none;
  }

  .ql-feature-track .ql-feature-card {
    flex: 0 0 var(--feature-card-width);
    scroll-snap-align: center;
  }

  .ql-feature-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
  }

  .ql-feature-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 1px solid rgba(26, 23, 20, 0.22);
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    transition: background 200ms ease, border-color 200ms ease;
  }

  .ql-feature-dot.is-active {
    background: var(--ql-rose);
    border-color: var(--ql-rose);
  }

  .ql-nextstep-card {
    min-height: 300px;
  }

  .ql-nextstep-card--service .ql-nextstep-media {
    background-position: center 25%;
  }

  .ql-mobile-break {
    display: block;
  }

  .ql-desktop-break {
    display: none;
  }

  .ql-nextstep-glass {
    padding: 20px 18px 18px;
  }

  .ql-stats-head {
    align-items: flex-start;
    margin-bottom: 36px;
    gap: 18px;
  }

  .ql-stats-head h2 {
    font-size: 22.5px;
  }

  .ql-badge-pill {
    gap: 12px;
    padding: 8px 16px 8px 12px;
  }

  .ql-badge-pill img {
    height: 24px;
  }

  .ql-badge-pill span {
    font-size: 10.8px;
  }

  .ql-stats-row {
    gap: 28px;
    padding-top: 28px;
  }

  p.ql-num {
    margin-bottom: 10px;
    font-size: clamp(31.5px, 7vw, 38.2px);
  }

  p.ql-num::after {
    bottom: -7px;
    width: 24px;
  }

  .ql-stat .ql-label {
    margin: 14px 0 4px;
    font-size: 13.5px;
  }

  .ql-stat .ql-date {
    font-size: 10.8px;
  }

  .ql-stats-foot {
    margin-top: 28px;
    font-size: 10.8px;
  }

  .ql-awards-strip {
    gap: 16px 20px;
    margin-top: 28px;
    padding-top: 24px;
  }

  .ql-awards-strip-label {
    font-size: 9.9px;
  }

  .ql-medal img {
    width: 32px;
    height: 32px;
  }

  .ql-medal figcaption {
    font-size: 10.8px;
  }

  .ql-eyebrow {
    font-size: 10.8px;
  }

  .ql-btn {
    font-size: 11.7px;
  }

  .ql-features-head {
    margin-bottom: 40px;
  }

  .ql-features-head h2 {
    font-size: 24.3px;
  }

  .ql-feature-tag {
    font-size: 9.9px;
  }

  .ql-feature-card h3 {
    font-size: 15.8px;
  }

  .ql-feature-card p {
    font-size: 12.2px;
  }

  .ql-nextstep-head {
    margin-bottom: 36px;
  }

  .ql-nextstep-label {
    font-size: 9.9px;
  }

  .ql-nextstep-card h3 {
    font-size: 17.1px;
  }

  .ql-nextstep-card p {
    font-size: 11.7px;
  }

  .ql-nextstep-link {
    font-size: 10.8px;
  }

  .ql-message-role {
    font-size: 10.8px;
  }

  .ql-message-copy h2 {
    font-size: clamp(23.4px, 3.2vw, 30.6px);
  }

  .ql-message-lead {
    font-size: clamp(18px, 2.4vw, 23.4px);
  }

  .ql-message-copy p {
    font-size: 13.5px;
  }

  .ql-contact h2 {
    font-size: 24.3px;
  }

  .ql-contact p {
    font-size: 13px;
  }

  .ql-contact .ql-btn.ql-btn--lux {
    font-size: 12.2px;
  }

  .ql-footer-brand .ql-tagline,
  .ql-footer-nav a {
    font-size: 11.2px;
  }

  .ql-footer-meta .ql-addr {
    font-size: 10.8px;
  }

  .ql-footer-meta .ql-legal,
  .ql-footer-meta .ql-copy {
    font-size: 10.3px;
  }

  .ql-page:not(.ql-page--inner) {
    background: var(--ql-ink);
  }

  body:has(.ql-page:not(.ql-page--inner)) main {
    background: transparent;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .ql-page .ql-contact {
    max-width: none;
    width: 100%;
    margin: 0;
  }

  .ql-page main + .site-footer {
    margin-top: 0;
  }

  .ql-page .site-footer {
    margin-top: 0;
    padding-bottom: calc(40px + 52px + env(safe-area-inset-bottom));
  }
}

@media (min-width: 901px) {
  .site-menu {
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 40px);
  }

  .mobile-menu-top,
  .mobile-menu-actions,
  .mobile-menu-footer {
    display: none;
  }

  .mobile-menu-shell,
  .mobile-menu-body {
    display: contents;
  }
}

/* Footer Instagram button — fix white-on-white, match outline language */
.site-footer .footer-buttons a {
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.site-footer .footer-buttons a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ---------- FOOTER (mockup footer-bottom layout) ---------- */
.site-footer {
  padding: 40px clamp(20px, 5vw, 64px) 40px;
  text-align: left;
  background: var(--ql-ink);
  border-radius: 0;
}

.ql-footer-divider {
  height: 1px;
  background: var(--ql-hairline-dark);
  margin: 0 0 40px;
}

.ql-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}

.ql-footer-brand .ql-logo {
  display: block;
  height: 22px;
  width: auto;
  margin-bottom: 10px;
  filter: brightness(1.2);
}

.ql-footer-brand .ql-tagline {
  margin: 0;
  color: #948b7f;
  font-weight: 300;
  font-size: 12.5px;
}

.ql-footer-meta {
  text-align: right;
}

.ql-footer-nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 12px;
}

.ql-footer-nav a {
  color: #c9c0b4;
  font-size: 12.5px;
}

.ql-footer-nav a:hover {
  color: var(--ql-rose);
}

.ql-footer-meta .ql-addr {
  margin: 0 0 6px;
  color: #756c60;
  font-weight: 300;
  font-size: 12px;
}

.ql-footer-meta .ql-legal {
  margin: 0 0 10px;
  color: #756c60;
  font-size: 11.5px;
}

.ql-footer-meta .ql-legal a {
  color: #948b7f;
}

.ql-footer-meta .ql-legal a:hover {
  color: var(--ql-rose);
}

.ql-footer-meta .ql-copy {
  margin: 0;
  color: #5e564c;
  font-size: 11.5px;
}

@media (max-width: 640px) {
  .ql-footer-bottom {
    flex-direction: column;
  }

  .ql-footer-meta {
    text-align: left;
  }

  .ql-footer-nav {
    justify-content: flex-start;
  }
}
