:root {
  --orange: #f77100;
  --gold: #e49c00;
  --navy: #0b1c39;
  --ink: #111;
  --muted: #777;
  --line: #ddd;
  --container: 1400px;
  --pad: clamp(18px, 4vw, 60px);
  --top: 96px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.home-snap {
  scroll-snap-type: none;
  overflow-anchor: none;
}
body {
  margin: 0;
  font-family: "Noto Serif KR", "Nunito Sans", serif;
  color: var(--ink);
  background: #fff;
  word-break: keep-all;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { max-width: 100%; display: block; }

.top {
  position: fixed;
  inset: 0 0 auto;
  height: var(--top);
  z-index: 50;
  transform: translateY(-100%);
  animation: headerIn 900ms ease forwards 180ms;
  transition: background 300ms, box-shadow 300ms;
}
.top.is-solid, body:not(.route-home) .top {
  background: rgba(255,255,255,.96);
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
}
@keyframes headerIn { to { transform: translateY(0); } }
.top__inner {
  height: 100%;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { width: 200px; height: 74px; display: flex; align-items: center; }
.brand img { max-height: 58px; object-fit: contain; }
.brand__dark { display: none; }
.top.is-solid .brand__white, body:not(.route-home) .brand__white { display: none; }
.top.is-solid .brand__dark, body:not(.route-home) .brand__dark { display: block; }

.gnb { display: flex; align-self: stretch; }
.gnb__item { position: relative; display: flex; align-items: center; }
.gnb__item > a {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 23px;
  color: #fff;
  font-weight: 700;
}
.top.is-solid .gnb__item > a, body:not(.route-home) .gnb__item > a { color: #111; }
.gnb__sub {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  padding: 18px 0;
  background: var(--navy);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: 260ms ease;
}
.gnb__item:hover .gnb__sub { opacity: 1; visibility: visible; transform: translateY(0); }
.gnb__sub a {
  display: block;
  padding: 10px 24px;
  font-size: .95rem;
  opacity: 0;
  transform: translateY(12px);
}
.gnb__item:hover .gnb__sub a { animation: subIn 280ms ease forwards; }
.gnb__sub a:nth-child(2) { animation-delay: 70ms; }
.gnb__sub a:nth-child(3) { animation-delay: 140ms; }
.gnb__sub a:nth-child(4) { animation-delay: 210ms; }
@keyframes subIn { to { opacity: 1; transform: translateY(0); } }

.menu-dot {
  width: 27px;
  height: 27px;
  border: 0;
  background: transparent;
  display: grid;
  grid-template-columns: repeat(3, 5px);
  gap: 5px;
  cursor: pointer;
}
.menu-dot span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
}
.top.is-solid .menu-dot span, body:not(.route-home) .menu-dot span { background: #222; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(11,28,57,.97);
  color: #fff;
  padding: 44px var(--pad);
  transform: translateX(100%);
  transition: 420ms ease;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__close {
  position: absolute;
  right: var(--pad);
  top: 36px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
}
.mobile-menu__close:before, .mobile-menu__close:after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 20px;
  height: 2px;
  background: #fff;
}
.mobile-menu__close:before { transform: rotate(45deg); }
.mobile-menu__close:after { transform: rotate(-45deg); }
.mobile-menu__login { display: flex; gap: 12px; margin-bottom: 60px; }
.mobile-menu__login a { border: 1px solid rgba(255,255,255,.35); padding: 8px 14px; border-radius: 999px; }
.mobile-menu__list a {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
  font-size: clamp(1.45rem, 5vw, 2.5rem);
  font-weight: 700;
}

.view { display: none; }
.view.is-active { display: block; }
.view--home.is-active { display: block; }
.fp-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
html.home-snap .fp-section,
html.home-snap .footer {
  scroll-snap-align: none;
}

.hero { background: #111; color: #fff; }
.hero__slides, .hero__slide { position: absolute; inset: 0; }
.hero__slide {
  opacity: 0;
  transition: opacity 1100ms ease;
  overflow: hidden;
}
.hero__slide:before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg) center/cover no-repeat;
  transform: scale(1.18);
  transition: transform 2200ms ease;
}
.hero__slide:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 44%, rgba(0,0,0,.42), rgba(0,0,0,.22) 34%, rgba(0,0,0,.38) 100%),
    rgba(0,0,0,.2);
}
.hero__slide.is-active { opacity: 1; }
.hero__slide.is-active:before { transform: scale(1); }
.hero__copy {
  position: absolute;
  left: 50%;
  top: 45%;
  width: min(100% - 40px, 1000px);
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}
.hero__copy h1 {
  margin: 0 0 28px;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  transform: translateY(70px);
  opacity: 0;
}
.hero__copy p {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  opacity: 0;
  line-height: 1.8;
  transform: translateY(70px);
}
.hero__slide.is-active h1 { animation: copyUp 800ms ease forwards 350ms; }
.hero__slide.is-active p { animation: copyUp 800ms ease forwards 520ms; }
@keyframes copyUp { to { opacity: .92; transform: translateY(0); } }
.hero__controls {
  position: absolute;
  left: 50%;
  bottom: 200px;
  z-index: 4;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
}
.dot {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0 4px, transparent 5px);
  position: relative;
  cursor: pointer;
}
.dot.is-active:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #fff;
  animation: ring 3s linear;
}
@keyframes ring { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0); } }
.play, .arrow {
  color: #fff;
  background: transparent;
  border: 0;
  width: 36px;
  height: 36px;
  cursor: pointer;
}
.arrow:before, .arrow:after {
  content: "";
  display: block;
  width: 3px;
  height: 13px;
  border-radius: 9px;
  background: #fff;
  margin-left: 15px;
}
.prev:before { transform: rotate(45deg) translateY(3px); }
.prev:after { transform: rotate(-45deg) translateY(-3px); }
.next:before { transform: rotate(-45deg) translateY(3px); }
.next:after { transform: rotate(45deg) translateY(-3px); }
.hero__sns {
  position: absolute;
  right: 50px;
  bottom: 50px;
  z-index: 4;
  display: grid;
  gap: 5px;
}
.hero__sns a {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  position: relative;
}
.hero__sns img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: brightness(0) invert(1);
}
.hero__sns a:first-child img { filter: none; }
.hero__sns a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--navy);
  transition: 260ms;
  z-index: -1;
}
.hero__sns a:hover:before { width: 50px; height: 50px; }
.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 30px;
  width: 66px;
  height: 66px;
  margin-left: -33px;
  z-index: 4;
}
.scroll-down:before {
  content: "⌄";
  position: absolute;
  inset: 0;
  font-size: 0;
  background: url("./img/main-mouse-scroll.png") center/contain no-repeat;
  animation: bob 1s infinite;
}
@keyframes bob { 50% { transform: translateY(12px); } }

.intro {
  background: linear-gradient(rgba(0,0,0,.52), rgba(0,0,0,.52)), var(--bg) center/cover no-repeat;
  color: #fff;
}
.section-copy.center { width: 100%; text-align: center; padding: 0 var(--pad); }
.eyebrow {
  margin: 0 0 16px;
  font-weight: 700;
  color: rgba(255,255,255,.82);
}
.section-copy h2, .tab-copy h2, .sale-copy h2 {
  font-size: clamp(2.2rem, 4.6vw, 4.6rem);
  line-height: 1.22;
  margin: 0;
  font-weight: 700;
}
.pill-link {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  margin-top: 50px;
  padding: 20px 35px;
  border: 2px solid rgba(255,255,255,.86);
  border-radius: 999px;
  transition: 250ms;
}
.pill-link:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-5px); }

.service-tabs { background: #111; color: #fff; }
.tab-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)), var(--bg) center/cover no-repeat;
  opacity: 0;
  clip-path: circle(12% at 50% 5%);
  transition: 1000ms ease;
}
.tab-bg.is-active { opacity: 1; clip-path: circle(110% at 50% 50%); }
.tab-copy {
  position: absolute;
  left: max(var(--pad), calc((100vw - var(--container)) / 2 + var(--pad)));
  top: 50%;
  transform: translateY(-50%);
  width: min(760px, calc(100% - 640px));
  opacity: 0;
  z-index: 2;
  transition: 350ms;
}
.tab-copy.is-active { opacity: 1; }
.tab-copy p { font-size: 1.25rem; font-weight: 700; }
.tab-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 55px;
  margin-top: 70px;
  border: 1px solid #fff;
  border-radius: 999px;
}
.tab-links {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 550px;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 3;
  border-left: 1px solid rgba(255,255,255,.3);
}
.tab-links li {
  position: relative;
  height: 33.333%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px;
  padding-right: 132px;
  border-bottom: 1px solid rgba(255,255,255,.3);
  cursor: pointer;
  opacity: .5;
  transition: 250ms;
}
.tab-links li.is-active { opacity: 1; }
.tab-links img {
  position: absolute;
  right: 42px;
  bottom: 42px;
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.tab-links span { font-weight: 800; margin-bottom: 5px; }
.tab-links b { font-size: 2rem; font-weight: 600; }

.sale-slider {
  color: #fff;
  background: linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.35)), var(--bg) center/cover no-repeat;
}
.wide {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0 var(--pad);
}
.sale-slider .wide { display: flex; gap: 50px; align-items: center; max-width: none; }
.sale-copy { width: 520px; flex: 0 0 520px; }
.sale-copy p:not(.eyebrow) { font-size: 1.35rem; line-height: 1.8; opacity: .9; }
.sale-copy ul {
  max-width: 300px;
  padding: 28px 22px;
  border-block: 1px solid rgba(255,255,255,.5);
  line-height: 1.8;
}
.more { display: inline-block; margin-top: 20px; padding: 16px 25px; background: #fff; color: #111; border-radius: 999px; }
.card-row {
  width: clamp(650px, 52vw, 746px);
  flex: 0 0 clamp(650px, 52vw, 746px);
  display: grid;
  grid-template-columns: repeat(4, calc((100% - 56px) / 3));
  gap: 28px;
  overflow: hidden;
}
.feature-card {
  min-height: 64vh;
  border-radius: 12px;
  overflow: hidden;
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,.8), transparent 58%), var(--bg) center/cover no-repeat;
  transition: transform 400ms, box-shadow 400ms;
}
.feature-card:hover { transform: translateY(-12px); box-shadow: 0 12px 22px rgba(0,0,0,.28); }
.feature-card span { text-transform: uppercase; font-size: .9rem; opacity: .8; }
.feature-card b { font-size: 1.8rem; }

.gallery-strip { background: #fff; }
.gallery-strip:before {
  content: "";
  position: absolute;
  inset: 0 0 39%;
  background: #eee;
}
.section-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.section-head h2 { margin: 0; font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1; }
.section-head a { border: 1px solid #111; padding: 12px 18px; }
.gallery-cards { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.gallery-card img { width: 100%; aspect-ratio: 1.52; object-fit: cover; transition: 800ms; }
.gallery-card:hover img { transform: scale(1.06); }
.gallery-card b { display: block; margin-top: 28px; font-size: 1.25rem; }
.gallery-card span { display: block; border-top: 1px solid #ddd; margin-top: 14px; padding-top: 14px; color: #888; font-size: .9rem; }

.notice-list { background: #fff; }
.notice-items { border-top: 2px solid #333; }
.notice-items a {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 48px;
  padding: 20px 50px;
  border-bottom: 1px solid #ddd;
  transition: 250ms;
}
.notice-items a:hover { background: #f9f9f9; }
.thumb {
  width: 250px;
  aspect-ratio: 1.2;
  flex: 0 0 250px;
  background: var(--bg) center/cover no-repeat #eee;
  overflow: hidden;
}
.thumb.empty { background: #eee; }
.notice-items time { width: 160px; color: #aaa; font-size: 2.2rem; font-weight: 900; }
.notice-items b { display: block; font-size: 1.35rem; margin-bottom: 12px; }
.notice-items p { margin: 0; color: #888; line-height: 1.8; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.sub-hero {
  height: 550px;
  position: relative;
  color: #fff;
  background: linear-gradient(rgba(0,0,0,.42), rgba(0,0,0,.42)), url("./img/sub-visual-01.jpg") center/cover no-repeat;
  overflow: hidden;
}
.sub-hero.alt { background-image: linear-gradient(rgba(0,0,0,.42), rgba(0,0,0,.42)), url("./img/sub-visual-02.jpg"); }
.sub-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  animation: heroZoom 3s ease forwards;
}
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }
.sub-hero > div {
  position: absolute;
  left: 50%;
  bottom: 58px;
  width: min(100% - 40px, var(--container));
  transform: translateX(-50%);
  z-index: 1;
}
.sub-hero p { margin: 0 0 12px; opacity: .85; font-size: 1.15rem; }
.sub-hero h1 { margin: 0; font-size: clamp(3rem, 6vw, 5rem); line-height: 1; }
.sub-nav {
  position: sticky;
  top: var(--top);
  z-index: 10;
  display: flex;
  justify-content: center;
  background: #fff;
  border-bottom: 1px solid #ddd;
}
.sub-nav a {
  min-width: 180px;
  text-align: center;
  padding: 20px 24px;
  color: #777;
  border-inline: 1px solid #eee;
}
.sub-nav a.is-active { color: #fff; background: var(--navy); }
.page {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 95px var(--pad);
}
.page.narrow { max-width: 1180px; }
.page > h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 48px;
}
.lead { text-align: center; color: #777; font-size: 1.2rem; margin: -25px 0 58px; }
.about-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.about-grid article {
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}
.about-grid img { aspect-ratio: 1.1; object-fit: cover; width: 100%; }
.about-grid h3 { padding: 22px 22px 0; margin: 0; font-size: 1.25rem; }
.about-grid p { padding: 0 22px 24px; color: #777; line-height: 1.75; }

.difference h3, .reason h3, .specs h3 {
  text-align: center;
  font-size: 2.2rem;
  margin: 30px 0 42px;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}
.diff-grid img, .diff-grid div {
  min-height: 230px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.diff-grid img { width: 100%; height: 100%; object-fit: cover; }
.diff-grid div { padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.diff-grid b { font-size: 1.4rem; }
.diff-grid p { color: #777; line-height: 1.7; }
.reason-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.reason-grid article {
  text-align: center;
  border: 1px solid #eee;
  padding: 34px 24px;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}
.reason-grid img { height: 54px; margin: 0 auto 20px; }
.reason-grid span { display: block; color: var(--orange); font-weight: 900; }
.reason-grid b { display: block; font-size: 1.25rem; margin: 8px 0; }
.reason-grid p { color: #777; line-height: 1.7; }
.specs { margin-top: 80px; }
.spec-row { display: grid; grid-template-columns: 250px 1fr; border-top: 1px solid #ddd; padding: 30px 0; }
.spec-row b { font-size: 1.4rem; color: var(--navy); }
.spec-row li { margin: 8px 0; color: #555; }

.poster {
  min-height: 720px;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 60px;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,.68), transparent 55%), var(--bg) center/contain no-repeat #f4f4f4;
}
.poster b { font-size: 2.5rem; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 80px 40px;
  background: linear-gradient(rgba(255,255,255,.88), rgba(255,255,255,.88)), var(--bg) center/cover no-repeat;
}
.steps article {
  min-height: 150px;
  display: grid;
  place-items: center;
  text-align: center;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0,0,0,.08);
}
.steps span { color: var(--orange); font-weight: 900; }
.steps b { display: block; font-size: 1.25rem; }
.facility-images { display: grid; gap: 12px; }
.facility-images img { width: 100%; border: 1px solid #eee; }

.album-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.album-grid article { border-bottom: 1px solid #ddd; padding-bottom: 20px; }
.album-grid img { aspect-ratio: 1.45; object-fit: cover; width: 100%; }
.album-grid b { display: block; margin: 18px 0 8px; font-size: 1.25rem; }
.album-grid span { color: #777; font-size: .9rem; }
.simple-page {
  min-height: 360px;
  text-align: center;
  border: 1px solid #eee;
  margin-block: 90px;
  display: grid;
  place-items: center;
}
.simple-page p { color: #777; font-size: 1.2rem; }
.board input, .contact input, .contact textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding: 15px 16px;
  margin-bottom: 12px;
}
.board input { margin-bottom: 28px; }
.board a {
  display: block;
  padding: 22px 0;
  border-top: 1px solid #ddd;
}
.board a b { display: block; font-size: 1.2rem; }
.board a span { color: #888; font-size: .9rem; }
.contact textarea { min-height: 160px; resize: vertical; }
.contact label { display: flex; align-items: center; gap: 8px; color: #555; margin: 10px 0 22px; }
.contact label input { width: auto; margin: 0; }
.contact button {
  display: block;
  width: 210px;
  margin: 0 auto;
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  background: #111;
  color: #fff;
  font-weight: 700;
}
.map-box {
  height: 420px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e8eef5, #f7f7f7);
  border: 1px solid #ddd;
  color: #777;
  font-size: 1.5rem;
  margin-bottom: 28px;
}
.location-info {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px 24px;
  border-top: 2px solid #333;
  padding-top: 24px;
}
.location-info b { color: #111; }
.location-info span { color: #666; }

.quick {
  position: fixed;
  right: 24px;
  bottom: 110px;
  z-index: 30;
  display: grid;
  gap: 10px;
}
.quick button {
  width: 76px;
  height: 76px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.quick__top { background: var(--navy) !important; }
.consult-panel {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 90;
  width: min(720px, calc(100% - 36px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 34px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,.34);
  transform: translate(-50%, -44%) scale(.95);
  opacity: 0;
  visibility: hidden;
  transition: 250ms;
}
.consult-panel.is-open { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.consult-panel__close {
  position: absolute;
  top: 16px;
  right: 20px;
  border: 0;
  background: transparent;
  font-size: 2rem;
  cursor: pointer;
}
.consult-panel h2 { text-align: center; margin-top: 0; }
.mobile-quick { display: none; }

.footer {
  background: #f3f3f3;
  color: #666;
  padding: 60px var(--pad) 54px;
}
.footer__inner { width: min(100%, var(--container)); margin: 0 auto; }
.footer img { width: 220px; filter: grayscale(1) opacity(.86); margin-bottom: 35px; }
.footer ul {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 38px;
}
.footer b { margin-right: 12px; color: #111; font-weight: 500; }
.footer p { margin: 0; }

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  background: rgba(247,113,0,.45);
  z-index: 200;
  transition: transform 180ms;
}
.cursor.is-on { transform: translate(-50%, -50%) scale(1); }

@media (max-width: 1200px) {
  .gnb__item > a { padding: 0 13px; }
  .tab-links { width: 360px; }
  .tab-copy { width: calc(100% - 440px); }
  .sale-slider .wide { flex-direction: column; padding-block: 120px 80px; align-items: stretch; }
  .sale-copy { width: 100%; flex-basis: auto; text-align: center; }
  .sale-copy ul { margin-inline: auto; }
  .card-row { width: 100%; flex: none; grid-template-columns: repeat(2, 1fr); overflow: visible; }
  .feature-card { min-height: 420px; }
  .about-grid, .diff-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  html.home-snap { scroll-snap-type: none; }
  :root { --top: 72px; }
  .brand { width: 160px; height: 50px; }
  .gnb { display: none; }
  .hero__controls { bottom: 34px; }
  .hero__sns, .scroll-down { display: none; }
  .fp-section { min-height: auto; padding-block: 72px; }
  .hero { height: 560px; padding: 0; }
  .service-tabs { min-height: 620px; padding-block: 72px 125px; }
  .tab-copy { left: var(--pad); width: calc(100% - var(--pad) * 2); top: 43%; text-align: center; }
  .tab-copy a { margin-top: 34px; }
  .tab-links {
    top: auto;
    width: 100%;
    height: 180px;
    display: flex;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.4);
  }
  .tab-links li { height: 100%; flex: 1; padding: 18px; align-items: center; justify-content: center; text-align: center; }
  .tab-links img { position: static; width: 58px; height: 58px; margin-bottom: 12px; }
  .tab-links b { font-size: 1.15rem; }
  .sale-slider .wide { padding-block: 0; gap: 34px; }
  .section-head { margin-bottom: 34px; }
  .gallery-cards, .album-grid, .reason-grid { grid-template-columns: 1fr; }
  .notice-items a { padding: 22px 0; gap: 18px; flex-direction: column; align-items: stretch; }
  .notice-items time { width: auto; font-size: 1.2rem; }
  .thumb { width: 100%; flex-basis: auto; }
  .sub-hero { height: 380px; }
  .sub-nav { overflow-x: auto; justify-content: flex-start; }
  .sub-nav a { min-width: 140px; }
  .diff-grid, .card-row, .steps { grid-template-columns: 1fr; }
  .spec-row { grid-template-columns: 1fr; gap: 12px; }
  .quick { display: none; }
  .mobile-quick {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    box-shadow: 0 -1px 16px rgba(0,0,0,.12);
  }
  .mobile-quick a { display: grid; place-items: center; gap: 4px; padding: 9px; font-size: .85rem; }
  .mobile-quick img { height: 25px; }
  .footer { padding-bottom: 90px; }
}
@media (max-width: 560px) {
  .hero { height: 500px; }
  .hero__copy h1 { font-size: 2.2rem; margin-bottom: 14px; }
  .hero__copy p { font-size: 1.02rem; }
  .pill-link { margin-top: 34px; padding: 14px 20px; }
  .card-row { grid-template-columns: 1fr; }
  .feature-card { min-height: 260px; padding: 34px 28px; }
  .page { padding-block: 58px; }
  .about-grid { grid-template-columns: 1fr; }
  .poster { min-height: 520px; padding: 28px; }
  .location-info { grid-template-columns: 1fr; }
}
