:root {
  --green: #1e471e;
  --gold: #c5a059;
  --white: #ffffff;
  --sage: #f4f6f4;
  --ink: #122012;
  --muted: #506050;
  --shadow: 0 24px 60px rgba(18, 32, 18, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Noto Sans KR", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--white) 0%, var(--sage) 100%);
  line-height: 1.6;
}

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

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

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(30, 71, 30, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--green);
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.nav a {
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(18, 32, 18, 0.15);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-outline {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

.hero {
  position: relative;
  color: var(--white);
  padding: 140px 0 100px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  filter: grayscale(40%);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(30, 71, 30, 0.92), rgba(30, 71, 30, 0.75));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 24px;
}

.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  max-width: 720px;
}

p {
  margin: 0;
}

.hero-content p {
  max-width: 680px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 16px;
}

.hero-stats strong {
  display: block;
  font-size: 18px;
  color: var(--gold);
}

.hero-stats span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.section {
  padding: 90px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.split {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.highlight-card {
  padding: 32px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(30, 71, 30, 0.1);
}

.highlight-card ul {
  padding-left: 18px;
  margin: 18px 0 24px;
  color: var(--muted);
}

.text-link {
  color: var(--green);
  font-weight: 600;
}

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

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(244, 246, 244, 0.8), rgba(255, 255, 255, 0.9));
  box-shadow: 0 16px 40px rgba(30, 71, 30, 0.08);
  border: 1px solid rgba(30, 71, 30, 0.08);
  display: grid;
  gap: 16px;
}

.card .icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(30, 71, 30, 0.1);
  display: grid;
  place-items: center;
}

.card svg {
  width: 22px;
  height: 22px;
  stroke: var(--green);
  stroke-width: 1.8;
  fill: none;
}

.card h3 {
  font-size: 1.3rem;
}

.card ul {
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
}

.package {
  background: linear-gradient(120deg, rgba(30, 71, 30, 0.08), rgba(197, 160, 89, 0.12));
}

.package-panel {
  padding: 32px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.package-panel.accent {
  background: var(--green);
  color: var(--white);
}

.package-panel.accent p {
  color: rgba(255, 255, 255, 0.85);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.checklist li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  color: var(--muted);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.location-card {
  background: var(--white);
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(18, 32, 18, 0.12);
  display: grid;
  gap: 16px;
}

.location-header p {
  margin: 6px 0;
  color: var(--muted);
}

.map-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #e2e5e2;
  min-height: 220px;
}

.map-frame iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
  filter: grayscale(20%);
}

.map-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e1e4e1, #f0f2f0);
  color: #6b776b;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  z-index: 2;
}

.map-frame.loaded .map-placeholder {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.contact-inner {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: center;
}

.form-wrap {
  margin-top: 36px;
}

.contact-form {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(18, 32, 18, 0.12);
  border: 1px solid rgba(30, 71, 30, 0.1);
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(30, 71, 30, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: rgba(244, 246, 244, 0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(197, 160, 89, 0.5);
  border-color: var(--gold);
  background: var(--white);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-actions .btn {
  min-width: 160px;
}

.contact-card {
  padding: 28px;
  border-radius: 24px;
  background: var(--green);
  color: var(--white);
  display: grid;
  gap: 10px;
}

.contact-card a {
  color: var(--white);
}

.site-footer {
  background: var(--green);
  color: rgba(255, 255, 255, 0.82);
  padding: 40px 0;
  margin-top: auto;
}

.site-footer a {
  color: var(--white);
}

.footer-inner {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 120px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }
}
