:root {
  --forest: #173B31;
  --deep: #102B25;
  --parchment: #F2E9D8;
  --ivory: #F7F1E5;
  --gold: #A98242;
  --ink: #24382F;
  --content-width: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--parchment); color: var(--ink); font-family: 'Noto Serif KR', serif; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
.section { padding: 54px 24px; }

/* Header */
#site-header { height: 69px; position: sticky; top: 0; z-index: 10; background: var(--deep); color: #eee4ca; border-bottom: 1px solid rgba(169,130,66,.4); }
.nav-wrap { max-width: 1450px; height: 100%; margin: auto; padding: 0 3vw; display: flex; align-items: center; gap: 28px; }
.brand { min-width: 285px; display: flex; align-items: center; gap: 10px; }
.brand-star { color: #d3b36a; font-size: 33px; }
.brand b, .footer-inner b { display: block; font: 600 23px 'Cormorant Garamond', serif; letter-spacing: 2px; }
.brand small { display: block; font-size: 11px; }
.nav-wrap nav { display: flex; flex: 1; justify-content: center; gap: 27px; font-size: 13px; }
.nav-wrap nav a:hover, .footer-inner a:hover { color: #e1bd68; }
.reserve-small, .button { display: inline-block; border: 1px solid var(--gold); border-radius: 3px; padding: 9px 25px; text-align: center; background: none; transition: .2s; }
.reserve-small { white-space: nowrap; font-size: 12px; }
.button:hover, .reserve-small:hover { transform: translateY(-2px); filter: brightness(1.08); }
.button-dark { background: var(--forest); color: #f6efd9; box-shadow: inset 0 0 0 2px #173b31, 0 0 0 2px var(--gold); }
.button-light { background: var(--ivory); color: var(--ink); box-shadow: 0 0 0 2px var(--gold); }
.button-outline { color: #fff; border-color: #d8c48d; }
.menu-toggle { display: none; border: 0; background: none; color: #fff; font-size: 22px; }

/* Hero: the fixed desktop height prevents the image from stretching the page. */
.hero { height: 460px; display: grid; grid-template-columns: 52% 48%; align-items: stretch; overflow: hidden; background: var(--ivory); }
.hero-copy { min-width: 0; min-height: 0; display: grid; align-content: center; justify-items: center; padding: 28px 32px; text-align: center; overflow: hidden; }
.hero-copy > :not(.hero-flower) { width: min(560px, 100%); }
.hero-flower { display: none; }
.eyebrow, .label { margin: 0; color: #675a48; font: 500 12px 'Cormorant Garamond', serif; letter-spacing: 2.2px; }
.hero h1 { margin: 8px 0 4px; color: #0e302a; font: 600 clamp(60px, 4.4vw, 68px)/.94 'Cormorant Garamond', serif; letter-spacing: -2px; }
.hero h2 { margin: 5px 0; font: 500 clamp(26px, 2vw, 30px) 'Gowun Batang', serif; }
.hero-text { margin: 23px 0; font-size: 16px; line-height: 1.75; }
.hero .button { padding: 11px 28px; font-size: 16px; }
.precious { margin: 17px 0 0; font-size: 12px; }
.hero-image { min-width: 0; min-height: 0; height: 100%; background: #162c25; }
.hero-image img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* Reviews */
.reviews { padding: 62px 24px 74px; background: var(--ivory); border-top: 1px solid #ccb98a; border-bottom: 1px solid #ccb98a; }
.section-title { max-width: var(--content-width); margin: 0 auto; text-align: center; }
.section-title h2, .about h2, .toon h2 { margin: 3px 0; font: 600 clamp(34px, 2.6vw, 38px) 'Gowun Batang', serif; }
.reviews .section-title h2 { color: var(--ink); font: 600 clamp(38px, 3vw, 46px) 'Cormorant Garamond', serif; letter-spacing: 4px; }
.section-title > p:not(.review-disclaimer) { margin: 0 0 25px; font-size: 15px; }
.section-title .review-disclaimer { margin: -16px auto 25px; color: #5d6b63; font-size: 11px; letter-spacing: .01em; }
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: 290px; gap: 26px 26px; width: 100%; max-width: 1180px; margin: 0 auto; }
.review-slot { min-width: 0; height: 100%; }
.review-slot.review-extra { display: none; }
.review-grid.is-expanded .review-slot.review-extra { display: block; }
.review-card { position: relative; min-width: 0; height: 100%; display: grid; grid-template-rows: 24px minmax(0, 1fr) 28px; justify-items: center; align-items: center; border: 1px solid #365548; border-radius: 0; box-shadow: none; background: #f8f1e4; padding: 28px 30px; text-align: center; }
.review-card::before { content: ''; position: absolute; inset: 7px; border: 1px solid rgba(169,130,66,.32); pointer-events: none; }
.review-card::after { content: '✦'; position: absolute; top: 3px; left: 50%; padding: 0 7px; transform: translateX(-50%); background: #f8f1e4; color: rgba(169,130,66,.72); font-size: 11px; line-height: 1; }
.review-card > * { position: relative; z-index: 1; }
.stars { display: flex; align-items: center; justify-content: center; width: 100%; height: 24px; color: #8b681e; font-size: 18px; line-height: 1; letter-spacing: 2px; }
.review-copy { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; margin: 0; font-size: 15.5px; line-height: 1.85; }
.clamp { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.review-source { display: inline-flex; align-items: center; justify-content: center; min-width: 92px; height: 26px; padding: 2px 12px; border: 1px solid rgba(54,85,72,.7); border-radius: 999px; background: rgba(247,241,229,.88); color: var(--forest); font-size: 11px; line-height: 1; white-space: nowrap; }
.review-more { display: block; width: max-content; margin: 38px auto 0; font-size: 14px; }

/* Consultation introduction */
.about { display: grid; grid-template-columns: 33% 67%; gap: 35px; width: min(var(--content-width), calc(100% - 48px)); margin: 0 auto; padding: 50px 0; background: var(--parchment); }
.about-intro { padding-left: 3vw; }
.about-intro h2 { font-size: 31px; }
.about-intro p { font-size: 15px; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.category-grid article { padding: 12px 15px; border-left: 1px solid #d5c49f; text-align: center; }
.category-grid i { display: block; color: #896831; font-size: 38px; font-style: normal; }
.category-grid h3 { margin: 5px; font-size: 16px; }
.category-grid p { margin: 0; font-size: 13px; }

/* Reservation CTA */
.reservation { position: relative; min-height: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 48px 24px; background: var(--forest); color: #f6eed8; text-align: center; }
.reservation h2 { margin: 0; font: 500 clamp(32px, 2.7vw, 38px) 'Gowun Batang', serif; }
.reservation p { margin: 7px 0 20px; font-size: 16px; }
.celestial { position: absolute; color: #d3b36a; font-size: 25px; }
.left { top: 35%; left: 7%; }.right { right: 7%; bottom: 25%; }

/* Pricing, contact, and guide information */
.information { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; width: min(var(--content-width), calc(100% - 48px)); margin: 0 auto; padding: 30px 0 42px; }
.info-box { min-height: 215px; padding: 28px; border: 1px solid #cfbd96; text-align: center; }
.info-box h2 { margin: 0 0 15px; color: #705529; font: 500 22px 'Gowun Batang', serif; }
.info-box h2 span { margin-left: 9px; color: var(--ink); }
.pricing div { display: flex; justify-content: space-around; margin: 6px 12px; padding: 8px; border: 1px solid #decda9; font: 21px 'Gowun Batang', serif; }
.info-box > a:not(.button) { display: block; padding: 8px; border-top: 1px solid #e0d0ad; font-size: 14px; }
.info-box p { margin: 9px; font-size: 12px; text-align: left; }
.info-box .button { margin-top: 10px; font-size: 14px; }

/* Kylar Toon */
.toon { display: grid; grid-template-columns: 180px 1fr 160px; align-items: center; gap: 20px; width: min(var(--content-width), calc(100% - 48px)); margin: 0 auto; padding: 48px 0; border-top: 1px solid #cfbd96; background: var(--ivory); }
.toon h2 { font-size: 39px; }
.toon-head p:last-child { font-size: 13px; }
.episode-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.episode { position: relative; padding-bottom: 10px; border: 1px solid #cfbd96; background: #fff9ed; }
.episode img { display: block; width: 100%; height: 118px; object-fit: cover; filter: saturate(.65) brightness(.75); }
.episode b { position: absolute; top: 6px; left: 6px; padding: 1px 6px; background: #fff9ed; font-size: 10px; }
.episode h3, .episode p { margin: 4px 9px; }.episode h3 { font-size: 13px; }.episode p { font-size: 10px; }
.toon-button { font-size: 13px; }

/* Footer and guide */
.footer-inner { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 20px; padding: 21px max(5vw,40px); background: var(--deep); color: #eae0c8; font-size: 11px; }
.footer-inner p { margin: 0; }.footer-inner nav { display: flex; align-items: center; justify-content: center; gap: 18px; }.socials { display: flex; align-items: center; justify-content: end; gap: 8px; }.footer-inner small { grid-column: 1 / -1; padding-top: 10px; border-top: 1px solid rgba(169,130,66,.4); }
.guide-page { max-width: 980px; margin: auto; padding: 70px 30px; }.page-heading { margin-bottom: 42px; text-align: center; }.page-heading h1 { margin: 3px; font: 600 55px 'Gowun Batang', serif; }.guide-list article { display: grid; grid-template-columns: 65px 1fr; gap: 15px; padding: 22px 10px; border-top: 1px solid #c7b488; }.guide-list span { color: var(--gold); font: 600 28px 'Cormorant Garamond'; }.guide-list h2 { margin: 0; font: 500 21px 'Gowun Batang'; }.guide-list p { margin: 5px 0; font-size: 14px; }.return-home { display: block; width: max-content; margin: 28px auto; }

/* Local editor */
.editor-body { background: #ebe2d1; }.editor-top { position: sticky; top: 0; z-index: 5; display: flex; align-items: center; gap: 12px; padding: 14px 28px; background: var(--deep); color: #f7f1e5; }.editor-top strong { letter-spacing: 2px; }.editor-top span { flex: 1; color: #cdbd96; font-size: 13px; }.editor-top .button { padding: 6px 10px; font-size: 12px; }.editor-layout { display: grid; grid-template-columns: 210px 1fr; max-width: 1250px; margin: auto; }.editor-tabs { padding: 30px 14px; border-right: 1px solid #c4b18b; }.editor-tabs button { display: block; width: 100%; padding: 11px; border: 0; border-bottom: 1px solid #d3c3a2; background: none; text-align: left; }.editor-tabs button.active { background: var(--forest); color: white; }.editor-form { max-width: 950px; padding: 30px; }.editor-form h1 { margin-top: 0; font: 500 28px 'Gowun Batang'; }.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }.field { display: block; }.field span { display: block; margin-bottom: 5px; font-size: 13px; }.field input,.field textarea { width: 100%; padding: 10px; border: 1px solid #b9a77e; background: #fffaf0; font: 14px 'Noto Serif KR',serif; }.field textarea { height: 105px; resize: vertical; }.image-preview { display: block; max-width: 100%; max-height: 130px; margin-top: 8px; border: 1px solid #b9a77e; }.repeater { grid-column: 1 / -1; }.repeater section { margin: 12px 0; padding: 16px; border: 1px solid #bca97f; background: #f7f0e1; }.repeater .field { margin-top: 10px; }.remove,.add { margin-top: 10px; padding: 6px 12px; border: 1px solid #8d6740; background: none; color: #654720; }.add { border-color: var(--forest); background: var(--forest); color: #fff; }

@media (max-width: 1199px) {
  .hero { height: 440px; }
  .hero h1 { font-size: 58px; }
}
@media (max-width: 850px) {
  .brand { min-width: auto; }.nav-wrap nav { gap: 12px; }.nav-wrap nav a { font-size: 11px; }.reserve-small { display: none; }
  .hero { height: auto; grid-template-columns: 1fr; }.hero-copy { min-height: 380px; }.hero-image { height: 360px; }
  .review-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 280px; gap: 24px 22px; }
  .about { grid-template-columns: 1fr; }.about-intro { padding-left: 0; text-align: center; }.category-grid { grid-template-columns: repeat(2, 1fr); }.category-grid article:nth-child(3) { border-left: 0; }
  .information { grid-template-columns: 1fr; }.toon { grid-template-columns: 1fr; }.toon-head { text-align: center; }.toon-button { justify-self: center; }.footer-inner { grid-template-columns: 1fr; }.footer-inner nav,.socials { justify-content: start; flex-wrap: wrap; }
  .editor-layout { grid-template-columns: 150px 1fr; }.editor-top { padding: 10px; }.editor-top span,.editor-top strong { display: none; }.editor-top div { display: flex; width: 100%; gap: 4px; }.form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  #site-header { height: 58px; }.nav-wrap { padding: 0 18px; }.brand small { display: none; }.brand b { font-size: 20px; }.menu-toggle { display: block; margin-left: auto; }.nav-wrap nav { position: absolute; top: 58px; right: 0; left: 0; display: none; flex-direction: column; gap: 10px; padding: 16px; background: var(--deep); }.nav-wrap nav.open { display: flex; }
  .hero-copy { min-height: 355px; padding: 32px 22px; }.hero h1 { font-size: 51px; }.hero h2 { font-size: 22px; }.hero-text { margin: 18px 0; font-size: 14px; }.hero .button { font-size: 14px; }.hero-image { height: 300px; }
  .section,.reviews { padding-right: 18px; padding-left: 18px; }.reviews { padding-top: 42px; padding-bottom: 48px; }.section-title h2 { font-size: 29px; }.section-title > p:not(.review-disclaimer) { font-size: 13px; }.section-title .review-disclaimer { font-size: 10px; margin-top: -16px; }
  .review-grid { grid-template-columns: 1fr; grid-auto-rows: 235px; gap: 18px; }.review-card { padding: 24px 26px; }.review-copy { font-size: 14px; }.stars { font-size: 17px; }
  .about,.information,.toon { width: calc(100% - 36px); }.about { padding: 42px 0; }.category-grid { grid-template-columns: 1fr; }.category-grid article,.category-grid article:nth-child(3) { border-top: 1px solid #d5c49f; border-left: 0; }.celestial { display: none; }.reservation { padding: 38px 18px; }.reservation h2 { font-size: 28px; }.reservation p { font-size: 14px; }
  .episode-grid { grid-template-columns: 1fr; }.episode img { height: 150px; }.toon { padding-bottom: 35px; }.footer-inner nav { gap: 12px; }
  .editor-layout { display: block; }.editor-tabs { display: flex; overflow: auto; padding: 10px; border: 0; white-space: nowrap; }.editor-tabs button { width: auto; flex: 0 0 auto; border: 1px solid #d3c3a2; }.editor-form { padding: 20px; }.editor-top .button { padding: 6px; font-size: 10px; }
}

/* Unified, single-panel consultation guide */
.guide-html-page { width: min(100%, 1040px); padding: 64px 30px 72px; }
.guide-html-page .page-heading { margin-bottom: 30px; }
.guide-html-page .page-heading h1 { color: var(--ink); }
.guide-topic-nav { width: min(100%, 900px); margin: 0 auto; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.guide-topic-button { min-height: 46px; padding: 9px 10px; border: 1px solid rgba(54,85,72,.55); border-radius: 3px; background: rgba(247,241,229,.8); color: var(--forest); font-size: 13px; transition: background .2s, color .2s, border-color .2s; }
.guide-topic-button:hover { border-color: var(--gold); color: #6f5424; }
.guide-topic-button.is-active { border-color: var(--gold); background: var(--forest); color: var(--ivory); }
.guide-panels { width: min(100%, 900px); margin: 28px auto 0; }
.guide-topic-panel { padding: 46px 0 12px; border-top: 1px solid rgba(169,130,66,.45); animation: guide-fade .22s ease both; }
.guide-topic-panel[hidden] { display: none; }
.guide-topic-panel .guide-eyebrow { margin-bottom: 7px; color: #705a31; font: 500 13px 'Cormorant Garamond', serif; letter-spacing: 2px; }
.guide-topic-panel h2 { margin: 0 0 24px; color: var(--forest); font: 500 31px 'Gowun Batang', serif; }
.guide-topic-panel p { margin: 0 0 14px; font-size: 15px; line-height: 1.95; }
.guide-topic-panel p:last-child { margin-bottom: 0; }
.guide-topic-panel .guide-prose { max-width: 820px; }
.guide-topic-panel .guide-tags { margin: 24px 0 27px; gap: 8px; }
.guide-topic-panel .guide-tags span { padding: 6px 13px; border: 1px solid rgba(54,85,72,.55); border-radius: 2px; color: var(--forest); font-size: 13px; }
.guide-topic-panel .guide-caution { margin: 25px 0 !important; padding: 12px 16px; border-left: 3px solid var(--gold); background: rgba(169,130,66,.1); color: var(--forest); }
.guide-topic-panel .guide-privacy { margin-top: 24px !important; color: var(--forest); }
.guide-topic-panel .guide-steps article { padding: 24px 0; }
.guide-topic-panel .guide-steps article:first-child { border-top: 0; padding-top: 4px; }
.guide-topic-panel .guide-price-table { margin: 26px 0; }
.guide-topic-panel .guide-option-grid { margin-top: 28px; }
.guide-topic-panel .guide-option-grid article { min-height: 170px; padding: 24px; border: 1px solid rgba(188,169,127,.9); background: rgba(247,241,229,.62); }
.guide-topic-panel .guide-alerts { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 24px 0 30px; }
.guide-topic-panel .guide-alerts p { padding: 14px 17px; border: 1px solid rgba(169,130,66,.5); border-left: 3px solid var(--gold); background: rgba(169,130,66,.1); color: var(--forest); }
.guide-topic-panel .guide-decks { margin-top: 26px; }
.guide-html-page .guide-cta { width: min(100%, 900px); margin: 40px auto 0; padding: 34px 20px 8px; }
@keyframes guide-fade { from { opacity: .55; transform: translateY(3px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 850px) {
  .guide-topic-nav { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .guide-html-page { width: 100%; padding: 44px 18px 54px; }
  .guide-html-page .page-heading h1 { font-size: 42px; }
  .guide-topic-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .guide-topic-button { min-height: 44px; padding: 8px 6px; font-size: 12px; }
  .guide-panels { margin-top: 22px; }
  .guide-topic-panel { padding: 36px 0 8px; }
  .guide-topic-panel h2 { font-size: 27px; margin-bottom: 20px; }
  .guide-topic-panel p { font-size: 14px; line-height: 1.85; }
  .guide-topic-panel .guide-option-grid, .guide-topic-panel .guide-alerts { grid-template-columns: 1fr; }
  .guide-topic-panel .guide-steps article { grid-template-columns: 42px 1fr; gap: 10px; }
  .guide-topic-panel .guide-steps article > span { font-size: 23px; }
  .guide-html-page .guide-cta { margin-top: 34px; padding: 30px 8px 5px; }
}

/* Homepage reservation, contact, and guide block */
#reservation.reservation { min-height: 0; padding: 60px 24px 58px; background: var(--forest); border-top: 1px solid rgba(169,130,66,.52); border-bottom: 1px solid rgba(169,130,66,.52); }
#reservation .reservation-content { position: relative; z-index: 1; width: min(100%, 760px); text-align: center; }
#reservation .reservation-kicker { margin: 0 0 7px; color: rgba(226,196,126,.88); font: 500 12px 'Cormorant Garamond', serif; letter-spacing: 2.4px; }
#reservation h2 { margin: 0; color: #f7f0e3; font: 500 clamp(32px, 3vw, 42px)/1.28 'Gowun Batang', serif; }
#reservation .reservation-content > p:not(.reservation-kicker) { margin: 10px 0 25px; color: rgba(247,240,227,.82); font-size: 15px; }
.reservation-ornament { position: absolute; color: rgba(211,179,106,.72); font-size: 19px; letter-spacing: 2px; pointer-events: none; }
.reservation-ornament-left { top: 26px; left: max(5vw, 48px); }
.reservation-ornament-right { right: max(5vw, 48px); bottom: 26px; }
.section-action { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 10px 24px; border: 1px solid var(--gold); border-radius: 3px; font: 500 15px 'Gowun Batang', serif; line-height: 1; transition: background .2s, color .2s, border-color .2s; }
.section-action-light { background: var(--ivory); color: var(--forest); }
.section-action-dark { background: var(--forest); color: var(--ivory); }
.section-action:hover { border-color: #d0b16a; background: #e9dcc1; color: var(--deep); transform: none; filter: none; }
.consultation-information { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; width: min(1240px, calc(100% - 48px)); margin: 0 auto; padding: 38px 0 52px; }
.consultation-information .info-card { position: relative; display: flex; flex-direction: column; min-height: 320px; padding: 31px 32px 28px; border: 1px solid rgba(54,85,72,.72); border-radius: 2px; background: rgba(247,241,229,.86); text-align: left; box-shadow: none; }
.consultation-information .info-card::before { position: absolute; inset: 6px; border: 1px solid rgba(169,130,66,.23); content: ''; pointer-events: none; }
.consultation-information .info-card > * { position: relative; z-index: 1; }
.consultation-information .info-card h2 { display: flex; align-items: center; gap: 9px; margin: 0 0 23px; color: var(--forest); font: 500 22px 'Gowun Batang', serif; }
.consultation-information .info-card-symbol { display: inline-grid; width: 22px; height: 22px; place-items: center; border: 1px solid rgba(169,130,66,.7); border-radius: 50%; color: #8a692d; font: 13px/1 serif; }
.price-list { border-top: 1px solid rgba(169,130,66,.45); }
.price-row { display: flex; align-items: baseline; justify-content: space-between; padding: 13px 2px; border-bottom: 1px solid rgba(169,130,66,.35); }
.price-row strong { color: var(--ink); font: 500 18px 'Gowun Batang', serif; }
.price-row b { color: var(--forest); font: 600 20px 'Cormorant Garamond', 'Gowun Batang', serif; letter-spacing: .02em; }
.consultation-information .info-note { margin: auto 0 0; padding-top: 18px; color: #59655e; font-size: 12px; line-height: 1.75; }
.contact-links { border-top: 1px solid rgba(169,130,66,.45); }
.contact-link { display: flex; align-items: center; gap: 10px; padding: 13px 2px; border-bottom: 1px solid rgba(169,130,66,.35); color: var(--ink); font-size: 14px; transition: background .2s, color .2s; }
.contact-marker { color: #8a692d; font-size: 11px; }
.contact-link:hover { background: rgba(169,130,66,.09); color: var(--forest); }
.usage-copy { margin-bottom: 22px; border-top: 1px solid rgba(169,130,66,.45); }
.consultation-information .usage-copy p { margin: 0; padding: 13px 2px; border-bottom: 1px solid rgba(169,130,66,.35); color: #48584f; font-size: 13px; line-height: 1.75; }
.consultation-information .usage-card .section-action { width: max-content; margin-top: auto; }
@media (max-width: 900px) {
  .consultation-information { grid-template-columns: repeat(2, minmax(0, 1fr)); width: min(860px, calc(100% - 40px)); }
}
@media (max-width: 560px) {
  #reservation.reservation { padding: 46px 18px; }
  #reservation h2 { font-size: 29px; }
  #reservation .reservation-content > p:not(.reservation-kicker) { font-size: 14px; }
  .reservation-ornament { display: none; }
  .consultation-information { grid-template-columns: 1fr; gap: 16px; width: calc(100% - 36px); padding: 26px 0 40px; }
  .consultation-information .info-card { min-height: 0; padding: 27px 25px 24px; }
  .consultation-information .info-card h2 { margin-bottom: 19px; font-size: 21px; }
  .consultation-information .info-note { margin-top: 20px; }
  .section-action { min-height: 43px; }
}

/* HTML consultation guide */
.guide-html-page { max-width: 1040px; padding-top: 64px; padding-bottom: 70px; }
.guide-html-page .page-heading { margin-bottom: 28px; }.guide-html-page .page-heading h1 { color: var(--ink); }
.guide-html-toc { max-width: 840px; margin-bottom: 28px; }
.guide-content { max-width: 760px; margin: 0 auto; }
.guide-section { scroll-margin-top: 90px; padding: 58px 0; border-top: 1px solid rgba(169,130,66,.45); }
.guide-section-tinted { padding: 46px 34px; background: rgba(247,241,229,.62); }
.guide-section-note { margin: 18px 0; padding: 35px 34px; border: 1px solid rgba(169,130,66,.5); background: rgba(247,241,229,.78); text-align: center; }
.guide-eyebrow { margin: 0 0 6px; color: #705a31; font: 500 13px 'Cormorant Garamond', serif; letter-spacing: 2px; }
.guide-section h2 { margin: 0 0 22px; color: var(--forest); font: 500 31px 'Gowun Batang', serif; }
.guide-section p { margin: 0 0 13px; font-size: 15px; line-height: 1.95; }.guide-section p:last-child { margin-bottom: 0; }
.guide-prose { max-width: 740px; }.guide-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }.guide-tags span { padding: 6px 13px; border: 1px solid rgba(54,85,72,.55); border-radius: 2px; color: var(--forest); font-size: 13px; }
.guide-caution { margin: 26px 0!important; padding: 13px 16px; border-left: 3px solid var(--gold); background: rgba(169,130,66,.1); color: var(--forest); }.guide-privacy { margin-top: 24px!important; color: var(--forest); }
.guide-price-table { margin: 26px 0; border-top: 1px solid #bca97f; border-bottom: 1px solid #bca97f; }.guide-price-table div { display: flex; justify-content: space-between; padding: 14px 22px; border-bottom: 1px solid rgba(188,169,127,.55); font: 21px 'Gowun Batang', serif; }.guide-price-table div:last-child { border-bottom: 0; }.guide-price-table b { color: var(--forest); }
.guide-highlight { margin-top: 23px!important; padding: 14px 17px; border: 1px solid rgba(169,130,66,.55); background: rgba(169,130,66,.1); color: var(--forest); font-weight: 600; }
.guide-option-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }.guide-option-grid article { padding: 24px; border: 1px solid #bca97f; background: rgba(247,241,229,.6); }.guide-option-grid h3 { margin: 0 0 10px; color: var(--forest); font: 500 20px 'Gowun Batang', serif; }.guide-option-grid p { margin-bottom: 13px; color: var(--gold); }.guide-option-grid small { font-size: 13px; line-height: 1.75; }
.guide-steps article { display: grid; grid-template-columns: 55px 1fr; gap: 17px; padding: 24px 0; border-top: 1px solid rgba(169,130,66,.42); }.guide-steps article > span { color: var(--gold); font: 600 28px 'Cormorant Garamond', serif; }.guide-steps h3 { margin: 0 0 9px; color: var(--forest); font: 500 21px 'Gowun Batang', serif; }.guide-steps p { font-size: 14px; }.guide-steps b { color: var(--forest); }
.guide-alerts { display: grid; gap: 10px; margin: 24px 0 27px; }.guide-alerts p { margin: 0; padding: 13px 17px; border-left: 3px solid #7d3d2b; background: rgba(125,61,43,.08); color: #69382d; font-weight: 600; }
.guide-decks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-top: 24px; border-top: 1px solid #bca97f; }.guide-decks span { padding: 11px 15px; border-bottom: 1px solid rgba(188,169,127,.55); color: var(--forest); font: 500 15px 'Cormorant Garamond', serif; }
.guide-cta { max-width: 760px; margin: 56px auto 0; padding: 36px 20px; border-top: 1px solid rgba(169,130,66,.45); text-align: center; }.guide-cta p { margin: 0 0 8px; font-size: 14px; }.guide-cta h2 { margin: 0 0 21px; color: var(--forest); font: 500 24px 'Gowun Batang', serif; }.guide-home-link { display: block; margin-top: 17px; color: var(--forest); font-size: 13px; }
@media (max-width: 560px) {
  .guide-html-page { width: 100%; padding: 44px 18px 54px; }.guide-html-page .page-heading h1 { font-size: 42px; }.guide-html-toc { gap: 7px 13px; margin-bottom: 20px; font-size: 12px; }.guide-content { width: 100%; }.guide-section { padding: 44px 0; }.guide-section-tinted,.guide-section-note { padding: 34px 20px; }.guide-section h2 { font-size: 27px; }.guide-section p { font-size: 14px; line-height: 1.85; }.guide-option-grid { grid-template-columns: 1fr; }.guide-steps article { grid-template-columns: 42px 1fr; gap: 10px; }.guide-steps article > span { font-size: 23px; }.guide-decks { grid-template-columns: 1fr; }.guide-price-table div { padding: 13px 12px; font-size: 18px; }.guide-cta { margin-top: 40px; padding: 30px 8px; }.guide-cta h2 { font-size: 20px; }
}

/* Consultation guide image page */
.guide-image-page { max-width: 980px; padding-top: 64px; padding-bottom: 70px; }
.guide-image-page .page-heading { margin-bottom: 28px; }
.guide-image-page .page-heading h1 { color: var(--ink); }
.guide-current-note { max-width: 760px; margin: 0 auto 28px; padding: 14px 20px; border: 1px solid rgba(169,130,66,.7); background: rgba(247,241,229,.72); color: var(--forest); font-size: 14px; line-height: 1.8; text-align: center; }
.guide-toc { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; max-width: 760px; margin: 0 auto 46px; padding-bottom: 16px; border-bottom: 1px solid rgba(169,130,66,.4); color: var(--forest); font-size: 13px; }
.guide-toc a { border-bottom: 1px solid transparent; }.guide-toc a:hover { border-color: var(--gold); color: var(--gold); }
.guide-images { display: flex; flex-direction: column; align-items: center; gap: 42px; }
.guide-image { width: min(100%, 760px); margin: 0; }
.guide-image img { display: block; width: 100%; height: auto; }
.guide-cta { margin: 56px auto 0; padding: 34px 20px; border-top: 1px solid rgba(169,130,66,.45); text-align: center; }
.guide-cta p { margin: 0 0 18px; font: 500 22px 'Gowun Batang', serif; }.guide-home-link { display: block; margin-top: 17px; color: var(--forest); font-size: 13px; }
@media (max-width: 560px) {
  .guide-image-page { width: 100%; padding: 44px 16px 54px; }
  .guide-image-page .page-heading h1 { font-size: 42px; }
  .guide-current-note { margin-bottom: 22px; padding: 12px 14px; font-size: 12px; }
  .guide-toc { gap: 7px 13px; margin-bottom: 30px; font-size: 12px; }
  .guide-images { gap: 24px; }.guide-image { width: 100%; }
  .guide-cta { margin-top: 38px; padding: 28px 10px; }.guide-cta p { font-size: 18px; }
}

/* Final guide-only overrides */
.guide-html-page { width: min(100%, 1040px); max-width: 1040px; padding: 64px 30px 72px; }
.guide-html-page .page-heading { margin-bottom: 30px; }
.guide-topic-nav { width: min(100%, 900px); margin: 0 auto; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.guide-topic-button { min-height: 46px; padding: 9px 10px; border: 1px solid rgba(54,85,72,.55); border-radius: 3px; background: rgba(247,241,229,.8); color: var(--forest); font-size: 13px; transition: background .2s, color .2s, border-color .2s; }
.guide-topic-button:hover { border-color: var(--gold); color: #6f5424; }
.guide-topic-button.is-active { border-color: var(--gold); background: var(--forest); color: var(--ivory); }
.guide-panels { width: min(100%, 900px); margin: 28px auto 0; }
.guide-topic-panel { padding: 46px 0 12px; border-top: 1px solid rgba(169,130,66,.45); animation: guide-fade .22s ease both; }
.guide-topic-panel[hidden] { display: none; }
.guide-topic-panel .guide-eyebrow { margin: 0 0 7px; color: #705a31; font: 500 13px 'Cormorant Garamond', serif; letter-spacing: 2px; }
.guide-topic-panel h2 { margin: 0 0 24px; color: var(--forest); font: 500 31px 'Gowun Batang', serif; }
.guide-topic-panel p { margin: 0 0 14px; font-size: 15px; line-height: 1.95; }
.guide-topic-panel p:last-child { margin-bottom: 0; }
.guide-topic-panel .guide-prose { max-width: 820px; }
.guide-topic-panel .guide-tags { margin: 24px 0 27px; gap: 8px; }
.guide-topic-panel .guide-caution { margin: 25px 0 !important; padding: 12px 16px; border-left: 3px solid var(--gold); background: rgba(169,130,66,.1); color: var(--forest); }
.guide-topic-panel .guide-privacy { margin-top: 24px !important; color: var(--forest); }
.guide-topic-panel .guide-steps article { padding: 24px 0; }
.guide-topic-panel .guide-steps article:first-child { border-top: 0; padding-top: 4px; }
.guide-topic-panel .guide-option-grid { margin-top: 28px; }
.guide-topic-panel .guide-option-grid article { min-height: 170px; padding: 24px; border: 1px solid rgba(188,169,127,.9); background: rgba(247,241,229,.62); }
.guide-topic-panel .guide-alerts { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 24px 0 30px; }
.guide-topic-panel .guide-alerts p { padding: 14px 17px; border: 1px solid rgba(169,130,66,.5); border-left: 3px solid var(--gold); background: rgba(169,130,66,.1); color: var(--forest); }
.guide-topic-panel .guide-decks { margin-top: 26px; }
.guide-html-page .guide-cta { width: min(100%, 900px); margin: 40px auto 0; padding: 34px 20px 8px; }
@keyframes guide-fade { from { opacity: .55; transform: translateY(3px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 850px) { .guide-topic-nav { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 560px) {
  .guide-html-page { width: 100%; padding: 44px 18px 54px; }
  .guide-html-page .page-heading h1 { font-size: 42px; }
  .guide-topic-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .guide-topic-button { min-height: 44px; padding: 8px 6px; font-size: 12px; }
  .guide-panels { margin-top: 22px; }
  .guide-topic-panel { padding: 36px 0 8px; }
  .guide-topic-panel h2 { font-size: 27px; margin-bottom: 20px; }
  .guide-topic-panel p { font-size: 14px; line-height: 1.85; }
  .guide-topic-panel .guide-option-grid, .guide-topic-panel .guide-alerts { grid-template-columns: 1fr; }
  .guide-topic-panel .guide-steps article { grid-template-columns: 42px 1fr; gap: 10px; }
  .guide-topic-panel .guide-steps article > span { font-size: 23px; }
  .guide-html-page .guide-cta { margin-top: 34px; padding: 30px 8px 5px; }
}
