
:root {
  --bg: #f5f9ff;
  --surface: #ffffff;
  --surface-soft: #edf5ff;
  --surface-blue: #e7f1ff;
  --text: #1f2937;
  --sub: #586679;
  --muted: #768398;
  --line: #d8e5f4;
  --primary: #1787ff;
  --primary-dark: #123ec6;
  --accent: #63b3ff;
  --accent-soft: #dff0ff;
  --shadow: 0 18px 45px rgba(27, 61, 118, 0.10);
  --radius-lg: 30px;
  --radius-md: 20px;
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  letter-spacing: -0.02em;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(216, 229, 244, 0.95);
}
.nav-wrap {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--primary);
  color: white;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.brand strong { display: block; font-size: 21px; line-height: 1.2; }
.brand small { display: block; color: var(--muted); font-weight: 700; margin-top: 2px; }
.nav { display: flex; align-items: center; gap: 8px; }
.nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #3f4b5c;
  font-weight: 800;
  font-size: 15px;
}
.nav a:hover { background: #eaf3ff; color: var(--primary-dark); }


.hero {
  position: relative;
  overflow: hidden;
  color: var(--text);
  padding: 54px 0 36px;
  background:
    radial-gradient(circle at 12% 18%, rgba(23, 135, 255, 0.10), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(99, 179, 255, 0.22), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f2f7ff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -6%;
  width: 68%;
  height: 115%;
  border-radius: 50%;
  border: 34px solid rgba(114, 185, 255, 0.36);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: -14%;
  bottom: -46%;
  width: 85%;
  height: 75%;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(233, 243, 255, 0.85), rgba(221, 236, 255, 0.92));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 38px;
}
.eyebrow, .section-label {
  margin: 0 0 10px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.22em;
}
.hero h1 {
  margin: 0;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}
.hero-text {
  margin: 22px 0 0;
  max-width: 560px;
  color: var(--sub);
  font-size: 18px;
  font-weight: 600;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: white; box-shadow: 0 12px 25px rgba(23, 135, 255, 0.24); }
.btn-primary:hover { background: linear-gradient(135deg, var(--primary-dark) 0%, #0f2ea0 100%); }
.btn-light { background: rgba(255,255,255,0.88); color: var(--primary-dark); border: 1px solid rgba(23,135,255,0.16); box-shadow: 0 10px 22px rgba(27, 61, 118, 0.08); }
.wide { width: 100%; }

.hero-visual {
  position: relative;
  min-height: 440px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(27, 61, 118, 0.18);
  border: 1px solid rgba(216, 229, 244, 0.85);
}
.hero-visual img { width: 100%; height: 440px; object-fit: cover; }
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(15, 33, 58, 0.24));
}
.hero-card {
  position: absolute;
  display: grid;
  gap: 3px;
  min-width: 190px;
  border-radius: 20px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.96);
  color: var(--text);
  box-shadow: 0 14px 32px rgba(27, 61, 118, 0.14);
}
.hero-card span { color: var(--muted); font-size: 14px; font-weight: 800; }
.hero-card strong { font-size: 20px; letter-spacing: -0.03em; }
.hero-card-bottom { left: 22px; bottom: 22px; }
.hero-card-price { right: 22px; bottom: 22px; }
.quick-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.55fr 1.1fr 1.05fr;
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.20);
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}
.quick-strip div { padding: 20px 22px; background: rgba(255,255,255,0.10); }
.quick-strip span { display: block; color: #bfdbfe; font-size: 13px; font-weight: 900; margin-bottom: 4px; }
.quick-strip strong { display: block; font-size: 17px; }

.section { padding: 70px 0; }
.section h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.18;
  letter-spacing: -0.05em;
}
.section p { color: var(--sub); font-size: 17px; font-weight: 600; }
.split-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 34px;
  align-items: center;
}
.section-copy p:not(.section-label) { margin: 18px 0 0; }
.info-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}
.info-list div {
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border-radius: 17px;
  background: white;
  border: 1px solid var(--line);
}
.info-list span { color: var(--muted); font-weight: 900; font-size: 14px; }
.info-list strong { font-size: 17px; }
.compact { max-width: 520px; }
.photo-stack {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 16px;
  align-items: end;
}
.photo-stack figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: white;
}
.store-photo img { height: 430px; width: 100%; object-fit: cover; }
.parking-photo img { height: 320px; width: 100%; object-fit: cover; }
.photo-stack figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.92);
  color: var(--text);
  font-weight: 900;
  font-size: 15px;
}

.about-modern {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}
.about-info-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-info-card div {
  padding: 20px;
  border-radius: 20px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.about-info-card span { display: block; color: var(--muted); font-size: 14px; font-weight: 900; margin-bottom: 5px; }
.about-info-card strong { display: block; font-size: 18px; line-height: 1.35; }

.fleet-section { background: var(--surface-soft); }
.section-head-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}
.section-head-row p:last-child { margin: 0; }
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.five-cards { grid-template-columns: repeat(5, 1fr); }
.fleet-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.fleet-card img { width: 100%; height: 190px; object-fit: contain; background: #f7fafc; padding: 10px; }
.fleet-card div { padding: 20px; }
.fleet-card h3 { margin: 0 0 8px; font-size: 24px; }
.fleet-card p { margin: 0; min-height: 52px; color: var(--sub); font-size: 15px; }
.fleet-card strong { display: block; margin-top: 16px; color: var(--primary); font-size: 27px; font-weight: 950; letter-spacing: -0.05em; }

.reservation-section { background: white; }
.reservation-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 34px;
  align-items: start;
}
.reservation-info {
  position: sticky;
  top: 100px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #f7fbff 0%, #edf5ff 100%);
  border: 1px solid var(--line);
}
.reservation-info p:not(.section-label) { margin: 18px 0 0; }
.reservation-summary {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.reservation-summary div {
  padding: 15px 16px;
  border-radius: 17px;
  background: white;
  border: 1px solid var(--line);
}
.reservation-summary span { display: block; color: var(--muted); font-size: 14px; font-weight: 900; }
.reservation-summary strong { display: block; margin-top: 2px; font-size: 17px; }
.form-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: block; margin: 0 0 8px; color: var(--text); font-size: 15px; font-weight: 900; }
input, select, textarea {
  width: 100%;
  margin: 0 0 16px;
  padding: 14px 15px;
  border-radius: 15px;
  border: 1px solid #cfd9e4;
  background: #fbfdff;
  color: var(--text);
  font: inherit;
  font-size: 16px;
  font-weight: 650;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.13);
}
.form-message { margin: 12px 0 0; font-weight: 900; }
.success { color: #167342; }
.error { color: #c21f1f; }

.contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 22px;
  align-items: stretch;
}
.contact-card, .map-wrap {
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-card { padding: 30px; display: flex; flex-direction: column; }
.contact-card .btn { margin-top: 24px; align-self: flex-start; }
.map-wrap { overflow: hidden; min-height: 430px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 430px; border: 0; display: block; }

.footer { background: linear-gradient(135deg, #1137b8 0%, #1787ff 100%); color: #f5f9ff; }
.footer-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 800;
}
.footer p { margin: 0; }

.admin-body { padding: 36px 0 60px; }
.admin-container { display: grid; gap: 24px; }
.admin-topbar, .dashboard-header {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.admin-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.admin-login-card { max-width: 480px; }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 980px; }
th, td { padding: 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: #f8fafc; }
.status-select, .small-btn {
  padding: 8px 10px; border-radius: 10px; border: 1px solid #cbd5e1; font-size: 14px;
}
.small-btn { background: white; cursor: pointer; }
.empty-message { margin-top: 18px; color: var(--muted); }
.hidden { display: none !important; }

@media (max-width: 980px) {
  .hero-grid, .split-grid, .section-head-row, .reservation-grid, .contact-grid, .about-modern { grid-template-columns: 1fr; }
  .reservation-info { position: static; }
  .quick-strip, .fleet-grid, .five-cards, .about-info-card { grid-template-columns: repeat(2, 1fr); }
  .photo-stack { grid-template-columns: 1fr 1fr; }
  .store-photo img, .parking-photo img { height: 320px; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 24px, 1120px); }
  .nav { display: none; }
  .nav-wrap { height: 74px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand strong { font-size: 19px; }
  .brand small { font-size: 12px; }
  .hero { padding: 38px 0 26px; }
  .hero-visual, .hero-visual img { min-height: 320px; height: 320px; }
  .quick-strip, .fleet-grid, .five-cards, .photo-stack, .form-row, .about-info-card { grid-template-columns: 1fr; }
  .section { padding: 50px 0; }
  .fleet-card img { height: 190px; }
  .info-list div { grid-template-columns: 1fr; gap: 4px; }
  .footer-wrap { flex-direction: column; align-items: flex-start; justify-content: center; padding: 20px 0; }
}

/* Logo and phone number refinements */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  width: clamp(210px, 22vw, 340px);
  height: 58px;
  object-fit: contain;
  object-position: left center;
  display: block;
}
.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: -0.02em;
  box-shadow: 0 10px 22px rgba(23, 135, 255, 0.18);
  white-space: nowrap;
}
.phone-link:hover { background: var(--primary-dark); }
.btn-outline {
  background: #fff;
  color: var(--primary-dark);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn-outline:hover { background: #eef5ff; }
.contact-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.contact-card .contact-actions .btn { margin-top: 0; }

@media (max-width: 720px) {
  .header-right { gap: 8px; }
  .brand-logo { width: 170px; height: 48px; }
  .phone-link { min-height: 38px; padding: 8px 11px; font-size: 13px; }
}

@media (max-width: 460px) {
  .nav-wrap { height: auto; padding: 10px 0; flex-wrap: wrap; }
  .header-right { width: 100%; justify-content: flex-start; }
  .phone-link { width: 100%; }
}

/* Natural logo integration + cleaner phone inquiry UI */
.logo-brand {
  flex: 0 0 auto;
  padding: 4px 10px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(207, 219, 232, 0.9);
  box-shadow: 0 8px 18px rgba(27, 61, 118, 0.08);
}
.logo-brand:hover {
  border-color: rgba(23, 135, 255, 0.28);
  box-shadow: 0 10px 22px rgba(23, 135, 255, 0.12);
}
.brand-logo {
  width: clamp(210px, 22vw, 340px);
  height: 58px;
  object-fit: contain;
  object-position: left center;
}
.phone-link {
  gap: 2px;
  flex-direction: column;
  align-items: flex-start;
  min-height: 48px;
  padding: 8px 16px;
  border: 1px solid rgba(23, 135, 255, 0.18);
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 10px 24px rgba(27, 61, 118, 0.08);
}
.phone-link span {
  font-size: 12px;
  line-height: 1;
  color: var(--muted);
  font-weight: 900;
}
.phone-link strong {
  font-size: 16px;
  line-height: 1.2;
  color: var(--primary);
  font-weight: 950;
}
.phone-link:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.phone-link:hover span,
.phone-link:hover strong { color: #fff; }
.btn-call { gap: 6px; }
.btn-call strong { font-weight: 950; }
.call-box {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, #eef6ff 0%, #ffffff 100%);
  border: 1px solid rgba(23, 135, 255, 0.14);
}
.call-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--primary);
  color: white;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(23, 135, 255, 0.18);
}
.call-box span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 1px;
}
.call-box a {
  display: inline-block;
  color: var(--primary);
  font-size: 26px;
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -0.04em;
}
.call-box p {
  margin: 7px 0 0;
  color: var(--sub);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 720px) {
  .logo-brand { padding: 4px 7px; border-radius: 13px; }
  .brand-logo { width: 190px; height: 48px; }
  .phone-link { min-height: 42px; padding: 7px 11px; }
  .phone-link span { font-size: 11px; }
  .phone-link strong { font-size: 14px; }
  .call-box { grid-template-columns: 44px 1fr; padding: 15px; }
  .call-icon { width: 44px; height: 44px; border-radius: 15px; font-size: 20px; }
  .call-box a { font-size: 22px; }
}
@media (max-width: 460px) {
  .logo-brand { width: auto; justify-content: center; }
  .brand-logo { width: 220px; object-position: center; }
  .phone-link { align-items: center; }
}


/* Logo-color theme refinement */
.hero-copy h1, .section h2 { color: var(--text); }
.section-label, .eyebrow { text-shadow: none; }
.hero-card strong, .fleet-card strong, .phone-link strong, .call-box a { color: var(--primary-dark); }
.about-info-card div, .fleet-card, .form-card, .contact-card, .map-wrap, .reservation-info, .info-list div {
  border-color: rgba(23, 135, 255, 0.12);
}
.about-info-card div, .fleet-card, .form-card, .contact-card, .map-wrap { box-shadow: 0 16px 35px rgba(27, 61, 118, 0.08); }
.info-list div:hover, .fleet-card:hover, .about-info-card div:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(23, 135, 255, 0.10);
}
.fleet-card, .about-info-card div, .info-list div { transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.hero-visual, .form-card, .contact-card, .map-wrap, .reservation-info { backdrop-filter: blur(6px); }


/* Header logo natural redesign */
.site-header {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(27, 61, 118, 0.05);
}
.nav-wrap {
  height: 74px;
  gap: 18px;
}
.logo-brand {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  line-height: 0;
}
.logo-brand:hover {
  border-color: transparent;
  box-shadow: none;
  transform: translateY(-1px);
}
.brand-logo {
  width: clamp(190px, 17vw, 270px);
  height: 46px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 5px 10px rgba(27, 61, 118, 0.08));
}
.header-right {
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}
.phone-link {
  min-height: 44px;
  padding: 7px 14px;
  border-radius: 15px;
}
@media (max-width: 980px) {
  .nav-wrap { height: 68px; }
  .brand-logo { width: 210px; height: 42px; }
}
@media (max-width: 720px) {
  .nav-wrap {
    height: 64px;
    padding: 0;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .logo-brand {
    flex: 0 1 auto;
    max-width: calc(100% - 118px);
  }
  .brand-logo {
    width: 168px;
    max-width: 100%;
    height: 36px;
    object-position: left center;
  }
  .header-right {
    width: auto;
    flex: 0 0 auto;
    justify-content: flex-end;
  }
  .phone-link {
    min-height: 36px;
    padding: 6px 9px;
    border-radius: 13px;
  }
  .phone-link span { display: none; }
  .phone-link strong { font-size: 12.5px; line-height: 1; }
}
@media (max-width: 460px) {
  .nav-wrap {
    height: 60px;
    padding: 0;
    flex-wrap: nowrap;
  }
  .logo-brand {
    width: auto;
    justify-content: flex-start;
    max-width: calc(100% - 108px);
  }
  .brand-logo {
    width: 145px;
    height: 32px;
    object-position: left center;
  }
  .phone-link {
    width: auto;
    padding: 6px 8px;
  }
  .phone-link strong { font-size: 12px; }
}
@media (max-width: 360px) {
  .brand-logo { width: 128px; height: 30px; }
  .phone-link strong { font-size: 11px; }
}


/* Rounded header logo corners */
.logo-brand {
  border-radius: 16px;
  overflow: hidden;
}
.brand-logo {
  border-radius: 14px;
}
@media (max-width: 720px) {
  .logo-brand { border-radius: 13px; }
  .brand-logo { border-radius: 12px; }
}
@media (max-width: 460px) {
  .logo-brand { border-radius: 12px; }
  .brand-logo { border-radius: 11px; }
}
