:root {
  --navy: #0d1b3d;
  --navy-mid: #16305f;
  --navy-soft: #1e3a6e;
  --accent: #e31c23;
  --blue: #1f4db8;
  --text: #111827;
  --text-muted: #6b7280;
  --line: #e5e7eb;
  --bg: #ffffff;
  --bg-muted: #f5f6f8;
  --footer-bg: #f0f1f3;
  --highlight: #fde8ea;
  --radius: 12px;
  --header-h: 72px;
  --container: 1120px;
  --shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.page-sub .page {
  padding-top: var(--header-h);
}

.page-sub .section {
  min-height: calc(100vh - var(--header-h) - 220px);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.container--wide {
  width: min(100% - 40px, 1200px);
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
}

.header__inner {
  height: 100%;
  width: min(100% - 40px, 1280px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo__img {
  width: auto;
  height: 32px;
  display: block;
}

.logo__img--footer {
  height: 28px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-left: auto;
  margin-right: 8px;
}

.nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: #374151;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--navy);
  font-weight: 700;
}

.btn-inquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-inquiry:hover {
  background: #000;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  margin-left: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #111;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero__slider,
.hero__slide,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__slide {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.4s ease, transform 6s ease;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__overlay {
  background:
    linear-gradient(105deg, rgba(8, 18, 42, 0.88) 0%, rgba(13, 27, 61, 0.62) 42%, rgba(13, 27, 61, 0.18) 72%, rgba(13, 27, 61, 0.45) 100%),
    linear-gradient(180deg, rgba(8, 18, 42, 0.25) 0%, rgba(8, 18, 42, 0.55) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
  padding-top: var(--header-h);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.92);
}

.hero__mark {
  width: 10px;
  height: 10px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero__title {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.hero__title em {
  font-style: normal;
  color: var(--accent);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero__dots {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hero__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  font-size: 0;
  line-height: 0;
  flex-shrink: 0;
  appearance: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero__dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

/* Sections */
.section {
  padding: 96px 0;
}

.section--muted {
  background: var(--bg-muted);
}

.section__head {
  text-align: center;
  margin-bottom: 48px;
}

.section__title {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.section__title::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin: 16px auto 0;
  background: #c5c9d1;
}

.section__desc {
  margin: 18px auto 0;
  max-width: 560px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Spec grid */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 28px;
}

.spec-card {
  background: #fff;
}

.spec-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  overflow: hidden;
  padding: 0;
}

.spec-card__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: var(--radius);
}

.spec-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 4px 0;
}

.spec-card__name {
  margin: 0;
  font-size: 1rem;
  color: #222;
}

.spec-card__name strong {
  color: var(--blue);
  font-weight: 800;
  margin-right: 6px;
}

.spec-plus {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.spec-plus:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.spec-plus--sm {
  width: 28px;
  height: 28px;
  font-size: 1rem;
}

.spec-plus.is-disabled {
  opacity: 0.25;
  pointer-events: none;
}

/* Equipment table */
.equip-table-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.equip-table {
  width: 100%;
  border-collapse: collapse;
}

.equip-table th,
.equip-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.equip-table th {
  background: #fafafa;
  font-weight: 700;
  color: #374151;
}

.equip-table td.ton {
  color: var(--blue);
  font-weight: 800;
}

.equip-table tbody tr:hover {
  background: var(--highlight);
}

.equip-table .col-qty {
  text-align: center;
}

.equip-table__pdf {
  width: 72px;
  text-align: center !important;
}

.equip-table__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  color: #9ca3af;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

/* Video */
.video {
  position: relative;
  width: min(100%, 920px);
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  box-shadow: var(--shadow);
}

.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video--bagaji {
  width: 100%;
  margin: 0;
}

.bagaji-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.bagaji-layout__text {
  display: grid;
  gap: 28px;
}

.bagaji-block h2 {
  margin: 0 0 14px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1.45;
}

.bagaji-block p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: #374151;
}

.bagaji-block p + p {
  margin-top: 12px;
}

.bagaji-block strong {
  color: var(--navy);
  font-weight: 700;
}

@media (max-width: 960px) {
  .bagaji-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Location */
.location {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  margin-bottom: 28px;
}

.location__name {
  margin: 0 0 22px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.location__list {
  display: grid;
  gap: 18px;
}

.location__list li {
  display: flex;
  gap: 12px;
  align-items: center;
}

.location__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(22, 48, 95, 0.08);
  color: var(--navy-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location__list strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 2px;
}

.location__list p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.tel-link {
  color: var(--navy-soft);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.tel-link:hover {
  border-bottom-color: currentColor;
}

.location__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 140px;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--navy-mid);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.map-btn:hover {
  background: var(--navy);
}

.location__map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Works gallery */
body.modal-open {
  overflow: hidden;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.works-grid__item {
  position: relative;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #e5e7eb;
  cursor: pointer;
}

.works-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.works-grid__item:hover img {
  transform: scale(1.04);
  filter: brightness(0.92);
}

.works-empty {
  text-align: center;
  color: var(--text-muted);
  margin: 48px 0 0;
}

.works-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}

.works-modal[hidden] {
  display: none;
}

.works-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
}

.works-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 1080px);
  height: min(86vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.works-modal__stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
}

.works-modal__stage img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
  transform-origin: center center;
}

.works-modal__caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  max-width: min(72%, 420px);
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  backdrop-filter: blur(4px);
}

.works-modal__caption strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.works-modal__caption p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  white-space: pre-wrap;
}

.works-modal__toolbar {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
  display: flex;
  gap: 6px;
}

.works-modal__tool,
.works-modal__nav {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.works-modal__tool:hover,
.works-modal__nav:hover {
  background: rgba(255, 255, 255, 0.24);
}

.works-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  font-size: 2rem;
}

.works-modal__nav--prev {
  left: -4px;
}

.works-modal__nav--next {
  right: -4px;
}

.works-modal__counter {
  position: absolute;
  left: 16px;
  bottom: -28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

/* Admin */
.page-admin .header__inner {
  justify-content: space-between;
}

.admin-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.admin-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.admin-card__title {
  margin: 0 0 18px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.admin-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.admin-card__head .admin-card__title {
  margin: 0;
}

.admin-field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #374151;
}

.admin-field input,
.admin-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  font-weight: 500;
  color: var(--text);
  background: #fff;
}

.admin-field textarea {
  resize: vertical;
  min-height: 110px;
}

.admin-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.admin-link {
  color: var(--navy-soft);
  font-weight: 600;
  font-size: 0.92rem;
}

.admin-hint {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.admin-error {
  margin: 12px 0 0;
  color: var(--accent);
  font-size: 0.9rem;
}

.admin-reset {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.admin-list {
  display: grid;
  gap: 12px;
}

.admin-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.admin-item__thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  background: #eee;
}

.admin-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-item__body strong {
  display: block;
  margin-bottom: 4px;
}

.admin-item__body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.admin-item__delete {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 8px 10px;
}

.admin-empty {
  margin: 0;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .works-modal__nav--prev {
    left: 4px;
  }

  .works-modal__nav--next {
    right: 4px;
  }
}

@media (max-width: 720px) {
  .works-modal__dialog {
    height: min(78vh, 640px);
  }

  .works-modal__caption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
  }

  .works-modal__counter {
    bottom: -24px;
  }

  .admin-item {
    grid-template-columns: 64px 1fr;
  }

  .admin-item__delete {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .works-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* About / Coming soon */
.coming-soon {
  max-width: 560px;
  margin: 40px auto 0;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 64px 28px;
  box-shadow: var(--shadow);
}

.coming-soon__label {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.coming-soon__desc {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.about {
  max-width: 820px;
  margin-inline: auto;
}

.about__box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 36px 40px;
  box-shadow: var(--shadow);
}

.about__box > p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.85;
  color: #374151;
}

.about__box > p + p {
  margin-top: 14px;
}

.about__intro {
  font-size: 1.12rem !important;
  font-weight: 700;
  color: var(--navy) !important;
  letter-spacing: -0.02em;
}

.about__points {
  list-style: none;
  margin: 28px 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.about__points li {
  display: grid;
  gap: 4px;
}

.about__points strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy-soft);
  letter-spacing: -0.02em;
}

.about__points span {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #4b5563;
}

.about__closing {
  margin-top: 8px !important;
  font-weight: 600;
}

@media (max-width: 720px) {
  .about__box {
    padding: 24px 20px;
  }
}

/* Footer */
.footer {
  background: var(--footer-bg);
  border-top: 1px solid #e2e4e8;
  padding: 56px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 0.6fr;
  gap: 40px;
  align-items: start;
}

.footer__brand p {
  margin: 14px 0 0;
  color: #6b7280;
  font-size: 0.9rem;
  max-width: 280px;
  line-height: 1.7;
}

.footer__copy {
  margin-top: 28px !important;
  font-size: 0.8rem !important;
  color: #9ca3af !important;
}

.footer__info {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  color: #374151;
}

.footer__info p {
  margin: 0;
}

.footer__info a:hover {
  color: var(--navy);
}

.footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.footer__links a:hover {
  color: var(--navy);
}

/* Responsive */
@media (max-width: 960px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    margin: 0;
    padding: 16px 20px 24px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link {
    padding: 14px 8px;
    border-radius: 8px;
  }

  .nav__link:hover {
    background: var(--bg-muted);
  }

  .btn-inquiry {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  body.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__links {
    align-items: flex-start;
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 20px;
  }

  .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 64px;
  }

  .section {
    padding: 72px 0;
  }

  .spec-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .location {
    grid-template-columns: 1fr;
  }

  .location__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .map-btn {
    flex: 1 1 120px;
  }

  .location__map {
    aspect-ratio: 4 / 3;
  }

  .equip-table th,
  .equip-table td {
    padding: 12px 10px;
    font-size: 0.85rem;
  }

  .equip-table__meta {
    flex-direction: column;
    gap: 6px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero__content {
    padding-bottom: 48px;
  }
}


/* Kakao floating button */
.kakao-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 150;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  background: #fee500;
  color: #191919;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kakao-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.kakao-float__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .kakao-float {
    right: 14px;
    bottom: 14px;
    padding: 0 14px 0 10px;
    min-height: 48px;
    font-size: 0.86rem;
  }

  .kakao-float__icon {
    width: 30px;
    height: 30px;
  }
}
