@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap");

/* Honeypot 스팸 방지 */
.honeypot,
input[name="company"] {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

:root{
  /* VictoriaBlanche-like mood: warm ivory, deep ink, soft gold */
  --bg: #fbf8f3;
  --bg2:#f3eee6;
  --card: rgba(255,255,255,.65);
  --card2: rgba(255,255,255,.78);
  --fg: #171614;
  --muted: rgba(23,22,20,.68);
  --line: rgba(23,22,20,.12);

  --accent: #c7a36a;   /* soft gold */
  --accent2:#b08a52;

  --radius: 22px;

  --font-sans: "Noto Sans KR", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-serif: "Playfair Display", "Noto Sans KR", serif;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  background:var(--bg);
  color:var(--fg);
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{max-width:var(--max);margin:0 auto;padding:0 18px}
.muted{color:var(--muted)}
.section{padding:64px 0}
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:22px;
  backdrop-filter: blur(8px);
}
h1,h2,h3{line-height:1.25}
h1{font-size:38px;margin:10px 0 0}
h2{font-size:24px;margin:0 0 10px}
.page-title{margin:10px 0 0}
.lead{max-width:62ch}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  height:44px; padding:0 16px; border-radius:999px;
  border:1px solid var(--line);
  font-weight:700;
}
.btn-solid{background:var(--accent); border-color:transparent; color:#121212}
.btn-ghost{background:transparent}
.badge{
  display:inline-flex; gap:8px; align-items:center;
  padding:6px 10px; border-radius:999px;
  background:rgba(231,194,125,.12);
  border:1px solid rgba(231,194,125,.25);
  color:var(--accent);
  font-weight:700;
  font-size:13px;
}

.kv{display:grid; gap:10px; grid-template-columns:1fr 1fr;}
.kv .card{padding:18px}
.kv strong{font-size:20px}
.kv .muted{font-size:13px}

.grid-4{display:grid; gap:14px; grid-template-columns:repeat(4, 1fr)}
.grid-3{display:grid; gap:14px; grid-template-columns:repeat(3, 1fr)}
.grid-2{display:grid; gap:14px; grid-template-columns:repeat(2, 1fr)}
hr.soft{border:none;border-top:1px solid var(--line);margin:18px 0}

.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(15,16,18,.72);
  border-bottom:1px solid var(--line);
  backdrop-filter: blur(10px);
}
.header-inner{display:flex; align-items:center; gap:18px; padding:14px 0}
.brand{display:flex; flex-direction:column; line-height:1}
.brand-mark{font-weight:900; letter-spacing:2px}
.brand-sub{font-size:12px; color:var(--muted); margin-top:4px}

.nav-toggle{
  margin-left:auto;
  width:46px; height:42px;
  border-radius:12px;
  border:1px solid var(--line);
  background:transparent;
  display:none;
}
.nav-toggle span{
  display:block; width:20px; height:2px; background:var(--fg);
  margin:5px auto;
}

.nav{margin-left:auto; display:flex; align-items:center; gap:18px}
.nav-list{display:flex; gap:14px; list-style:none; margin:0; padding:0; align-items:center}
.nav-list > li > a{padding:10px 10px; border-radius:12px}
.nav-list > li > a:hover{background:rgba(255,255,255,.06)}
.nav-cta{display:flex; gap:10px}
.is-cta{border:1px solid rgba(231,194,125,.35); color:var(--accent)}

.has-sub{position:relative}
.sub{
  position:absolute; left:0; top:44px;
  min-width:240px;
  display:none;
  background:rgba(15,16,18,.92);
  border:1px solid var(--line);
  border-radius:14px;
  padding:10px;
}
.has-sub:hover .sub{display:block}
.sub a{display:block; padding:10px 10px; border-radius:10px; color:var(--muted)}
.sub a:hover{background:rgba(255,255,255,.06); color:var(--fg)}

.hero{
  padding:86px 0 42px;
  background:
    linear-gradient(180deg, rgba(15,16,18,.35), rgba(15,16,18,1)),
    url("/assets/img/hero.jpg") center/cover no-repeat;
}
.hero-grid{
  display:grid; gap:18px;
  grid-template-columns: 1.25fr .75fr;
  align-items:end;
}
.hero h1{font-size:44px; line-height:1.12; margin:10px 0 0}
.hero p{max-width:58ch}
.hero-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:18px}

.breadcrumbs{color:var(--muted);padding:16px 0}
.breadcrumbs a{color:var(--muted)}
.breadcrumbs a:hover{color:var(--fg)}

.site-footer{border-top:1px solid var(--line); padding:30px 0 0}
.footer-inner{display:flex; gap:18px; justify-content:space-between; align-items:flex-start; padding-bottom:18px}
.footer-links{display:flex;gap: 7px;flex-wrap:wrap;line-height: 0.2;margin-top: 10px;}
.footer-bottom{border-top:1px solid var(--line); padding:14px 0}

.floating-cta{
  position:fixed; right:16px; bottom:16px; z-index:60;
  display:flex; flex-direction:column; gap:10px;
}
.fab{
  width:54px; height:54px; border-radius:18px;
  background:rgba(255,255,255,.08);
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  font-weight:900;
}
.fab:hover{background:rgba(231,194,125,.16); border-color:rgba(231,194,125,.35)}

.form input,.form select,.form textarea{
  width:100%;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  /* color:#fff; */
  padding:10px 12px;
}
.form input,.form select{height:44px}
.form label{display:block; font-weight:700; margin-top:10px}
.form small{color:var(--muted)}

@media (max-width: 960px){
  /* Mobile Navigation */
  body.nav-open {overflow: hidden;}
  body.nav-open .sticky-cta,
  body.nav-open .fixed-cta {display:none;}
  .nav-toggle{display:block}
  .nav{
    position:fixed; left:0; right:0; top:64px; bottom:0;
    width: 100vw;
    height: 100vh;
    background:#ffffff;
    border-top:1px solid var(--line);
    padding:18px;
    flex-direction:column;
    align-items:stretch;
    transform: translateY(-8px);
    opacity:0; pointer-events:none;
    transition:.18s ease;
  }
  .nav.is-open{opacity:1; pointer-events:auto; transform:none}
  .nav-list{flex-direction:column; align-items:stretch}
  .has-sub:hover .sub{display:none}
  .sub{position:static; display:none; padding:8px; margin:6px 0 0}
  .sub-open .sub{display:block}
  .nav-cta{margin-top:10px}

  /* Mobile Content */
  .hero-grid{grid-template-columns:1fr}
  .hero h1{font-size:34px}
  .grid-4{grid-template-columns:repeat(2, 1fr)}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .footer-inner{flex-direction:column}
  h1{font-size:30px}
}

.form-result{color:var(--fg)}

/* VB THEME */
html,body{background:var(--bg);color:var(--fg);}
body{font-family:var(--font-sans); letter-spacing:-.2px;}
.h1,.h2,.h3,h1,h2,h3{
  font-family:var(--font-serif);
  letter-spacing:-.6px;
}
.muted{color:var(--muted);}
.container{max-width:1160px;}
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  backdrop-filter:saturate(140%) blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
hr.soft{border:0;border-top:1px solid var(--line);margin:14px 0;}
a{color:inherit;}
a:hover{color:var(--accent2);}
.link-plain{color:inherit;text-decoration:none;}
.eyebrow{
  font-family:var(--font-sans);
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:11px;
  color:var(--muted);
}

/* Buttons */
.btn{
  border-radius:999px;
  padding:12px 18px;
  font-weight:700;
  letter-spacing:.02em;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease, color .12s ease, border-color .12s ease;
  border:1px solid var(--line);
  text-decoration:none;
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
}
.btn:hover{transform:translateY(-1px); box-shadow:0 10px 18px rgba(0,0,0,.08);}
.btn-solid{
  background:var(--fg);
  border-color:var(--fg);
  color:var(--bg);
}
.btn-solid:hover{background:#0f0f0f;border-color:#0f0f0f;color:var(--bg);}
.btn-ghost{
  background:transparent;
  color:var(--fg);
  border-color:var(--line);
}
.btn-ghost:hover{border-color:rgba(23,22,20,.28);}

/* Header/Nav */
header.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(251,248,243,.75);
  border-bottom:1px solid var(--line);
  backdrop-filter:saturate(150%) blur(10px);
}
.nav a{
  font-weight:650;
  color:rgba(23,22,20,.8);
}
.nav a:hover{color:var(--fg);}
.nav a.active{
  color:var(--fg);
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
}

.section{padding:68px 0;}
@media (max-width: 720px){
  .section{padding:52px 0;}
  .grid-4{grid-template-columns:1fr;}
}

/* Hero */
.hero{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.06));
}
.hero .hero-media img{filter:contrast(1.02) saturate(.92);}
.hero .hero-overlay{
  background: linear-gradient(120deg, rgba(251,248,243,.86), rgba(251,248,243,.26));
}

input,select,textarea{
  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.65);
  color:var(--fg);
  padding:12px 14px;
  outline:none;
}
input:focus,select:focus,textarea:focus{
  border-color:rgba(199,163,106,.55);
  box-shadow:0 0 0 4px rgba(199,163,106,.18);
}

/* VB FOOTER */
footer.site-footer{
  margin-top:40px;
  background: linear-gradient(180deg, rgba(243,238,230,.0), rgba(243,238,230,.85));
  border-top:1px solid var(--line);
  padding:46px 0 34px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap:22px;
  align-items:start;
}
.footer-brand{
  font-family:var(--font-serif);
  font-weight:600;
  letter-spacing:-.4px;
  font-size:20px;
  margin:0;
}
.footer-meta{color:var(--muted); font-size:13px; line-height:1.6; margin-top:10px;}
.footer-links a{
  display:block;
  padding:6px 0;
  color:rgba(23,22,20,.78);
  text-decoration:none;
  font-weight:650;
}
.footer-links a:hover{color:var(--fg);}
.footer-small{
  margin-top:26px;
  padding-top:18px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:rgba(23,22,20,.62);
  font-size:12px;
}
.footer-pill{
  display:inline-flex;
  gap:8px;
  align-items:center;
  border:1px solid var(--line);
  border-radius:999px;
  padding:10px 14px;
  background:rgba(255,255,255,.55);
  text-decoration:none;
  font-weight:800;
}
.footer-pill:hover{border-color:rgba(23,22,20,.24);}
@media (max-width: 880px){
  .footer-grid{grid-template-columns:1fr; gap:18px;}
}

/* VB MAGAZINE */
.hero-vb{
  padding: 68px 0 0;
  background:transparent;
  border:0;
}
.hero-vb .hero-shell{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:stretch;
  min-height: 560px;
}
.vb-panel{
  border-radius:var(--radius);
  border:1px solid var(--line);
  overflow:hidden;
  background:var(--card2);
  box-shadow: 0 14px 38px rgba(0,0,0,.07);
}
.vb-panel.media{
  position:relative;
  background:#e9e2d8;
}
.vb-panel.media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:contrast(1.02) saturate(.92);
}
.vb-panel.media::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(120deg, rgba(251,248,243,.18), rgba(0,0,0,.08));
  pointer-events:none;
}
.vb-panel.content{
  padding:34px 30px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:14px;
}
.vb-kicker{
  font-family:var(--font-sans);
  letter-spacing:.22em;
  text-transform:uppercase;
  font-size:11px;
  color:var(--muted);
}
.vb-title{
  font-family:var(--font-serif);
  font-weight:600;
  font-size:44px;
  line-height:1.1;
  margin:0;
}
.vb-lead{
  margin:0;
  color:var(--muted);
  max-width:46ch;
  font-size:15px;
}
.vb-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:6px;}
.vb-meta{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top:10px;
  color:rgba(23,22,20,.68);
  font-size:13px;
}
.vb-meta span{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.55);
}

.vb-section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:14px;
  margin-bottom:14px;
  flex-wrap:wrap;
}
.vb-section-head h2{
  margin:0;
  font-size:28px;
  font-weight:600;
}

.vb-mag-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
  align-items:stretch;
}
.vb-mag-grid.reverse{
  grid-template-columns: .8fr 1.2fr;
}
.vb-mag-grid .vb-panel{
  min-height: 360px;
}
.vb-mag-grid .vb-panel.content{
  min-height: 360px;
}

.vb-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:16px;
}
.vb-cards .card{
  padding:18px;
  background:rgba(255,255,255,.7);
}

.vb-fullbleed{
  margin: 18px 0 0;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background:#e9e2d8;
  height: 420px;
  position:relative;
}
.vb-fullbleed img{
  width:100%; height:100%; object-fit:cover; display:block;
  filter:contrast(1.02) saturate(.92);
}
.vb-fullbleed::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(251,248,243,.05), rgba(0,0,0,.12));
  pointer-events:none;
}

@media (max-width: 980px){
  .hero-vb .hero-shell{grid-template-columns:1fr; min-height:auto;}
  .vb-title{font-size:36px;}
  .vb-mag-grid, .vb-mag-grid.reverse{grid-template-columns:1fr;}
  .vb-fullbleed{height:320px;}
  .vb-cards{grid-template-columns:1fr;}
}

/* VB MAGAZINE LAYOUT */
/* VB MAGAZINE LAYOUT */
.fullbleed{
  width:100%;
  margin:0;
}
.fullbleed-inner{
  max-width:1180px;
  margin:0 auto;
  padding:0 18px;
}
.fullbleed-media{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background:rgba(0,0,0,.04);
  box-shadow: 0 16px 40px rgba(0,0,0,.07);
}
.fullbleed-media img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
}
.fullbleed-caption{
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  margin-top:12px;
  color:var(--muted);
  font-size:12px;
}
.mag{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap:22px;
  align-items:center;
}
.mag.reverse{
  grid-template-columns: .92fr 1.08fr;
}
.mag .mag-media{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background:rgba(0,0,0,.04);
  box-shadow: 0 16px 40px rgba(0,0,0,.07);
}
.mag .mag-media img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  aspect-ratio: 4 / 3;
}
.mag .mag-copy{
  padding:6px 2px;
}
.mag .mag-title{
  font-family:var(--font-serif);
  font-size:34px;
  line-height:1.12;
  margin:10px 0 0;
}
.mag .mag-desc{
  margin:12px 0 0;
  color:var(--muted);
  font-size:15px;
  line-height:1.8;
}
.mag .mag-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}
.mag-kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  color:var(--muted);
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.mag-kicker:before{
  content:"";
  width:26px;
  height:1px;
  background:var(--line);
  display:inline-block;
}
.mag-split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
.mag-split .card{
  padding:16px;
}
@media (max-width: 920px){
  .mag, .mag.reverse{grid-template-columns: 1fr;}
  .mag .mag-title{font-size:30px;}
  .mag .mag-media img{aspect-ratio: 16/10;}
  .mag-split{grid-template-columns:1fr;}
}

/* VB ANIMATIONS */
.reveal{opacity:0; transform:translateY(14px); transition:opacity .9s ease, transform .9s cubic-bezier(.2,.8,.2,1);}
.reveal.is-in{opacity:1; transform:none;}
.reveal-delay-1{transition-delay:.08s;}
.reveal-delay-2{transition-delay:.16s;}
.reveal-delay-3{transition-delay:.24s;}
.section-sep{
  height:1px;
  width:100%;
  background:linear-gradient(90deg, rgba(23,22,20,0), var(--line), rgba(23,22,20,0));
  margin:0;
  border:0;
}

/* VB STICKY CTA */
.sticky-cta{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:60;
  padding:10px 0;
  background:rgba(251,248,243,.86);
  border-top:1px solid var(--line);
  backdrop-filter:saturate(150%) blur(10px);
}
.sticky-cta .inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.sticky-cta .mini{
  color:rgba(23,22,20,.68);
  font-size:12px;
}
body.has-sticky{padding-bottom:84px;}
@media (max-width:520px){
  body.has-sticky{padding-bottom:104px;}
}


/* VB HERO SLIDER */
.hero-slider{position:relative;}
.hero-slider .slides{position:relative;}
.hero-slider .slide{position:absolute; inset:0; opacity:0; transition:opacity .9s ease;}
.hero-slider .slide.is-active{position:relative; opacity:1;}
.hero-slider .slide img{width:100%; height:auto; display:block; object-fit:cover;}
.hero-slider .dots{
  position:absolute;
  right:14px; bottom:14px;
  display:flex; gap:8px;
  background:rgba(251,248,243,.62);
  border:1px solid var(--line);
  border-radius:999px;
  padding:8px 10px;
  backdrop-filter:saturate(150%) blur(10px);
}
.hero-slider .dot{
  width:8px; height:8px;
  border-radius:999px;
  border:1px solid rgba(23,22,20,.28);
  background:transparent;
  cursor:pointer;
  padding:0;
}
.hero-slider .dot.is-active{background:var(--fg); border-color:var(--fg);}


/* VB BOOKING UI */
.booking-ui{margin-top:12px;}
.booking-ui .label{font-size:12px;letter-spacing:.14em;text-transform:uppercase;color:var(--muted);font-weight:850;margin:10px 0 8px;}
.cal-wrap{
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.58);
  overflow:hidden;
}
.cal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 14px;
  border-bottom:1px solid var(--line);
  gap:10px;
}
.cal-head .month{
  font-family:var(--font-serif);
  font-weight:650;
  font-size:18px;
  letter-spacing:-.3px;
}
.cal-nav{
  display:flex; gap:8px; align-items:center;
}
.cal-btn{
  border:1px solid var(--line);
  background:rgba(255,255,255,.62);
  border-radius:999px;
  padding:8px 10px;
  cursor:pointer;
  font-weight:850;
}
.cal-btn:hover{border-color:rgba(23,22,20,.22);}
.cal-grid{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:6px;
  padding:12px;
}
.cal-dow{
  font-size:11px;
  color:rgba(23,22,20,.55);
  text-align:center;
  font-weight:800;
  padding:4px 0 6px;
}
.cal-day{
  border:1px solid rgba(23,22,20,.10);
  background:rgba(255,255,255,.75);
  border-radius:14px;
  padding:10px 0;
  text-align:center;
  cursor:pointer;
  font-weight:850;
  user-select:none;
}
.cal-day.is-muted{opacity:.42; cursor:default;}
.cal-day.is-disabled{opacity:.25; cursor:not-allowed; text-decoration:line-through;}
.cal-day.is-active{background:var(--fg); color:var(--bg); border-color:var(--fg);}
.time-slots{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px;
}
.slot{
  border:1px solid var(--line);
  background:rgba(255,255,255,.58);
  border-radius:999px;
  padding:10px 10px;
  cursor:pointer;
  font-weight:850;
  text-align:center;
  font-size:13px;
}
.slot:hover{border-color:rgba(23,22,20,.22);}
.slot.is-active{background:var(--fg); color:var(--bg); border-color:var(--fg);}
.slot.is-disabled{opacity:.35; cursor:not-allowed;}
.booking-summary{
  margin-top:10px;
  color:rgba(23,22,20,.68);
  font-size:12px;
  line-height:1.6;
}
@media (max-width: 920px){
  .time-slots{grid-template-columns:repeat(3,1fr);}
}
@media (max-width: 520px){
  .time-slots{grid-template-columns:repeat(2,1fr);}
}


/* FORM FIELD */
.field{margin-top:10px;}


/* FORM LINE LAYOUT */
.req{color:#b33;}
.line{
  display:grid;
  grid-template-columns: 220px 1fr;
  gap:12px;
  align-items:center;
  padding:10px 0;
  border-bottom:1px solid rgba(23,22,20,.10);
}
.line-label{
  font-weight:900;
  color:rgba(23,22,20,.78);
  font-size:13px;
}
.line-input{
  width:100%;
  background:rgba(255,255,255,.58);
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px 12px;
  font-weight:750;
}
.line-input:focus{outline:none; border-color:rgba(23,22,20,.28);}
textarea.line-input{min-height:120px; resize:vertical;}
select.line-input{appearance:none;}
@media (max-width: 680px){
  .line{grid-template-columns:1fr;}
  .line-label{margin-bottom:6px;}
}


/* FORM TWO INPUTS */
.line-two-inputs{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  align-items:center;
}
@media (max-width: 680px){
  .line-two-inputs{grid-template-columns:1fr;}
}


/* CONSULTATION FORM POLISH */
.form .field{margin-top:12px;}
.form .line{
  padding:14px 0;
  border-bottom:1px solid rgba(23,22,20,.10);
}
.form .line-label{
  letter-spacing:.02em;
  font-weight:900;
}
.form .line-input{
  color:rgba(23,22,20,.92);
  background:rgba(255,255,255,.86);
  border-color:rgba(23,22,20,.14);
  padding:13px 14px;
  border-radius:16px;
}
.form .line-input::placeholder{color:rgba(23,22,20,.42);}
.form textarea.line-input{min-height:140px;}
.form select.line-input{
  color:rgba(23,22,20,.92);
  background-image: linear-gradient(45deg, transparent 50%, rgba(23,22,20,.55) 50%), linear-gradient(135deg, rgba(23,22,20,.55) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(1.2em + 2px), calc(100% - 13px) calc(1.2em + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat:no-repeat;
  padding-right:40px;
}
.form .muted{color:rgba(23,22,20,.58);}
.form .btn.btn-solid{margin-top:16px;}
.card .form{margin-top:14px;}


/* INPUT COLOR SAFETY */
input, textarea, select{
  color: rgba(23,22,20,.92);
}
input::placeholder, textarea::placeholder{
  color: rgba(23,22,20,.42);
}


/* NAV NO HOVER DROPDOWN */
@media (min-width: 961px){
  .has-sub:hover .sub{display:none;}
  .has-sub:focus-within .sub{display:none;}
}


/* ADMIN BADGES */
.badge{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  border:1px solid rgba(23,22,20,.12);
  background:rgba(255,255,255,.55);
}
.badge-open{color:rgba(23,22,20,.82);}
.badge-done{color:rgba(20,110,60,.92); border-color:rgba(20,110,60,.22); background:rgba(20,110,60,.06);}


/* ADMIN FILTER */
.line-input{height:44px;}
textarea.line-input{height:auto;}


/* ADMIN STATUS COLORS */
.badge-open{color:rgba(23,22,20,.82);}
/* keep done green */

/* Fixed Consultation CTA (v3) */
.with-fixed-cta{ padding-bottom: 92px; }
.fixed-cta{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: rgba(250,248,244,.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(23,22,20,.12);
}
.fixed-cta__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.fixed-cta__title{
  font-family: var(--font-serif);
  font-weight: 1000;
  letter-spacing: .02em;
}
.fixed-cta__desc{
  opacity: .85;
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.5;
}
.fixed-cta__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 520px){
  .fixed-cta__inner{ padding: 10px 14px; }
  .fixed-cta__desc{ display:none; }
  .fixed-cta__actions a{ width: 100%; justify-content:center; }
}

/* Consultation reservation guide grid helper */
@media (max-width: 860px){ .consultation-guide-grid{ grid-template-columns:1fr !important; } }


.nav .nav-right > li:last-child > a.is-cta{
  color:#fff !important;
}
.nav .nav-right > li:last-child > a.is-cta:hover{
  color:#fff !important;
}

/* Header Consult button text white (only the rightmost solid button) */
.site-header .nav-cta .btn.btn-solid{
  color:#fff !important;
}
.site-header .nav-cta .btn.btn-solid:hover{
  color:#fff !important;
}

/* Uniform nav rollover (hover/focus/active) */
.site-header .nav a{
  transition: color .18s ease, opacity .18s ease, background-color .18s ease;
}
.site-header .nav a:hover,
.site-header .nav a:focus-visible{
  opacity: 1;
  color: var(--ink) !important;
}
/* Underline style for top-level items */
.site-header .nav > ul > li > a{
  position: relative;
}
.site-header .nav > ul > li > a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-8px;
  height:1px;
  background: rgba(23,22,20,.55);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}
.site-header .nav > ul > li > a:hover::after,
.site-header .nav > ul > li > a:focus-visible::after,
.site-header .nav > ul > li.is-active > a::after{
  transform: scaleX(1);
}

/* Dropdown items hover */
.site-header .sub a{
  border-radius: 10px;
  padding: 10px 12px;
}
.site-header .sub a:hover,
.site-header .sub a:focus-visible{
  background: rgba(23,22,20,.06);
}

/* Keep Consult button styles separate (CTA) */
.site-header .nav-cta .btn.btn-solid::after{ display:none !important; }

/* Nav rollover uniform */
.site-header .nav-list > li > a{
  position: relative;
  display: inline-block;
  padding: 10px 2px;
  transition: opacity .2s ease;
}
.site-header .nav-list > li > a::after{
  content:"";
  position:absolute;
  left:0; right:0;
  bottom: 4px;
  height:1px;
  background: currentColor;
  opacity:0;
  transform: scaleX(.55);
  transform-origin:center;
  transition: opacity .18s ease, transform .18s ease;
}
.site-header .nav-list > li > a:hover,
.site-header .nav-list > li > a:focus,
.site-header .nav-list > li > a:focus-visible,
.site-header .nav-list > li > a:active{
  opacity: .92;
}
.site-header .nav-list > li > a:hover::after,
.site-header .nav-list > li > a:focus::after,
.site-header .nav-list > li > a:focus-visible::after,
.site-header .nav-list > li > a:active::after{
  opacity: .95;
  transform: scaleX(1);
}

/* Dropdown items: same rollover */
.site-header .sub a{
  position: relative;
  display:block;
  padding: 10px 12px;
  border-radius: 12px;
  transition: background-color .18s ease, opacity .18s ease;
}
.site-header .sub a:hover,
.site-header .sub a:focus,
.site-header .sub a:focus-visible,
.site-header .sub a:active{
  background: rgba(23,22,20,.06);
  opacity: .95;
}

/* Keep CTA buttons unchanged */
.site-header .nav-cta .btn{ padding: 10px 14px; }

.site-header .nav-list > li > a.is-clicked::after{
  opacity: .95;
  transform: scaleX(1);
}



.sns-links{
  display:flex;
  gap:16px;
  justify-content:center;
  align-items:center;
  margin-top:24px;
}
.sns-links img{
  width:26px;
  height:26px;
  opacity:.75;
  transition:all .3s ease;
}
.sns-links a:hover img{
  opacity:1;
  transform:translateY(-2px);
}

/* Footer SNS icons */
.footer-sns{
  margin-top:14px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}
.footer-sns .sns-icon{
  width:38px; height:38px;
  display:flex; align-items:center; justify-content:center;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  transition:transform .25s ease, background .25s ease, border-color .25s ease, opacity .25s ease;
  opacity:.9;
}
.footer-sns .sns-icon svg{width:18px;height:18px;fill:currentColor;opacity:.92}
.footer-sns .sns-icon:hover{
  transform:translateY(-2px);
  background:rgba(231,194,125,.14);
  border-color:rgba(231,194,125,.35);
  opacity:1;
}
