:root {
  --purple: #92278f;
  --purple-dark: #6f1c6d;
  --orange: #bc561b;
  --ink: #202124;
  --muted: #666970;
  --line: #e4e4e8;
  --soft: #f6f6f8;
  --white: #ffffff;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Noto Sans KR", "Segoe UI", sans-serif;
  word-break: keep-all;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.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 {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--purple);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  width: 172px;
  display: block;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.site-nav a {
  color: #44464b;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--purple);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-call,
.header-booking {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--purple);
  font-size: 0.92rem;
  font-weight: 800;
}

.header-booking {
  background: #00873c;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button > span:not(.sr-only) {
  width: 100%;
  height: 2px;
  display: block;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  padding: 74px 0 68px;
  background:
    radial-gradient(circle at 8% 88%, rgba(146, 39, 143, 0.08), transparent 34%),
    var(--white);
}

.hero-grid {
  min-height: 520px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(48px, 7vw, 88px);
}

.hero-brand-panel {
  min-width: 0;
  text-align: center;
}

.hero-brand-panel img {
  width: min(100%, 500px);
  display: block;
  margin-inline: auto;
}

.hero-brand-panel p {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.hero-copy {
  padding: 22px 0 22px clamp(30px, 5vw, 68px);
  border-left: 1px solid var(--line);
}

.hero-label,
.section-label,
.section-heading > p,
.contact-grid > div:first-child > p {
  margin: 0 0 18px;
  color: var(--purple);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.35rem, 6.1vw, 5.3rem);
  line-height: 1.04;
  letter-spacing: -0.07em;
}

.hero h1 span {
  display: block;
  color: #89848b;
}

.hero h1 strong {
  display: block;
  margin-top: 6px;
  color: var(--purple);
  font-weight: 900;
}

.hero-description {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-hours {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 9px;
  margin: 18px 0 0;
  color: #55585e;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-hours strong {
  color: var(--ink);
}

.hero-hours span {
  color: var(--purple-dark);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--purple);
}

.button-primary:hover {
  background: var(--purple-dark);
}

.button-talk {
  color: var(--white);
  background: #00873c;
}

.button-talk:hover {
  background: #006f32;
}

.button-booking {
  color: var(--white);
  background: #00873c;
}

.button-booking:hover {
  background: #006f32;
}

.button-talk-outline {
  border-color: #00873c;
  color: #006f32;
  background: var(--white);
}

.button-talk-outline:hover {
  border-color: #006f32;
  background: #f1fbf5;
}

.button-secondary {
  border-color: #cfd0d5;
  background: var(--white);
}

.button-secondary:hover {
  border-color: var(--purple);
}

.quick-info {
  color: var(--white);
  background: #25262a;
}

.quick-info-grid {
  min-height: 116px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.quick-item {
  min-height: 116px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 14px;
  padding: 20px 8%;
}

.quick-item + .quick-item {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.quick-number {
  color: #d47bcf;
  font-size: 0.78rem;
  font-weight: 850;
}

.quick-item strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 800;
}

.quick-item p {
  margin: 6px 0 0;
  color: #aaaeb5;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.45;
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading h2,
.pickup-copy h2,
.faq-heading h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.2;
  letter-spacing: -0.055em;
}

.section-heading > span {
  display: block;
  margin-top: 17px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.service-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin: 0;
  background: #ececef;
}

.service-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.service-image .photo-used,
.service-image .photo-special {
  object-position: center 42%;
}

.service-image .photo-extraction {
  object-position: center 35%;
}

.service-card-body {
  min-height: 280px;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 30px;
}

.service-number {
  color: var(--purple);
  font-size: 0.82rem;
  font-weight: 850;
}

.service-card h3 {
  margin: 26px 0 14px;
  font-size: 1.3rem;
  letter-spacing: -0.035em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.service-case-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--purple);
  font-size: 0.93rem;
  font-weight: 850;
  text-decoration: none;
}

.service-case-link::after {
  content: "→";
  transition: transform 160ms ease;
}

.service-case-link:hover::after {
  transform: translateX(4px);
}

.service-case-link:focus-visible {
  border-radius: 3px;
  outline: 3px solid rgba(147, 43, 143, 0.24);
  outline-offset: 4px;
}

.pickup {
  padding: 110px 0;
  background: #f2edf3;
}

.pickup-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(60px, 9vw, 120px);
}

.pickup-copy > p:not(.section-label) {
  max-width: 560px;
  margin: 25px 0 0;
  color: var(--muted);
  line-height: 1.85;
}

.pickup-photo-note {
  margin-top: 24px;
  padding: 17px 18px;
  border-left: 4px solid var(--purple);
  color: #4e4050;
  background: rgba(255, 255, 255, 0.65);
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.65;
}

.pickup-parking-note {
  margin-top: 12px;
  padding: 17px 18px;
  border-left: 4px solid var(--orange);
  color: #4e4050;
  background: rgba(255, 255, 255, 0.65);
  font-size: 0.94rem;
  line-height: 1.65;
}

.pickup-parking-note strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
}

.pickup-parking-note span {
  display: block;
}

.pickup-booking-button {
  margin-top: 24px;
}

.pickup-reservation-help {
  max-width: 560px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.pickup-reservation-help a {
  color: #006f32;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pickup-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pickup-steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: start;
  gap: 20px;
  padding: 26px;
  border: 1px solid #e2d8e2;
  border-radius: 12px;
  background: var(--white);
}

.pickup-steps li > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--purple);
  font-weight: 850;
}

.pickup-steps strong {
  display: block;
  font-size: 1.05rem;
}

.pickup-steps p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.process {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.process-grid > div {
  min-height: 220px;
  padding: 32px;
  border-right: 1px solid var(--line);
}

.process-grid > div:last-child {
  border-right: 0;
}

.process-grid span {
  display: block;
  color: var(--purple);
  font-size: 0.82rem;
  font-weight: 850;
}

.process-grid strong {
  display: block;
  margin-top: 34px;
  font-size: 1.2rem;
}

.process-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.faq {
  background: var(--soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(50px, 9vw, 120px);
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 20px;
  padding: 18px 2px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--purple);
  font-size: 1.4rem;
  text-align: center;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details > p {
  margin: -2px 0 0;
  padding: 0 48px 28px 2px;
  color: var(--muted);
  line-height: 1.8;
}

.contact {
  padding: 96px 0;
  color: var(--white);
  background: #242126;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 80px;
}

.contact-grid > div:first-child > p {
  color: #d57bcf;
}

.contact-details {
  padding-left: 50px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-phone {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 850;
  letter-spacing: -0.04em;
}

.contact-details > p {
  margin: 14px 0 0;
  color: #bdc0c5;
}

.contact-details .contact-hours {
  margin-top: 9px;
}

.contact-hours strong {
  color: var(--white);
}

.contact-hours span {
  margin-left: 8px;
  color: #d57bcf;
  font-weight: 750;
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.site-footer {
  padding: 28px 0;
  color: #8f9298;
  background: #19181b;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner strong {
  color: var(--white);
}

.footer-inner p {
  margin: 0;
  font-size: 0.82rem;
}

.mobile-actions {
  display: none;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(146, 39, 143, 0.35);
  outline-offset: 4px;
}

@media (max-width: 920px) {
  .header-inner {
    min-height: 70px;
  }

  .brand {
    width: 150px;
  }

  .menu-button {
    display: block;
    margin-left: auto;
  }

  .header-actions {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    padding: 18px 20px 28px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    padding: 70px 0;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-brand-panel img {
    width: min(82%, 500px);
  }

  .hero-copy {
    padding: 0;
    border-left: 0;
    text-align: center;
  }

  .hero-description {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-hours {
    justify-content: center;
  }

  .quick-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .pickup-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-details {
    padding: 34px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 64px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .hero {
    padding: 54px 0;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.55rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-brand-panel img {
    width: 100%;
  }

  .quick-info-grid {
    grid-template-columns: 1fr;
    padding: 12px 0;
  }

  .quick-item {
    min-height: 84px;
    padding: 18px 4px;
  }

  .quick-item + .quick-item {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

  .section,
  .pickup {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 36px;
    text-align: left;
  }

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

  .service-card {
    min-height: 0;
  }

  .service-card-body {
    min-height: 0;
    padding: 26px 24px 28px;
  }

  .service-card h3 {
    margin-top: 28px;
  }

  .pickup-grid {
    gap: 46px;
  }

  .pickup-steps li {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 22px 18px;
  }

  .pickup-steps li > span {
    width: 40px;
    height: 40px;
  }

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

  .process-grid > div {
    min-height: 0;
    padding: 28px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-grid > div:last-child {
    border-bottom: 0;
  }

  .process-grid strong {
    margin-top: 22px;
  }

  .faq-grid {
    gap: 38px;
  }

  .faq-list details > p {
    padding-right: 2px;
  }

  .contact {
    padding: 76px 0;
  }

  .contact-actions {
    display: grid;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-actions {
    position: fixed;
    z-index: 200;
    right: 0;
    bottom: 0;
    left: 0;
    height: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    box-shadow: 0 -6px 22px rgba(0, 0, 0, 0.12);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    font-size: 0.95rem;
    font-weight: 850;
  }

  .mobile-actions a:first-child {
    color: var(--white);
    background: var(--purple);
  }

  .mobile-actions a:last-child {
    color: var(--white);
    background: #00873c;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
