:root {
  color-scheme: light;
  --bg: #f7f8f5;
  --surface: #ffffff;
  --ink: #1b1d1b;
  --muted: #66716d;
  --line: #dce2dd;
  --green: #0f5f4b;
  --green-dark: #073d31;
  --coral: #d96d55;
  --blue: #315f7b;
  --gold: #b98931;
  --shadow: 0 20px 50px rgba(22, 34, 29, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(27, 29, 27, 0.08);
  background: rgba(247, 248, 245, 0.94);
  backdrop-filter: blur(18px);
}

.header-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(58px, 1fr));
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.language-switch button {
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.language-switch button[aria-pressed="true"] {
  background: var(--green);
  color: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(27, 29, 27, 0.12);
  border-radius: 8px;
  background: #fff;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--green);
}

.header-action {
  min-width: 92px;
  padding: 10px 16px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-weight: 700;
  text-align: center;
}

.booking-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 520px);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(34px, 6vw, 72px) clamp(18px, 5vw, 72px);
}

.hero-copy {
  max-width: 700px;
}

.eyebrow,
.step-label {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 10em;
  margin-bottom: 22px;
  font-size: 88px;
  line-height: 0.96;
  letter-spacing: 0;
}

html[lang="ko"] h1,
html[lang="ko"] h2,
html[lang="ko"] .lead {
  word-break: keep-all;
}

html[lang="ko"] h1 {
  max-width: 8.6em;
  font-size: 78px;
}

h2 {
  margin-bottom: 18px;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.75;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.trust-row span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
}

.booking-panel {
  width: 100%;
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid rgba(15, 95, 75, 0.18);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.panel-heading {
  margin-bottom: 22px;
}

.panel-heading h2 {
  margin-bottom: 0;
  font-size: 30px;
}

.panel-heading p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

input[type="date"] {
  cursor: pointer;
}

input:focus,
select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(15, 95, 75, 0.12);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.agreement {
  grid-template-columns: 18px 1fr;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.agreement input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
}

.addon-option {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 12px;
  margin-top: -4px;
  padding: 14px;
  border: 1px solid rgba(217, 109, 85, 0.22);
  border-radius: 8px;
  background: #fff8f5;
}

.addon-option input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--coral);
}

.addon-option span {
  display: grid;
  gap: 4px;
}

.addon-option small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.5;
}

.form-bullets {
  display: grid;
  gap: 8px;
  margin: 4px 0 16px;
  padding: 14px 16px 14px 32px;
  border: 1px solid rgba(15, 95, 75, 0.14);
  border-radius: 8px;
  background: #f4f8f5;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.55;
}

.primary-button {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 6px;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

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

.form-note,
.form-result {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.form-result {
  color: var(--green);
  font-weight: 800;
}

.price-summary {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 95, 75, 0.14);
  border-radius: 8px;
  background: #f4f8f5;
}

.price-summary span {
  display: block;
  color: var(--green-dark);
  font-weight: 800;
}

.image-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 16px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(52px, 8vw, 88px);
}

.image-slot {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: clamp(180px, 26vw, 320px);
  margin: 0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 95, 75, 0.12), rgba(49, 95, 123, 0.2)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.7) 0 10px, rgba(255, 255, 255, 0.35) 10px 20px);
  color: var(--green-dark);
  font-weight: 800;
}

.image-slot.accent {
  background:
    linear-gradient(135deg, rgba(217, 109, 85, 0.18), rgba(185, 137, 49, 0.22)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.75) 0 10px, rgba(255, 255, 255, 0.38) 10px 20px);
}

.image-slot.dark {
  background:
    linear-gradient(135deg, rgba(7, 61, 49, 0.88), rgba(49, 95, 123, 0.78)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.06) 0 10px, rgba(255, 255, 255, 0.1) 10px 20px);
  color: #fff;
}

.image-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-slot.visit-photo img {
  object-position: center 18%;
}

.image-slot::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(8, 22, 18, 0.66) 100%);
  content: "";
}

.image-slot figcaption,
.image-slot span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  color: #fff;
  font-weight: 800;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.26);
}

.section,
.split-section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.service-grid,
.policy-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.service-card,
.process-grid article,
.policy-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.service-card.featured {
  border-color: rgba(15, 95, 75, 0.38);
  box-shadow: 0 16px 36px rgba(15, 95, 75, 0.11);
}

.card-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-list {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.price-list div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.price-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.price-list dd {
  margin: 0;
  color: var(--green-dark);
  font-weight: 900;
  text-align: right;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.service-card p,
.process-grid p,
.policy-grid p,
.split-section p {
  color: var(--muted);
  line-height: 1.7;
}

.service-card strong {
  display: inline-block;
  margin-top: 20px;
  color: var(--green);
  font-size: 13px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background: #ffffff;
}

.payment-section {
  align-items: center;
  background: #ffffff;
}

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

.info-list div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.info-list span {
  color: var(--muted);
}

.info-list strong {
  text-align: right;
}

.qr-panel,
.route-panel {
  margin: 0;
}

.qr-panel {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
}

.qr-panel img {
  width: min(100%, 260px);
  max-height: 360px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.qr-panel figcaption {
  display: grid;
  gap: 6px;
  text-align: center;
}

.qr-panel span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.address-block {
  display: grid;
  gap: 6px;
  margin: 22px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf8;
}

.address-block span,
.address-block small {
  color: var(--muted);
}

.route-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--green-dark);
  font-weight: 750;
  line-height: 1.65;
}

.route-panel {
  display: grid;
  gap: 12px;
}

.route-panel img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
}

.route-panel figcaption {
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.muted {
  background: #eef3ef;
}

.policy-grid span,
.process-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--coral);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--green-dark);
  color: #fff;
}

.site-footer a {
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header {
    align-items: center;
  }

  .nav-links {
    display: none;
  }

  .booking-hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .booking-hero {
    min-height: auto;
  }

  h1 {
    font-size: 64px;
  }

  html[lang="ko"] h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 34px;
  }

  .lead {
    font-size: 18px;
  }

  .image-strip,
  .service-grid,
  .process-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .image-slot {
    min-height: 180px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 64px;
    padding: 12px 16px;
    gap: 10px;
  }

  .brand {
    min-width: auto;
  }

  .brand small {
    display: none;
  }

  .header-action {
    display: none;
  }

  .language-switch {
    grid-template-columns: repeat(2, minmax(48px, 1fr));
  }

  .language-switch button {
    min-height: 32px;
    padding: 0 8px;
    font-size: 12px;
  }

  .booking-hero {
    padding: 28px 16px 42px;
  }

  h1 {
    font-size: 42px;
  }

  html[lang="ko"] h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  .field-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .booking-panel {
    padding: 18px;
  }

  .section,
  .split-section,
  .image-strip {
    padding-left: 16px;
    padding-right: 16px;
  }

  .info-list div {
    display: grid;
    gap: 6px;
  }

  .info-list strong {
    text-align: left;
  }

  .site-footer {
    display: grid;
  }
}
