:root {
  --paper: #f5f4f1;
  --ink: #161513;
  --muted: #6f6c66;
  --muted-strong: #514e48;
  --faint: #9b978f;
  --line: rgba(22, 21, 19, 0.12);
  --line-strong: rgba(22, 21, 19, 0.5);
  --dark: #0f0e0d;
  --blue: #2c6bff;
  --radius-sm: 14px;
  --radius: 18px;
  --radius-lg: 20px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --wrap: min(1320px, calc(100% - 80px));
  color-scheme: light;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 15px;
  line-height: 1.65;
  word-break: keep-all;
  text-rendering: optimizeLegibility;
}
body.menu-open {
  overflow: hidden;
}
::selection {
  color: var(--paper);
  background: var(--ink);
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
}
img {
  display: block;
  width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: -0.03em;
  font-weight: 600;
}
h1 {
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.18;
}
h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.18;
}
h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
}
h4 {
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.28;
}
h5 {
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.34;
}
h6 {
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.4;
}

/* Reusable type scale for all subpages: one level quieter than the home page. */
body.subpage h1 {
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.18;
}
body.subpage h2 {
  font-size: clamp(26px, 2.7vw, 40px);
  line-height: 1.2;
}
body.subpage h3 {
  font-size: 20px;
  line-height: 1.32;
}
body.subpage h4 {
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.32;
}
body.subpage h5 {
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.38;
}
body.subpage h6 {
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.42;
}
.wrap {
  width: var(--wrap);
  margin-inline: auto;
}
.section {
  padding-top: 118px;
}
.section-head {
  max-width: 780px;
  margin-bottom: 54px;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.eyebrow {
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition:
    opacity 0.22s ease,
    transform 0.22s var(--ease),
    background 0.22s ease;
}
.button:hover {
  opacity: 1;
}
.button:active {
  transform: scale(0.98);
}
.button.light {
  background: #f8f7f4;
  color: var(--ink);
}
.button.glass {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(22, 21, 19, 0.4);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}
.button:focus-visible,
.nav-link:focus-visible,
.faq-question:focus-visible,
.menu-toggle:focus-visible,
.search-button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

/* Header */
.top-sentinel {
  position: absolute;
  top: 60px;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

#mouse-orb,
.mouse-orb {
  display: none !important;
}

body.light-header-page #site-header {
  position: fixed !important;
  top: 16px !important;
  left: 50% !important;
  width: 100% !important;
  pointer-events: auto !important;
  transform: translateX(-50%) !important;
}

body.light-header-page #site-header *,
body.light-header-page #site-header a,
body.light-header-page #site-header button {
  pointer-events: auto;
}

body.light-header-page #site-header.scrolled {
  top: 10px !important;
  width: min(900px, calc(100% - 32px)) !important;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  transition:
    width 0.4s var(--ease),
    top 0.4s var(--ease);
}
.nav-shell {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 60px;
  border: 1px solid transparent;
  background: transparent;
  backdrop-filter: none;
  transition:
    height 0.4s var(--ease),
    padding 0.4s var(--ease),
    border 0.4s ease,
    border-radius 0.4s var(--ease),
    box-shadow 0.4s ease,
    background 0.4s ease;
}
.site-header.scrolled {
  top: 10px;
  width: min(900px, calc(100% - 32px));
}
.site-header.scrolled .nav-shell {
  height: 58px;
  padding: 0 18px 0 22px;
  border-color: rgba(22, 21, 19, 0.07);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 34px rgba(22, 21, 19, 0.1);
}
.logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.brand-logo {
  display: block;
  width: 115.7px;
  height: auto;
  transition: width 0.4s var(--ease);
}
.brand-logo .brand-svg-main {
  fill: var(--ink);
}
.brand-logo .brand-svg-point {
  fill: var(--ink);
}
.site-header:not(.scrolled) .brand-logo .brand-svg-main,
.site-header:not(.scrolled) .brand-logo .brand-svg-point {
  fill: #fff;
}
.site-header.scrolled .brand-logo {
  width: 94px;
}
.nav-links {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: clamp(12px, 1.4vw, 24px);
}
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}
.nav-link.is-active::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}
.site-header:not(.scrolled) .nav-link,
.site-header:not(.scrolled) .search-button,
.site-header:not(.scrolled) .menu-toggle {
  color: #fff;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.search-button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.home-page .site-header:not(.scrolled) .search-button {
  transition: color 300ms cubic-bezier(.16, 1, .3, 1);
}
.search-icon {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.header-cta {
  min-height: 38px;
  padding: 10px 18px;
}

/* Keep the request CTA identical across renewal and legacy list pages. */
@media (hover: hover) and (pointer: fine) {
  #site-header .header-cta:hover {
    opacity: 1;
    color: #fff;
    background: #36332e;
    transform: translateY(-1px);
  }
}

#site-header .header-cta:active {
  transform: translateY(0) scale(0.98);
}

/* Quick actions */
.quick-actions {
  position: fixed;
  right: 14px;
  bottom: 90px;
  z-index: 55;
  display: flex;
  flex-direction: column;
  gap: 7px;
  opacity: 0;
  transform: translateX(16px);
  pointer-events: none;
  transition:
    opacity 0.45s ease,
    transform 0.45s var(--ease);
}

.quick-actions.is-visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.quick-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 52px;
  height: 52px;
  border: 1px solid #e3e3e3;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  color: var(--ink);
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1;
  transition:
    background-color 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.quick-action:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.quick-action b {
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
}

.quick-admin {
  border-color: var(--ink);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.quick-admin svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-admin:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.quick-kakao {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.quick-kakao svg {
  display: block;
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.quick-kakao:hover {
  border-color: #fee500;
  background: #fee500;
  color: #191919;
  box-shadow: 0 10px 26px rgba(254, 229, 0, 0.28);
}

.quick-request:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 26px rgba(44, 107, 255, 0.24);
}

.quick-top {
  color: #777;
}

.quick-top b {
  font-size: 15px;
}
.site-header:not(.scrolled) .header-cta {
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

/* Shared initial header state for light-background subpages. */
body.light-header-page .site-header:not(.scrolled) .nav-shell {
  background: transparent;
  color: var(--ink);
  backdrop-filter: none;
}

body.light-header-page .site-header:not(.scrolled) .brand-logo .brand-svg-main,
body.light-header-page .site-header:not(.scrolled) .brand-logo .brand-svg-point {
  fill: var(--ink);
}

body.light-header-page .site-header:not(.scrolled) .nav-link,
body.light-header-page .site-header:not(.scrolled) .search-button,
body.light-header-page .site-header:not(.scrolled) .menu-toggle {
  color: var(--ink);
}

body.light-header-page .site-header:not(.scrolled) .search-icon {
  stroke: var(--ink);
}

body.light-header-page .site-header:not(.scrolled) .header-cta {
  background: var(--ink);
  color: #fff;
}
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}

/* Hero */
.hero {
  min-height: 100svh;
  /* Match the sticky process stage: 8px vertically, 16px horizontally. */
  padding: 8px 16px;
}
.hero-media {
  position: relative;
  height: calc(100dvh - 16px);
  min-height: calc(100svh - 16px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #ddd9d2;
  isolation: isolate;
}
.hero-media::before,
.cta-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: center / cover no-repeat;
}
.hero-media::before {
  z-index: 0;
  background-image: url("/renewal-assets/main-hero-first-frame-20260729.webp");
}
.hero-video {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  background: linear-gradient(
    180deg,
    rgba(15, 14, 13, 0.02) 28%,
    rgba(15, 14, 13, 0.62) 100%
  );
}
.hero-content {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  padding: 56px;
  color: #fff;
}
.hero-content .eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.86);
  letter-spacing: 0;
}
.hero-eyebrow-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}
.hero h1 {
  max-width: 950px;
  margin-bottom: 20px;
  font-size: clamp(34px, 4.3vw, 60px);
  line-height: 1.22;
}
.highlight {
  padding: 2px 14px 4px;
  background: var(--ink);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.hero-sub {
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15.5px;
  line-height: 1.65;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-search-grid {
  position: absolute;
  z-index: 5;
  bottom: 48px;
  left: 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  max-width: 640px;
  color: #fff;
}
.hero-search-item {
  min-width: 0;
  padding: 0 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.32);
}
.hero-search-item:first-child {
  padding-left: 0;
  border-left: 0;
}
.hero-search-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 600;
}
.hero-search-item span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.42;
}

/* Process */
.process-section {
  padding-top: 118px;
}
.process-head {
  margin-bottom: 48px;
}
.process-story {
  position: relative;
  /* Four scenes, each with enough scroll distance to read before changing. */
  height: 810vh;
  margin: 0 16px;
}
.process-stage {
  position: sticky;
  z-index: 1;
  top: 8px;
  height: calc(100dvh - 16px);
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #e4e1da;
  isolation: isolate;
}
.process-stage::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(10, 9, 8, 0.76) 0%,
      rgba(10, 9, 8, 0.5) 38%,
      rgba(10, 9, 8, 0.1) 72%
    ),
    linear-gradient(0deg, rgba(10, 9, 8, 0.24), transparent 45%);
}
.process-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: brightness(1);
  transform: translateY(0) scale(1.01);
  transition:
    opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, filter, transform;
}
.process-image.active {
  z-index: 2;
  opacity: 1;
  filter: brightness(1);
  transform: translateY(0) scale(1);
}
.process-image.is-previous {
  z-index: 1;
  opacity: 1;
  filter: brightness(0.55);
  transform: translateY(-14%) scale(1.01);
}
.process-content-slot {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: clamp(28px, 4vw, 64px);
  width: min(470px, calc(100% - 56px));
  color: #fff;
}
.process-section-label {
  position: absolute;
  z-index: 5;
  top: 36px;
  left: clamp(28px, 4vw, 64px);
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.process-active-label {
  display: none;
}
.process-content {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  opacity: 0;
  filter: blur(5px);
  transform: translateY(-50%);
  visibility: hidden;
  transition:
    opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.2s;
}
.process-content.active {
  opacity: 1;
  filter: none;
  transform: translateY(-50%);
  visibility: visible;
  transition:
    opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.22s,
    filter 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.22s,
    visibility 0.8s;
}
.process-label {
  display: none;
}
.process-content h3 {
  max-width: 460px;
  margin-bottom: 18px;
  font-size: clamp(30px, 3.3vw, 40px);
  font-weight: 500;
  line-height: 1.08;
}
.process-content > p {
  max-width: 430px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.62;
}
.process-content .check-list {
  margin-bottom: 28px;
}
.process-content .check-list li {
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
}
.process-content .check-list li::before {
  color: #fff;
}
.process-content .button {
  background: #f8f7f4;
  color: var(--ink);
}
.process-waypoints {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}
.process-waypoint {
  height: 200vh;
}
.process-stage-nav {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: clamp(28px, 4vw, 72px);
  width: min(270px, 24vw);
  margin: 0;
  padding: 0;
  list-style: none;
  transform: translateY(-50%);
}
.process-stage-nav li {
  position: relative;
  color: rgba(255, 255, 255, 0.56);
  transition: color 0.35s ease;
}
.process-stage-nav button {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
  padding: 13px 0 13px 19px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}
.process-stage-nav li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 0;
  background: #fff;
  transform: translateY(-50%);
  transition: height 0.35s var(--ease);
}
.process-stage-nav li.active {
  color: #fff;
}
.process-stage-nav li.active::before {
  height: 20px;
}
.process-stage-nav .step-number {
  color: inherit;
  font-size: 15px;
  letter-spacing: 0.04em;
}
.check-list {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  margin: 8px 0;
  padding-left: 20px;
  color: var(--muted-strong);
  font-size: 14.5px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  display: block;
}
.service-media {
  aspect-ratio: 1 / 0.92;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #e4e1da;
}
.service-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.service-card:hover .service-media img {
  transform: scale(1.025);
}
.service-card h3 {
  margin-bottom: 7px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.35;
}
.service-card p {
  max-width: 390px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14.5px;
}
.section-action {
  margin-top: 42px;
  text-align: center;
}

/* Stats */
.stats-head {
  max-width: 600px;
  margin-bottom: 56px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat {
  min-height: 270px;
  padding: 30px 34px 28px;
}
.stat:first-child {
  padding-left: 0;
}
.stat + .stat {
  border-left: 1px solid rgba(22, 21, 19, 0.14);
}
.stat-number {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 42px;
  font-size: clamp(60px, 6.2vw, 80px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.92;
  font-variant-numeric: tabular-nums;
}
.stat-suffix {
  font-size: 0.36em;
  font-weight: 400;
  letter-spacing: -0.025em;
}
.stat-caption {
  max-width: 250px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(16px, 1.45vw, 18px);
  font-weight: 500;
  line-height: 1.48;
  letter-spacing: -0.02em;
}
.stats-note {
  margin: 38px 0 0;
  color: var(--faint);
  font-size: 12.5px;
}

/* Pricing */
.price-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: 72px;
  align-items: center;
}
.price-visual {
  aspect-ratio: 1 / 0.96;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd9d2;
}
.price-visual img {
  height: 100%;
  object-fit: cover;
}
.price-copy h2 {
  margin-bottom: 34px;
}
.included {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}
.included li {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  padding: 4px 0 4px 20px;
  color: var(--muted-strong);
  font-size: 14px;
}
.included li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}
.price-line {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 34px;
}
.price {
  font-size: clamp(42px, 5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}
.price-meta {
  color: var(--muted);
  font-size: 13.5px;
}
.price-copy > .button {
  width: 100%;
}
.benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12.5px;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 380px) 1fr;
  gap: 64px;
}
.faq-intro h2 {
  margin-bottom: 18px;
}
.faq-intro p {
  max-width: 320px;
  color: var(--muted);
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 16.5px;
  font-weight: 500;
  cursor: pointer;
}
.faq-icon {
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}
.faq-answer > div {
  overflow: hidden;
}
.faq-answer p {
  max-width: 750px;
  margin-bottom: 24px;
  padding-right: 40px;
  color: var(--muted);
  white-space: pre-line;
}
.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

/* CTA and footer */
.dark-wrap {
  margin-top: 118px;
  padding-top: 16px;
  background: var(--dark);
}
.cta-media {
  position: relative;
  min-height: 640px;
  margin: 0 16px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: #fff;
  isolation: isolate;
}
.cta-media::before {
  z-index: 0;
  background-image: url("/renewal-assets/bg-cta.webp");
}
.cta-video {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(10, 9, 8, 0.84),
    rgba(10, 9, 8, 0.48) 55%,
    rgba(10, 9, 8, 0.12)
  );
}
.cta-content {
  position: relative;
  z-index: 3;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 64px 40px;
}
.cta-content .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}
.cta-content h2 {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(30px, 3.7vw, 48px);
}
.cta-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}
.footer-card {
  position: relative;
  width: calc(100% - 32px);
  margin: 16px 16px 0;
  padding: 58px 40px 26px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--paper);
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  /* Align the family selector with the final line of company information. */
  align-items: end;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.footer-brand {
  display: grid;
  gap: 18px;
}
.footer-company {
  max-width: 980px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.7;
}
.footer-company p {
  margin: 0;
}
.footer-company p > span + span::before {
  content: " | ";
}
.footer-brand .logo {
  width: 42px;
  height: 42px;
  background: center / contain no-repeat url("../favicon.svg?v=2");
}
.footer-brand .brand-logo {
  display: none;
}
.footer-family {
  width: min(100%, 280px);
  justify-self: end;
}
.footer-family-select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}
.footer-family-select:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}
.footer-nav h3 {
  margin: 0 0 15px;
  font-size: 15px;
  font-weight: 600;
}
.footer-nav a {
  display: block;
  margin: 8px 0;
  color: var(--muted-strong);
  font-size: 14px;
}
.footer-info {
  display: grid;
  grid-template-columns: 1fr;
  padding: 28px 0 18px;
  border-bottom: 0;
  color: var(--muted);
  font-size: 12.5px;
}
.company-info {
  max-width: 920px;
}
.footer-company-details {
  max-width: 920px;
}
.footer-company-details summary {
  display: none;
}
.footer-company-details:not([open]) .company-info {
  display: block;
}
.company-info span + span::before {
  content: " · ";
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px 18px;
}
.legal-links a {
  font-size: 13px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  padding-bottom: 0;
}
.copyright {
  position: static;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.footer-copyright-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.footer-card .footer-login,
.site-footer .footer-login,
.footer-login {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  padding: 0;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--faint);
  opacity: 0.56;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}
.footer-card .footer-login:hover,
.site-footer .footer-login:hover,
.footer-login:hover {
  color: var(--ink);
  opacity: 1;
  transform: translateY(-1px);
}
.footer-login svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Dark footer for editorial, portfolio, contact and policy pages */
:is(
  body.blog-list-page,
  body.blog-detail-page,
  body.portfolio-list-page,
  body.portfolio-detail-page,
  body.contact-body,
  body.legal-page
) .footer-card {
  --footer-dark: #101010;
  --footer-dark-line: rgba(255, 255, 255, 0.16);
  background: var(--footer-dark);
  color: #f7f7f7;
}

:is(
  body.blog-list-page,
  body.blog-detail-page,
  body.portfolio-list-page,
  body.portfolio-detail-page,
  body.contact-body,
  body.legal-page
) .footer-top {
  border-bottom-color: var(--footer-dark-line);
}

:is(
  body.blog-list-page,
  body.blog-detail-page,
  body.portfolio-list-page,
  body.portfolio-detail-page,
  body.contact-body,
  body.legal-page
) .footer-brand .logo {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--footer-dark-line);
  border-radius: 50%;
  background-color: #111;
  background-size: 100% 100%;
}

:is(
  body.blog-list-page,
  body.blog-detail-page,
  body.portfolio-list-page,
  body.portfolio-detail-page,
  body.contact-body,
  body.legal-page
) :is(.footer-company, .footer-info, .copyright) {
  color: rgba(255, 255, 255, 0.66);
}

:is(
  body.blog-list-page,
  body.blog-detail-page,
  body.portfolio-list-page,
  body.portfolio-detail-page,
  body.contact-body,
  body.legal-page
) :is(.legal-links a, .footer-nav a, .footer-nav h3) {
  color: rgba(255, 255, 255, 0.86);
}

:is(
  body.blog-list-page,
  body.blog-detail-page,
  body.portfolio-list-page,
  body.portfolio-detail-page,
  body.contact-body,
  body.legal-page
) .legal-links a:hover {
  color: #fff;
}

:is(
  body.blog-list-page,
  body.blog-detail-page,
  body.portfolio-list-page,
  body.portfolio-detail-page,
  body.contact-body,
  body.legal-page
) .footer-family-select {
  border-color: var(--footer-dark-line);
  background-color: #171717;
  color: rgba(255, 255, 255, 0.9);
}

:is(
  body.blog-list-page,
  body.blog-detail-page,
  body.portfolio-list-page,
  body.portfolio-detail-page,
  body.contact-body,
  body.legal-page
) .footer-family-select option {
  background: #171717;
  color: #fff;
}

:is(
  body.blog-list-page,
  body.blog-detail-page,
  body.portfolio-list-page,
  body.portfolio-detail-page,
  body.contact-body,
  body.legal-page
) .footer-family-select:focus-visible {
  outline-color: #fff;
}

:is(
  body.blog-list-page,
  body.blog-detail-page,
  body.portfolio-list-page,
  body.portfolio-detail-page,
  body.contact-body,
  body.legal-page
) .footer-login {
  color: rgba(255, 255, 255, 0.48);
  opacity: 1;
}

:is(
  body.blog-list-page,
  body.blog-detail-page,
  body.portfolio-list-page,
  body.portfolio-detail-page,
  body.contact-body,
  body.legal-page
) .footer-login:hover {
  color: #fff;
  opacity: 1;
}

/* Reveal */
.reveal {
  opacity: 1;
  transform: none;
}

.section-reveal {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition: none;
  will-change: opacity, transform;
}

.reveal-ready .section-reveal {
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .section-reveal,
  .section-reveal.is-revealed {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1180px) {
  .nav-links {
    gap: 13px;
  }
  .search-button {
    display: none;
  }
}
@media (max-width: 1024px) {
  :root {
    --wrap: min(100% - 48px, 800px);
  }
  .site-header {
    top: 0;
  }
  .nav-links,
  .nav-actions .header-cta,
  .nav-actions .search-button {
    display: none;
  }
  .quick-actions {
    display: none;
  }
  .nav-shell {
    justify-content: space-between;
    padding-inline: 24px;
  }
  .menu-toggle {
    display: block;
  }
  .nav-actions {
    margin-left: auto;
  }
  .site-header.menu-active {
    top: 10px;
    width: calc(100% - 32px);
  }
  .site-header.menu-active .nav-shell {
    height: 58px;
    padding: 0 18px 0 22px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 10px 34px rgba(22, 21, 19, 0.1);
  }
  .site-header.menu-active .brand-logo {
    width: 94px;
  }
  .site-header.menu-active .brand-logo .brand-svg-main,
  .site-header.menu-active .brand-logo .brand-svg-point {
    fill: var(--ink);
  }
  .site-header.menu-active .menu-toggle {
    color: var(--ink);
  }
  .site-header.menu-active .menu-toggle span {
    transform: translateY(-3px) rotate(-45deg);
  }
  .site-header.menu-active .menu-toggle::before {
    transform: translateY(3px) rotate(45deg);
  }
  .mobile-menu {
    position: fixed;
    z-index: 49;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 120px 36px 44px;
    background: rgba(245, 244, 241, 0.98);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.4s var(--ease);
  }
  .mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .mobile-menu a {
    padding: 10px 0;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.03em;
  }
  .mobile-menu .button {
    width: 100%;
    margin-top: auto;
    align-self: stretch;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
  }
  .price-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .process-stage {
    min-height: 560px;
  }
  .price-grid {
    gap: 48px;
  }
  .price-visual {
    max-width: 680px;
  }
  .faq-grid {
    gap: 28px;
  }
  .faq-intro p {
    max-width: 560px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat {
    min-height: 240px;
    padding: 28px 30px 38px;
  }
  .stat:first-child,
  .stat:nth-child(3) {
    padding-left: 0;
  }
  .stat:nth-child(3) {
    border-left: 0;
  }
  .stat:nth-child(n + 3) {
    border-top: 1px solid rgba(22, 21, 19, 0.14);
  }
  .footer-top {
    grid-template-columns: 1.6fr 1fr 1fr;
  }
  .footer-top .footer-nav:last-child {
    grid-column: 2 / 4;
    display: flex;
    gap: 24px;
    align-items: baseline;
  }
  .footer-top .footer-nav:last-child a {
    display: inline;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none;
  }
}
@media (max-width: 767px) {
  body.light-header-page #site-header,
  body.light-header-page #site-header.scrolled {
    top: 12px !important;
    width: calc(100% - 24px) !important;
  }

  :root {
    --wrap: calc(100% - 32px);
  }
  .site-header,
  .site-header.scrolled {
    top: 10px;
    width: calc(100% - 32px);
  }
  .site-header .nav-shell,
  .site-header.scrolled .nav-shell {
    height: 58px;
    padding: 0 18px 0 22px;
    border-color: rgba(22, 21, 19, 0.07);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 34px rgba(22, 21, 19, 0.1);
  }
  .site-header .brand-logo,
  .site-header.scrolled .brand-logo {
    width: 94px;
  }
  .site-header:not(.scrolled) .brand-logo .brand-svg-main,
  .site-header:not(.scrolled) .brand-logo .brand-svg-point {
    fill: var(--ink);
  }
  .site-header:not(.scrolled) .menu-toggle {
    color: var(--ink);
  }
  .nav-actions .search-button {
    display: grid !important;
    width: 38px;
    height: 38px;
    color: var(--ink);
  }
  .site-header:not(.scrolled) .nav-actions .search-button,
  .site-header.scrolled .nav-actions .search-button {
    color: var(--ink);
  }
  .site-header .nav-actions .search-icon {
    stroke: var(--ink);
  }
  h1,
  .hero h1 {
    font-size: 26px;
    line-height: 1.3;
  }
  h2,
  .cta-content h2,
  .price-copy h2 {
    font-size: 20px;
    line-height: 1.24;
  }
  h3,
  .service-card h3,
  .process-content h3 {
    font-size: 16px;
    line-height: 1.3;
  }
  h4 {
    font-size: 15px;
    line-height: 1.35;
  }
  h5 {
    font-size: 14px;
    line-height: 1.4;
  }
  h6 {
    font-size: 13px;
    line-height: 1.45;
  }
  body.subpage h1 {
    font-size: 26px;
    line-height: 1.3;
  }
  body.subpage h2 {
    font-size: 20px;
    line-height: 1.24;
  }
  body.subpage h3 {
    font-size: 16px;
    line-height: 1.3;
  }
  body.subpage h4 {
    font-size: 15px;
    line-height: 1.35;
  }
  body.subpage h5 {
    font-size: 14px;
    line-height: 1.4;
  }
  body.subpage h6 {
    font-size: 13px;
    line-height: 1.45;
  }
  .section {
    padding-top: 88px;
  }
  .section-head {
    margin-bottom: 26px;
  }
  .stats-head {
    margin-bottom: 26px;
    text-align: center;
  }
  .faq-intro h2,
  .cta-content h2 {
    margin-bottom: 26px;
  }
  .hero {
    padding: 0;
  }
  .hero-media {
    height: 100dvh;
    min-height: 100svh;
    border-radius: 0;
  }
  .hero-media::before {
    background-position: 61% center;
  }
  .hero-content {
    top: 45%;
    padding: 26px 20px 30px;
  }
  .hero h1 {
    max-width: 600px;
    margin-bottom: 16px;
  }
  .highlight {
    padding: 1px 8px 3px;
  }
  .hero-sub {
    margin-bottom: 60px;
    font-size: 14px;
    line-height: 1.55;
  }
  .button-row {
    gap: 8px;
  }
  .hero-search-grid {
    right: 20px;
    bottom: 24px;
    left: 20px;
    grid-template-columns: minmax(0, 1fr);
    max-width: none;
  }
  .hero-search-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.32);
    border-left: 0;
  }
  .hero-search-item:first-child {
    padding-top: 0;
    border-top: 0;
  }
  .hero-search-item strong {
    margin: 0;
    font-size: 13px;
  }
  .hero-search-item span {
    white-space: nowrap;
    font-size: 11px;
    line-height: 1.35;
  }
  .hero-search-item span br {
    display: none;
  }
  .button {
    min-height: 44px;
    padding-inline: 19px;
  }
  .process-section {
    padding-top: 88px;
  }
  .process-head {
    margin-bottom: 32px;
  }
  .process-story {
    height: 400vh;
    margin: 0 8px;
  }
  .process-waypoint {
    height: 100vh;
  }
  .process-stage {
    top: 72px;
    height: calc(100dvh - 80px);
    min-height: 560px;
    border-radius: 16px;
  }
  .process-section-label {
    top: 24px;
    left: 20px;
    font-size: 11px;
  }
  .process-active-label {
    position: absolute;
    z-index: 5;
    top: 64px;
    left: 20px;
    display: block;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.35;
  }
  .process-stage::after {
    background:
      linear-gradient(
        0deg,
        rgba(10, 9, 8, 0.86) 0%,
        rgba(10, 9, 8, 0.54) 51%,
        rgba(10, 9, 8, 0.08) 82%
      ),
      linear-gradient(90deg, rgba(10, 9, 8, 0.32), transparent);
  }
  .process-image {
    object-position: center;
  }
  .process-content-slot {
    top: auto;
    bottom: 72px;
    left: 20px;
    width: calc(100% - 40px);
    min-height: 420px;
  }
  .process-content {
    top: auto;
    bottom: 0;
    transform: translateY(16px);
  }
  .process-content.active {
    transform: none;
  }
  .process-content h3 {
    font-size: 16px;
  }
  .process-content > p {
    font-size: 16px;
    line-height: 1.55;
  }
  .process-content .check-list {
    margin-bottom: 20px;
  }
  .process-content .check-list li {
    margin: 5px 0;
    font-size: 15px;
  }
  .process-stage-nav {
    display: none;
  }
  .process-content .process-label {
    display: none;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    color: #fff;
  }
  .service-card::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      transparent 42%,
      rgba(10, 9, 8, 0.82) 100%
    );
  }
  .service-media {
    aspect-ratio: 1.2 / 1;
    margin-bottom: 0;
    border-radius: 0;
  }
  .service-card h3 {
    position: absolute;
    z-index: 2;
    right: 16px;
    bottom: 60px;
    left: 16px;
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
  }
  .service-card p {
    position: absolute;
    z-index: 2;
    right: 16px;
    bottom: 16px;
    left: 16px;
    margin: 0;
    max-width: none;
    color: rgba(255, 255, 255, 0.86);
    font-size: 11.5px;
    line-height: 1.35;
  }
  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .stat,
  .stat:first-child,
  .stat:nth-child(3) {
    min-height: 0;
    padding: 0 8px;
    border: 0;
    text-align: center;
  }
  .stat + .stat {
    border: 0;
  }
  .stat-number {
    justify-content: center;
    gap: 2px;
    margin-bottom: 7px;
    font-size: clamp(25px, 8vw, 32px);
    line-height: 1;
  }
  .stat-caption {
    max-width: none;
    font-size: 10px;
    line-height: 1.35;
  }
  .included {
    grid-template-columns: 1fr;
  }
  .price-grid {
    grid-template-columns: minmax(0, 1fr) 104px;
    column-gap: 12px;
    row-gap: 10px;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(22, 21, 19, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.56);
    box-shadow: 0 10px 28px rgba(22, 21, 19, 0.04);
  }
  .price-copy {
    display: contents;
  }
  .price-visual {
    grid-column: 2;
    grid-row: 1;
    width: 104px;
    aspect-ratio: 1;
    border-radius: 10px;
  }
  .price-copy h2 {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    font-size: 20px;
    line-height: 1.24;
  }
  .included {
    grid-column: 1 / -1;
    gap: 2px;
    margin: 0;
  }
  .included li {
    min-height: 0;
    padding: 2px 0 2px 15px;
    font-size: 12.5px;
    line-height: 1.4;
  }
  .included li::before {
    font-size: 11px;
  }
  .price-line {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 4px;
    margin: 0 0 12px;
  }
  .price {
    flex: 0 0 auto;
    margin-bottom: 5px;
    font-size: 34px;
    letter-spacing: -0.03em;
    line-height: 1;
  }
  .price-meta {
    padding-bottom: 0;
    font-size: 10px;
    line-height: 1;
    white-space: nowrap;
  }
  .price-copy > .button {
    grid-column: 1 / -1;
    min-height: 40px;
    font-size: 13px;
  }
  .benefits {
    grid-column: 1 / -1;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
    margin: 0;
    font-size: 10px;
    line-height: 1.2;
  }
  .benefits span {
    white-space: nowrap;
  }
  #faq {
    padding-top: 56px;
  }
  .faq-grid {
    gap: 18px;
  }
  .faq-intro h2 {
    margin-bottom: 8px;
  }
  .faq-intro p {
    margin-bottom: 0;
    font-size: 12px;
    line-height: 1.55;
  }
  .faq-question {
    padding: 16px 0;
    font-size: 13px;
  }
  .dark-wrap {
    margin-top: 88px;
    padding-top: 8px;
  }
  .cta-media {
    min-height: 400px;
    margin: 0 8px;
    border-radius: 16px;
  }
  .cta-media::before {
    background-position: 66% center;
  }
  .cta-media::after {
    background: linear-gradient(
      90deg,
      rgba(10, 9, 8, 0.88),
      rgba(10, 9, 8, 0.56) 70%,
      rgba(10, 9, 8, 0.22)
    );
  }
  .cta-content {
    min-height: 400px;
    padding: 44px 16px;
    justify-content: flex-end;
  }
  .cta-content h2 {
    max-width: 550px;
  }
  .cta-checks {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 9px;
  }
  .cta-checks span {
    white-space: nowrap;
  }
  .footer-card {
    width: calc(100% - 16px);
    margin: 8px 8px 0;
    padding: 42px 20px 24px;
    border-radius: 16px 16px 0 0;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 22px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-nav,
  .footer-top .footer-nav:last-child {
    display: none;
  }
  .footer-company {
    width: 100%;
    text-align: left;
    font-size: 10px;
    line-height: 1.55;
  }
  .footer-company p {
    width: auto;
    min-width: 0;
  }
  .footer-company p > span {
    display: block;
    white-space: nowrap;
  }
  .footer-company p > span + span::before {
    content: none;
  }
  .footer-family {
    width: 100%;
    justify-self: stretch;
  }
  .footer-family-select {
    min-height: 44px;
    font-size: 12px;
  }
  .footer-info {
    grid-template-columns: 1fr;
    padding: 20px 0 18px;
    border-bottom: 0;
  }
  .footer-company-details {
    max-width: none;
  }
  .footer-company-details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--ink);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
  }
  .footer-company-details summary::-webkit-details-marker {
    display: none;
  }
  .footer-company-details summary::after {
    content: "+";
    color: var(--muted);
    font-size: 17px;
    font-weight: 400;
    line-height: 1;
  }
  .footer-company-details[open] summary::after {
    content: "−";
  }
  .footer-company-details:not([open]) .company-info {
    display: none;
  }
  .footer-company-details[open] .company-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 12px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
  }
  .company-info span + span::before {
    content: none;
  }
  .legal-links {
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
    font-size: 11px;
  }
  .legal-links a {
    font-size: 12px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 0;
  }
  .copyright {
    margin-top: 0;
  }
  .footer-copyright-row {
    width: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 430px) {
  .hero-sub {
    max-width: 330px;
  }
  .hero .button {
    padding-inline: 15px;
    font-size: 13px;
  }
  .hero-search-grid {
    bottom: 20px;
  }
  .hero-search-item {
    padding: 8px 0;
  }
  .hero-search-item strong {
    font-size: 12px;
  }
  .hero-search-item span {
    font-size: 10px;
  }
  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .stat,
  .stat:first-child,
  .stat:nth-child(3) {
    min-height: 0;
    padding: 0 4px;
    border: 0;
  }
  .stat + .stat {
    border: 0;
  }
  .stat-number {
    margin-bottom: 6px;
  }
  .stat-caption {
    max-width: none;
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media (prefers-reduced-transparency: reduce) {
  .nav-shell,
  .site-header.scrolled .nav-shell,
  .mobile-menu {
    background: var(--paper);
    backdrop-filter: none;
  }
  .button.glass {
    background: #3b3936;
    backdrop-filter: none;
  }
}

/* Shared header search — kept in sync with locozdesign.com */
.ui-013{position:fixed;inset:0;z-index:90;background:rgba(17,17,17,.32);backdrop-filter:blur(3px);transition:opacity .3s;opacity:0;pointer-events:none;display:flex;align-items:flex-start;justify-content:center;padding:80px 20px}
.ui-014{width:100%;max-width:1000px;border-radius:22px;overflow:hidden;background:#fff;box-shadow:0 36px 90px rgba(0,0,0,.2);transition:transform .32s cubic-bezier(.22,.6,.2,1);transform:scale(.97) translateY(10px)}
.ui-015{display:flex;align-items:center;gap:14px;padding:22px 24px;border-bottom:1px solid #ebebee}
.ui-016{flex:1;background:none;border:0;outline:0;color:#111;font:inherit;font-size:18px}
.ui-016::placeholder{color:#97979d;opacity:1}
.ui-017{display:inline-flex;align-items:center;justify-content:center;width:34px;height:34px;color:#8a8b90;background:none;border:0;cursor:pointer;transition:color .2s}
.ui-018{display:grid;grid-template-columns:200px 1fr}
.ui-019{padding:18px 14px;border-right:1px solid #ebebee;background:#f9f9fa;display:flex;flex-direction:column;gap:4px}
.ui-022{padding:22px 24px;max-height:60vh;overflow-y:auto}
.search-modal.is-open{opacity:1!important;pointer-events:auto!important}
.search-modal.is-open #search-panel{transform:scale(1) translateY(0)!important}
#search-open:hover{color:#666!important}
#search-close:hover{color:#111!important}
.locoz-search-tabs{align-content:flex-start}
#search-panel .ui-016{font-size:15.5px}
.locoz-search-tab{width:100%;display:flex;align-items:center;gap:10px;padding:11px 13px;border:0;border-radius:11px;background:transparent;color:#5b5b60;font-family:inherit;font-size:13px;font-weight:500;line-height:1.2;text-align:left;cursor:pointer;transition:background-color .28s cubic-bezier(.22,.6,.2,1),color .28s cubic-bezier(.22,.6,.2,1),transform .28s cubic-bezier(.22,.6,.2,1)}
.locoz-search-tab svg{width:15px;height:15px;flex:0 0 15px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.locoz-search-tab:hover{background:#eeeef0;color:#111;transform:translateX(2px)}
.locoz-search-tab.is-active{background:#e8e8eb;color:#111;font-weight:600}
.locoz-search-content{scrollbar-gutter:stable}
.locoz-search-section+.locoz-search-section{margin-top:26px}
.locoz-search-heading{display:flex;align-items:center;justify-content:space-between;gap:16px;margin:0 0 12px}
.locoz-search-heading h2{margin:0;color:#7f7f85;font-size:12px;font-weight:600;letter-spacing:.02em}
.locoz-search-heading button{flex:0 0 auto;border:0;background:transparent;color:#252529;padding:3px 0;font-family:inherit;font-size:11.5px;font-weight:600;line-height:1.25;cursor:pointer}
.locoz-search-portfolio{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.locoz-search-project{display:block;min-width:0;color:#19191b}
.smodal-grid .locoz-search-project:hover{background:transparent}
.locoz-search-project__media{display:block;aspect-ratio:16/9;overflow:hidden;border-radius:10px;background:#ebebed}
.locoz-search-project__media img{width:100%;height:100%;object-fit:cover;object-position:center top;transition:transform .45s cubic-bezier(.22,.6,.2,1),opacity .35s ease}
.locoz-search-project strong{display:block;margin-top:8px;overflow:hidden;color:#232326;font-size:13px;font-weight:600;line-height:1.35;text-overflow:ellipsis;white-space:nowrap}
.locoz-search-project:hover img{transform:scale(1.025);opacity:1}
.locoz-search-rows{display:flex;flex-direction:column;gap:2px}
.locoz-search-row{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:11px 12px;border-radius:10px;color:#232326;transition:background-color .28s cubic-bezier(.22,.6,.2,1),transform .28s cubic-bezier(.22,.6,.2,1)}
.locoz-search-row:hover{background:#f1f1f3;transform:translateX(3px)}
.locoz-search-row__text{min-width:0;display:flex;align-items:center;justify-content:space-between;gap:18px;flex:1}
.locoz-search-row strong{min-width:0;overflow:hidden;font-size:13.5px;font-weight:600;line-height:1.4;text-overflow:ellipsis;white-space:nowrap}
.locoz-search-row time{flex:0 0 auto;color:#a0a0a5;font-size:11px;font-weight:400}
.locoz-search-blog{justify-content:flex-start}
.locoz-search-blog__thumb{width:48px;height:48px;flex:0 0 48px;overflow:hidden;border-radius:9px;background:#e9e9eb}
.locoz-search-blog__thumb img{display:block;width:100%;height:100%;object-fit:cover}
.locoz-search-arrow{flex:0 0 auto;color:#aaaab0;font-size:20px;font-weight:300;line-height:1}
.locoz-search-faq{display:flex;flex-direction:column}
.locoz-search-faq__item{border-bottom:1px solid #ededf0}
.locoz-search-faq__question{display:grid;width:100%;grid-template-columns:64px minmax(0,1fr) 20px;align-items:center;gap:12px;padding:13px 12px;border:0;outline:0;background:transparent;color:#232326;text-align:left;cursor:pointer}
.locoz-search-faq__category{overflow:hidden;color:#a0a0a5;font-size:11px;font-weight:500;line-height:1.3;text-overflow:ellipsis;white-space:nowrap}
.locoz-search-faq__question strong{font-size:13.5px;font-weight:600;line-height:1.45}
.locoz-search-faq__toggle{color:#727278;font-size:19px;font-weight:400;line-height:1;text-align:center;transition:transform .3s cubic-bezier(.22,.6,.2,1)}
.locoz-search-faq__item.is-open .locoz-search-faq__toggle{color:#111;transform:rotate(45deg)}
.locoz-search-faq__answer{display:grid;grid-template-rows:0fr;opacity:0;transition:grid-template-rows .32s cubic-bezier(.22,.6,.2,1),opacity .24s ease}
.locoz-search-faq__answer>div{min-height:0;overflow:hidden}
.locoz-search-faq__answer p{margin:0;padding:0 34px 15px 88px;color:#737379;font-size:12.5px;line-height:1.65}
.locoz-search-faq__item.is-open .locoz-search-faq__answer{grid-template-rows:1fr;opacity:1}
.locoz-search-summary{margin:0 0 24px;padding:13px 15px;border-radius:10px;background:#f5f5f6;color:#6d6d72;font-size:12.5px;line-height:1.55}
.locoz-search-summary strong{color:#111;font-weight:600}
.locoz-search-empty{margin:0;padding:22px 12px;border-radius:10px;background:#f7f7f8;color:#8a8a90;font-size:12.5px;text-align:center}
.locoz-search-loading{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.locoz-search-loading span{display:block;aspect-ratio:16/10;border-radius:10px;background:linear-gradient(100deg,#f0f0f2 30%,#fafafa 50%,#f0f0f2 70%);background-size:220% 100%;animation:locoz-search-shimmer 1.1s ease-in-out infinite}
.locoz-search-error{display:flex;min-height:180px;align-items:center;justify-content:center;flex-direction:column;gap:12px;color:#55555b;font-size:13px;text-align:center}
.locoz-search-error button{border:0;border-radius:999px;background:#111;color:#fff;padding:9px 16px;font:600 12px/1 inherit;cursor:pointer}
@keyframes locoz-search-shimmer{to{background-position:-220% 0}}

/* Lighthouse accessibility and hidden-state fixes shared by renewal and legacy pages. */
.search-modal[aria-hidden="true"],
.portfolio-context-menu[aria-hidden="true"]{visibility:hidden!important}
.price-base-note,
.faq-category-count,
.faq-group-head>span,
.portfolio-card__meta span,
.contact-step__number,
.contact-step__head h2 small,
.contact-service em,
#contact-portfolio-selected span{color:#666!important}
.webzine-card__summary{color:#6f6f6f!important}
.blog-list-page .webzine-card.rvl {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (max-width:768px){
  #search-modal.ui-013{align-items:flex-start;padding:clamp(38px,7vh,58px) 10px 14px}
  #search-panel.ui-014{max-height:calc(100dvh - 52px);border-radius:16px}
  #search-panel .ui-015{min-height:52px;gap:9px;padding:9px 13px}
  #search-panel .ui-015>svg{width:14px;height:14px;flex:0 0 auto}
  #search-panel .ui-016{font-size:13px}
  #search-panel .ui-017{width:30px;height:30px}
  #search-panel .ui-018{display:block}
  #search-panel .ui-019{display:flex;overflow-x:auto;flex-direction:row;gap:4px;padding:8px 10px;border-right:0;border-bottom:1px solid #ebebee}
  .locoz-search-tabs{overflow-x:auto!important;scrollbar-width:none}
  .locoz-search-tabs::-webkit-scrollbar{display:none}
  .locoz-search-tab{width:auto!important;min-height:32px;padding:8px 10px!important;border-radius:9px;font-size:11.5px;white-space:nowrap}
  .locoz-search-tab:hover{transform:none}
  .locoz-search-content{max-height:calc(100dvh - 145px)!important;padding:13px 14px 18px!important}
  .locoz-search-section+.locoz-search-section{margin-top:20px}
  .locoz-search-heading{margin-bottom:8px}
  .locoz-search-heading h2,.locoz-search-heading button{font-size:10.5px}
  .locoz-search-portfolio{gap:7px}
  .locoz-search-project__media{border-radius:8px}
  .locoz-search-project strong{margin-top:5px;font-size:10.5px}
  .locoz-search-row{gap:8px;padding:8px 7px;border-radius:8px}
  .locoz-search-row:hover{transform:none}
  .locoz-search-row__text{align-items:flex-start;flex-direction:column;gap:2px}
  .locoz-search-row strong{max-width:100%;font-size:11.5px}
  .locoz-search-row time{font-size:9.5px}
  .locoz-search-blog__thumb{width:42px;height:42px;flex-basis:42px;border-radius:7px}
  .locoz-search-faq__question{grid-template-columns:46px minmax(0,1fr) 18px;padding:10px 7px;gap:8px}
  .locoz-search-faq__category{font-size:9.5px}
  .locoz-search-faq__question strong{font-size:11.5px}
  .locoz-search-faq__answer p{padding:0 24px 12px 61px;font-size:10.5px;line-height:1.6}
  .locoz-search-summary{margin-bottom:18px;padding:10px 11px;font-size:10.5px}
  .locoz-search-empty{padding:17px 8px;font-size:11px}
}

/* Shared monochrome button interaction system */
:where(.button,.header-cta,.quick-action,.article-back,.article-share,.article-list-more,.article-list-all,.portfolio-site-link,.portfolio-site-cta>a,.public-admin-button,.contact-submit,.privacy-modal__confirm,.contact-success>a){
  transition:color .3s cubic-bezier(.16,1,.3,1),background-color .3s cubic-bezier(.16,1,.3,1),border-color .3s cubic-bezier(.16,1,.3,1),box-shadow .3s cubic-bezier(.16,1,.3,1),transform .3s cubic-bezier(.16,1,.3,1)
}
:where(.button,.header-cta,.quick-action,.article-back,.article-share,.article-list-more,.article-list-all,.portfolio-site-link,.portfolio-site-cta>a,.public-admin-button,.contact-submit,.privacy-modal__confirm,.contact-success>a) svg{
  transition:transform .3s cubic-bezier(.16,1,.3,1)
}
@media (hover:hover) and (pointer:fine){
  :where(.button,.header-cta,.quick-action,.article-back,.article-share,.article-list-more,.article-list-all,.portfolio-site-link,.portfolio-site-cta>a,.public-admin-button,.contact-submit,.privacy-modal__confirm,.contact-success>a):hover{
    opacity:1;box-shadow:none;transform:translateY(-2px)
  }
  :where(.button:not(.light):not(.glass),.header-cta,.quick-kakao,.article-list-all,.portfolio-site-link,.portfolio-site-cta>a,.contact-submit,.privacy-modal__confirm,.contact-success>a):hover{
    border-color:#2b2b2b;background-color:#2b2b2b;color:#fff
  }
  :where(.button.light,.button.glass,.quick-admin,.quick-request,.quick-top,.article-back,.article-share,.article-list-more,.public-admin-button):hover{
    border-color:#111;background-color:#111;color:#fff
  }
  :where(.button,.header-cta,.quick-action,.article-back,.article-share,.article-list-more,.article-list-all,.portfolio-site-link,.portfolio-site-cta>a,.public-admin-button,.contact-submit,.privacy-modal__confirm,.contact-success>a):hover svg{
    transform:translate(2px,-2px)
  }
}
:where(.button,.header-cta,.quick-action,.article-back,.article-share,.article-list-more,.article-list-all,.portfolio-site-link,.portfolio-site-cta>a,.public-admin-button,.contact-submit,.privacy-modal__confirm,.contact-success>a):active{
  opacity:1;transform:translateY(0) scale(.98)
}
@media (hover:none),(pointer:coarse){
  :where(.button,.header-cta,.quick-action,.article-back,.article-share,.article-list-more,.article-list-all,.portfolio-site-link,.portfolio-site-cta>a,.public-admin-button,.contact-submit,.privacy-modal__confirm,.contact-success>a):hover{transform:none}
}

/* Home and shared conversion actions */
.home-page .hero .button-row .button,
.cta-content .button-row .button {
  border: 0;
}

/* Hover interactions must never fade content. */
a:hover,
button:hover,
[role="button"]:hover,
.service-card:hover,
.service-card:hover :is(img, h3, p) {
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .home-page #site-header:not(.scrolled) .header-cta:hover {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff;
  }

  .cta-content .button-row .button:hover {
    border: 0;
  }
}

/* Contextual article links on service pages */
.seo-related__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  align-items: end;
  gap: 12px 48px;
  margin-bottom: 42px;
}
.seo-related__head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}
.seo-related__head h2,
.seo-related__head p {
  margin-bottom: 0;
}
.seo-related__head > p:last-child {
  color: var(--muted);
  font-size: 14px;
}
.seo-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}
.seo-related__grid a {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 190px;
  padding: 26px 52px 26px 0;
  border-bottom: 1px solid var(--line);
}
.seo-related__grid a + a {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}
.seo-related__grid small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
}
.seo-related__grid strong {
  max-width: 300px;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}
.seo-related__grid span {
  position: absolute;
  right: 22px;
  bottom: 26px;
  font-size: 20px;
  transition: transform 300ms var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .seo-related__grid a:hover span {
    transform: translateX(5px);
  }
}
@media (max-width: 768px) {
  .seo-related__head {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 28px;
  }
  .seo-related__head .eyebrow {
    grid-column: auto;
  }
  .seo-related__head > p:last-child {
    font-size: 12px;
  }
  .seo-related__grid {
    grid-template-columns: 1fr;
  }
  .seo-related__grid a {
    min-height: 124px;
    padding: 20px 44px 20px 0;
  }
  .seo-related__grid a + a {
    padding-left: 0;
    border-left: 0;
  }
  .seo-related__grid strong {
    margin-top: 10px;
    font-size: 15px;
  }
  .seo-related__grid span {
    right: 4px;
    bottom: 20px;
  }
}
