/* Fonts: Pretendard only — all decorative fonts removed */


:root {
  --font-base: "Pretendard", "Noto Sans KR", -apple-system, sans-serif;
  --font-serif: var(--font-base);
  --font-retro: var(--font-base);
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --surface-strong: #FAFAFA;
  --line: #EBEBEB;
  --text: #111111;
  --muted: #666666;
  --muted-soft: #999999;
  --primary: #111111;
  --primary-deep: #000000;
  --secondary: #111111;
  --secondary-deep: #000000;
  --film-red: #111111;
  --radius: 4px;
  --section-gap: 80px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 400;
  background: #FFFFFF;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0;
  line-height: 1.7;
  word-break: keep-all;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.screen-reader {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
}

.header-utility,
.header-main,
.gnb,
.site-footer {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.header-utility {
  margin-top: 0;
  border-radius: 0;
  border-bottom: 0;
  background: transparent;
}

.header-utility__inner,
.header-main__inner,
.gnb__inner,
.shop-section__inner,
.hero-slide__inner,
.site-footer__top,
.site-footer__bottom {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.header-utility__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  padding: 8px 0;
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}

.header-utility__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.header-utility__menu a + a::before {
  content: "|";
  margin-right: 14px;
  color: rgba(111, 98, 88, 0.42);
}

.header-main {
  border-radius: 0;
  border-bottom: 0;
  background: transparent;
}

.header-main__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 16px;
}

.header-main__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-main__logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  flex-shrink: 0;
}

.header-main__left {
  display: flex;
  align-items: center;
}

.header-main__logo-text-only {
  font-family: var(--font-base);
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: 0.25em;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  text-transform: uppercase;
}

.header-main__center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header-main__search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 99px;
  color: #666;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.header-main__search-bar:hover {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.15);
}

.hero-slide__button {
  padding: 11px 18px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 500;
  color: #fff;
  background: var(--text);
  cursor: pointer;
}

.gnb {
  border-radius: 0;
  border-top: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
  background: #ffffff;
}

.gnb__inner {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 14px 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.gnb__inner::-webkit-scrollbar {
  display: none;
}

.gnb__link {
  position: relative;
  padding: 6px 0;
  font-weight: 700;
  color: var(--muted);
}

.gnb__link.is-active,
.gnb__link:hover {
  color: var(--primary-deep);
}

.gnb__link.is-active::after,
.gnb__link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--primary);
}

.site-main {
  display: grid;
  gap: 0;
  margin-top: 0;
}

.hero-carousel {
  position: relative;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 0 0;
  border: 0;
  border-bottom: none;
  background: transparent;
  margin-bottom: 20px;
}

.hero-carousel__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 520px;
  max-height: calc(100vh - 200px);
  border-radius: 12px;
  background: #1a1918;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.02) 30%,
    rgba(0, 0, 0, 0.35) 70%,
    rgba(0, 0, 0, 0.70) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-slide:nth-child(1) {
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.18) 0%, rgba(18, 18, 18, 0.02) 48%, rgba(18, 18, 18, 0.12) 100%),
    url("./assets/hero-bundle-v3.webp") center 30% / cover no-repeat;
}

.hero-slide:nth-child(2) {
  background:
    linear-gradient(90deg, rgba(28, 25, 18, 0.12) 0%, rgba(28, 25, 18, 0.03) 46%, rgba(28, 25, 18, 0.1) 100%),
    url("./assets/hero-detox.png") center 30% / cover no-repeat;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide__inner {
  display: none;
}

.hero-slide--image .hero-slide__inner,
.hero-slide--image .hero-slide__content,
.hero-slide--image .hero-slide__content--compact {
  display: none;
}

/* ?덉뼱濡??ㅻ쾭?덉씠 ?띿뒪??*/
.hero-slide__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 24px 100px;
  color: #fff;
  text-align: left;
}

.hero-slide__eyebrow {
  display: inline-block;
  background: none;
  border: none;
  border-radius: 0;
  min-height: auto;
  padding: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
  font-family: var(--font-base);
}

.hero-slide__title {
  font-family: var(--font-base);
  font-size: clamp(1.8rem, 7vw, 3rem);
  font-weight: 400;
  line-height: 1.35;
  margin: 0 0 20px 0;
  letter-spacing: -0.01em;
  color: #fff;
}

.hero-slide__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
  font-weight: 300;
  max-width: 440px;
  margin: 0;
  color: rgba(255,255,255,0.85);
}

.hero-slide__content {
  display: none;
}

.hero-slide__content--compact {
  display: none;
}

.hero-slide h1 {
  display: none;
}

.hero-slide p {
  margin: 0;
  line-height: 1.7;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
}

.hero-slide__button {
  display: none;
}

.hero-carousel__controls {
  position: absolute;
  bottom: 40px;
  right: 24px;
  z-index: 3;
  display: flex;
  gap: 6px;
  margin: 0;
}

.hero-carousel__dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-carousel__dot.is-active {
  width: 24px;
  border-radius: 4px;
  background: #fff;
}

.quick-rental-bar {
  position: relative;
  z-index: 2;
  padding: 24px 0 20px;
  background: #FFFFFF;
  border-bottom: 1px solid var(--line);
}

.quick-rental {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: center;
}

.quick-rental__intro {
  display: grid;
  gap: 10px;
}

.quick-rental__eyebrow,
.floating-quick-reserve__eyebrow {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-base);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.quick-rental__intro h2 {
  margin: 0;
  font-family: var(--font-base);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.quick-rental__intro p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.quick-rental__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.quick-rental__card {
  display: grid;
  gap: 10px;
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #FFFFFF;
}

.quick-rental__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 24px;
  padding: 3px 10px;
  border-radius: var(--radius);
  background: var(--surface-strong);
  color: var(--muted);
  font-family: var(--font-base);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.quick-rental__card strong {
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.quick-rental__card p {
  margin: 0;
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.quick-rental__button,
.product-card__cta,
.floating-quick-reserve__button,
.reserve-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: var(--radius);
  background: var(--text);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
}

.quick-rental__button:hover,
.product-card__cta:hover,
.floating-quick-reserve__button:hover,
.reserve-form__submit:hover {
  opacity: 0.8;
}

.floating-quick-reserve {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.floating-quick-reserve__text {
  display: grid;
  gap: 6px;
}

.floating-quick-reserve__text strong {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.reserve-modal[hidden] {
  display: none;
}

.reserve-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.reserve-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 18, 16, 0.56);
  backdrop-filter: blur(3px);
}

.reserve-modal__dialog {
  position: relative;
  width: min(760px, calc(100% - 24px));
  max-height: calc(100vh - 24px);
  margin: min(6vh, 48px) auto;
  padding: 28px 28px 24px;
  border: 1px solid rgba(201, 119, 24, 0.18);
  border-radius: 10px;
  background: rgba(255, 252, 246, 0.98);
  box-shadow: 0 30px 60px rgba(34, 26, 16, 0.18);
  overflow-y: auto;
}

.reserve-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(34, 34, 34, 0.06);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.reserve-modal__header {
  margin-bottom: 22px;
  padding-right: 36px;
}

.reserve-modal__eyebrow {
  margin: 0 0 10px;
  color: var(--primary-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.reserve-modal__header h2 {
  margin: 0;
  font-family: var(--font-base);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.reserve-modal__header p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.reserve-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.reserve-form__field {
  display: grid;
  gap: 8px;
}

.reserve-form__field--full,
.reserve-form__actions {
  grid-column: 1 / -1;
}

.reserve-form__field span {
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 700;
}

.reserve-form__field input,
.reserve-form__field textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #e8dbc8;
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.6;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.reserve-form__field input:focus,
.reserve-form__field textarea:focus {
  border-color: rgba(201, 119, 24, 0.54);
  box-shadow: 0 0 0 4px rgba(239, 157, 50, 0.12);
}

.reserve-form__field textarea {
  min-height: 132px;
  resize: vertical;
}

.reserve-form__actions {
  display: grid;
  gap: 10px;
  padding-top: 4px;
}

.reserve-form__submit {
  min-height: 50px;
  border: 0;
  cursor: pointer;
}

.reserve-form__hint {
  margin: 0;
  color: var(--muted-soft);
  font-size: 0.87rem;
  line-height: 1.6;
}

.reserve-form__status {
  margin: 0;
  min-height: 24px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
}

.reserve-form__status[data-tone="loading"] {
  color: var(--secondary-deep);
}

.reserve-form__status[data-tone="success"] {
  color: #23705d;
}

.reserve-form__status[data-tone="error"] {
  color: #c04f5a;
}

.feature-mosaic {
  padding: var(--section-gap) 0 60px;
  background: #FFFFFF;
}

.feature-mosaic__inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.feature-mosaic__grid {
  display: grid;
  grid-template-columns: 1fr 1.9fr 1fr;
  grid-template-areas:
    "left-top center right-top"
    "left-bottom center right-bottom";
  gap: 12px;
}

.feature-mosaic__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.feature-mosaic__card--left-top {
  grid-area: left-top;
}

.feature-mosaic__card--left-bottom {
  grid-area: left-bottom;
}

.feature-mosaic__card--center {
  grid-area: center;
  min-height: 652px;
}

.feature-mosaic__card--right-top {
  grid-area: right-top;
}

.feature-mosaic__card--right-bottom {
  grid-area: right-bottom;
}

.feature-mosaic__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.45s ease;
}

.feature-mosaic__card:hover .feature-mosaic__image {
  transform: scale(1.04);
}

.feature-mosaic__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 26px 26px 22px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.22) 0%, rgba(18, 18, 18, 0.08) 24%, rgba(18, 18, 18, 0) 52%);
  color: #ffffff;
}

.feature-mosaic__overlay--large {
  padding: 34px 34px 28px;
}

.feature-mosaic__eyebrow {
  display: inline-block;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.22);
}

.feature-mosaic__overlay h2 {
  margin: 16px 0 0;
  font-size: clamp(1.55rem, 2.15vw, 2.15rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.24);
}

.feature-mosaic__overlay--large h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.feature-mosaic__overlay p {
  margin: 10px 0 0;
  max-width: 92%;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
  font-size: 0.95rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.curator-cameras-section {
  background: #FFFFFF;
}

.curator-cameras__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.camera-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #FFFFFF;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.camera-card:hover {
  transform: translateY(-2px);
  border-color: #ddd;
}

.camera-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #ede6d9;
}

.camera-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.5s ease;
}

.camera-card:hover .camera-card__media img {
  transform: scale(1.04);
}

.camera-card__body {
  display: grid;
  gap: 12px;
  padding: 22px 22px 24px;
}

.camera-card__body--overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  gap: 8px;
  padding: 56px 18px 18px;
  background: linear-gradient(180deg, rgba(14, 14, 14, 0) 0%, rgba(14, 14, 14, 0.52) 38%, rgba(14, 14, 14, 0.84) 100%);
  color: #ffffff;
}

.camera-card__index {
  display: inline-flex;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted-soft);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.camera-card h3 {
  margin: 0;
  font-family: var(--font-base);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.camera-card__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.camera-card--monochrome {
  background: #FFFFFF;
}

.camera-card--pop {
  background: #FFFFFF;
}

.camera-card--earth {
  background: #FFFFFF;
}

.camera-card--night {
  background: #FFFFFF;
}

.shop-section {
  padding: var(--section-gap) 0;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

.section-highlight {
  background: #FFFFFF;
}

.brand-story-section {
  background: #FFFFFF;
}

.brand-story-image-frame {
  overflow: hidden;
  border-radius: var(--radius);
  border: none;
  background: var(--surface-strong);
  box-shadow: none;
}

.brand-story-image-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.section-heading--stacked {
  align-items: start;
}

.brand-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.brand-story-card {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #FFFFFF;
}

.brand-story-card--accent {
  background: #FFFFFF;
  border-color: var(--line);
}

.brand-story-card__eyebrow,
.community-proof__label,
.service-assurance__badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: var(--surface-strong);
}

.brand-story-card h3,
.community-proof__feature h3,
.service-assurance__intro h2,
.service-assurance__safety h3 {
  margin: 16px 0 10px;
  font-family: var(--font-base);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.brand-story-card h3 {
  font-size: 1.8rem;
}

.brand-story-card p,
.community-proof__feature p,
.community-proof__card-body p,
.service-assurance__intro p,
.service-assurance__safety p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.community-proof-section {
  background: #ffffff;
}

.community-proof {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: start;
}

.community-proof__feature {
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #FFFFFF;
}

.community-proof__feature h3 {
  font-size: clamp(1.9rem, 2.5vw, 2.55rem);
}

.community-proof__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.community-proof__card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #FFFFFF;
}

.community-proof__card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.community-proof__card-body {
  padding: 18px 16px 20px;
}

.community-proof__card-body strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.promo-copy-section {
  background: #FFFFFF;
}

.promo-copy {
  display: grid;
  gap: 36px;
}

.promo-copy__hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.promo-copy__text {
  display: grid;
  gap: 14px;
}

.promo-copy__kicker {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  color: var(--film-red);
  font-weight: 700;
}

.promo-copy__lead {
  margin: 0;
  font-family: var(--font-base);
  font-size: clamp(2.15rem, 3.6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text);
}

.promo-copy__lead-highlight {
  display: inline-block;
  padding: 0 6px 2px;
  margin-right: 4px;
  color: var(--text);
  background: none;
  border-bottom: 2px solid var(--text);
  border-radius: 0;
}

.promo-copy__sublead {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
  max-width: 840px;
}

.promo-copy__aside {
  position: relative;
  min-height: 400px;
}

.promo-copy__photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: none;
  border: none;
  background: var(--surface-strong);
}

.promo-copy__photo img,
.promo-copy__snapshot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-copy__photo--main {
  right: 12px;
  top: 6px;
  width: 278px;
  height: 332px;
  transform: rotate(-2deg);
  z-index: 1;
}

.promo-copy__photo--stack-a {
  left: 20px;
  top: 38px;
  width: 150px;
  height: 200px;
  transform: rotate(6deg);
  z-index: 3;
}

.promo-copy__photo--stack-b {
  left: 118px;
  bottom: 2px;
  width: 140px;
  height: 190px;
  transform: rotate(-8deg);
  z-index: 4;
}

.promo-copy__quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.promo-copy__quote-card {
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #FFFFFF;
  position: relative;
}

.promo-copy__quote-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
}

.promo-copy__quote-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.8;
}


.service-assurance-section {
  background: #FFFFFF;
}

.service-assurance {
  display: grid;
  gap: 18px;
}

.service-assurance__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-assurance__intro,
.service-assurance__safety {
  padding: 28px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #FFFFFF;
}

.service-assurance__visual {
  overflow: hidden;
  min-height: 540px;
  border-radius: var(--radius);
  border: none;
  background: var(--surface-strong);
}

.service-assurance__visual--wide {
  min-height: 620px;
}

.service-assurance__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-assurance__intro h2 {
  font-size: clamp(1.95rem, 3vw, 3rem);
}

.service-assurance__safety h3 {
  font-size: 1.8rem;
}

.service-assurance__list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.8;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 22px;
}

.section-heading__eyebrow {
  margin-bottom: 10px;
  color: var(--muted);
  background: var(--surface-strong);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 2.5vw, 2.45rem);
  line-height: 1.12;
}

.section-heading__text {
  max-width: 580px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.section-heading__link {
  font-weight: 700;
  color: var(--secondary-deep);
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.category-tabs a {
  padding: 10px 16px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(76, 138, 132, 0.14);
  color: var(--secondary-deep);
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-grid--featured {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #FFFFFF;
  border: 1px solid var(--line);
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-2px);
}

.product-card__thumb {
  position: relative;
  height: 240px;
  background: #f5f5f5;
  border-bottom: 1px solid #eeeeee;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.product-card__thumb--bundle {
  background: #f5f5f5;
}

.product-card__thumb--camcorder {
  background: #f5f5f5;
}

.product-card__thumb--edit {
  background: #f5f5f5;
}

.product-card__thumb--film {
  background: #f5f5f5;
}

.product-card__thumb--detox {
  background: #f5f5f5;
}

.product-card__thumb--adapter {
  background: #f5f5f5;
}

.product-card__thumb--rest {
  background: #f5f5f5;
}

.product-card__thumb--battery {
  background: #f5f5f5;
}

.product-card__thumb--best-1 {
  background: url("./assets/best-1.png") center/cover no-repeat;
}

.product-card__thumb--best-2 {
  background: url("./assets/best-2.png") center/cover no-repeat;
}

.product-card__thumb--best-3 {
  background: url("./assets/best-3.png") center/cover no-repeat;
}

.product-card__icon {
  position: absolute;
  top: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
  cursor: pointer;
}

.product-card__icon--wish {
  right: 58px;
}

.product-card__icon--cart {
  right: 14px;
}

.product-card__body {
  padding: 18px;
}

.product-card__badge {
  color: var(--muted);
  background: var(--surface-strong);
  border-radius: var(--radius);
}

.product-card__title {
  margin: 14px 0 10px;
  font-family: var(--font-base);
  font-size: 1.05rem;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.product-card__summary {
  min-height: 66px;
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 14px;
}

.product-card__price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 16px 0 0;
}

.product-card__price-origin {
  color: var(--muted-soft);
  text-decoration: line-through;
  font-size: 13px;
}

.product-card__price-sale {
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 600;
}

.product-card__actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.product-card__cta {
  flex: 1;
}

.product-card__cta--ghost {
  background: #FFFFFF;
  border: 1px solid var(--line);
  color: var(--text);
}

.product-card__cta--ghost:hover {
  background: #fcfaf6;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #FFFFFF;
  border: 1px solid var(--line);
}

.review-card__photo {
  height: 220px;
}

.review-card__photo--bundle {
  background: linear-gradient(135deg, #d57d55 0%, #f0b55f 100%);
}

.review-card__photo--camcorder {
  background: linear-gradient(135deg, #608985 0%, #bddcd8 100%);
}

.review-card__photo--detox {
  background: linear-gradient(135deg, #97b08c 0%, #e4ecdf 100%);
}

.review-card__photo--travel {
  background: linear-gradient(135deg, #c59b76 0%, #f1e0c8 100%);
}

.review-card__photo--story-1 {
  background: url("./assets/story-1.webp") center/cover no-repeat;
}

.review-card__photo--story-2 {
  background: url("./assets/story-2.webp") center/cover no-repeat;
}

.review-card__photo--story-4 {
  background: url("./assets/story-4.webp") center/cover no-repeat;
}

.review-card__photo--story-5 {
  background: url("./assets/story-5.png") center/cover no-repeat;
}

.review-card__photo--story-6 {
  background: url("./assets/review-story-4.webp") center/cover no-repeat;
}

.review-card__body {
  padding: 18px;
}

.review-card__rating {
  color: var(--primary-deep);
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 700;
}

.review-card__author {
  display: block;
  margin-top: 10px;
  font-family: var(--font-base);
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 500;
}

.review-card__summary {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  margin-top: 0;
  border-radius: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding: 40px 0;
  background: #FAFAFA;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 4vw;
  gap: 40px;
}

.site-footer__left .site-footer__cs {
  margin: 0 0 10px;
  font-size: 13px;
  color: #111;
  font-weight: 500;
}

.site-footer__buttons {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
}

.site-footer__buttons button {
  padding: 6px 12px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 2px;
  font-size: 12px;
  color: #666;
  font-weight: 500;
  cursor: pointer;
}

.site-footer__links {
  display: flex;
  gap: 16px;
  font-size: 11px;
  color: #999;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.site-footer__links a strong {
  color: #111;
  font-weight: 500;
}

.site-footer__company-info {
  font-size: 11px;
  color: #999;
  line-height: 1.6;
}

.site-footer__copyright {
  margin-top: 24px;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #777;
}

.site-footer__right {
  text-align: right;
  min-width: 120px;
}

.site-footer__brand {
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.25em;
  line-height: 1.3;
  color: #111;
}

@media (max-width: 1180px) {
  .header-main__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 22px 0 20px;
  }

  .header-main__logo,
  .header-search {
    grid-column: auto;
    justify-self: center;
    width: 100%;
    max-width: 520px;
  }

  .header-main__logo {
    width: auto;
    max-width: none;
  }

  .header-main__logo-badge {
    width: 72px;
    height: 72px;
  }

  .product-grid,
  .review-grid,
  .feature-mosaic__grid,
  .brand-story-grid,
  .community-proof__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promo-copy__hero,
  .community-proof,
  .quick-rental {
    grid-template-columns: 1fr;
  }

  .promo-copy__quotes {
    grid-template-columns: 1fr;
  }

  .promo-copy__aside {
    min-height: 320px;
    max-width: 420px;
    margin: 0 auto;
  }

  .service-assurance__visual {
    min-height: 460px;
  }

  .service-assurance__visual--wide {
    min-height: 520px;
  }

  .service-assurance__details {
    grid-template-columns: 1fr;
  }

  .product-grid--featured,
  .site-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-rental__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-mosaic__grid {
    grid-template-areas:
      "left-top center"
      "left-bottom center"
      "right-top right-bottom";
  }

  .feature-mosaic__card--center {
    min-height: 460px;
  }
}

@media (max-width: 820px) {
  .site-wrap {
    width: 100%;
  }

  .header-utility__inner,
  .section-heading,
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-utility__inner {
    justify-content: flex-start;
    padding: 10px 0;
    gap: 10px;
    font-size: 11px;
  }

  .header-utility__menu {
    gap: 10px;
  }

  .header-utility__menu a + a::before {
    content: none;
    margin: 0;
  }

  .header-main__inner,
  .shop-section__inner,
  .feature-mosaic__inner,
  .site-footer__top,
  .site-footer__bottom,
  .header-utility__inner,
  .gnb__inner {
    width: min(100% - 24px, 1200px);
  }

  .header-main__inner {
    gap: 14px;
    padding: 18px 0 16px;
  }

  .header-main__logo {
    gap: 10px;
    justify-self: start;
    width: 100%;
    justify-content: flex-start;
  }

  .header-main__logo-badge {
    width: 58px;
    height: 58px;
  }

  .header-main__logo-text strong {
    font-size: 1.14rem;
  }

  .header-main__logo-text small {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .header-search {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .header-search input {
    padding: 12px 12px;
  }

  .gnb__inner {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
    white-space: nowrap;
  }

  .gnb__link {
    flex: 0 0 auto;
    font-size: 0.95rem;
  }

  .hero-carousel,
  .shop-section,
  .site-footer {
    border-radius: 0;
  }

  .hero-carousel__viewport {
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .product-grid,
  .product-grid--featured,
  .review-grid,
  .site-footer__top,
  .feature-mosaic__grid,
  .brand-story-grid,
  .community-proof__cards {
    grid-template-columns: 1fr;
  }

  .curator-cameras__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .quick-rental-bar {
    padding: 10px 0 0;
  }

  .quick-rental__cards {
    grid-template-columns: 1fr;
  }

  .feature-mosaic {
    padding: 56px 0 14px;
  }

  .shop-section {
    padding: 72px 0;
  }

  .section-heading {
    gap: 12px;
    margin-bottom: 18px;
  }

  .section-heading h2 {
    font-size: clamp(1.65rem, 5.2vw, 2.1rem);
  }

  .product-card__thumb {
    height: 280px;
  }

  .product-card__summary {
    min-height: 0;
  }

  .product-card__actions {
    flex-direction: column;
  }

  .promo-copy {
    gap: 28px;
  }

  .community-proof__feature,
  .service-assurance__intro,
  .service-assurance__safety,
  .brand-story-card {
    padding: 24px 20px;
  }

  .promo-copy__hero {
    gap: 22px;
  }

  .promo-copy__lead {
    font-size: clamp(1.95rem, 7.4vw, 2.8rem);
    line-height: 1.1;
  }

  .promo-copy__sublead {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .promo-copy__photo--main {
    right: 0;
    width: 200px;
    height: 250px;
  }

  .service-assurance__visual {
    min-height: 380px;
  }

  .service-assurance__visual--wide {
    min-height: 420px;
  }

  .promo-copy__photo--stack-a {
    left: 0;
    width: 128px;
    height: 172px;
  }

  .promo-copy__photo--stack-b {
    left: 74px;
    width: 122px;
    height: 166px;
  }

  .promo-copy__quotes {
    gap: 12px;
  }

  .promo-copy__quote-card {
    padding: 20px 18px 20px 20px;
  }

  .promo-copy__quote-card p {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .community-proof__feature h3,
  .service-assurance__safety h3 {
    font-size: 1.8rem;
  }

  .camera-card__body--overlay {
    padding: 42px 12px 12px;
  }

  .camera-card h3 {
    font-size: 1.02rem;
    line-height: 1.14;
  }

  .camera-card__note {
    font-size: 0.72rem;
    line-height: 1.42;
  }

  .camera-card__index {
    width: 30px;
    height: 30px;
    font-size: 0.68rem;
  }

  .feature-mosaic__card,
  .feature-mosaic__card--center {
    min-height: auto;
  }

  .feature-mosaic__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "left-top"
      "center"
      "right-top"
      "left-bottom"
      "right-bottom";
  }

  .feature-mosaic__overlay,
  .feature-mosaic__overlay--large {
    padding: 24px 22px 18px;
  }

  .reserve-modal__dialog {
    width: min(100% - 20px, 760px);
    margin: 20px auto;
    padding: 24px 20px 20px;
  }
}

@media (max-width: 560px) {
  .header-utility__menu,
  .category-tabs {
    gap: 8px;
  }

  .header-utility__menu {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, auto));
    row-gap: 4px;
  }

  .header-search {
    padding: 4px;
  }

  .header-search button {
    flex: 0 0 auto;
    padding: 11px 14px;
  }

  .header-main__logo-badge {
    width: 50px;
    height: 50px;
  }

  .shop-section {
    padding: 56px 0;
  }

  .hero-carousel__viewport {
    aspect-ratio: 16 / 12;
    min-height: 260px;
  }

  .floating-quick-reserve {
    right: 12px;
    left: 12px;
    bottom: 12px;
    padding: 12px;
    gap: 12px;
  }

  .floating-quick-reserve__text strong {
    font-size: 13px;
  }

  .reserve-modal__dialog {
    margin: 12px auto;
    padding: 22px 16px 18px;
  }

  .reserve-modal__header {
    padding-right: 24px;
  }

  .promo-copy__lead {
    font-size: 1.78rem;
  }

  .promo-copy__lead-highlight {
    padding: 0 8px 2px;
  }

  .promo-copy__sublead {
    font-size: 0.94rem;
  }

  .service-assurance__visual {
    min-height: 320px;
  }

  .service-assurance__visual--wide {
    min-height: 340px;
  }

  .promo-copy__aside {
    min-height: 248px;
  }

  .promo-copy__photo--main {
    width: 160px;
    height: 208px;
  }

  .promo-copy__photo--stack-a {
    width: 104px;
    height: 140px;
    top: 20px;
  }

  .promo-copy__photo--stack-b {
    width: 96px;
    height: 132px;
    left: 58px;
    bottom: 0;
  }

  .community-proof__feature h3,
  .service-assurance__intro h2,
  .brand-story-card h3 {
    font-size: 1.6rem;
  }

  .curator-cameras__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .feature-mosaic__overlay,
  .feature-mosaic__overlay--large {
    padding: 20px 18px 16px;
  }

  .feature-mosaic__overlay h2 {
    font-size: 1.55rem;
  }

  .feature-mosaic__overlay--large h2 {
    font-size: 1.78rem;
  }

  .product-card__thumb {
    height: 220px;
  }

  .camera-card__body--overlay {
    padding: 34px 10px 10px;
  }

  .camera-card h3 {
    font-size: 0.94rem;
    line-height: 1.14;
  }

  .camera-card__note {
    font-size: 0.68rem;
    line-height: 1.34;
  }

  .camera-card__index {
    width: 26px;
    height: 26px;
    font-size: 0.62rem;
  }

  .reserve-form {
    grid-template-columns: 1fr;
  }

  .product-card__body,
  .review-card__body {
    padding: 16px;
  }

  .site-footer__box {
    min-height: 0;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .site-footer__box:last-child {
    border-bottom: 0;
  }

.site-footer__bottom {
    padding: 16px 0 24px;
  }
}

/* Y2K 3D theme removed — Stayfolio redesign */

.admin-body {
  min-height: 100vh;
  background: #FAFAFA;
}

.admin-page {
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0 120px;
}

.admin-page__hero {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 56px;
}

.admin-page__back {
  width: fit-content;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
  margin-bottom: 12px;
}

.admin-page__back:hover {
  color: #111;
}

.admin-page__eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-soft);
}

.admin-page__hero h1 {
  margin: 0;
  font-family: var(--font-base);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #111;
}

.admin-page__description {
  margin: 0;
  max-width: 600px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

/* 네비게이션 허브 */
.admin-hub-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.admin-hub-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
  color: #111;
  transition: all 0.2s ease;
}

.admin-hub-card:hover {
  border-color: #111;
}

.admin-hub-card--active {
  border-color: #111;
  background: #fff;
  box-shadow: inset 0 0 0 1px #111;
}

.admin-hub-card__icon {
  font-size: 20px;
  line-height: 1;
  opacity: 0.7;
}

.admin-hub-card__text h3 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
}

.admin-hub-card__text p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

/* 관리자 패널 공통 */
.admin-panel {
  display: grid;
  gap: 48px;
}

/* 인증 폼 */
.admin-auth {
  display: grid;
  gap: 20px;
  padding: 40px;
  border: 1px solid var(--line);
  background: #fff;
}

.admin-auth__field {
  display: grid;
  gap: 10px;
}

.admin-auth__field span {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.admin-auth__field input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.admin-auth__field input:focus {
  border-color: #111;
}

.admin-auth__hint {
  margin: 0;
  font-size: 13px;
  color: var(--muted-soft);
}

.admin-auth__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-auth__actions button {
  padding: 12px 24px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.admin-auth__actions button:hover {
  opacity: 0.8;
}

.admin-auth__actions .admin-auth__ghost {
  background: transparent;
  color: #111;
}

.admin-auth__status {
  margin: 0;
  min-height: 20px;
  font-size: 13px;
  font-weight: 600;
}

.admin-auth__status[data-tone="loading"] {
  color: var(--muted);
}

.admin-auth__status[data-tone="success"] {
  color: #111;
}

.admin-auth__status[data-tone="error"] {
  color: #d13;
}

/* 요약 통계 */
.admin-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.admin-summary__card {
  padding: 32px 24px;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-summary__card span {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.admin-summary__card strong {
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}

/* 예약 리스트 */
.admin-list {
  display: grid;
  gap: 12px;
}

.admin-empty-state {
  padding: 64px 24px;
  text-align: center;
  border: 1px solid var(--line);
  background: #FAFAFA;
}

.admin-empty-state strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.admin-empty-state p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* 개별 예약 카드 */
.admin-reservation-card {
  padding: 40px;
  border: 1px solid var(--line);
  background: #fff;
}

.admin-reservation-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.admin-reservation-card__service {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted-soft);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.admin-reservation-card__name {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.admin-reservation-card__delete {
  padding: 6px 16px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.admin-reservation-card__delete:hover {
  background: #FAFAFA;
  color: #d13;
  border-color: #d13;
}

.admin-reservation-card__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
  margin: 0;
}

.admin-reservation-card__meta div {
  margin: 0;
}

.admin-reservation-card__meta dt {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--muted-soft);
  letter-spacing: 0.05em;
}

.admin-reservation-card__meta dd {
  margin: 0;
  font-size: 14px;
  color: #111;
  line-height: 1.6;
  white-space: pre-line;
}

.admin-reservation-card__meta--full {
  grid-column: 1 / -1;
}

@media (max-width: 820px) {
  .admin-summary {
    grid-template-columns: 1fr;
  }
  .admin-reservation-card__meta {
    grid-template-columns: 1fr;
  }
}

/* ?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧??   由щ굹 AI 梨꾪똿 ?꾩젽
   ?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧??*/

#linaChatWidget {
  position: fixed;
  z-index: 9999;
  bottom: 24px;
  right: 24px;
  font-family: var(--font-base), Pretendard, -apple-system, sans-serif;
}

/* ?? FAB 踰꾪듉 ?? */
.lina-fab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 247, 252, 0.78) 100%);
  box-shadow:
    0 14px 36px rgba(183, 159, 219, 0.28),
    0 4px 12px rgba(226, 150, 196, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.lina-fab:hover {
  transform: scale(1.08);
  box-shadow:
    0 18px 44px rgba(183, 159, 219, 0.34),
    0 6px 16px rgba(226, 150, 196, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.lina-fab.is-open {
  transform: scale(0.9);
  opacity: 0.7;
}

.lina-fab__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.lina-fab__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(234, 142, 194, 0.5);
  animation: linaPulse 2.4s ease-out infinite;
}

.lina-fab.is-open .lina-fab__pulse {
  display: none;
}

@keyframes linaPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.lina-fab__badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8bbb 0%, #b774ff 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(183, 116, 255, 0.32);
  animation: linaBadgeBounce 1s ease-in-out infinite;
}

@keyframes linaBadgeBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* ?? 梨꾪똿 ?⑤꼸 ?? */
.lina-panel[hidden] {
  display: none !important;
}

.lina-panel {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 400px;
  max-height: min(620px, calc(100vh - 140px));
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 250, 253, 0.88) 100%);
  box-shadow:
    0 30px 60px rgba(183, 159, 219, 0.22),
    0 8px 20px rgba(226, 150, 196, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  overflow: hidden;
  animation: linaPanelIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes linaPanelIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ?? ?ㅻ뜑 ?? */
.lina-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.64);
  background: linear-gradient(135deg, rgba(255, 240, 248, 0.72) 0%, rgba(240, 248, 255, 0.64) 100%);
}

.lina-panel__header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lina-panel__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 6px 16px rgba(183, 159, 219, 0.18);
}

.lina-panel__name {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #2b2133;
}

.lina-panel__status {
  display: block;
  font-size: 0.76rem;
  color: #8b6cc7;
  font-weight: 600;
}

.lina-panel__close {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: #5d5568;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s, color 0.2s;
}

.lina-panel__close:hover {
  background: rgba(255, 255, 255, 0.92);
  color: #2b2133;
}

/* ?? 硫붿떆吏 ?곸뿭 ?? */
.lina-panel__messages {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 16px 16px 8px;
  scroll-behavior: smooth;
}

.lina-panel__messages::-webkit-scrollbar {
  width: 4px;
}

.lina-panel__messages::-webkit-scrollbar-thumb {
  background: rgba(183, 159, 219, 0.2);
  border-radius: 4px;
}

/* ?? 硫붿떆吏 踰꾨툝 ?? */
.lina-msg {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  animation: linaMsgIn 0.3s ease-out;
}

@keyframes linaMsgIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lina-msg--user {
  justify-content: flex-end;
}

.lina-msg--model {
  justify-content: flex-start;
  align-items: flex-end;
}

.lina-msg__avatar {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 10px rgba(183, 159, 219, 0.14);
}

.lina-msg__bubble {
  max-width: 78%;
  padding: 12px 16px;
  font-size: 0.92rem;
  line-height: 1.65;
  letter-spacing: -0.01em;
  word-break: break-word;
}

.lina-msg--user .lina-msg__bubble {
  border-radius: 20px 20px 4px 20px;
  background: linear-gradient(135deg, #ffcde7 0%, #f8a9d7 48%, #c8b5ff 100%);
  color: #2b2133;
  box-shadow: 0 8px 20px rgba(226, 150, 196, 0.2);
}

.lina-msg--model .lina-msg__bubble {
  border-radius: 20px 20px 20px 4px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(250, 248, 255, 0.78) 100%);
  color: #2b2133;
  box-shadow: 0 6px 16px rgba(183, 159, 219, 0.1);
}

/* ?? ??댄븨 ?몃뵒耳?댄꽣 ?? */
.lina-msg__bubble--typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 20px;
}

.lina-typing-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffcde7 0%, #b774ff 100%);
  opacity: 0.5;
  animation: linaTypingBounce 1.4s ease-in-out infinite;
}

.lina-typing-dot:nth-child(2) {
  animation-delay: 0.16s;
}

.lina-typing-dot:nth-child(3) {
  animation-delay: 0.32s;
}

@keyframes linaTypingBounce {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

/* ?? 鍮좊Ⅸ 吏덈Ц 移??? */
.lina-panel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 4px 16px 12px;
}

.lina-panel__chips[hidden] {
  display: none !important;
}

.lina-chip {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 248, 253, 0.7) 100%);
  box-shadow: 0 6px 14px rgba(183, 159, 219, 0.1);
  color: #5d5568;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.lina-chip:hover {
  background: linear-gradient(135deg, rgba(255, 239, 199, 0.92) 0%, rgba(255, 213, 237, 0.86) 52%, rgba(198, 235, 255, 0.82) 100%);
  color: #2b2133;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(183, 159, 219, 0.16);
}

/* ?? ?낅젰 諛??? */
.lina-panel__input-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.64);
  background: linear-gradient(135deg, rgba(255, 248, 253, 0.64) 0%, rgba(248, 250, 255, 0.56) 100%);
}

.lina-panel__input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 3px rgba(183, 159, 219, 0.06);
  font-size: 0.92rem;
  color: #2b2133;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lina-panel__input::placeholder {
  color: #b0a4bf;
}

.lina-panel__input:focus {
  border-color: rgba(234, 142, 194, 0.5);
  box-shadow:
    inset 0 1px 3px rgba(183, 159, 219, 0.06),
    0 0 0 3px rgba(234, 142, 194, 0.12);
}

.lina-panel__input:disabled {
  opacity: 0.6;
}

.lina-panel__send {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffcde7 0%, #f8a9d7 48%, #9edfff 100%);
  color: #2b2133;
  box-shadow: 0 8px 18px rgba(226, 150, 196, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lina-panel__send:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 22px rgba(226, 150, 196, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.lina-panel__send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ?? 紐⑤컮??諛섏쓳???? */
@media (max-width: 560px) {
  #linaChatWidget {
    bottom: 16px;
    right: 16px;
  }

  .lina-fab {
    width: 56px;
    height: 56px;
  }

  .lina-fab__avatar {
    width: 46px;
    height: 46px;
  }

  .lina-panel {
    position: fixed;
    inset: 0;
    width: 100%;
    max-height: 100%;
    border-radius: 0;
    bottom: 0;
    right: 0;
  }

  .lina-panel__header {
    border-radius: 0;
  }
}

@media (max-width: 820px) {
  .lina-panel {
    width: min(400px, calc(100vw - 32px));
    bottom: 92px;
    right: 16px;
    max-height: min(560px, calc(100vh - 120px));
  }
}

/* ?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧??   ?몄븘 留덉?????쒕낫??   ?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧??*/

.noah-body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(165deg, #fdf8f3 0%, #fef6ee 35%, #f4f0ec 100%);
  font-family: var(--font-base);
  color: var(--text);
}

/* ?? ?ㅻ뜑 ?? */
.noah-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(239, 157, 50, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(254, 246, 238, 0.82) 100%);
  backdrop-filter: blur(14px);
}

.noah-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 28px;
}

.noah-header__back {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted-soft);
  transition: color 0.2s;
}

.noah-header__back:hover {
  color: var(--primary);
}

.noah-header__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.noah-header__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 16px rgba(239, 157, 50, 0.18);
}

.noah-header__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.noah-header__badge {
  display: inline-block;
  padding: 2px 10px;
  margin-left: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef9d32 0%, #e8853e 100%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  vertical-align: middle;
}

.noah-header__subtitle {
  margin: 2px 0 0;
  font-size: 0.82rem;
  color: var(--muted-soft);
}

/* ?? 硫붿씤 ?? */
.noah-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 28px 80px;
}

/* ?? ?몄쬆 ?? */
.noah-auth {
  display: flex; justify-content: center; padding: 80px 20px;
}
.noah-auth[hidden] { display: none; }

.noah-auth__card {
  max-width: 420px; width: 100%; padding: 40px 36px;
  border: 1px solid rgba(255,255,255,0.82); border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(250,248,252,0.8) 100%);
  box-shadow: 0 16px 40px rgba(119, 102, 198, 0.08);
  text-align: center;
}
.noah-auth__card p { font-size: 1.05rem; font-weight: 700; margin: 0 0 20px; }
.noah-auth__form { display: flex; gap: 10px; }
.noah-auth__form input {
  flex: 1; padding: 12px 16px; border: 1px solid rgba(119, 102, 198, 0.2);
  border-radius: 14px; background: rgba(255,255,255,0.8); font-size: 0.92rem; outline: none;
}
.noah-auth__form input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(119, 102, 198, 0.1); }
.noah-auth__error { color: var(--film-red); font-size: 0.86rem; font-weight: 600; margin: 12px 0 0; }

/* ?? ???? */
.noah-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.noah-tabs::-webkit-scrollbar {
  height: 0;
}

.noah-tab {
  flex: 1;
  min-width: 160px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 252, 248, 0.68) 100%);
  box-shadow: 0 6px 18px rgba(239, 157, 50, 0.06);
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
}

.noah-tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(239, 157, 50, 0.12);
  border-color: rgba(239, 157, 50, 0.3);
}

.noah-tab--active {
  border-color: rgba(239, 157, 50, 0.5);
  background: linear-gradient(135deg, rgba(254, 246, 238, 0.95) 0%, rgba(255, 241, 224, 0.88) 100%);
  box-shadow:
    0 10px 24px rgba(239, 157, 50, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.noah-tab__icon {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.noah-tab__label {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.noah-tab__desc {
  display: block;
  font-size: 0.76rem;
  color: var(--muted-soft);
  margin-top: 2px;
}

/* ?? ?뚰겕?ㅽ럹?댁뒪 ?? */
.noah-workspace {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  min-height: 500px;
}

.noah-workspace__input-panel,
.noah-workspace__result-panel {
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 252, 248, 0.78) 100%);
  box-shadow:
    0 16px 40px rgba(239, 157, 50, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.noah-workspace__input-header,
.noah-workspace__result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px 12px;
  border-bottom: 1px solid rgba(239, 157, 50, 0.08);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.noah-workspace__hint {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--muted-soft);
  background: rgba(239, 157, 50, 0.08);
  padding: 4px 10px;
  border-radius: 8px;
}

.noah-workspace__textarea {
  flex: 1;
  margin: 0;
  padding: 18px 22px;
  border: none;
  background: transparent;
  font-family: var(--font-base);
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text);
  resize: none;
  outline: none;
  min-height: 180px;
}

.noah-workspace__textarea::placeholder {
  color: #b5a898;
}

.noah-workspace__input-actions {
  padding: 14px 22px 18px;
  border-top: 1px solid rgba(239, 157, 50, 0.08);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.noah-workspace__examples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}

.noah-workspace__examples-label {
  display: block;
  width: 100%;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--muted-soft);
  margin-bottom: 2px;
}

.noah-example-chip {
  padding: 6px 12px;
  border: 1px solid rgba(239, 157, 50, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.noah-example-chip:hover {
  background: linear-gradient(135deg, rgba(254, 242, 224, 0.9) 0%, rgba(239, 157, 50, 0.12) 100%);
  border-color: rgba(239, 157, 50, 0.4);
  color: var(--text);
}

/* ?? 踰꾪듉 ?? */
.noah-btn {
  padding: 12px 28px;
  border: none;
  border-radius: 16px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.noah-btn--primary {
  background: linear-gradient(135deg, #ef9d32 0%, #e8853e 50%, #4c8a84 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(239, 157, 50, 0.24);
}

.noah-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(239, 157, 50, 0.32);
}

.noah-btn--primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.noah-btn--secondary {
  padding: 8px 16px;
  border: 1px solid rgba(239, 157, 50, 0.2);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.84rem;
  border-radius: 12px;
}

.noah-btn--secondary:hover {
  background: rgba(254, 246, 238, 0.9);
  border-color: rgba(239, 157, 50, 0.4);
}

/* ?? 寃곌낵 ?⑤꼸 ?? */
.noah-result {
  flex: 1;
  padding: 20px 22px;
  overflow-y: auto;
  line-height: 1.75;
  font-size: 0.92rem;
}

.noah-result::-webkit-scrollbar {
  width: 4px;
}

.noah-result::-webkit-scrollbar-thumb {
  background: rgba(239, 157, 50, 0.2);
  border-radius: 4px;
}

.noah-result__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  min-height: 300px;
  color: var(--muted-soft);
}

.noah-result__placeholder-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.6;
  margin-bottom: 14px;
}

.noah-result__placeholder p {
  margin: 4px 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
}

.noah-result__placeholder-sub {
  font-size: 0.86rem !important;
  font-weight: 500 !important;
  color: var(--muted-soft) !important;
}

.noah-result__content {
  animation: noahFadeIn 0.4s ease;
}

.noah-result__content p { margin: 0 0 12px; }

.noah-result__actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(239, 157, 50, 0.1);
}

@keyframes noahFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ?? 寃곌낵 ??留덊겕?ㅼ슫 ?붿냼 ?? */
.noah-h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-deep);
  margin: 20px 0 8px;
  letter-spacing: -0.02em;
}

.noah-h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 16px 0 6px;
}

.noah-h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--secondary-deep);
  margin: 12px 0 4px;
}

.noah-li {
  list-style: none;
  position: relative;
  padding-left: 18px;
  margin: 4px 0;
}

.noah-li::before {
  content: "??;
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.noah-li--ordered::before { display: none; }

.noah-li__num {
  color: var(--primary);
  font-weight: 800;
}

.noah-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 0.86rem;
}

.noah-table th {
  padding: 10px 12px;
  text-align: left;
  font-weight: 700;
  background: rgba(239, 157, 50, 0.08);
  border-bottom: 2px solid rgba(239, 157, 50, 0.16);
}

.noah-table td {
  padding: 8px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.noah-code {
  margin: 12px 0;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(34, 34, 34, 0.04);
  font-family: var(--font-base);
  font-size: 0.84rem;
  line-height: 1.6;
  overflow-x: auto;
}

/* ?? 濡쒕뜑 ?? */
.noah-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: var(--muted-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

.noah-loader__dots {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.noah-loader__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ef9d32, #4c8a84);
  animation: noahDotBounce 1.4s ease-in-out infinite;
}

.noah-loader__dots span:nth-child(2) { animation-delay: 0.16s; }
.noah-loader__dots span:nth-child(3) { animation-delay: 0.32s; }

@keyframes noahDotBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-10px); opacity: 1; }
}

/* ?? ?먮윭 ?? */
.noah-error {
  padding: 20px;
  border-radius: 16px;
  background: rgba(184, 96, 81, 0.08);
  color: var(--film-red);
  text-align: center;
  font-weight: 600;
}

/* ?? ?좎뒪???? */
.noah-toast {
  position: fixed;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #333 0%, #222 100%);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
  transition: bottom 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 9999;
}

.noah-toast--show {
  bottom: 32px;
}

/* ?? 諛섏쓳???? */
@media (max-width: 900px) {
  .noah-workspace {
    grid-template-columns: 1fr;
  }

  .noah-tabs {
    gap: 8px;
  }

  .noah-tab {
    min-width: 130px;
    padding: 12px 16px;
  }

  .noah-header__inner {
    padding: 12px 18px;
  }

  .noah-main {
    padding: 18px 18px 60px;
  }

  .noah-workspace__input-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 560px) {
  .noah-tabs {
    flex-direction: column;
  }

  .noah-tab {
    min-width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
  }

  .noah-tab__icon {
    font-size: 1.3rem;
    margin: 0;
  }

  .noah-tab__label {
    font-size: 0.9rem;
  }

  .noah-tab__desc {
    display: none;
  }
}

/* ?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧??   吏??臾쇰쪟 ??쒕낫??   ?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧??*/

.geo-body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(165deg, #f2f7f6 0%, #eef5f4 35%, #f0f2ef 100%);
  font-family: var(--font-base);
  color: var(--text);
}

.geo-header {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(76, 138, 132, 0.12);
  background: linear-gradient(135deg, rgba(255,255,255,0.88) 0%, rgba(242,247,246,0.82) 100%);
  backdrop-filter: blur(14px);
}

.geo-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 14px 28px;
}

.geo-header__back { font-size: 0.88rem; font-weight: 600; color: var(--muted-soft); transition: color 0.2s; }
.geo-header__back:hover { color: var(--secondary); }

.geo-header__brand { display: flex; align-items: center; gap: 14px; }

.geo-header__avatar {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(255,255,255,0.9);
  box-shadow: 0 6px 16px rgba(76, 138, 132, 0.18);
}

.geo-header__title { margin: 0; font-size: 1.2rem; font-weight: 800; letter-spacing: -0.03em; }

.geo-header__badge {
  display: inline-block; padding: 2px 10px; margin-left: 8px;
  border-radius: 999px; background: linear-gradient(135deg, #4c8a84 0%, #2f6963 100%);
  color: #fff; font-size: 0.7rem; font-weight: 700; vertical-align: middle;
}

.geo-header__subtitle { margin: 2px 0 0; font-size: 0.82rem; color: var(--muted-soft); }

.geo-main { max-width: 1200px; margin: 0 auto; padding: 24px 28px 80px; }

/* ?? ?몄쬆 ?? */
.geo-auth {
  display: flex; justify-content: center; padding: 80px 20px;
}

.geo-auth[hidden] { display: none; }

.geo-auth__card {
  max-width: 420px; width: 100%; padding: 40px 36px;
  border: 1px solid rgba(255,255,255,0.82); border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(242,247,246,0.8) 100%);
  box-shadow: 0 16px 40px rgba(76,138,132,0.08);
  text-align: center;
}

.geo-auth__card p { font-size: 1.05rem; font-weight: 700; margin: 0 0 20px; }

.geo-auth__form { display: flex; gap: 10px; }

.geo-auth__form input {
  flex: 1; padding: 12px 16px; border: 1px solid rgba(76,138,132,0.2);
  border-radius: 14px; background: rgba(255,255,255,0.8); font-size: 0.92rem; outline: none;
}

.geo-auth__form input:focus { border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(76,138,132,0.1); }

.geo-auth__error { color: var(--film-red); font-size: 0.86rem; font-weight: 600; margin: 12px 0 0; }

/* ?? 踰꾪듉 ?? */
.geo-btn {
  padding: 10px 22px; border: none; border-radius: 14px;
  font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: all 0.2s; white-space: nowrap;
}

.geo-btn--primary {
  background: linear-gradient(135deg, #4c8a84 0%, #2f6963 100%);
  color: #fff; box-shadow: 0 6px 16px rgba(76,138,132,0.22);
}

.geo-btn--primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(76,138,132,0.3); }
.geo-btn--primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.geo-btn--secondary {
  padding: 8px 14px; border: 1px solid rgba(76,138,132,0.2);
  background: rgba(255,255,255,0.72); color: var(--muted); font-size: 0.82rem; border-radius: 10px;
}

.geo-btn--secondary:hover { background: rgba(242,247,246,0.9); border-color: rgba(76,138,132,0.4); }

.geo-btn--sm {
  padding: 6px 12px; font-size: 0.78rem; border-radius: 8px;
  border: 1px solid rgba(76,138,132,0.15); background: rgba(255,255,255,0.7); color: var(--muted);
}

.geo-btn--sm:hover { background: rgba(242,247,246,0.9); }

/* ?? ?붿빟 移대뱶 ?? */
.geo-summary {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-bottom: 24px;
}

.geo-summary__card {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; border: 1px solid rgba(255,255,255,0.82); border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(242,247,246,0.7) 100%);
  box-shadow: 0 6px 16px rgba(76,138,132,0.06);
}

.geo-summary__icon { font-size: 1.5rem; }
.geo-summary__card strong { display: block; font-size: 1.4rem; font-weight: 800; letter-spacing: -0.03em; }
.geo-summary__card span { font-size: 0.76rem; color: var(--muted-soft); font-weight: 600; }
.geo-summary__card--overdue strong { color: var(--film-red); }
.geo-summary__card--ship strong { color: var(--primary); }

/* ?? ???? */
/* 재고 현황 테이블 */
.geo-inventory {
  margin-bottom: 24px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}
.geo-section-title {
  margin: 0;
  padding: 20px 24px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.geo-table-wrap { overflow-x: auto; }
.geo-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.geo-table th {
  padding: 10px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #FAFAFA;
}
.geo-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.geo-table tbody tr:last-child td { border-bottom: none; }
.geo-stock--ok { color: #1a7a5e; font-weight: 600; }
.geo-stock--out { color: #d13; font-weight: 600; }
.geo-stock__reserved { font-size: 12px; color: var(--muted-soft); }
.geo-stock-summary {
  margin: 0;
  padding: 14px 24px;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #FAFAFA;
}
.geo-stock-summary strong { color: #111; }

.geo-tabs { display: flex; gap: 8px; margin-bottom: 20px; }

.geo-tab {
  padding: 10px 20px; border: 1px solid rgba(255,255,255,0.82); border-radius: 14px;
  background: rgba(255,255,255,0.7); font-size: 0.88rem; font-weight: 700;
  color: var(--muted); cursor: pointer; transition: all 0.2s;
}

.geo-tab:hover { background: rgba(242,247,246,0.9); }

.geo-tab--active {
  background: linear-gradient(135deg, rgba(76,138,132,0.1) 0%, rgba(47,105,99,0.06) 100%);
  border-color: rgba(76,138,132,0.3); color: var(--secondary-deep);
}

/* ?? ?⑤꼸 ?? */
.geo-panel {
  border: 1px solid rgba(255,255,255,0.82); border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88) 0%, rgba(242,247,246,0.78) 100%);
  box-shadow: 0 16px 40px rgba(76,138,132,0.06);
  overflow: hidden;
}

.geo-panel__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px 12px; border-bottom: 1px solid rgba(76,138,132,0.08);
  font-size: 0.92rem; font-weight: 700;
}

/* ?? ??꾨씪??移대뱶 ?? */
.geo-timeline { padding: 16px; display: grid; gap: 12px; }

.geo-timeline__empty { text-align: center; color: var(--muted-soft); padding: 40px; }

.geo-card {
  padding: 18px 20px; border: 1px solid rgba(255,255,255,0.8); border-radius: 18px;
  background: rgba(255,255,255,0.72); border-left: 4px solid var(--status-color, #888);
  transition: box-shadow 0.2s;
}

.geo-card:hover { box-shadow: 0 8px 20px rgba(76,138,132,0.1); }

.geo-card__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }

.geo-card__status-badge {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  color: #fff; font-size: 0.76rem; font-weight: 700;
}

.geo-card__days {
  font-size: 0.82rem; font-weight: 700; color: var(--secondary-deep);
  background: rgba(76,138,132,0.08); padding: 4px 10px; border-radius: 8px;
}

.geo-card__customer { margin-bottom: 10px; }
.geo-card__customer strong { font-size: 1rem; font-weight: 800; }
.geo-card__dest { margin-left: 10px; font-size: 0.86rem; color: var(--muted-soft); }

.geo-card__schedule {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  margin-bottom: 10px; font-size: 0.82rem;
}

.geo-card__schedule div {
  padding: 8px 10px; border-radius: 10px; background: rgba(242,247,246,0.6);
}

.geo-card__label { display: block; font-size: 0.72rem; color: var(--muted-soft); font-weight: 700; margin-bottom: 2px; }

.geo-card__meta { display: flex; gap: 16px; font-size: 0.82rem; color: var(--muted-soft); }

.geo-card__actions { margin-top: 10px; display: flex; gap: 8px; }

.geo-card__info-muted { color: var(--muted-soft); font-size: 0.84rem; font-style: italic; }

/* ?? AI ?댁떆?ㅽ꽩???? */
.geo-ai { padding: 20px; }

.geo-ai__modes { display: flex; gap: 8px; margin-bottom: 14px; }

.geo-ai__mode {
  padding: 8px 16px; border: 1px solid rgba(76,138,132,0.15); border-radius: 999px;
  background: rgba(255,255,255,0.7); font-size: 0.82rem; font-weight: 600;
  color: var(--muted); cursor: pointer; transition: all 0.2s;
}

.geo-ai__mode:hover { border-color: rgba(76,138,132,0.3); }

.geo-ai__mode--active {
  background: linear-gradient(135deg, rgba(76,138,132,0.12) 0%, rgba(47,105,99,0.06) 100%);
  border-color: rgba(76,138,132,0.4); color: var(--secondary-deep);
}

.geo-ai__input {
  width: 100%; padding: 16px 18px; border: 1px solid rgba(76,138,132,0.15);
  border-radius: 16px; background: rgba(255,255,255,0.7); font-family: var(--font-base);
  font-size: 0.92rem; line-height: 1.6; resize: none; outline: none; color: var(--text);
}

.geo-ai__input:focus { border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(76,138,132,0.08); }
.geo-ai__input::placeholder { color: #a0b0ad; }

.geo-ai__actions {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 12px; gap: 12px;
}

.geo-ai__check { font-size: 0.82rem; color: var(--muted-soft); font-weight: 600; display: flex; align-items: center; gap: 6px; }

.geo-ai__loader {
  display: flex; flex-direction: column; align-items: center; padding: 40px 20px;
  color: var(--muted-soft); font-weight: 600;
}

.geo-loader-dots { display: flex; gap: 6px; margin-bottom: 12px; }

.geo-loader-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(135deg, #4c8a84, #2f6963);
  animation: geoDot 1.4s ease-in-out infinite;
}

.geo-loader-dots span:nth-child(2) { animation-delay: 0.16s; }
.geo-loader-dots span:nth-child(3) { animation-delay: 0.32s; }

@keyframes geoDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-10px); opacity: 1; }
}

.geo-ai__content { animation: geoFadeIn 0.4s ease; line-height: 1.75; }
.geo-ai__content p { margin: 0 0 10px; }
.geo-ai__content li { list-style: none; padding-left: 16px; position: relative; margin: 3px 0; }
.geo-ai__content li::before { content: "??; position: absolute; left: 0; color: var(--secondary); font-weight: 700; }

.geo-ai__result-actions { display: flex; gap: 8px; margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(76,138,132,0.08); }

@keyframes geoFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.geo-h2 { font-size: 1.1rem; font-weight: 800; color: var(--secondary-deep); margin: 16px 0 6px; }
.geo-h3 { font-size: 1rem; font-weight: 700; margin: 12px 0 4px; }
.geo-h4 { font-size: 0.92rem; font-weight: 700; color: var(--secondary); margin: 10px 0 4px; }

.geo-code {
  margin: 10px 0; padding: 14px 18px; border-radius: 12px;
  background: rgba(34,34,34,0.04); font-family: var(--font-base);
  font-size: 0.84rem; line-height: 1.5; overflow-x: auto;
}

.geo-error {
  padding: 20px; border-radius: 14px; background: rgba(184,96,81,0.08);
  color: var(--film-red); text-align: center; font-weight: 600;
}

/* ?? 諛섏쓳???? */
@media (max-width: 900px) {
  .geo-summary { grid-template-columns: repeat(3, 1fr); }
  .geo-card__schedule { grid-template-columns: repeat(2, 1fr); }
  .geo-header__inner { padding: 12px 18px; }
  .geo-main { padding: 18px 18px 60px; }
}

@media (max-width: 560px) {
  .geo-summary { grid-template-columns: repeat(2, 1fr); }
  .geo-card__schedule { grid-template-columns: 1fr; }
  .geo-tabs { flex-direction: column; }
  .geo-ai__modes { flex-wrap: wrap; }
}

/* ?? 愿由ъ옄 ?덈툕 ?대퉬寃뚯씠???? */
.admin-page__description {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.6;
}

.admin-hub-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  max-width: 800px;
}

.admin-hub-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(86, 75, 143, 0.15);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
}

.admin-hub-card:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(86, 75, 143, 0.1);
  border-color: rgba(86, 75, 143, 0.3);
}

.admin-hub-card--active {
  background: linear-gradient(135deg, rgba(86, 75, 143, 0.08) 0%, rgba(119, 102, 198, 0.04) 100%);
  border-color: rgba(86, 75, 143, 0.3);
}

.admin-hub-card__icon {
  font-size: 1.8rem;
}

.admin-hub-card__text h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-deep);
}

.admin-hub-card__text p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted-soft);
}

@media (max-width: 768px) {
  .admin-hub-nav {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   New Components (Stayfolio-inspired)
   ========================================= */

/* ?щ챸 怨좎젙 ?ㅻ뜑 */
.site-header--transparent {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: none;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.site-header--transparent.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.site-header--transparent .header-main__logo-image {
  filter: brightness(10);
  transition: filter 0.3s ease;
}
.site-header--transparent.is-scrolled .header-main__logo-image {
  filter: brightness(1);
}

/* ?꾨쾭嫄?硫붾돱 踰꾪듉 */
.header-menu-btn {
  background: transparent !important;
  border: none !important;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111 !important;
  transition: color 0.3s ease;
}
.is-scrolled .header-menu-btn {
  color: #111 !important;
}

/* 寃??GNB ?④? (?곗튂 ?붾컮?댁뒪?? */
.header-search, .gnb {
  display: none;
}

/* ??ㅽ겕由?硫붾돱 (Stayfolio-like) */
.fullscreen-menu {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9999 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.fullscreen-menu[hidden] {
  display: none !important;
}
.fullscreen-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 25, 24, 0.5);
  backdrop-filter: blur(6px);
}
.fullscreen-menu__content {
  position: relative;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: menuSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes menuSlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.fullscreen-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 36px;
  text-align: center;
}
.fullscreen-menu__nav a {
  font-family: var(--font-base);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}
.fullscreen-menu__nav a:hover {
  opacity: 0.5;
}
.fullscreen-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--muted);
  cursor: pointer;
  padding: 8px;
}

/* ?뱀뀡 怨듯넻 ???щ갚 ?뺣? */
.section-heading__eyebrow,
.product-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-soft);
  background: transparent;
  border: 1px solid var(--line);
}

/* 留ㅺ굅吏?移대찓??移대뱶 */
.curator-cameras__grid {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.camera-card--magazine {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.camera-card--magazine .camera-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
}
.camera-card--magazine .camera-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.camera-card--magazine:hover .camera-card__media img {
  transform: scale(1.03);
}
.camera-card--magazine .camera-card__body {
  padding: 0 4px;
}
.camera-card--magazine .camera-card__index {
  display: block;
  font-family: var(--font-base);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--muted-soft);
  margin-bottom: 10px;
}
.camera-card--magazine h3 {
  font-family: var(--font-base);
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0 0 10px 0;
  color: var(--text);
}
.camera-card--magazine .camera-card__note {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--muted);
}

@media (min-width: 768px) {
  .curator-cameras__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 18px;
  }
}

}
.section-heading {
  margin-bottom: 24px;
}
.section-heading h2 {
  font-family: var(--font-base);
  font-weight: 400;
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  line-height: 1.4;
}
.curator-cameras-section {
  padding: var(--section-gap) 20px;
}
.shop-section {
  padding: var(--section-gap) 0;
}

/* 由щ굹 FAB ??李⑤텇????*/
.lina-fab {
  background: rgba(255, 252, 248, 0.95) !important;
  border-color: var(--line) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
}

/* 명시적 하단 적용을 위해 기존 햄버거 메뉴 숨김 처리 */
.header-menu-btn, .fullscreen-menu, .fullscreen-menu[hidden], .fullscreen-menu__backdrop, .fullscreen-menu__content {
  display: none !important;
}

/* 우측 상단 네비게이션 메뉴 (스테이폴리오 스타일) */
.header-main__right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-gnb {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-gnb a {
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 600;
  color: #222;
  letter-spacing: 0.03em;
  transition: opacity 0.2s ease;
}

.header-gnb a:hover {
  opacity: 0.5;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  border-left: 1px solid var(--line);
  padding-left: 20px;
}

.header-icon-btn {
  background: none;
  border: none;
  padding: 6px;
  color: #444;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.header-icon-btn:hover {
  opacity: 0.5;
}

@media (max-width: 820px) {
  .header-main__right {
    gap: 16px;
  }
  .header-gnb a {
    font-size: 11px;
  }
  .header-gnb {
    gap: 12px;
  }
  .header-actions {
    padding-left: 12px;
  }
}
@media (max-width: 600px) {
  .header-gnb {
    display: none;
  }
  .header-actions {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 820px) {
  .header-main__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 12px;
    row-gap: 12px;
    padding: 14px 0 10px;
  }

  .header-main__left {
    min-width: 0;
  }

  .header-main__logo-text-only {
    font-size: 12px;
    letter-spacing: 0.22em;
  }

  .header-main__center {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: stretch;
  }

  .header-main__search-bar {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 14px;
    font-size: 13px;
  }

  .header-main__right {
    grid-column: 1 / -1;
    justify-content: space-between;
    gap: 12px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }

  .header-gnb {
    flex: 1;
    min-width: 0;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .header-gnb::-webkit-scrollbar {
    display: none;
  }

  .header-gnb a {
    flex: 0 0 auto;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    font-size: 12px;
    white-space: nowrap;
  }

  .header-actions {
    flex-shrink: 0;
    gap: 4px;
    border-left: none;
    padding-left: 0;
  }

  .hero-carousel {
    width: min(100% - 20px, 1200px);
    padding-top: 16px;
    margin-bottom: 8px;
  }

  .hero-carousel__viewport {
    aspect-ratio: 4 / 5;
    min-height: 420px;
    max-height: none;
    border-radius: 16px;
  }

  .hero-slide__overlay {
    padding: 0 18px 28px;
  }

  .hero-slide__title {
    max-width: 10.5ch;
    margin-bottom: 14px;
    font-size: clamp(2rem, 8.6vw, 2.7rem);
    line-height: 1.18;
  }

  .hero-slide__desc {
    max-width: 28ch;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .hero-carousel__controls {
    right: 18px;
    bottom: 18px;
  }

  .shop-section {
    padding: 56px 0;
  }

  .curator-cameras-section {
    padding: 56px 0;
  }

  .curator-cameras__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .camera-card--magazine {
    gap: 14px;
  }

  .camera-card--magazine .camera-card__media {
    aspect-ratio: 1 / 1.08;
  }

  .camera-card--magazine h3 {
    font-size: 1.15rem;
  }

  .camera-card--magazine .camera-card__note {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .promo-copy {
    gap: 24px;
  }

  .promo-copy__hero {
    gap: 18px;
  }

  .promo-copy__lead {
    font-size: clamp(1.9rem, 8vw, 2.45rem);
    line-height: 1.15;
  }

  .promo-copy__sublead {
    font-size: 0.95rem;
    line-height: 1.72;
  }

  .promo-copy__aside {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: repeat(2, minmax(128px, 1fr));
    gap: 10px;
    min-height: 0;
  }

  .promo-copy__photo {
    position: relative;
    inset: auto;
    width: auto;
    height: 100%;
    transform: none;
  }

  .promo-copy__photo--main {
    grid-row: 1 / span 2;
  }

  .promo-copy__photo--stack-a,
  .promo-copy__photo--stack-b {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .service-assurance__visual--wide {
    min-height: 240px;
  }

  .review-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .review-card {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    align-items: stretch;
  }

  .review-card__photo {
    height: 100%;
    min-height: 132px;
  }

  .review-card__body {
    padding: 14px;
  }

  .review-card__summary {
    margin-top: 8px;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .floating-quick-reserve {
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
  }

  .floating-quick-reserve__text {
    flex: 1;
    min-width: 0;
  }

  .floating-quick-reserve__text strong {
    font-size: 13px;
  }

  .floating-quick-reserve__button {
    white-space: nowrap;
    padding: 12px 14px;
  }

  .reserve-form__field-group {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 560px) {
  .header-gnb {
    display: none;
  }

  .header-main__right {
    justify-content: flex-end;
  }

  .hero-carousel__viewport {
    min-height: 380px;
  }

  .hero-slide__title {
    max-width: 9.5ch;
    font-size: clamp(1.85rem, 9vw, 2.3rem);
  }

  .promo-copy__aside {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 120px;
  }

  .promo-copy__photo--main {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .promo-copy__photo--stack-a {
    grid-column: 1;
    grid-row: 2;
  }

  .promo-copy__photo--stack-b {
    grid-column: 2;
    grid-row: 2;
  }

  .review-card {
    grid-template-columns: 88px minmax(0, 1fr);
  }
}

@media (max-width: 820px) {
  .hero-carousel {
    display: none;
  }

  .site-footer {
    padding: 28px 0 132px;
  }

  .site-footer__inner {
    flex-direction: column;
    gap: 24px;
    padding: 0 12px;
  }

  .site-footer__left,
  .site-footer__right {
    width: 100%;
    min-width: 0;
  }

  .site-footer__right {
    text-align: left;
  }

  .site-footer__brand {
    font-size: 13px;
    letter-spacing: 0.22em;
  }

  .site-footer__buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 20px;
  }

  .site-footer__buttons button {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .site-footer__links {
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-bottom: 16px;
  }

  .site-footer__company-info {
    font-size: 10.5px;
    line-height: 1.75;
    word-break: keep-all;
  }

  .camera-card--magazine {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
  }

  .camera-card--magazine .camera-card__media {
    aspect-ratio: 1 / 1.18;
  }

  .camera-card--magazine .camera-card__body {
    padding: 4px 0 0;
  }

  .camera-card--magazine .camera-card__note {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
  }

  .service-assurance__visual--wide {
    min-height: 300px;
  }

  .promo-copy__aside {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    min-height: 0;
  }

  .promo-copy__photo {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .promo-copy__photo--main {
    display: none;
  }

  .promo-copy__photo--stack-a,
  .promo-copy__photo--stack-b {
    display: block;
  }

  .floating-quick-reserve {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    box-shadow: 0 10px 28px rgba(17, 17, 17, 0.12);
  }

  #linaChatWidget {
    right: 12px;
    bottom: calc(92px + env(safe-area-inset-bottom, 0px));
  }

  .lina-fab {
    width: 52px;
    height: 52px;
  }

  .lina-fab__avatar {
    width: 42px;
    height: 42px;
  }

  .lina-fab__badge {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

  .lina-panel {
    width: min(360px, calc(100vw - 24px));
    right: 12px;
    bottom: calc(152px + env(safe-area-inset-bottom, 0px));
    max-height: min(520px, calc(100vh - 196px));
  }
}

@media (max-width: 560px) {
  .header-main__right {
    padding-top: 0;
    border-top: none;
  }

  .header-actions a:last-child,
  .header-actions button {
    display: none;
  }

  .camera-card--magazine {
    grid-template-columns: 98px minmax(0, 1fr);
    gap: 12px;
  }

  .camera-card--magazine h3 {
    font-size: 1.02rem;
  }

  .camera-card--magazine .camera-card__note {
    -webkit-line-clamp: 3;
    font-size: 0.86rem;
    line-height: 1.52;
  }

  .service-assurance__visual--wide {
    min-height: 260px;
  }

  .promo-copy__aside {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer {
    padding-bottom: 124px;
  }

  .site-footer__inner {
    padding: 0 12px;
  }

  .site-footer__buttons {
    grid-template-columns: 1fr 1fr;
  }

  .floating-quick-reserve {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
  }

  .floating-quick-reserve__button {
    width: 100%;
  }

  #linaChatWidget {
    bottom: calc(132px + env(safe-area-inset-bottom, 0px));
  }

  .lina-panel {
    width: calc(100vw - 24px);
    bottom: calc(184px + env(safe-area-inset-bottom, 0px));
    max-height: min(68vh, calc(100vh - 228px));
  }
}

/* ── Admin Integrated Workspace & Chat Modal ── */

.admin-hub-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.admin-hub-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: #FFF;
  border: 1px solid var(--line);
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
}

.admin-hub-card:hover {
  transform: translateY(-4px);
  border-color: #000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.admin-hub-card__icon {
  font-size: 32px;
}

.admin-hub-card__text h3 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 700;
}

.admin-hub-card__text p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.admin-hub-card__chat-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: #FFF;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
  z-index: 10;
}

.admin-hub-card__chat-btn:hover {
  background: #000;
  color: #FFF;
  border-color: #000;
  transform: scale(1.1);
}

/* ── Chat Modal (Glassmorphism Premium) ── */
.chat-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

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

.chat-modal__content {
  width: 100%;
  max-width: 500px;
  height: min(700px, 90vh);
  background: #FFF;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  animation: modalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-modal__header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFF;
}

.chat-modal__agent-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-modal__icon {
  font-size: 24px;
}

.chat-modal__header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.chat-modal__close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  color: var(--muted);
}

.chat-modal__messages {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #F9F9F9;
}

.chat-bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14.5px;
  line-height: 1.6;
  position: relative;
}

.chat-bubble--user {
  align-self: flex-end;
  background: #000;
  color: #FFF;
  border-bottom-right-radius: 2px;
}

.chat-bubble--agent {
  align-self: flex-start;
  background: #FFF;
  color: #000;
  border: 1px solid var(--line);
  border-bottom-left-radius: 2px;
}

.chat-modal__footer {
  padding: 20px 24px;
  background: #FFF;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 10px;
}

.chat-modal__footer input {
  flex: 1;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s;
}

.chat-modal__footer input:focus {
  border-color: #000;
}

.chat-modal__footer button {
  padding: 0 24px;
  background: #000;
  color: #FFF;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}

.chat-modal__footer button:hover {
  opacity: 0.8;
}

.chat-bubble__time {
  display: block;
  font-size: 10px;
  margin-top: 4px;
  opacity: 0.6;
}
