/* ============================================================
   짜요네 펫시터 — Stylesheet
   Sections:
     1) Design Tokens (CSS variables)
     2) Reset & Base
     3) Layout (header, main, footer)
     4) Components (card, button, list, hero, ...)
     5) Utilities
     6) Responsive
   ============================================================ */

/* ── Fonts (preconnect는 HTML head에서 처리) ─────────────────── */
@font-face { font-family: ''; src: local(''); } /* placeholder, see HTML */

/* ============================================================
   1) DESIGN TOKENS
   ============================================================ */
:root {
  /* Color */
  --color-primary:      #4a7c5f;
  --color-primary-600:  #3e6a51;
  --color-primary-700:  #346045;
  --color-primary-50:   #e8f4ee;       /* hover bg, highlight band 통합 */
  --color-accent:       #e8956d;
  --color-accent-700:   #c9784f;
  --color-blue:         #24417c;
  --color-blue-700:     #1c3360;

  --color-bg:           #fffaf4;
  --color-surface:      #ffffff;
  --color-text:         #242824;
  --color-muted:        #5a5a5a;       /* AA 대비 향상 */
  --color-border:       #e5e0d8;
  --color-ink-soft:     #f8f2e8;
  --color-shadow-green: rgba(38, 70, 50, 0.18);

  --color-notice-bg:    #fff8e1;
  --color-notice-border:#ffe082;
  --color-notice-text:  #5d4037;

  /* Typography scale */
  --text-xs:   0.75rem;     /* 12 */
  --text-sm:   0.875rem;    /* 14 */
  --text-base: 1rem;        /* 16 */
  --text-md:   1.0625rem;   /* 17 */
  --text-lg:   1.25rem;     /* 20 */
  --text-xl:   1.5rem;      /* 24 */
  --text-2xl:  1.75rem;     /* 28 */

  --leading-tight:  1.3;
  --leading-normal: 1.6;
  --leading-loose:  1.8;

  --font-sans: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-nav: 'Quicksand', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Spacing scale (4px grid) */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-7:  32px;
  --space-8:  40px;
  --space-9:  56px;

  /* Radius / Shadow / Layer */
  --radius-sm: 8px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 12px 34px rgba(52, 44, 30, 0.08);
  --shadow-lg: 0 26px 64px rgba(40, 51, 36, 0.16);

  --z-header: 100;

  /* Layout */
  --container: 720px;

  /* Motion */
  --transition: 0.2s ease;
}

/* ============================================================
   2) RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overscroll-behavior-x: none;
}

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  touch-action: pan-y;
  padding-bottom: calc(120px + env(safe-area-inset-bottom));
}

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

a { color: inherit; }

/* Global focus ring (keyboard users) */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 4px;
}
a:focus-visible, button:focus-visible { outline-offset: 3px; }

/* ============================================================
   3) LAYOUT — Header / Main / Footer
   ============================================================ */
.site-header {
  background: rgba(255, 250, 244, 0.92);
  border-bottom: 1px solid rgba(229, 224, 216, 0.72);
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  box-shadow: 0 8px 28px rgba(52, 44, 30, 0.06);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-5);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 68px;
}

.site-logo {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--color-primary);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  padding: 6px 4px 6px 0;
  min-height: 44px;
}
.site-logo__name {
  font-size: 1.18rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
}
.site-logo__sub {
  font-size: 1.03rem;
  line-height: 1.25;
  color: var(--color-muted);
  font-weight: 500;
}

.site-nav {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: calc(var(--z-header) + 20);
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(540px, calc(100vw - 24px));
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: translate3d(-50%, 0, 0);
  transition: none;
  will-change: transform;
  backface-visibility: hidden;
  contain: paint;
  isolation: isolate;
  touch-action: pan-y;
}
.site-nav::before {
  content: none;
}
.site-nav__list {
  position: relative;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  padding: 6px;
  margin: 0;
  width: 100%;
  max-width: none;
  min-height: 68px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(145, 190, 163, 0.18)),
    rgba(62, 104, 79, 0.18);
  border: 0;
  border-radius: 22px;
  box-shadow: none;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  background-clip: padding-box;
  isolation: isolate;
  overflow: hidden;
}
.site-nav__list::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 34%, transparent 62%),
    linear-gradient(315deg, rgba(38, 82, 54, 0.08), transparent 42%);
  box-shadow: none;
}
.site-nav__list li { display: flex; min-width: 0; position: relative; z-index: 1; }
.site-nav__link {
  position: relative;
  font-family: var(--font-nav);
  text-decoration: none;
  color: rgba(42, 57, 48, 0.86);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0 var(--space-2);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
  letter-spacing: 0;
}
.site-nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 7px;
  width: 18px;
  height: 3px;
  background: transparent;
  border-radius: 999px;
  transition: background 0.18s ease, transform 0.18s ease;
  transform: translateX(-50%) scaleX(0.4);
  transform-origin: center;
}
.site-nav__link:hover { color: var(--color-text); }
.site-nav__link.is-active,
.site-nav__link[aria-current="page"] {
  color: #24513a;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), rgba(180, 218, 196, 0.26)),
    rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.44);
  font-weight: 700;
}
.site-nav__link.is-active::after,
.site-nav__link[aria-current="page"]::after {
  background: var(--color-primary);
  transform: translateX(-50%) scaleX(1);
}

.site-main {
  flex: 1;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(16px, 4vw, var(--space-5)) var(--space-9);
  touch-action: pan-y;
}

.site-main--home {
  max-width: 1180px;
}

.site-main--compact-end {
  flex: 0 0 auto;
  padding-bottom: var(--space-4);
}

@media (prefers-reduced-motion: no-preference) {
  body.page-enter-prep .site-main,
  body.page-enter-prep .site-footer {
    opacity: 0;
  }

  body.page-enter-next .site-main,
  body.page-enter-next .site-footer,
  body.page-enter-prev .site-main,
  body.page-enter-prev .site-footer,
  body.page-exit-next .site-main,
  body.page-exit-next .site-footer,
  body.page-exit-prev .site-main,
  body.page-exit-prev .site-footer {
    transition:
      opacity 0.22s ease,
      transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }

  body.page-enter-next .site-main,
  body.page-enter-next .site-footer {
    opacity: 0;
    transform: translate3d(24px, 0, 0);
  }

  body.page-enter-prev .site-main,
  body.page-enter-prev .site-footer {
    opacity: 0;
    transform: translate3d(-24px, 0, 0);
  }

  body.page-enter-active .site-main,
  body.page-enter-active .site-footer {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  body.page-exit-next .site-main,
  body.page-exit-next .site-footer {
    opacity: 0;
    transform: translate3d(-28px, 0, 0);
  }

  body.page-exit-prev .site-main,
  body.page-exit-prev .site-footer {
    opacity: 0;
    transform: translate3d(28px, 0, 0);
  }

  body.page-nav-lock .site-nav,
  body.page-enter-prep .site-nav,
  body.page-enter-next .site-nav,
  body.page-enter-prev .site-nav,
  body.page-exit-next .site-nav,
  body.page-exit-prev .site-nav {
    animation: none;
    transition: none;
    transform: translate3d(-50%, 0, 0);
  }
}

.site-footer {
  background: transparent;
  border-top: 0;
  padding: var(--space-2) var(--space-4) var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-muted);
}
.site-footer__inner {
  width: fit-content;
  max-width: calc(100vw - 32px);
  margin: 0 auto;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  backdrop-filter: blur(10px);
}
.site-footer__copy {
  color: #9a9a9a;
  font-size: 0.76rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;
  line-height: 1.25;
  white-space: nowrap;
}
.site-footer__admin {
  color: #888;
  text-decoration: none;
  padding: 2px 6px;
  border-radius: 999px;
}
.site-footer__admin:hover,
.site-footer__admin:focus-visible {
  color: var(--color-primary);
  background: var(--color-primary-50);
}

/* ============================================================
   4) COMPONENTS
   ============================================================ */

/* — Page header — */
.page-header {
  padding: var(--space-8) 0 var(--space-4);
  border-bottom: 0;
  margin-bottom: var(--space-6);
}
.page-header__title {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 1.12;
  font-weight: 800;
  color: var(--color-primary-700);
  word-break: keep-all;
}
.page-header__title::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary) 0%, rgba(74, 124, 95, 0.12) 100%);
}
.page-header__title--standalone {
  margin: var(--space-7) 0 var(--space-7);
}

/* — Section wrapper — */
.section { margin-bottom: var(--space-7); }
.section--top { margin-top: var(--space-6); }

.section-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #161b16;
  margin-bottom: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  letter-spacing: 0;
  word-break: keep-all;
}
.section-title::before {
  content: '';
  width: 10px;
  height: 24px;
  border-radius: 999px;
  background: var(--color-primary);
  flex: 0 0 auto;
}
.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

/* — Home hero — */
.home-hero {
  position: relative;
  min-height: 560px;
  margin: var(--space-6) 0 var(--space-7);
  overflow: hidden;
  border-radius: 22px;
  background: #213325;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(20, 31, 22, 0.82) 0%, rgba(20, 31, 22, 0.58) 42%, rgba(20, 31, 22, 0.14) 100%),
    linear-gradient(0deg, rgba(20, 31, 22, 0.44) 0%, rgba(20, 31, 22, 0) 54%);
}
.hero-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #213325;
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: -26px;
  background: url('/images/hero.jpg') center center / cover no-repeat;
  filter: blur(18px);
  opacity: 0.74;
  transform: scale(1.04);
}
.hero-image picture,
.hero-image img {
  width: 100%;
  height: 100%;
}
.hero-image picture {
  display: block;
  position: relative;
  z-index: 1;
}
.hero-image img {
  object-fit: contain;
  object-position: center top;
  transform: none;
}
.home-hero__content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  max-width: 720px;
  padding: 64px 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.intro {
  padding: 0;
  text-align: left;
}
.intro__title {
  max-width: 560px;
  font-size: 48px;
  line-height: 1.12;
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-5);
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: normal;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
}
.intro__desc {
  max-width: 500px;
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.85;
  font-weight: 500;
  word-break: keep-all;
  overflow-wrap: normal;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.52);
}

/* — Action grid (home quick actions) — */
.action-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: var(--space-7) 0 0;
  align-items: stretch;
}
.action-grid > * { height: 100%; }

/* — Card — */
.card {
  background: var(--color-surface);
  border: 1px solid rgba(229, 224, 216, 0.86);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: 0 18px 42px rgba(52, 44, 30, 0.07);
}
.card--art {
  --card-art-image: none;
  background-color: var(--color-surface);
  background-image: var(--card-art-image);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center bottom;
  overflow: hidden;
}
.card--service-art { --card-art-image: url('/images/service.png'); }
.card--cost-art { --card-art-image: url('/images/cost.png'); }
.card--booking-art { --card-art-image: url('/images/booking.png'); }
.card--prepare-art { --card-art-image: url('/images/prepare.png'); }
.card--location-art { --card-art-image: url('/images/location.png'); }
.card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-3);
}
.card__text {
  line-height: var(--leading-loose);
  font-size: var(--text-sm);
}

/* — Action button (home) — */
.action-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-3);
  text-align: center;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 0.98rem;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.32);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  min-height: 78px;
  line-height: 1.35;
  word-break: keep-all;
}
.action-btn::before,
.link-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.08) 44%, rgba(255, 255, 255, 0.18) 100%);
  opacity: 0.78;
}
.action-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}
.action-btn--primary {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.5);
}
.action-btn--primary:hover { background: rgba(255, 255, 255, 0.36); }
.action-btn--accent {
  background: rgba(232, 149, 109, 0.34);
  border-color: rgba(255, 208, 184, 0.48);
}
.action-btn--accent:hover { background: rgba(232, 149, 109, 0.44); }

/* — Link Card — */
.link-card {
  overflow: hidden;
  isolation: isolate;
  background: rgba(22, 39, 27, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  text-decoration: none;
  color: #fff;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
  font-size: 0.98rem;
  min-height: 78px;
  line-height: 1.35;
  word-break: keep-all;
}
.link-card::after {
  content: '↗';
  position: absolute;
  top: 10px; right: 14px;
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  opacity: 0.6;
}
.link-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(22, 39, 27, 0.44);
}
.link-card__title {
  font-weight: 800;
  font-size: 0.98rem;
  color: #fff;
}
.link-card__desc { font-size: var(--text-sm); color: var(--color-muted); margin-top: 2px; }

.section--pricing {
  max-width: 980px;
  margin: 0 auto var(--space-9);
}
.section--local {
  max-width: 980px;
  margin: 0 auto var(--space-8);
}
.section--pricing .section-title {
  align-items: flex-end;
  color: var(--color-primary-700);
  font-size: var(--text-xl);
}
.section--pricing .card {
  border: 0;
  border-radius: 18px;
  padding: var(--space-7);
  box-shadow: 0 24px 70px rgba(52, 44, 30, 0.11);
}
.section--pricing .price-item {
  align-items: flex-start;
  min-height: 0;
  padding: var(--space-4) 0;
}
.section--pricing .price-item__name {
  font-size: var(--text-md);
  color: var(--color-text);
}
.section--pricing .price-item__desc {
  margin-top: 4px;
}
.section--pricing .price-item__amount {
  align-self: flex-start;
  margin-top: 1px;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  background: var(--color-primary-50);
  color: var(--color-primary-700);
  line-height: 1.35;
}

/* — CTA Button — */
.cta-btn {
  display: block;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 17px var(--space-4);
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: var(--text-base);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-bottom: var(--space-3);
  min-height: 56px;
  box-shadow: 0 14px 34px rgba(52, 96, 69, 0.18);
}
.site-main--compact-end > .cta-btn:last-child {
  margin-bottom: 0;
}
.cta-btn:hover {
  background: var(--color-primary-700);
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(52, 96, 69, 0.22);
}
.cta-btn--secondary { background: var(--color-blue); }
.cta-btn--secondary:hover { background: var(--color-blue-700); }
.cta-btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.cta-btn--outline:hover { background: var(--color-primary); color: #fff; }

/* — Route cards — */
.route-actions {
  width: 100%;
  margin-bottom: var(--space-3);
}
.route-actions__title {
  margin: 0 0 var(--space-2);
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 800;
  line-height: var(--leading-tight);
}
.route-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  width: 100%;
  max-width: 350px;
}
.route-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 92px;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  padding: 12px 10px;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(52, 44, 30, 0.13);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition), border-color var(--transition), background var(--transition);
}
.route-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(52, 44, 30, 0.18);
  filter: saturate(1.04);
}
.route-card__logo {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.route-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}
.route-card__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
  opacity: 0.76;
  overflow-wrap: anywhere;
}
.route-card__title {
  display: block;
  margin-top: 3px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.route-card__desc {
  display: block;
  margin-top: 4px;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
  opacity: 0.82;
  overflow-wrap: anywhere;
}
.route-card--kakao {
  background: #fee66c;
  border-color: #ecd05d;
  color: #2e2717;
}
.route-card--naver {
  background: #03c75a;
  border-color: #03b350;
  color: #fff;
}
.cta-btn--premium {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(74, 124, 95, 0.24);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(244,250,247,0.94));
  color: var(--color-primary-700);
  box-shadow: 0 18px 46px rgba(52, 44, 30, 0.12);
}
.cta-btn--premium::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #03c75a, var(--color-primary));
}
.cta-btn--premium::after {
  content: "→";
  position: relative;
  font-size: 1.05rem;
  font-weight: 800;
}
.cta-btn--premium:hover {
  background:
    linear-gradient(135deg, #fff, #f1faf5);
  color: var(--color-primary-700);
  box-shadow: 0 22px 54px rgba(52, 96, 69, 0.17);
}

/* — Pricing list — */
.price-list { display: flex; flex-direction: column; }
.price-item {
  display: flex;
  align-items: flex-start;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
  gap: var(--space-3);
}
.price-item:last-child { border-bottom: none; }
.price-item__info { flex: 1; }
.price-item__name { font-weight: 700; font-size: var(--text-base); }
.price-item__desc { font-size: var(--text-sm); color: var(--color-muted); margin-top: 2px; }
.price-item__amount {
  font-weight: 700;
  color: var(--color-blue);
  font-size: var(--text-base);
  white-space: nowrap;
}

/* — Info row (key-value pairs) — */
.info-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
}
.info-row:last-child { border-bottom: none; }
.info-row__label {
  font-weight: 700;
  min-width: 90px;
  font-size: 0.95rem;
  color: var(--color-primary);
}
.info-row__value { font-size: 0.95rem; line-height: var(--leading-normal); }

.booking-card {
  padding-top: var(--space-5);
  padding-bottom: var(--space-5);
}
.booking-card .callout {
  margin-bottom: var(--space-3);
  color: var(--color-text);
  font-size: 1rem;
  line-height: var(--leading-normal);
}
.booking-card .info-row {
  align-items: center;
  padding: 12px 0;
}
.booking-card .info-row__label {
  color: var(--color-primary);
  flex: 0 0 104px;
}
.booking-card .info-row__value {
  color: var(--color-text);
  font-size: 0.96rem;
}
.booking-phone {
  color: var(--color-text);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: var(--leading-normal);
  text-decoration: none;
}
.booking-phone:hover {
  color: var(--color-primary);
  text-decoration: underline;
}
.booking-note {
  color: var(--color-text);
  font-size: inherit;
  line-height: inherit;
}

/* — Info list (bulleted/numbered) — */
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.95rem;
  line-height: var(--leading-normal);
  margin-bottom: 10px;
}
.info-list li:last-child { margin-bottom: 0; }
.info-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-weight: 700;
}

ol.info-list { list-style: none; counter-reset: item; padding: 0; }
ol.info-list li { counter-increment: item; padding-left: 32px; }
ol.info-list li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 2px;
  background: var(--color-primary);
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: var(--text-xs);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* — Map wrap — */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(229, 224, 216, 0.86);
  background: #f1ede7;
  box-shadow: 0 18px 42px rgba(52, 44, 30, 0.07);
}
.map-wrap iframe {
  width: 100%;
  height: 280px;
  display: block;
  border: none;
}

/* — Directions grid — */
.directions-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.directions-grid .info-stack {
  background: var(--color-surface);
  border: 1px solid rgba(229, 224, 216, 0.86);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: 0 18px 42px rgba(52, 44, 30, 0.07);
}
.directions-grid .info-stack.card--art {
  background-color: var(--color-surface);
  background-image: var(--card-art-image);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center bottom;
  overflow: hidden;
}
.directions-grid .info-stack .info-row:first-child { padding-top: 0; }
.directions-grid .info-stack .info-row:last-child {
  padding-bottom: 0; border-bottom: none;
}
.directions-grid .phone {
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: var(--leading-normal);
  min-height: 0;
}
.directions-grid .info-row--phone {
  align-items: center;
}

/* — Notice box — */
.notice {
  background: var(--color-notice-bg);
  border: 1px solid var(--color-notice-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-notice-text);
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
}

/* — Highlight band — */
.highlight-band {
  background: var(--color-primary-50);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-5);
  font-size: var(--text-sm);
  line-height: var(--leading-loose);
}

/* — Phone link — */
.phone {
  color: var(--color-blue);
  font-weight: 700;
  text-decoration: none;
  font-size: var(--text-md);
  line-height: var(--leading-normal);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

/* — Quote callout — */
.callout {
  font-weight: 700;
  font-size: var(--text-base);
  margin-bottom: var(--space-3);
  color: var(--color-primary);
}

/* ============================================================
   5) UTILITIES
   ============================================================ */
.u-text-center { text-align: center; }
.u-mt-6 { margin-top: var(--space-6); }
.u-mb-7 { margin-bottom: var(--space-7); }
.u-rounded { border-radius: var(--radius-md); overflow: hidden; }

/* Visually hidden (스크린리더 전용) */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* — Skip link (screen readers / keyboard users) — */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-4);
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  z-index: calc(var(--z-header) + 10);
  transition: top var(--transition);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.skip-link:focus {
  top: var(--space-3);
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* — Two-column layout (desktop only) — */
.col-2 { display: contents; }

/* ============================================================
   6) RESPONSIVE
   ============================================================ */

/* Small phones */
@media (max-width: 720px) {
  .action-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 899px) {
  .site-header__inner {
    height: auto;
    min-height: 72px;
    padding: 10px var(--space-4) 0;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .site-logo {
    flex: 0 0 100%;
    min-height: 48px;
    padding-right: 0;
  }

  .site-nav__link {
    font-size: 0.92rem;
  }
}

@media (max-width: 560px) {
  .site-header__inner {
    height: auto;
    min-height: 72px;
    padding: 10px var(--space-4) 0;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .site-logo {
    flex-basis: 100%;
    min-height: 48px;
    padding-right: 0;
  }

  .site-logo__name {
    font-size: 1.32rem;
  }

  .site-logo__sub {
    font-size: 1.05rem;
  }

  .site-nav__link {
    font-size: 0.92rem;
  }

  .site-main--home {
    padding-inline: var(--space-4);
  }

  .home-hero {
    min-height: 0;
    margin: var(--space-4) 0 var(--space-7);
    border-radius: 18px;
  }

  .home-hero::before {
    background:
      linear-gradient(180deg, rgba(20, 31, 22, 0.24) 0%, rgba(20, 31, 22, 0.52) 43%, rgba(20, 31, 22, 0.9) 100%);
  }

  .hero-image img {
    object-fit: contain;
    object-position: center top;
  }

  .hero-image picture {
    width: 100%;
    height: auto;
    aspect-ratio: 966 / 600;
    margin: 0;
  }

  .home-hero__content {
    min-height: 0;
    padding: clamp(210px, 61vw, 344px) var(--space-4) var(--space-4);
  }

  .intro__title {
    font-size: 31px;
    line-height: 1.14;
    margin-bottom: var(--space-4);
  }

  .intro__desc {
    font-size: var(--text-sm);
    line-height: 1.78;
  }

  .action-grid {
    gap: var(--space-2);
    margin-top: var(--space-4);
  }

  .action-btn,
  .link-card {
    min-height: 60px;
    padding: var(--space-2) var(--space-3);
  }

  .section--pricing .section-title {
    font-size: 1.35rem;
  }

  .section--pricing .card {
    border-radius: var(--radius-md);
    padding: var(--space-5);
  }

  .section--pricing .price-item {
    align-items: flex-start;
    min-height: 0;
  }

  .price-item,
  .info-row {
    flex-direction: column;
    gap: var(--space-1);
  }

  .price-item__amount {
    align-self: flex-start;
  }

  .info-row__label {
    min-width: 0;
  }

  .directions-grid .info-row--phone {
    flex-direction: row;
    align-items: center;
    gap: var(--space-3);
  }

  .directions-grid .info-row--phone .info-row__label {
    flex: 0 0 90px;
  }

  .route-actions {
    margin: var(--space-4) 0 var(--space-3);
  }

  .route-actions__title {
    margin-bottom: 10px;
    font-size: 0.98rem;
  }

  .route-card-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    max-width: none;
  }

  .route-card {
    min-height: 58px;
    gap: 12px;
    overflow: hidden;
    border-color: rgba(229, 224, 216, 0.92);
    background: #fff;
    color: var(--color-text);
    padding: 10px 42px 10px 14px;
    box-shadow: 0 10px 24px rgba(52, 44, 30, 0.08);
  }

  .route-card::before {
    content: "";
    position: absolute;
    inset: 12px auto 12px 0;
    width: 4px;
    border-radius: 0 999px 999px 0;
    background: var(--route-accent);
  }

  .route-card::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(52, 44, 30, 0.42);
    border-bottom: 2px solid rgba(52, 44, 30, 0.42);
    transform: translateY(-50%) rotate(-45deg);
  }

  .route-card__logo {
    width: 32px;
    height: 32px;
  }

  .route-card__eyebrow,
  .route-card__desc {
    display: none;
  }

  .route-card__title {
    margin-top: 0;
    color: var(--color-text);
    font-size: 0.98rem;
    line-height: 1.3;
  }

  .route-card--kakao {
    --route-accent: #fee66c;
    border-color: rgba(236, 208, 93, 0.42);
    background: #fffdfa;
  }

  .route-card--naver {
    --route-accent: #03c75a;
    border-color: rgba(3, 199, 90, 0.24);
    background: #fbfffc;
  }

  .booking-card .info-row {
    align-items: flex-start;
    padding: var(--space-3) 0;
  }

  .booking-card .info-row__label {
    flex-basis: auto;
  }

  .site-footer {
    padding: var(--space-2) var(--space-3);
  }

  .site-footer__inner {
    padding: 6px 10px;
  }
}

@media (max-width: 400px) {
  .site-nav__link { padding: 0 4px; font-size: 0.88rem; }
  .action-grid { gap: var(--space-2); }
  .route-card { min-height: 56px; gap: 10px; padding: 10px 40px 10px 14px; }
  .route-card__logo { width: 30px; height: 30px; }
  .route-card__title { font-size: 0.94rem; }
  .site-logo__sub { font-size: 1rem; }
}

@media (max-width: 360px) {
  .site-nav__link { font-size: 0.84rem; }
  .site-logo__sub { font-size: 0.96rem; }
}

/* Tablet+ (>=720px) — gallery 4-cols if used, action-grid stays 3-cols */
@media (min-width: 720px) {
  .action-grid { grid-template-columns: repeat(3, 1fr); }
  .action-grid > :first-child { grid-column: auto; }
  .route-card-grid { max-width: none; }
}

/* Desktop (>=900px) — wider container, side-by-side intro */
@media (min-width: 900px) {
  .site-header__inner,
  .site-main { max-width: 960px; }

  body {
    padding-bottom: 168px;
  }

  .site-nav {
    left: 50%;
    right: auto;
    bottom: 64px;
    width: min(540px, calc(100vw - 48px));
    min-height: 0;
    padding: 0;
    transform: translate3d(-50%, 0, 0);
  }

  .site-nav__list {
    max-width: none;
    min-height: 68px;
  }

  /* Directions: map left, info right (gap-style, both rounded) */
  .directions-grid {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: var(--space-4);
    align-items: stretch;
  }
  .directions-grid .map-wrap iframe { height: 100%; min-height: 380px; }
  .directions-grid .info-stack {
    display: flex; flex-direction: column; justify-content: center;
  }

  /* Page header more breathing room */
  .page-header { padding-top: var(--space-8); margin-bottom: var(--space-7); }
}

/* Wide desktop (>=1100px) */
@media (min-width: 1100px) {
  .site-header__inner,
  .site-main { max-width: 1080px; }

  .site-main--home {
    max-width: 1180px;
  }
}

/* Reduced motion: respect user preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .action-btn:hover,
  .link-card:hover { transform: none; }
}
