:root {
  --forest: #1f3a31;
  --forest-2: #2f5d50;
  --moss: #6b8f71;
  --gold: #b8904a;
  --cream: #f3efe6;
  --paper: #faf8f3;
  --ink: #1f2a24;
  --muted: #5d6b63;
  --line: #e2ddd1;
  --booked: #d9d4c7;
  --danger: #a2402f;
  --ok: #2f6b45;
  --radius: 12px;
  --serif: 'Cormorant Garamond', Georgia, 'Noto Serif', serif;
  --sans: Inter, system-ui, -apple-system, 'Segoe UI', 'Noto Sans', 'Apple SD Gothic Neo', 'Hiragino Sans', 'PingFang SC', 'Microsoft YaHei', 'Noto Sans Arabic', Tahoma, sans-serif;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 16px/1.6 var(--sans); }
html:lang(ko) body, html:lang(ja) body, html:lang(zh-Hans) body, html:lang(ar) body { line-height: 1.75; }
img { max-width: 100%; display: block; }
a { color: var(--forest-2); }
h1, h2, h3, .h2, .h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; }
html:lang(ko) :is(h1,h2,h3,.h2,.h3), html:lang(ja) :is(h1,h2,h3,.h2,.h3), html:lang(zh-Hans) :is(h1,h2,h3,.h2,.h3), html:lang(ar) :is(h1,h2,h3,.h2,.h3) { font-family: var(--sans); font-weight: 600; }
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2, .h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3, .h3 { font-size: 1.45rem; }
.wrap { width: min(1120px, 100% - 32px); margin-inline: auto; }
.section { padding-block: 56px; }
.narrow { max-width: 760px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: .875rem; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; color: var(--gold); margin: 0 0 .75em; }
.eyebrow a { color: inherit; text-decoration: none; }
.lead { font-size: 1.15rem; max-width: 640px; }
.lead-sm { font-size: 1.05rem; max-width: 680px; }
.note { background: var(--cream); border-inline-start: 3px solid var(--gold); padding: 10px 14px; border-radius: 6px; }

/* Header */
.site-header { background: var(--forest); color: var(--cream); position: sticky; top: 0; z-index: 10; }
.header-row { display: flex; align-items: center; gap: 20px; min-height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--cream); text-decoration: none; font-family: var(--serif); font-size: 1.35rem; letter-spacing: .04em; }
.brand em { font-style: normal; color: var(--gold); }
.main-nav { display: flex; gap: 18px; margin-inline-start: auto; flex-wrap: wrap; }
.main-nav a { color: var(--cream); text-decoration: none; font-size: .95rem; opacity: .9; }
.main-nav a:hover { opacity: 1; text-decoration: underline; }
.lang-switch { position: relative; }
.lang-switch summary { list-style: none; cursor: pointer; border: 1px solid rgba(243,239,230,.35); border-radius: 999px; padding: 4px 12px; font-size: .85rem; }
.lang-switch summary::-webkit-details-marker { display: none; }
.lang-switch ul { position: absolute; inset-inline-end: 0; top: calc(100% + 8px); background: #fff; color: var(--ink); list-style: none; margin: 0; padding: 6px; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,.15); min-width: 160px; }
.lang-switch li a { display: block; padding: 7px 10px; border-radius: 6px; color: var(--ink); text-decoration: none; }
.lang-switch li a:hover, .lang-switch li a[aria-current] { background: var(--cream); }
@media (max-width: 720px) {
  .header-row { flex-wrap: wrap; padding-block: 10px; gap: 10px; }
  .main-nav { order: 3; width: 100%; margin: 0; gap: 14px; }
  .lang-switch { margin-inline-start: auto; }
}

/* Hero */
.hero { background: linear-gradient(160deg, rgba(31,58,49,.92), rgba(47,93,80,.78)), radial-gradient(circle at 80% 20%, #6b8f71, #1f3a31); color: var(--cream); padding-block: 88px 96px; }
.hero h1 { max-width: 760px; }
.hero .eyebrow { color: #d9bf8c; }

/* Buttons */
.btn { display: inline-block; background: var(--forest-2); color: #fff; border: 0; border-radius: 999px; padding: 12px 22px; font: 600 .95rem var(--sans); text-decoration: none; cursor: pointer; transition: background .15s; }
.btn:hover { background: var(--forest); }
.btn-light { background: var(--cream); color: var(--forest); }
.btn-light:hover { background: #fff; }
.btn-gold { background: var(--gold); }
.btn-gold:hover { background: #9c7839; }
.btn-block { width: 100%; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 22px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.card img { aspect-ratio: 4/3; object-fit: cover; }
.card-art { aspect-ratio: 4/3; background: linear-gradient(150deg, var(--accent, var(--forest-2)), #1f3a31); position: relative; }
.card-art::after { content: ''; position: absolute; inset: auto 0 0 0; height: 45%; background: linear-gradient(170deg, transparent 40%, rgba(0,0,0,.18) 40%), linear-gradient(10deg, transparent 50%, rgba(0,0,0,.12) 50%); }
.card-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.card-body .btn { margin-top: auto; align-self: flex-start; }
.card-body h3 a { color: inherit; text-decoration: none; }

.band { background: var(--forest); color: var(--cream); }
.vip-band { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.vip-band p { max-width: 560px; margin: 0; }

/* Booking */
.booking-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 24px; align-items: start; margin-top: 24px; }
@media (max-width: 900px) { .booking-grid { grid-template-columns: 1fr; } }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.form { display: flex; flex-direction: column; gap: 12px; }
.form label { display: flex; flex-direction: column; gap: 5px; font-size: .88rem; font-weight: 500; color: var(--muted); }
.form label.check { flex-direction: row; align-items: center; gap: 8px; font-weight: 400; color: var(--ink); }
.form input, .form textarea, .form select { font: inherit; color: var(--ink); padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; background: #fff; width: 100%; }
.form input[type=checkbox] { width: auto; }
.form input:focus, .form textarea:focus, .form select:focus { outline: 2px solid var(--moss); outline-offset: 1px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .row2 { grid-template-columns: 1fr; } }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert { padding: 12px 16px; border-radius: 8px; margin: 0 0 12px; }
.alert-ok { background: #e7f1ea; color: var(--ok); border: 1px solid #c3dccb; }
.alert-err { background: #f7e8e4; color: var(--danger); border: 1px solid #e9c9c0; }

/* Calendar */
.calendar { position: relative; min-height: 300px; }
.cal-nav { display: flex; justify-content: space-between; position: absolute; inset-inline: 0; top: 0; pointer-events: none; }
.cal-arrow { pointer-events: auto; border: 1px solid var(--line); background: #fff; border-radius: 999px; width: 34px; height: 34px; cursor: pointer; font-size: 1rem; }
.cal-arrow:disabled { opacity: .3; cursor: default; }
.cal-months { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 560px) { .cal-months { grid-template-columns: 1fr; } .cal-months .cal-month + .cal-month { display: none; } }
.cal-title { text-align: center; font-family: var(--serif); font-size: 1.2rem; font-weight: 600; height: 34px; line-height: 34px; text-transform: capitalize; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; margin-top: 8px; }
.cal-wd { text-align: center; font-size: .72rem; color: var(--muted); padding-bottom: 4px; }
.cal-day { aspect-ratio: 1; border: 0; border-radius: 8px; background: #eef3ee; color: var(--ink); font: 500 .9rem var(--sans); cursor: pointer; }
.cal-day:hover:not(:disabled) { background: var(--moss); color: #fff; }
.cal-day.is-booked { background: var(--booked); color: #8b877c; text-decoration: line-through; }
.cal-day.is-booked:not(:disabled) { text-decoration: none; background: linear-gradient(135deg, #eef3ee 50%, var(--booked) 50%); color: var(--ink); }
.cal-day.is-past { background: transparent; color: #c1bdb2; cursor: default; text-decoration: none; }
.cal-day.is-range { background: #cfe0d2; }
.cal-day.is-start, .cal-day.is-end { background: var(--forest-2); color: #fff; }
.legend { display: flex; gap: 16px; list-style: none; padding: 0; margin: 16px 0 0; font-size: .85rem; color: var(--muted); flex-wrap: wrap; }
.legend li { display: flex; align-items: center; gap: 6px; }
.sw { width: 14px; height: 14px; border-radius: 4px; display: inline-block; }
.sw-free { background: #eef3ee; border: 1px solid #d5e2d7; }
.sw-booked { background: var(--booked); }
.sw-sel { background: var(--forest-2); }
.cal-status { margin: 12px 0 0; font-weight: 600; color: var(--forest-2); }

/* Facts / badges */
.facts { display: grid; gap: 10px; margin: 0; }
.facts div { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px dashed var(--line); padding-bottom: 8px; }
.facts dt { color: var(--muted); }
.facts dd { margin: 0; text-align: end; }
.facts-inline { display: flex; justify-content: center; gap: 28px; margin: 18px 0; }
.facts-inline div { flex-direction: column; border: 0; align-items: center; }
.facts-inline dd { font-size: 1.4rem; font-weight: 600; }
.badge { display: inline-block; padding: 2px 10px; border-radius: 999px; font-size: .8rem; font-weight: 600; background: var(--cream); }
.badge-pending { background: #fbf0d9; color: #8a6313; }
.badge-confirmed { background: #e2efe5; color: var(--ok); }
.badge-cancelled { background: #f4e2dd; color: var(--danger); }
.badge-completed { background: #e3e8f2; color: #37507a; }
.badge-blocked { background: #ebe8e1; color: #5d5a52; }

/* VIP */
.vip-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: start; }
@media (max-width: 860px) { .vip-grid { grid-template-columns: 1fr; } }
.ticks { padding: 0; list-style: none; }
.ticks li { padding-inline-start: 28px; position: relative; margin-bottom: 8px; }
.ticks li::before { content: '✓'; position: absolute; inset-inline-start: 0; color: var(--gold); font-weight: 700; }
.tiers { display: grid; gap: 10px; }
.tier { display: flex; justify-content: space-between; gap: 12px; padding: 12px 16px; border-radius: 10px; color: #fff; flex-wrap: wrap; }
.tier-silver { background: linear-gradient(120deg, #7b8584, #a9b1b0); }
.tier-gold { background: linear-gradient(120deg, #9c7839, #d2ad69); }
.tier-platinum { background: linear-gradient(120deg, #1f3a31, #44695d); }
.vip-card { max-width: 420px; aspect-ratio: 1.586; margin: 0 auto 24px; border-radius: 18px; padding: 22px 24px; color: #fff; display: flex; flex-direction: column; justify-content: space-between; text-align: start; box-shadow: 0 18px 40px rgba(31,58,49,.25); }
.vip-card-top, .vip-card-bottom { display: flex; justify-content: space-between; gap: 12px; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.vip-brand { font-family: var(--serif); font-size: 1rem; letter-spacing: .2em; }
.vip-name { font-family: var(--serif); font-size: 1.6rem; }
.vip-number { font: 600 1.25rem ui-monospace, 'SF Mono', Menlo, monospace; letter-spacing: .12em; direction: ltr; }
.qr { margin: 0 auto; border-radius: 12px; border: 1px solid var(--line); background: #fff; padding: 8px; }
.verify { padding: 40px 20px; border-radius: 16px; }
.verify-ok { background: #e7f1ea; color: var(--ok); }
.verify-bad { background: #f7e8e4; color: var(--danger); }
.verify-icon { font-size: 3rem; line-height: 1; margin-bottom: 8px; }

/* Blog */
.post .cover { border-radius: var(--radius); margin: 20px 0; }
.prose { font-size: 1.07rem; }
.prose h2 { margin-top: 1.5em; }
.prose img { border-radius: 10px; }
.prose blockquote { border-inline-start: 3px solid var(--gold); margin: 1em 0; padding-inline-start: 16px; color: var(--muted); }
.other-langs { display: flex; flex-wrap: wrap; gap: 10px; margin: 32px 0; font-size: .92rem; }
.cta-panel { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cta-panel p { margin: 0; }

/* Footer */
.site-footer { background: #17291f; color: #c9cfc5; padding-block: 40px; font-size: .92rem; }
.site-footer a { color: #e2d3b0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.footer-grid p { margin: .3em 0; }
.footer-brand { font-family: var(--serif); font-size: 1.3rem; color: var(--cream); }
.site-footer .muted { color: #8e9a90; }

/* Embed (iframe) */
.is-embed { background: transparent; }
.is-embed .section { padding-block: 8px; }
.is-embed .booking-grid { margin-top: 0; }
