:root {
  --bg: #f6f1ea;
  --brown: #50342e;
  --brown-dark: #36231f;
  --sand: #b9a68d;
  --cream: #fffaf3;
  --black: #111111;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--black);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky; top: 0; z-index: 10;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 7vw;
  background: rgba(246, 241, 234, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(80, 52, 46, .12);
}
.logo { font-weight: 900; letter-spacing: -.03em; }
nav { display: flex; gap: 22px; font-size: 14px; font-weight: 700; }
.hero {
  min-height: 82vh;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  padding: 70px 7vw;
  background:
    radial-gradient(circle at 10% 25%, rgba(185,166,141,.35), transparent 28%),
    linear-gradient(135deg, #f8f5ef 0%, #eadfce 100%);
}
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-weight: 900; color: var(--brown); margin: 0 0 12px; }
h1 { font-size: clamp(44px, 7vw, 88px); line-height: .95; letter-spacing: -.06em; margin: 0 0 24px; }
h2 { font-size: clamp(32px, 5vw, 56px); line-height: 1.05; letter-spacing: -.05em; margin: 0 0 34px; }
h3 { font-size: 28px; line-height: 1.15; letter-spacing: -.04em; margin: 16px 0; }
.lead { font-size: 20px; max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border-radius: 999px; font-weight: 900; }
.btn.primary { background: var(--brown); color: white; box-shadow: 0 12px 30px rgba(80,52,46,.22); }
.btn.ghost { border: 1px solid rgba(80,52,46,.35); color: var(--brown); }
.hero-card { border-radius: 36px; overflow: hidden; box-shadow: 0 30px 80px rgba(54,35,31,.24); background: white; transform: rotate(1.2deg); }
.hero-card img, .gallery img { width: 100%; display: block; }
.intro { padding: 60px 7vw; background: var(--brown); color: white; text-align: center; }
.intro p { max-width: 860px; margin: auto; font-size: clamp(22px, 3vw, 34px); font-weight: 900; line-height: 1.35; letter-spacing: -.04em; }
.section { padding: 96px 7vw; }
.dark { background: var(--brown); color: white; }
.dark .eyebrow { color: var(--sand); }
.cards { display: grid; gap: 24px; }
.cards.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card { padding: 36px; border-radius: 32px; background: var(--cream); box-shadow: 0 18px 50px rgba(80,52,46,.10); }
.card.light { background: white; color: var(--black); }
.card span { display: inline-grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; background: var(--sand); color: var(--brown-dark); font-weight: 900; font-size: 24px; }
.card p { margin: 0; font-size: 18px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-grid img { border-radius: 24px; box-shadow: 0 16px 44px rgba(80,52,46,.12); }
.cta { text-align: center; background: #efe4d5; }
.cta p { margin-bottom: 28px; }
footer { padding: 34px 7vw; background: var(--brown-dark); color: white; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
footer p { margin: 0; opacity: .72; }
@media (max-width: 860px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 48px; }
  .cards.two, .gallery-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 6vw; }
}
.footer-policy-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-policy-buttons button {
    background: transparent;
    color: #ccc;
    border: 1px solid #555;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 13px;
}

.footer-policy-buttons button:hover {
    color: #fff;
    border-color: #fff;
}

.policy-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 40px 20px;
}

.policy-modal.is-open {
    display: block;
}

.policy-modal-box {
    max-width: 720px;
    max-height: 80vh;
    overflow-y: auto;
    margin: 0 auto;
    background: #fff;
    color: #222;
    padding: 40px;
    position: relative;
}

.policy-modal-box h2 {
    margin-bottom: 24px;
}

.policy-modal-box h3 {
    margin-top: 24px;
    margin-bottom: 8px;
}

.policy-modal-box p {
    line-height: 1.8;
    color: #444;
}

.policy-close {
    position: absolute;
    top: 16px;
    right: 20px;
    border: 0;
    background: none;
    font-size: 32px;
    cursor: pointer;
}

.footer-container {
    display: grid;
    grid-template-columns:
        2fr
        1fr
        1.2fr
        1fr;

    gap: 60px;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 20px;
}

.footer-column p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-link-btn {
    display: block;
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 12px;

    color: #aaa;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
}

.footer-link-btn:hover {
    color: white;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}