:root {
  --olive: #425414;
  --olive2: #66752f;
  --cream: #faf7ed;
  --line: #ded8c7;
  --ink: #25271f;
  --muted: #67695f;
  --white: #fff;
  --shadow: 0 18px 50px rgba(51, 61, 24, 0.12);
  --focus: #3d6b1e;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Pretendard, "Noto Sans KR", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 10px 16px;
  background: var(--olive);
  color: #fff;
  font-weight: 700;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

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

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

.nav {
  position: relative;
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 16px;
  flex-shrink: 0;
}

.logo span {
  display: flex;
  flex-direction: column;
}

.logo b {
  font-family: serif;
  font-size: 25px;
  color: var(--olive);
  letter-spacing: 2px;
}

.logo small {
  font-size: 12px;
  color: #555;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: auto;
}

.links a {
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}

.links a:hover,
.links a:focus-visible {
  color: var(--olive2);
}

.header-call {
  display: flex;
  flex-direction: column;
  color: var(--olive);
  line-height: 1.2;
  flex-shrink: 0;
}

.header-call span {
  font-size: 12px;
}

.header-call strong {
  font-size: 22px;
}

.header-call-mobile {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  font-size: 20px;
  place-items: center;
  flex-shrink: 0;
}

.menu {
  display: none;
  border: 0;
  background: none;
  font-size: 28px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

.hero {
  background: linear-gradient(90deg, #fffdf7, #f5f1e5);
  overflow: hidden;
}

.hero-grid {
  min-height: 580px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 44px;
  padding: 55px 0;
}

.hand {
  font-family: serif;
  color: var(--olive);
  font-size: 22px;
  margin: 0;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.12;
  margin: 18px 0 25px;
  letter-spacing: -2px;
}

.hero h1 span {
  color: var(--olive);
}

.lead {
  font-size: clamp(16px, 2.2vw, 20px);
  color: #46483e;
  margin: 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid var(--olive);
  cursor: pointer;
  font-size: 16px;
  font-family: inherit;
}

.btn.full {
  width: 100%;
}

.primary {
  background: var(--olive);
  color: #fff;
}

.ghost {
  background: #fff;
  color: var(--olive);
}

.mini-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mini-trust li {
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 13px;
}

.hero-image {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  object-position: center;
}

.section {
  padding: 95px 0;
}

.cream {
  background: var(--cream);
}

.heading {
  text-align: center;
  margin-bottom: 45px;
}

.heading span,
.trust-grid > div > span,
.contact .heading span {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 900;
  color: var(--olive2);
}

.heading h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 8px 0;
}

.heading p {
  color: var(--muted);
  margin: 0;
}

.cards {
  display: grid;
  gap: 18px;
}

.cards.five {
  grid-template-columns: repeat(5, 1fr);
}

.cards article {
  padding: 30px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  text-align: center;
  background: #fff;
}

.cards i {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: auto;
  border-radius: 50%;
  background: #f1f0df;
  color: var(--olive);
  font-style: normal;
  font-size: 30px;
}

.cards h3 {
  margin: 16px 0 7px;
  font-size: 18px;
}

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

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

.steps.five {
  grid-template-columns: repeat(5, 1fr);
}

.steps li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 27px;
}

.steps b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--olive);
  color: #fff;
  border-radius: 50%;
}

.steps h3 {
  margin: 17px 0 5px;
  font-size: 17px;
}

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

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.price-grid article {
  border: 1px solid #cfc8b0;
  border-radius: 18px;
  padding: 28px 18px;
  text-align: center;
  background: #fffdf8;
}

.price-grid small {
  display: block;
  min-height: 47px;
  color: var(--muted);
  font-size: 14px;
}

.price-grid strong {
  display: block;
  color: var(--olive);
  font-size: 26px;
  margin-top: 10px;
}

.price-grid .small-strong {
  font-size: 18px;
  line-height: 1.4;
}

.policy-box {
  margin-top: 32px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fffdf8;
}

.policy-box h3 {
  margin: 0 0 14px;
  color: var(--olive);
  font-size: 20px;
}

.policy-box ul {
  margin: 0;
  padding-left: 20px;
}

.policy-box li {
  margin-bottom: 10px;
  color: var(--muted);
}

.policy-box a {
  color: var(--olive);
  text-decoration: underline;
}

.notice {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-top: 20px;
}

.olive {
  background: linear-gradient(135deg, #34440d, #566821);
  color: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.trust-grid h2 {
  font-size: clamp(32px, 4vw, 45px);
  line-height: 1.25;
  margin: 8px 0 0;
}

.trust-grid > div > span {
  color: #dce6b6;
}

.trust-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.trust-items article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.trust-items article.wide {
  grid-column: 1 / -1;
}

.trust-items h3 {
  margin: 0 0 7px;
  font-size: 18px;
}

.trust-items p {
  margin: 0;
  color: #eef0e6;
  font-size: 14px;
}

.trust-items a {
  color: #dce6b6;
  text-decoration: underline;
}

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

.manager-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px;
}

.manager-grid h3 {
  margin: 0 0 14px;
  color: var(--olive);
  font-size: 18px;
}

.manager-grid ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.manager-grid li {
  margin-bottom: 8px;
}

.manager-actions {
  margin-top: 32px;
  text-align: center;
}

.manager-note {
  color: var(--muted);
  margin: 0 0 20px;
}

.contact {
  background: #f8f5eb;
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.booking-call,
.booking-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.booking-call h3 {
  margin: 0 0 12px;
  font-size: 22px;
  color: var(--olive);
}

.booking-call p {
  color: var(--muted);
  margin: 0 0 20px;
}

.phone {
  display: block;
  color: var(--olive);
  font-size: clamp(32px, 6vw, 46px);
  font-weight: 900;
  line-height: 1.2;
}

.hours {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 14px;
  font-weight: 700;
}

.req {
  color: #b33;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.field textarea {
  resize: vertical;
  min-height: 100px;
}

.address-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
}

.address-search-btn {
  min-height: 48px;
  padding: 0 18px;
  white-space: nowrap;
  border-radius: 12px;
  font-size: 15px;
}

.field-help {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

#departure-detail {
  margin-top: 10px;
}

.consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.consent-block {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  margin: 0;
}

.consent-block legend {
  font-size: 14px;
  font-weight: 700;
  padding: 0 4px;
}

.consent-detail {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.consent-detail p {
  margin: 0 0 8px;
}

.consent input {
  width: auto;
  margin-top: 4px;
  flex-shrink: 0;
}

.consent label {
  font-weight: 500;
  line-height: 1.5;
}

.form-notice {
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 14px;
  background: #f5f1e5;
  border-radius: 12px;
  font-size: 14px;
  color: var(--muted);
}

.form-message {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}

.form-message:focus {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.form-message.info {
  background: #eef4e6;
  color: var(--olive);
  border: 1px solid #c8d4b0;
}

.form-message.success {
  background: linear-gradient(180deg, #f3f9ea 0%, #e8f2d8 100%);
  color: var(--olive);
  border: 2px solid #9bb87a;
  padding: 28px 24px;
  text-align: center;
}

.form-message-banner {
  display: grid;
  gap: 16px;
}

.form-message-title {
  margin: 0;
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.form-message-inquiry {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 18px 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #c8d4b0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.form-message-inquiry-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.form-message-inquiry-number {
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--olive);
  letter-spacing: 0.06em;
}

.form-message-note {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.5;
}

.form-message.error {
  background: #fdeeee;
  color: #8a1f1f;
  border: 1px solid #e8b4b4;
}

.service-type-row,
.fee-options-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-chip,
.fee-chip,
.method-btn {
  appearance: none;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 16px;
  cursor: pointer;
}

.service-chip.active,
.fee-chip.active,
.method-btn.active {
  border-color: #2563eb;
  background: #eff6ff;
  color: #1d4ed8;
  box-shadow: inset 0 0 0 1px #2563eb;
}

.payment-summary {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
}

.payment-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
}

.payment-summary-hint {
  margin: 10px 0 0;
  font-size: 13px;
  color: #6b7280;
}

.payment-method-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.service-block legend,
.payment-method-block legend {
  font-weight: 600;
  margin-bottom: 8px;
}

.hidden {
  display: none !important;
}

footer {
  background: #29350a;
  color: #f7f5e9;
  padding: 45px 0 20px;
}

.footer {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 0.8fr;
  gap: 35px;
  align-items: start;
}

.logo.foot b,
.logo.foot small {
  color: #fff;
}

.footer-info {
  font-style: normal;
}

.footer-info p {
  font-size: 13px;
  color: #dcdfd2;
  margin: 0;
  line-height: 1.8;
}

.footer-info a {
  text-decoration: underline;
}

.pending {
  color: #f0dca0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 14px;
}

.copy {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 18px;
  margin-top: 28px;
  font-size: 12px;
  color: #bfc4b0;
}

.floating {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  font-size: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 40;
}

.legal-page {
  padding: 40px 0 80px;
}

.legal-page article {
  max-width: 850px;
}

.legal-page h1 {
  font-size: clamp(28px, 4vw, 36px);
  color: var(--olive);
  margin: 20px 0;
}

.legal-page h2 {
  font-size: 20px;
  margin: 28px 0 10px;
  color: var(--olive);
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.legal-page ul,
.legal-page ol {
  padding-left: 20px;
}

.legal-page a {
  color: var(--olive);
  text-decoration: underline;
}

.legal-back {
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 700;
}

.legal-site-header {
  border-bottom: 1px solid #eee8da;
  background: rgba(255, 255, 255, 0.96);
}

.legal-site-header .nav {
  min-height: 72px;
}

.legal-site-header .header-call {
  margin-left: auto;
}

@media (max-width: 1024px) {
  .legal-site-header .header-call {
    display: flex;
  }

  .legal-site-header .header-call strong {
    font-size: 18px;
  }
}

.legal-site-footer {
  background: #29350a;
  color: #f7f5e9;
  padding: 28px 0 18px;
}

.legal-site-footer .footer-info p {
  font-size: 13px;
  color: #dcdfd2;
  margin: 0;
  line-height: 1.8;
}

.legal-site-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
  font-size: 14px;
}

.legal-site-footer .footer-links a {
  text-decoration: underline;
}

.legal-site-footer .copy {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 14px;
  margin-top: 18px;
  font-size: 12px;
  color: #bfc4b0;
}

.manager-apply-link[hidden] {
  display: none !important;
}

@media (max-width: 1024px) {
  .links,
  .header-call {
    display: none;
  }

  .header-call-mobile {
    display: grid;
    margin-left: auto;
  }

  .menu {
    display: block;
    margin-left: 8px;
  }

  .links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 20px 28px;
    border-bottom: 1px solid var(--line);
    gap: 14px;
    z-index: 60;
  }

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

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

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

  .trust-grid,
  .booking-grid,
  .manager-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .container {
    width: min(100% - 26px, 1180px);
  }

  .nav {
    min-height: 70px;
    gap: 12px;
  }

  .logo img {
    width: 44px;
    height: 44px;
  }

  .logo b {
    font-size: 21px;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0;
  }

  .hand {
    font-size: 18px;
  }

  .actions {
    flex-direction: column;
    margin: 24px 0;
  }

  .btn {
    width: 100%;
  }

  .hero-image {
    border-radius: 18px;
  }

  .section {
    padding: 68px 0;
  }

  .cards.five,
  .steps.five,
  .price-grid,
  .trust-items,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-call,
  .booking-form,
  .policy-box {
    padding: 24px 20px;
  }

  .address-search-row {
    grid-template-columns: 1fr;
  }

  .address-search-btn {
    width: 100%;
  }

  .floating {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 360px) {
  .container {
    width: calc(100% - 20px);
  }

  .logo span small {
    font-size: 11px;
  }

  .header-call strong {
    font-size: 18px;
  }
}
