:root {
  --brand-navy: #111735;
  --brand-indigo: #25256f;
  --brand-blue: #3657a6;
  --brand-yellow: #f2bd42;
  --kakao: #f7e600;
  --ink: var(--brand-navy);
  --ink-soft: #626879;
  --forest: var(--brand-indigo);
  --forest-bright: var(--brand-blue);
  --mineral: #e8eaf6;
  --paper: #f6f7fb;
  --white: #ffffff;
  --amber: var(--brand-yellow);
  --amber-deep: #45459a;
  --line: #d9deec;
  --max: 1440px;
  --serif: "Noto Serif KR", serif;
  --sans: Pretendard, "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; min-width: 0; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; scroll-padding-top: 70px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; letter-spacing: 0; }
button, a { -webkit-tap-highlight-color: transparent; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--brand-navy);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}
.skip-link:focus-visible { transform: translateY(0); }

.scroll-progress {
  display: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 82px;
  display: grid;
  grid-template-columns: 250px 1fr 130px;
  align-items: center;
  gap: 24px;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  color: var(--ink);
  background: var(--white);
  border-bottom: 1px solid rgba(17, 23, 53, 0.1);
  transition: height 220ms ease, box-shadow 220ms ease;
}
.site-header.is-scrolled {
  height: 70px;
  box-shadow: 0 14px 34px rgba(17, 23, 53, 0.1);
}
.brand {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}
.brand img { width: 156px; height: auto; }
.brand span {
  padding-left: 12px;
  color: var(--forest);
  border-left: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  position: relative;
  padding: 28px 0;
  color: #303750;
  font-size: 14px;
  font-weight: 600;
}
.nav-links a::after {
  content: "";
  position: absolute;
  inset: auto 0 20px;
  height: 1px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-cta {
  min-height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}
.header-cta:hover { color: var(--forest); background: var(--white); }
.menu-toggle { display: none; }

.section { width: min(calc(100% - 64px), 1280px); margin-inline: auto; }
.eyebrow {
  margin: 0 0 20px;
  color: var(--forest-bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: 0; }
h2 {
  margin-bottom: 30px;
  font-family: var(--serif);
  font-size: 52px;
  line-height: 1.26;
  font-weight: 600;
}
.lead { color: var(--ink); font-size: 21px; line-height: 1.7; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
  text-align: center;
}
.button:hover { transform: translateY(-2px); }
.button-dark { color: var(--white); background: var(--brand-indigo); border-color: var(--brand-indigo); }
.button-dark:hover { color: var(--brand-indigo); background: transparent; }
.button-light { color: var(--ink); background: var(--white); border-color: var(--white); }
.button-light:hover { color: var(--white); background: var(--ink); border-color: var(--ink); }
.button-accent { color: var(--brand-navy); background: var(--kakao); border-color: var(--kakao); }
.button-accent:hover { background: #ffe62f; border-color: #ffe62f; }
.button-outline { color: var(--brand-indigo); background: transparent; border-color: rgba(37, 37, 111, 0.28); }
.button-outline:hover { color: var(--white); background: var(--brand-indigo); border-color: var(--brand-indigo); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 700;
}
.text-link::after { content: "→"; font-size: 18px; transition: transform 180ms ease; }
.text-link:hover::after { transform: translateX(5px); }

.hero {
  position: relative;
  min-height: 780px;
  height: 88svh;
  max-height: 980px;
  margin-top: 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--mineral);
}
.hero > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-enter 1.4s cubic-bezier(.2,.7,.2,1) both;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(17, 23, 53, 0.5);
  pointer-events: none;
}
.hero-copy {
  width: min(calc(100% - 64px), 1280px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 36px 0 76px;
  animation: copy-enter 800ms 220ms cubic-bezier(.2,.7,.2,1) both;
  color: var(--white);
}
.hero-copy .eyebrow { margin-bottom: 18px; color: #dce1f3; }
.hero h1 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 82px;
  line-height: 1;
  font-weight: 600;
}
.hero-statement {
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.4;
  font-weight: 600;
}
.hero-lead {
  max-width: 520px;
  margin-bottom: 34px;
  color: #eef1fa;
  font-size: 17px;
  line-height: 1.85;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-scroll {
  position: absolute;
  left: max(32px, calc((100vw - 1280px) / 2));
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.78);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.hero-scroll span { width: 56px; height: 1px; background: currentColor; }
.hero .button-dark { color: var(--brand-navy); background: var(--white); border-color: var(--white); }
.hero .button-dark:hover { color: var(--white); background: transparent; }
.hero .button-light { color: var(--brand-navy); background: var(--kakao); border-color: var(--kakao); }
.hero .button-light:hover { color: var(--brand-navy); background: #ffe62f; border-color: #ffe62f; }

.fact-band {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--white);
  background: var(--ink);
}
.fact-band > div {
  min-height: 164px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-content: center;
  gap: 2px 16px;
  padding: 34px max(28px, 3vw);
  border-right: 1px solid rgba(255,255,255,.14);
}
.fact-band > div:last-child { border-right: 0; }
.fact-band span { grid-row: 1 / 3; color: var(--amber); font-family: var(--serif); font-size: 15px; }
.fact-band strong { font-size: 17px; }
.fact-band p { margin: 0; color: #b8bfd2; font-size: 13px; }

.intro {
  display: grid;
  grid-template-columns: 0.82fr 1.35fr;
  gap: 9%;
  align-items: center;
  padding-block: 150px;
}
.intro-copy > p:not(.eyebrow) { color: var(--ink-soft); }
.intro-copy .lead { color: var(--ink); }
.intro-visual { margin: 0; }
.intro-visual img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.intro-visual figcaption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0 0;
  color: #626879;
  font-size: 12px;
}
.intro-visual figcaption span { color: var(--forest); font-weight: 700; letter-spacing: .12em; }

.services { background: var(--white); padding-bottom: 60px; scroll-margin-top: 70px; }
.section-heading { padding-block: 140px 90px; }
.section-heading h2 { margin-bottom: 0; }
.service-story {
  width: min(calc(100% - 64px), 1440px);
  margin: 0 auto 112px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(420px, .75fr);
  align-items: stretch;
}
.service-story.reverse { grid-template-columns: minmax(420px, .75fr) minmax(0, 1.35fr); }
.service-story.reverse .service-image { order: 2; }
.service-story.reverse .service-copy { order: 1; }
.service-image { min-height: 620px; overflow: hidden; background: var(--mineral); }
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(.2,.7,.2,1);
}
.service-story:hover .service-image img { transform: scale(1.025); }
.service-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px;
  background: #eef1f8;
}
.service-story.wood .service-copy { background: #f4f2ee; }
.service-story.countertop .service-copy { color: var(--white); background: var(--forest); }
.service-story.countertop .eyebrow { color: #c9d8d3; }
.service-number {
  position: absolute;
  top: 28px;
  right: 32px;
  color: rgba(37, 37, 111, .24);
  font-family: var(--serif);
  font-size: 62px;
  line-height: 1;
}
.countertop .service-number { color: rgba(255,255,255,.22); }
.service-copy h3 { margin-bottom: 28px; font-family: var(--serif); font-size: 44px; font-weight: 600; }
.service-copy > p:not(.eyebrow) { color: #535b73; }
.countertop .service-copy > p:not(.eyebrow) { color: #d8dcef; }
.service-copy ul { margin: 16px 0 36px; padding: 0; list-style: none; }
.service-copy li { padding: 9px 0; border-bottom: 1px solid rgba(17,23,53,.14); font-size: 14px; }
.countertop .service-copy li { border-color: rgba(255,255,255,.18); }
.service-links { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.countertop .button-dark { color: var(--ink); background: var(--white); border-color: var(--white); }
.countertop .button-dark:hover { color: var(--white); background: transparent; }

.detail-gallery {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  grid-template-rows: repeat(2, minmax(320px, 1fr));
  min-height: 900px;
  background: var(--ink);
  scroll-margin-top: 70px;
}
.detail-gallery figure { position: relative; margin: 0; overflow: hidden; border-left: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.detail-gallery .gallery-main { grid-row: 1 / 3; border-left: 0; }
.detail-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms ease; }
.detail-gallery figure:hover img { transform: scale(1.03); }
.detail-gallery figcaption {
  position: absolute;
  left: 26px;
  right: auto;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  min-width: 230px;
  max-width: calc(100% - 52px);
  gap: 28px;
  padding: 10px 14px;
  color: var(--white);
  background: rgba(17,23,53,.74);
  border-left: 2px solid var(--amber);
  font-size: 13px;
  backdrop-filter: blur(8px);
}
.detail-gallery figcaption span { color: var(--brand-yellow); font-size: 11px; font-weight: 700; letter-spacing: .14em; }

.standard { display: grid; grid-template-columns: .72fr 1.28fr; gap: 10%; padding-block: 118px; scroll-margin-top: 70px; }
.standard-heading { position: sticky; top: 110px; align-self: start; }
.standard-heading > p:last-child { color: var(--ink-soft); }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 84px 1fr; gap: 24px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.process-list span { color: var(--amber-deep); font-family: var(--serif); font-size: 20px; }
.process-list strong { display: block; margin-bottom: 7px; font-size: 19px; }
.process-list p { margin: 0; color: var(--ink-soft); font-size: 14px; }

.care-band { display: grid; grid-template-columns: 1.08fr .92fr; background: #e8eaf6; scroll-margin-top: 70px; }
.care-image { min-height: 680px; }
.care-image img { width: 100%; height: 100%; object-fit: cover; }
.care-copy { display: flex; flex-direction: column; justify-content: center; padding: 90px max(52px, 7vw); }
.care-copy p:not(.eyebrow) { color: var(--ink-soft); }
.care-copy .text-link { align-self: flex-start; margin-top: 16px; }

.finder { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px 9%; padding-block: 118px; scroll-margin-top: 70px; }
.finder h2,
.faq h2 { font-family: var(--sans); font-size: 46px; line-height: 1.32; font-weight: 700; }
.finder-heading p:last-child { color: var(--ink-soft); }
.finder-form {
  align-self: end;
  padding: 26px 28px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--amber);
  box-shadow: 0 18px 45px rgba(21, 25, 24, .07);
}
.finder-form label { display: block; margin-bottom: 10px; font-size: 13px; font-weight: 700; }
.finder-form > div { display: grid; grid-template-columns: 1fr 96px; border-bottom: 2px solid var(--ink); }
.finder-form input { min-width: 0; height: 62px; padding: 0 8px; background: transparent; border: 0; outline: 0; font-size: 18px; }
.finder-form button { color: var(--white); background: var(--ink); border: 0; cursor: pointer; font-weight: 700; }
.finder-links { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(6, 1fr); margin-top: 56px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.finder-links a { min-height: 118px; display: flex; flex-direction: column; justify-content: center; padding: 22px; background: var(--white); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background 180ms ease, color 180ms ease; }
.finder-links a:hover { color: var(--white); background: var(--forest); }
.finder-links span { color: var(--ink-soft); font-size: 12px; }
.finder-links a:hover span { color: #dbe0f0; }
.finder-links strong { margin-top: 4px; font-size: 16px; }
.finder-note { grid-column: 1 / -1; margin: 16px 0 0; color: #69728a; font-size: 12px; }

.guides { color: var(--white); background: var(--forest); scroll-margin-top: 70px; }
.guide-inner { display: grid; grid-template-columns: .68fr 1.32fr; gap: 9%; padding-block: 130px; }
.guide-inner .eyebrow { color: #d9def0; }
.guide-list { border-top: 1px solid rgba(255,255,255,.22); }
.guide-list a { display: grid; grid-template-columns: 54px 1fr; gap: 20px; align-items: center; min-height: 108px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.guide-list > a > span { color: var(--amber); font-family: var(--serif); }
.guide-list strong { display: block; margin-bottom: 4px; font-size: 18px; }
.guide-list p { margin: 0; color: #c4cada; font-size: 13px; }
.guide-list a div { transition: transform 180ms ease; }
.guide-list a:hover div { transform: translateX(8px); }

.faq { display: grid; grid-template-columns: .6fr 1.4fr; gap: 10%; padding-block: 118px; scroll-margin-top: 70px; }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 28px 54px 28px 0; cursor: pointer; list-style: none; font-size: 17px; font-weight: 600; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 22px; color: var(--forest); font-size: 26px; font-weight: 400; transition: transform 180ms ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { max-width: 760px; padding: 0 48px 28px 0; color: var(--ink-soft); font-size: 14px; }

.final-cta { position: relative; min-height: 620px; display: grid; place-items: center; overflow: hidden; isolation: isolate; color: var(--white); text-align: center; }
.final-cta > img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.final-cta::after { content: ""; position: absolute; z-index: -1; inset: 0; background: rgba(17, 23, 53, .72); }
.final-cta > div { width: min(calc(100% - 48px), 760px); padding: 100px 0; }
.final-cta .eyebrow { color: #e3e6f2; }
.final-cta h2 { margin-bottom: 20px; }
.final-cta p:not(.eyebrow) { color: #d8dcef; }
.final-cta .hero-actions { justify-content: center; margin-top: 30px; }

.site-footer { color: #e2e5f0; background: #0e142f; }
.footer-inner { width: min(calc(100% - 64px), 1280px); margin-inline: auto; display: grid; grid-template-columns: .65fr 1fr .7fr; gap: 60px; padding: 72px 0 92px; }
.footer-brand { align-self: start; display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.footer-brand img { width: 166px; padding: 8px 10px; background: var(--white); }
.footer-brand strong { font-family: var(--serif); font-size: 20px; }
.footer-info { display: flex; flex-direction: column; gap: 8px; color: #aab1c2; font-size: 12px; }
.footer-info a { color: var(--white); }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 20px; align-content: start; font-size: 13px; }
.footer-links a:hover { color: var(--amber); }
.mobile-contact { display: none; }

.js [data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@keyframes hero-enter { from { opacity: 0; transform: scale(1.025); } to { opacity: 1; transform: scale(1); } }
@keyframes copy-enter { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 220px 1fr 112px; gap: 14px; padding-inline: 24px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 13px; }
  .service-story, .service-story.reverse { grid-template-columns: 1.15fr .85fr; }
  .service-copy { padding: 64px 46px; }
  .finder-links { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  html { scroll-padding-top: 70px; }
  body { font-size: 15px; }
  .section { width: min(calc(100% - 40px), 720px); }
  h2 { font-size: 40px; }
  .site-header, .site-header.is-scrolled { height: 70px; grid-template-columns: 1fr auto auto; padding-inline: 20px; }
  .brand img { width: 142px; }
  .header-cta { min-width: 92px; min-height: 38px; padding: 0 13px; }
  .menu-toggle {
    width: 40px;
    height: 40px;
    display: grid;
    place-content: center;
    gap: 5px;
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  .menu-toggle span { width: 22px; height: 1px; display: block; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .nav-links {
    position: fixed;
    inset: 70px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 22px 24px 110px;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 240ms cubic-bezier(.2,.7,.2,1);
    overflow-y: auto;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { padding: 20px 2px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 22px; }
  .nav-links a::after { display: none; }
  .hero { min-height: 680px; height: calc(100svh - 70px); margin-top: 0; }
  .hero > img { object-position: 48% center; }
  .hero::after { background: rgba(17,23,53,.58); }
  .hero-copy { width: calc(100% - 40px); padding-bottom: 80px; }
  .hero h1 { font-size: 64px; }
  .hero-statement { font-size: 30px; }
  .hero-lead { max-width: 480px; }
  .hero-scroll { left: 20px; }
  .fact-band { grid-template-columns: repeat(2, 1fr); }
  .fact-band > div { min-height: 132px; border-bottom: 1px solid rgba(255,255,255,.14); }
  .intro { grid-template-columns: 1fr; gap: 58px; padding-block: 110px; }
  .intro-copy { max-width: 640px; }
  .section-heading { padding-block: 100px 64px; }
  .service-story, .service-story.reverse { width: calc(100% - 40px); grid-template-columns: 1fr; margin-bottom: 76px; }
  .service-story.reverse .service-image, .service-story.reverse .service-copy { order: initial; }
  .service-image { min-height: 480px; }
  .service-copy { padding: 64px 46px; }
  .detail-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 560px 360px; min-height: 0; }
  .detail-gallery .gallery-main { grid-column: 1 / -1; grid-row: auto; }
  .standard { grid-template-columns: 1fr; gap: 52px; padding-block: 110px; }
  .standard-heading { position: static; }
  .care-band { grid-template-columns: 1fr; }
  .care-image { min-height: 520px; }
  .care-copy { padding: 82px max(28px, 8vw); }
  .finder { grid-template-columns: 1fr; gap: 34px; padding-block: 96px; }
  .finder-links { grid-column: 1; margin-top: 26px; }
  .finder-note { grid-column: 1; }
  .guide-inner { grid-template-columns: 1fr; gap: 48px; padding-block: 100px; }
  .faq { grid-template-columns: 1fr; gap: 42px; padding-block: 96px; }
  .footer-inner { width: calc(100% - 40px); grid-template-columns: 1fr 1fr; gap: 42px; }
  .footer-links { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  html { scroll-padding-top: 66px; }
  body { padding-bottom: 52px; }
  h2 { font-size: 34px; }
  .lead { font-size: 18px; }
  .site-header, .site-header.is-scrolled { height: 66px; padding-inline: 15px; }
  .brand { gap: 8px; }
  .brand img { width: 118px; }
  .brand span { padding-left: 8px; font-size: 8px; }
  .header-cta { display: none; }
  .nav-links { inset: 66px 0 0; }
  .hero { min-height: 660px; height: calc(100svh - 66px); margin-top: 0; }
  .hero > img { object-position: 42% center; }
  .hero::after { background: rgba(17,23,53,.64); }
  .hero-copy { width: calc(100% - 34px); justify-content: flex-end; padding-bottom: 78px; }
  .hero h1 { font-size: 48px; }
  .hero-statement { font-size: 25px; }
  .hero-lead { font-size: 14px; line-height: 1.75; }
  .hero-actions { width: 100%; }
  .hero-actions .button { flex: 1 1 130px; min-width: 0; padding-inline: 14px; white-space: normal; }
  .hero-scroll { display: none; }
  .fact-band { grid-template-columns: 1fr; }
  .fact-band > div { min-height: 100px; padding: 24px 22px; border-right: 0; }
  .intro { gap: 42px; padding-block: 84px; }
  .intro-visual img { aspect-ratio: 4 / 3; }
  .intro-visual figcaption { flex-direction: column; gap: 4px; }
  .section-heading { padding-block: 82px 48px; }
  .service-story, .service-story.reverse { width: 100%; margin-bottom: 0; }
  .service-image { min-height: 0; aspect-ratio: 4 / 3; }
  .service-copy { padding: 58px 22px 64px; }
  .service-number { top: 18px; right: 20px; font-size: 48px; }
  .service-copy h3 { font-size: 36px; }
  .service-links { align-items: stretch; flex-direction: column; }
  .service-links .button { width: 100%; }
  .service-links .text-link { align-self: flex-start; }
  .detail-gallery { grid-template-columns: 1fr; grid-template-rows: repeat(3, 380px); }
  .detail-gallery .gallery-main { grid-column: auto; }
  .detail-gallery figure { border-left: 0; }
  .detail-gallery figcaption { left: 16px; right: 16px; bottom: 14px; }
  .standard { padding-block: 84px; }
  .process-list li { grid-template-columns: 44px 1fr; gap: 14px; padding: 26px 0; }
  .care-image { min-height: 0; aspect-ratio: 4 / 3; }
  .care-copy { padding: 76px 20px 84px; }
  .finder { padding-block: 76px; }
  .finder-form { padding: 22px 18px 20px; }
  .finder h2,
  .faq h2 { font-size: 31px; line-height: 1.38; }
  .finder-form > div { grid-template-columns: 1fr 78px; }
  .finder-form input { font-size: 15px; }
  .finder-links { grid-template-columns: repeat(2, 1fr); }
  .finder-links a { min-height: 100px; padding: 16px; }
  .guide-inner { padding-block: 82px; }
  .faq { gap: 32px; padding-block: 60px 74px; }
  .faq summary { padding: 19px 42px 19px 0; font-size: 14px; }
  .faq summary::after { top: 13px; }
  .faq details p { padding-right: 0; }
  .final-cta { min-height: 560px; }
  .final-cta > img { object-position: 52% center; }
  .final-cta h2 { font-size: 32px; }
  .footer-inner { grid-template-columns: 1fr; padding-block: 58px 74px; }
  .footer-links { grid-column: 1; grid-template-columns: repeat(2, 1fr); }
  .mobile-contact {
    position: fixed;
    z-index: 110;
    inset: auto 0 0;
    height: 52px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--brand-indigo);
    box-shadow: 0 -8px 24px rgba(0,0,0,.12);
  }
  .mobile-contact a { display: grid; min-width: 0; place-items: center; padding-inline: 8px; overflow: hidden; color: var(--white); font-size: 13px; font-weight: 700; line-height: 1.25; text-align: center; white-space: nowrap; }
  .mobile-contact a + a { color: var(--brand-navy); background: var(--kakao); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 370px) {
  .hero h1 { font-size: 40px; }
  .hero-statement { font-size: 22px; }
  .brand img { width: 106px; }
  .brand span { display: none; }
  .finder-links { grid-template-columns: 1fr; }
}
