/* ============================================================
   우주렌탈 — Design System
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --color-primary:  #1F286F;
  --color-accent:   #E6503C;
  --color-bg:       #FFFFFF;
  --color-bg-sub:   #F5F6FA;
  --color-text:     #1A1A2E;
  --color-text-sub: #6B7280;
  --color-border:   #E5E7EB;
  --shadow-card:    0 4px 20px rgba(31, 40, 111, 0.08);
  --shadow-card-hover: 0 12px 40px rgba(31, 40, 111, 0.16);
  --radius-card:    12px;
  --transition:     0.25s ease;
}

/* ── Base ───────────────────────────────────────────────────── */
html, body {
  /* `clip` (not `hidden`) contains horizontal overflow without creating a
     scroll container — which would otherwise break `position: sticky` nav. */
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
}

.container {
  max-width: 1280px;
}

/* ── Navigation ─────────────────────────────────────────────── */
.navbar-main {
  transition: background-color var(--transition), box-shadow var(--transition);
  padding: 0.9rem 0;
}

/* Transparent state (top of page) */
.navbar-main.navbar-transparent {
  background-color: transparent;
}
.navbar-main.navbar-transparent .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
}
.navbar-main.navbar-transparent .navbar-brand {
  color: #fff !important;
}
.navbar-main.navbar-transparent .navbar-toggler-icon {
  filter: invert(1);
}

/* Scrolled state */
.navbar-main.navbar-scrolled {
  background-color: #fff !important;
  box-shadow: 0 2px 20px rgba(31, 40, 111, 0.10);
}
.navbar-main.navbar-scrolled .nav-link {
  color: var(--color-text) !important;
}
.navbar-main.navbar-scrolled .navbar-brand {
  color: var(--color-primary) !important;
}

.navbar-main .navbar-brand {
  margin-left: 1.25rem;
}

/* Mobile: center logo, toggler on right */
@media (max-width: 991.98px) {
  .navbar-main {
    padding: 0.5rem 0 !important;
  }
  .navbar-main .container-fluid {
    justify-content: center;
    position: relative;
  }
  .navbar-main .navbar-brand {
    margin-left: 0 !important;
  }
  .navbar-main .navbar-toggler {
    position: absolute;
    right: 1rem;
  }
  .navbar-main .navbar-brand img {
    height: 2rem !important;
    max-height: 32px !important;
    width: auto !important;
  }
}

/* Nav links */
.navbar-main .nav-link {
  font-weight: 500;
  font-size: 1.35rem;
  padding: 0.4rem 0.5rem;
  transition: color var(--transition);
  position: relative;
}
@media (min-width: 992px) {
  #mainNavList { gap: 4.5rem; }
}
.navbar-main .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after {
  transform: scaleX(1);
}

/* CTA button in nav */
.btn-nav-cta {
  background-color: var(--color-accent);
  color: #fff !important;
  font-weight: 700;
  border-radius: 8px;
  padding: 0.45rem 1.2rem;
  font-size: 0.9rem;
  transition: background-color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-nav-cta:hover {
  background-color: #cf3a28;
  transform: translateY(-1px);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary-cta {
  background-color: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  padding: 0.75rem 2rem;
  transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary-cta:hover {
  background-color: #cf3a28;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 80, 60, 0.35);
}

.btn-secondary-cta {
  background-color: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: background-color var(--transition), transform var(--transition);
}
.btn-secondary-cta:hover {
  background-color: #17205a;
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-cta {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  font-weight: 600;
  padding: 0.7rem 1.8rem;
  transition: all var(--transition);
}
.btn-outline-cta:hover {
  background-color: var(--color-primary);
  color: #fff;
}

/* Legacy alias (used in existing templates) */
.btn-navy {
  background-color: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color var(--transition);
}
.btn-navy:hover {
  background-color: #17205a;
  color: #fff;
}

/* ── Cards ──────────────────────────────────────────────────── */
.card-woojoo {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-bg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card-woojoo:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.card-woojoo .card-img-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #eef1f8, #dde3f3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-woojoo .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card-woojoo:hover .card-img-wrap img {
  transform: scale(1.05);
}
.card-woojoo .placeholder-icon {
  font-size: 3.5rem;
  color: #a8b8d8;
}

/* ── Badges ─────────────────────────────────────────────────── */
.badge-primary {
  background-color: var(--color-primary);
  color: #fff;
}
.badge-accent {
  background-color: var(--color-accent);
  color: #fff;
}
.badge-category {
  background-color: var(--color-primary);
  color: #fff;
  font-size: 0.75rem;
}

/* ── Section Titles ─────────────────────────────────────────── */
.section-title {
  font-size: clamp(1.5rem, 3.16vw, 2.25rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.25;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-sub);
  margin-top: 0.5rem;
}
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

/* ── Spec Table ─────────────────────────────────────────────── */
.spec-table th {
  background-color: var(--color-bg-sub);
  color: var(--color-primary);
  font-weight: 600;
  width: 40%;
  vertical-align: middle;
}
.spec-table td {
  vertical-align: middle;
}

/* ── Spec Row (card) ─────────────────────────────────────────── */
.spec-row {
  font-size: 0.83rem;
  color: var(--color-text-sub);
  padding: 2px 0;
}
.spec-row strong {
  color: var(--color-primary);
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer-main {
  background-color: #111827;
  color: #9CA3AF;
  padding: 3rem 0 1.5rem;
}
.footer-main .footer-brand {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.footer-main .footer-info {
  font-size: 0.85rem;
  line-height: 2;
}
.footer-main a {
  color: #9CA3AF;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-main a:hover {
  color: #fff;
}
.footer-main .footer-divider {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 1.5rem 0 1rem;
}
.footer-main .footer-copy {
  font-size: 0.8rem;
  color: #4B5563;
}

/* ============================================================
   REDESIGN — Claude Design system (shared primitives)
   Navy structure · coral used 1–2 spots/page · hairline dividers
   ============================================================ */
:root {
  --navy:      #1F286F;
  --coral:     #E6503C;
  --tint:      #EEF0F8;   /* soft navy tint — section backgrounds */
  --charcoal:  #2B2F38;   /* body text (never pure black) */
  --muted:     #6B7080;   /* secondary text */
  --muted-2:   #9296A8;   /* tertiary text */
  --hairline:  #ECEDF3;   /* thin dividers / card borders */
  --hairline-2:#D5DAEC;   /* stronger border (pills, inputs) */
  --canvas:    #FFFFFF;
  --nav-h:     92px;      /* sticky-nav height — offset for sub-sticky bars */
}

body {
  color: var(--charcoal);
  background: var(--canvas);
}
a { text-decoration: none; color: inherit; }

/* ── Line breaking ──────────────────────────────────────────────
   Korean copy reads badly when a line ends on a single word, and a
   centred block looks lopsided when its last line is much shorter than
   the rest. `pretty` pulls a word down to avoid the orphan; `balance`
   evens out short centred blocks. Browsers without support wrap as
   before, so this is safe to apply broadly. Sentence-level breaks in
   leads and notices are hard <br>s in the templates. */
[class$="-hero"] p, .dc-lead { text-wrap: balance; }
.wj-land p, .ab-greet__body p, .ab-value__d, .ab-row__v,
.qf-side p, .qf-note, .site-footer, .eqp-chart__note { text-wrap: pretty; }

/* ── Shared type primitives ─────────────────────────────────── */
.eyebrow {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.dc-h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.25; font-weight: 800; color: var(--navy);
  letter-spacing: -0.02em; margin: 0; word-break: keep-all;
}
.dc-h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.65rem);
  font-weight: 800; color: var(--navy);
  letter-spacing: -0.01em; margin: 0; word-break: keep-all;
}
.dc-lead {
  font-size: clamp(0.98rem, 1.3vw, 1.2rem);
  line-height: 1.75; color: var(--charcoal); word-break: keep-all;
}
.dc-container { max-width: 1180px; margin: 0 auto; padding-inline: clamp(1.25rem, 3.7vw, 2.75rem); }

/* ── Pills / buttons ────────────────────────────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: 999px; font-weight: 700; font-size: 1.1rem;
  padding: 0.8rem 1.7rem; cursor: pointer;
  transition: background-color var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap; border: 1px solid transparent; line-height: 1;
}
.pill--solid   { background: var(--navy); color: #fff; }
.pill--solid:hover { background: #17205a; color: #fff; transform: translateY(-1px); }
.pill--coral   { background: var(--coral); color: #fff; }
.pill--coral:hover { background: #cf3a28; color: #fff; transform: translateY(-1px); }
.pill--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.pill--outline:hover { background: var(--navy); color: #fff; }
.pill--ghost   { background: #fff; color: var(--navy); border-color: var(--hairline-2); }
.pill--ghost:hover { border-color: var(--navy); }
.pill--on-dark { background: #fff; color: var(--navy); border-color: #fff; }
.pill--on-dark:hover { background: rgba(255,255,255,.88); color: var(--navy); }

/* ── Chips (meter-class tabs / filters) ─────────────────────── */
.chip {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; font-size: 1.1rem; font-weight: 600;
  padding: 0.5rem 1rem; cursor: pointer;
  background: #fff; color: var(--navy); border: 1px solid var(--hairline-2);
  transition: all var(--transition); white-space: nowrap;
}
.chip:hover { border-color: var(--navy); }
.chip.is-active { background: var(--navy); color: #fff; border-color: var(--navy); font-weight: 700; }

/* ============================================================
   Site navigation
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 50; }
.site-nav {
  position: sticky; top: 0; z-index: 40;
  background: #fff; border-bottom: 1px solid var(--hairline);
  transition: background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.site-nav__inner {
  /* Full width: logo hugs the left wall, phone/CTA hug the right wall,
     with a small breathing gap from the edges. */
  padding: 1.35rem clamp(1.5rem, 3vw, 3rem);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.site-nav__logo img { height: 38px; width: auto; display: block; }
.site-nav__logo .logo-white { display: none; }
.site-nav__menu { display: flex; align-items: center; gap: clamp(1.9rem, 3.2vw, 3.2rem); }
.site-nav__menu a {
  font-size: 1.3rem; font-weight: 500; color: var(--charcoal);
  transition: color var(--transition); white-space: nowrap;
}
.site-nav__menu a:hover { color: var(--navy); }
.site-nav__menu a.is-active { color: var(--navy); font-weight: 700; }
.site-nav__right { display: flex; align-items: center; gap: 1.15rem; }
.site-nav__cta {
  border: 1px solid var(--navy); color: var(--navy);
  border-radius: 999px; padding: 0.62rem 1.35rem; font-size: 1.1rem; font-weight: 600;
  white-space: nowrap; transition: all var(--transition);
}
.site-nav__cta:hover { background: var(--navy); color: #fff; }
.site-nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0; color: var(--navy); }
.site-nav__mtools { display: none; align-items: center; gap: 1.1rem; }

/* Overlay variant (home, over hero) */
.site-nav--overlay {
  position: absolute; top: 0; left: 0; right: 0;
  background: transparent; border-bottom-color: transparent;
}
.site-nav--overlay .site-nav__logo .logo-dark { display: none; }
.site-nav--overlay .site-nav__logo .logo-white { display: block; }
.site-nav--overlay .site-nav__menu a { color: rgba(255,255,255,.92); }
.site-nav--overlay .site-nav__menu a:hover,
.site-nav--overlay .site-nav__menu a.is-active { color: #fff; }
.site-nav--overlay .site-nav__cta { background: #fff; border-color: #fff; color: var(--navy); }
.site-nav--overlay .site-nav__toggle { color: #fff; }
/* Overlay turns solid once scrolled */
.site-nav--overlay.is-stuck {
  position: fixed; background: #fff; border-bottom-color: var(--hairline);
  box-shadow: 0 2px 20px rgba(31,40,111,.10); animation: navDrop .3s ease;
}
.site-nav--overlay.is-stuck .site-nav__logo .logo-dark { display: block; }
.site-nav--overlay.is-stuck .site-nav__logo .logo-white { display: none; }
.site-nav--overlay.is-stuck .site-nav__menu a { color: var(--charcoal); }
.site-nav--overlay.is-stuck .site-nav__menu a.is-active { color: var(--navy); }
.site-nav--overlay.is-stuck .site-nav__cta { background: transparent; border-color: var(--navy); color: var(--navy); }
.site-nav--overlay.is-stuck .site-nav__toggle { color: var(--navy); }
@keyframes navDrop { from { transform: translateY(-100%); } to { transform: translateY(0); } }

/* Overlay turns solid while the mobile menu is open (matches the panel) */
.site-nav--overlay.is-menu-open { background: #fff; border-bottom-color: var(--hairline); }
.site-nav--overlay.is-menu-open .site-nav__logo .logo-dark { display: block; }
.site-nav--overlay.is-menu-open .site-nav__logo .logo-white { display: none; }
.site-nav--overlay.is-menu-open .site-nav__toggle { color: var(--navy); }

/* Mobile slide-down menu */
.site-nav__mobile {
  overflow: hidden; max-height: 0;
  transition: max-height .32s ease; background: #fff;
  border-bottom: 0 solid var(--hairline);
}
.site-nav__mobile.is-open { max-height: 420px; border-bottom-width: 1px; }
.site-nav__mobile a {
  display: block; padding: 0.95rem clamp(1.25rem, 3.7vw, 2.75rem);
  font-size: 1.1rem; font-weight: 500; color: var(--charcoal);
  border-bottom: 1px solid #F0F1F6;
}
.site-nav__mobile a.is-active { color: var(--navy); font-weight: 700; background: var(--tint); }

/* Below this width the enlarged, spread-out horizontal nav no longer fits
   comfortably, so switch to the hamburger menu. */
@media (max-width: 1199.98px) {
  :root { --nav-h: 73px; }
  .site-nav__menu, .site-nav__cta { display: none; }
  .site-nav__mtools { display: inline-flex; }
  .site-nav__toggle { display: inline-flex; }
  .site-nav__inner { padding-block: 1.05rem; }
  .site-nav--overlay { position: absolute; }
  .site-nav--overlay.is-stuck { position: fixed; }
}

/* Phones: the top bar is logo + two icons and no text, so it is sized in px.
   In rem it grew with the reader's font setting while the fixed-width logo
   did not, and the hamburger was the item pushed off the edge. The dropdown
   below still uses rem — that part is text people actually read. */
@media (max-width: 767.98px) {
  :root { --nav-h: 61px; }
  .site-nav__inner { padding: 15px 18px; gap: 12px; }
  .site-nav__logo img { height: 28px; }
  .site-nav__mtools { gap: 14px; }
}
/* A folded Galaxy is 280px across — one step smaller keeps the icons on.
   Bar height stays 61px: the 30px icons, not the logo, set it. */
@media (max-width: 340px) {
  .site-nav__inner { padding: 15px 12px; }
  .site-nav__logo img { height: 26px; }
}

/* ============================================================
   Site footer (light, hairline)
   ============================================================ */
.site-footer {
  border-top: 1px solid #0A0A28;
  background: #0A0A28;
  padding: 2.9rem 0 2.7rem;
  font-size: 1.25rem; color: rgba(255,255,255,.68); line-height: 1.85;
}
.site-footer__inner {
  max-width: 1180px; margin: 0 auto;
  padding-inline: clamp(1.25rem, 3.7vw, 2.75rem);
  display: flex; flex-wrap: wrap; gap: 2rem 5rem;
}
.site-footer img { height: 30px; width: auto; display: block; margin-bottom: 0.85rem; }
.site-footer h4 { font-weight: 700; color: #fff; margin: 0 0 0.6rem; font-size: 1.4rem; }
.site-footer a { color: rgba(255,255,255,.68); }
.site-footer a:hover { color: #fff; }
.site-footer b { color: #fff; font-weight: 700; word-break: keep-all; }
/* Follows the contact column instead of being pushed to the far edge — the
   normal column gap keeps it grouped with the text rather than stranded.
   align-self drops it to the contact block's last line. Kept small and muted
   so it reads as a legal notice rather than navigation. */
.site-footer__legal {
  align-self: flex-end; margin-left: -2.5rem;
  font-size: 1.05rem; line-height: 1.6;
}
.site-footer__legal a { color: rgba(255,255,255,.5); }
.site-footer__legal a:hover { color: #fff; text-decoration: underline; }

/* ============================================================
   Floating call button + business-hours modal
   ============================================================ */
.call-fab {
  position: fixed; right: clamp(1rem, 2vw, 1.6rem); bottom: clamp(1rem, 2vw, 1.6rem);
  z-index: 60; display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--navy); color: #fff; border: none;
  border-radius: 999px; padding: 1rem 1.6rem; cursor: pointer;
  font-size: 1.1rem; font-weight: 700;
  animation: callPulse 2s ease-out infinite;
  transition: transform var(--transition), background-color var(--transition);
}
/* Tucked away once the footer is on screen: the number is right there, and
   the button would otherwise sit on top of the last lines. */
.call-fab { transition: transform .28s ease, opacity .28s ease; }
.call-fab.is-tucked { transform: translateY(160%); opacity: 0; pointer-events: none; }
.call-fab:hover {
  transform: translateY(-2px); background: #17205a; color: #fff;
  animation: none; box-shadow: 0 10px 30px rgba(31,40,111,.55);
}
/* Outward-pulsing ring to draw attention */
@keyframes callPulse {
  0%   { box-shadow: 0 8px 24px rgba(31,40,111,.4), 0 0 0 0 rgba(31,40,111,.5); }
  70%  { box-shadow: 0 8px 24px rgba(31,40,111,.4), 0 0 0 16px rgba(31,40,111,0); }
  100% { box-shadow: 0 8px 24px rgba(31,40,111,.4), 0 0 0 0 rgba(31,40,111,0); }
}
@media (prefers-reduced-motion: reduce) {
  .call-fab { animation: none; box-shadow: 0 8px 24px rgba(31,40,111,.4); }
}

.call-modal {
  position: fixed; inset: 0; z-index: 70; display: none;
  align-items: center; justify-content: center; padding: 1.25rem;
  background: rgba(17,22,48,.5);
}
.call-modal.is-open { display: flex; }
.call-modal__card {
  width: 100%; max-width: 420px; background: #fff; border-radius: 18px;
  padding: 1.75rem 1.5rem 1.6rem; box-shadow: 0 24px 60px rgba(17,22,48,.35);
}
.call-modal__icon {
  width: 54px; height: 54px; border-radius: 15px; margin: 0 auto 0.9rem;
  display: flex; align-items: center; justify-content: center; background: var(--tint);
}
.call-modal__icon--warn { background: #F4EFEC; }
.call-modal__title { text-align: center; font-size: 1.4rem; font-weight: 800; color: var(--navy); }
.call-modal__desc  { text-align: center; font-size: 1.1rem; color: var(--muted); margin-top: 0.5rem; line-height: 1.6; word-break: keep-all; }
.call-modal__phone { text-align: center; font-size: 1.8rem; font-weight: 800; color: var(--navy); letter-spacing: -0.01em; margin: 1rem 0 1.3rem; }
.call-modal__row   { display: flex; gap: 0.6rem; }
.call-modal__row .pill { flex: 1; justify-content: center; }
.call-modal__row .pill.flex2 { flex: 2; }
.call-modal__field {
  width: 100%; border: 1px solid var(--hairline-2); border-radius: 12px;
  padding: 0.85rem; font-size: 1.1rem; color: var(--charcoal);
  outline: none; font-family: inherit; margin-top: 0.6rem;
}
.call-modal__field:focus { border-color: var(--navy); }
.call-modal__field:first-of-type { margin-top: 0; }
.call-modal__close {
  display: block; width: 100%; text-align: center; margin-top: 0.7rem;
  padding: 0.5rem; font-size: 1.1rem; font-weight: 600; color: var(--muted-2);
  background: none; border: 0; cursor: pointer;
}
.call-modal__hours { text-align: center; font-size: 1.1rem; color: var(--muted-2); margin-bottom: 1.1rem; }
.call-modal__consent {
  display: flex; align-items: flex-start; gap: 0.6rem; cursor: pointer;
  margin-top: 0.9rem; font-size: 1.05rem; line-height: 1.55; color: var(--charcoal);
  text-align: left; word-break: keep-all;
}
.call-modal__consent input { flex: none; width: 18px; height: 18px; margin-top: 0.1rem; accent-color: var(--navy); cursor: pointer; }
.call-modal__consent b { color: var(--coral); font-weight: 700; }
.call-modal__consent a { color: var(--navy); font-weight: 600; text-decoration: underline; margin-left: 0.25rem; }
.call-modal__consent em { display: block; font-style: normal; font-size: 0.98rem; color: var(--muted-2); margin-top: 0.2rem; }
.is-hidden { display: none !important; }

/* ============================================================
   Mobile refinements (match Claude Design mobile mockups)
   ============================================================ */
@media (max-width: 767.98px) {
  /* Sections built with `padding: X 0` lose the container gutter on
     mobile — restore a consistent screen-edge gutter. */
  .dc-container { padding-inline: 1.25rem !important; }

  /* Compact single-column footer (no quick links, no group headings).
     Stacked, the two blocks ran together as six identical grey lines, so a
     rule and a step down in size separate the company details from the
     contact details. */
  .site-footer { padding: 2.2rem 0 2.4rem; font-size: 1.05rem; line-height: 1.75; }
  .site-footer__inner { flex-direction: column; gap: 0; }
  .site-footer h4 { display: none; }
  .site-footer img { height: 26px; margin-bottom: 1.15rem; }
  .site-footer__inner > div + div {
    margin-top: 1.15rem; padding-top: 1.15rem; border-top: 1px solid var(--hairline);
  }
  /* The policy link is a footnote, not a third column — it keeps the corner
     placement but drops the divider the stacked columns get. */
  .site-footer__legal {
    margin-top: 1.15rem !important; margin-left: 0; padding-top: 0 !important;
    border-top: 0 !important; font-size: 0.95rem;
  }
  /* The address is the one line long enough to wrap, and where it wrapped
     depended on the handset — often stranding "130-5" on its own. Breaking it
     at the district instead gives the same two lines on every phone. */
  .site-footer .fw-break { display: block; height: 0; }
}

/* ============================================================
   본문 복사 방지
   ------------------------------------------------------------
   카탈로그 문구와 스펙이 그대로 긁혀 가는 걸 막는다. 스크립트를
   끄거나 소스를 열면 우회되므로 자물쇠가 아니라 문턱이다.

   막지 않는 곳이 있다. 연락처는 고객이 전화번호와 주소를 옮겨
   적어야 문의가 오고, 입력란은 선택이 막히면 본인이 쓴 글자도
   고치지 못한다. 막아서 손해가 나는 자리다.
   ============================================================ */
body {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input, textarea, select, [contenteditable="true"],
.site-footer, .call-modal, .ab-company__info, .qf-side,
.opt-cta__tel, [data-copyable] {
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* 사진을 끌어다 놓는 방식으로 저장하는 것도 함께 막는다. */
img { -webkit-user-drag: none; user-drag: none; }
