:root {
  --ink: #061b1c;
  --ink-2: #0a2727;
  --teal: #18b9b2;
  --teal-soft: #7ce0d7;
  --gold: #e7bd73;
  --ivory: #f8f1df;
  --muted: #abc5c2;
  --line: rgba(231, 189, 115, 0.22);
  --surface: rgba(10, 39, 39, 0.82);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ivory);
  background:
    radial-gradient(circle at 82% 2%, rgba(24,185,178,.19), transparent 31rem),
    radial-gradient(circle at 4% 46%, rgba(231,189,115,.08), transparent 24rem),
    var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 30;
  border-bottom: 1px solid rgba(231,189,115,.16);
  background: rgba(5,24,24,.88);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; gap: 32px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 1px solid var(--gold); }
.brand b { display: block; font-size: 18px; letter-spacing: .12em; }
.brand small { display: block; color: var(--gold); letter-spacing: .18em; font-size: 11px; }
.nav { display: flex; align-items: center; gap: 24px; color: #d8e8e5; font-size: 15px; }
.nav a { padding: 24px 0; border-bottom: 2px solid transparent; }
.nav a:hover, .nav a.active { color: var(--teal-soft); border-bottom-color: var(--teal); }
.nav-cta { padding: 10px 18px !important; border: 1px solid var(--gold) !important; border-radius: 999px; color: var(--gold) !important; }
.menu-btn { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; color: var(--ivory); background: transparent; }

.hero { min-height: 720px; display: grid; align-items: end; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(3,18,18,.95) 0%, rgba(3,18,18,.66) 48%, rgba(3,18,18,.13) 100%),
              linear-gradient(0deg, var(--ink) 0%, transparent 38%);
  z-index: 1;
}
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-content { position: relative; z-index: 2; padding: 92px 0 120px; max-width: 1180px; }
.eyebrow { display: flex; align-items: center; gap: 12px; color: var(--gold); letter-spacing: .22em; font-size: 14px; }
.eyebrow::before { content: ""; width: 38px; height: 1px; background: var(--gold); }
.hero h1 { max-width: 920px; font-family: "STSong", "SimSun", serif; font-size: clamp(50px, 7vw, 92px); line-height: 1.05; letter-spacing: .06em; margin: 20px 0 18px; font-weight: 500; }
.hero h1 span { color: var(--teal-soft); }
.hero-lead { color: #d0dfdd; font-size: 18px; max-width: 790px; margin: 0 0 34px; }
.nowrap { white-space: nowrap; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn { min-height: 50px; padding: 12px 24px; border-radius: 3px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-weight: 700; letter-spacing: .06em; border: 1px solid transparent; }
.btn-primary { color: #061b1c; background: linear-gradient(135deg, var(--teal-soft), var(--teal)); box-shadow: 0 12px 30px rgba(24,185,178,.22); }
.btn-outline { color: var(--gold); border-color: rgba(231,189,115,.62); background: rgba(6,27,28,.34); }
.quick-facts { margin-top: 64px; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); border-top: 1px solid var(--line); max-width: 720px; }
.fact { padding: 20px 24px 0 0; }
.fact b { display: block; font-size: 21px; color: var(--ivory); }
.fact span { color: var(--muted); font-size: 14px; }

.section { padding: 92px 0; }
.section-head { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 34px; }
.section-head h2 { font-family: "STSong", "SimSun", serif; font-size: clamp(34px, 4vw, 54px); font-weight: 500; margin: 7px 0 0; letter-spacing: .06em; }
.section-head p { max-width: 430px; margin: 0; color: var(--muted); }
.text-link { color: var(--gold); white-space: nowrap; }
.room-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 18px; }
.room-card { position: relative; min-height: 290px; overflow: hidden; border: 1px solid var(--line); background: var(--ink-2); }
.room-card:first-child { grid-row: span 2; min-height: 598px; }
.room-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.room-card:hover img { transform: scale(1.035); }
.room-card::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(3,18,18,.9)); }
.room-copy { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 20px; display: flex; justify-content: space-between; align-items: end; }
.room-copy h3 { margin: 0; font-size: 22px; }
.room-copy span { color: var(--gold); }

.price-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.price-card { padding: 28px 24px; background: linear-gradient(145deg, rgba(16,61,59,.9), rgba(7,30,30,.92)); border: 1px solid var(--line); position: relative; overflow: hidden; }
.price-card::before { content: ""; position: absolute; width: 70px; height: 70px; border: 1px solid rgba(124,224,215,.22); border-radius: 50%; right: -22px; top: -22px; }
.price-card small { color: var(--muted); }
.price-card h3 { margin: 4px 0 18px; font-size: 24px; }
.price { color: var(--gold); font-family: Georgia, serif; font-size: 38px; line-height: 1; }
.price sup { font-size: 14px; margin-right: 3px; }
.price-card p { margin: 16px 0 0; font-size: 14px; color: var(--muted); }
.home-plan-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.home-plan-card { min-height: 232px; border-top: 3px solid var(--plan-accent); }
.home-plan-card small { color: var(--plan-accent); letter-spacing: .1em; }
.home-plan-card h3 { margin-top: 8px; }
.home-plan-card .price { color: var(--plan-accent); }
.price-from { color: var(--muted); font-family: "Microsoft YaHei", sans-serif; font-size: 14px; }
.home-guide-links { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 20px; padding: 18px 22px; border: 1px solid var(--line); background: rgba(10,39,39,.5); }
.home-guide-links a { color: var(--gold); }
.home-guide-links a:hover { color: var(--teal-soft); }

.feature-band { padding: 0 0 92px; }
.feature-panel { display: grid; grid-template-columns: 1fr 1fr; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); }
.feature-panel img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.feature-copy { padding: 56px; display: flex; flex-direction: column; justify-content: center; }
.feature-copy h2 { font-family: "STSong", "SimSun", serif; font-size: 42px; font-weight: 500; margin: 12px 0 18px; }
.feature-copy p { color: var(--muted); }
.mini-list { display: grid; gap: 12px; margin: 14px 0 28px; }
.mini-list div { display: flex; justify-content: space-between; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.mini-list span:last-child { color: var(--gold); }

.contact-strip { padding: 42px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(11,47,46,.42); }
.contact-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr auto; gap: 34px; align-items: center; }
.contact-row h2 { margin: 0; font-family: "STSong", "SimSun", serif; font-weight: 500; font-size: 32px; }
.contact-item small { color: var(--muted); display: block; }
.contact-item b { color: var(--ivory); font-size: 17px; }

.site-footer { padding: 34px 0 96px; color: var(--muted); font-size: 14px; }
.footer-row { display: flex; justify-content: space-between; gap: 30px; }
.mobile-bar { display: none; }

.page-hero { padding: 96px 0 54px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 75% 5%, rgba(24,185,178,.18), transparent 30rem); }
.page-hero h1 { font-family: "STSong", "SimSun", serif; font-size: clamp(42px, 6vw, 70px); font-weight: 500; line-height: 1.15; margin: 12px 0; letter-spacing: .06em; }
.page-hero p { color: var(--muted); max-width: 680px; margin: 0; }
.drinks-page-hero p { max-width: none; }
.services-page-hero p { max-width: 780px; }
.crumb { color: var(--gold); font-size: 14px; }
.content-section { padding: 68px 0 92px; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery button { padding: 0; border: 1px solid var(--line); background: var(--ink-2); cursor: zoom-in; overflow: hidden; min-height: 250px; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, opacity .45s ease; }
.gallery button:hover img { transform: scale(1.035); opacity: .9; }
.gallery button:nth-child(1), .gallery button:nth-child(8) { grid-column: span 2; }
.lightbox { position: fixed; z-index: 100; inset: 0; background: rgba(1,8,8,.94); display: none; place-items: center; padding: 56px 24px; }
.lightbox.open { display: grid; }
.lightbox img { max-width: min(1200px, 94vw); max-height: 86vh; border: 1px solid var(--line); box-shadow: var(--shadow); }
.lightbox-close { position: absolute; top: 18px; right: 24px; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: var(--ink-2); color: white; font-size: 24px; cursor: pointer; }

.menu-layout { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(300px,.8fr); gap: 34px; align-items: start; }
.menu-board { display: grid; gap: 38px; }
.menu-group h2 { font-family: "STSong", "SimSun", serif; font-size: 32px; font-weight: 500; margin: 0 0 16px; color: var(--teal-soft); }
.menu-table { border-top: 1px solid var(--line); }
.menu-row { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); align-items: center; }
.menu-row.header { color: var(--muted); font-size: 13px; }
.menu-row span:not(:first-child) { text-align: right; color: var(--gold); }
.poster-card { position: sticky; top: 98px; border: 1px solid var(--line); background: #d7eee6; padding: 10px; }
.poster-card img { width: 100%; }
.notice { padding: 18px 20px; border-left: 3px solid var(--gold); background: rgba(231,189,115,.08); color: #d6e2df; }
.drink-catalog { display: grid; gap: 58px; }
.drink-catalog > .notice { margin-bottom: -12px; }
.drink-group-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.drink-group-head span { color: var(--gold); font-size: 13px; letter-spacing: .16em; }
.drink-group-head h2 { margin: 2px 0 0; font-family: "STSong", "SimSun", serif; font-size: 34px; font-weight: 500; }
.drink-group-head small { color: var(--muted); }
.drink-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; margin-top: 18px; }
.drink-grid-featured { grid-template-columns: minmax(300px, 1fr) 2fr; }
.drink-grid-featured .drink-card { grid-column: 1; }
.drink-card { min-height: 148px; display: grid; grid-template-columns: 118px minmax(0,1fr); overflow: hidden; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(16,61,59,.9), rgba(7,30,30,.98)); }
.drink-photo { min-height: 148px; overflow: hidden; background: linear-gradient(145deg,#e7f4ef,#ccddeb); border-right: 1px solid var(--line); }
.drink-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; mix-blend-mode: multiply; }
.drink-info { display: flex; flex-direction: column; justify-content: center; min-width: 0; padding: 18px; }
.drink-info h3 { margin: 0 0 11px; font-size: 18px; line-height: 1.45; }
.drink-info p { margin: 0; color: var(--muted); font-size: 14px; }
.drink-info p b { color: var(--gold); font-family: Georgia, serif; font-size: 24px; }
.drink-info small { display: block; margin-top: 6px; color: var(--teal-soft); }

.guide-plans { display: grid; gap: 26px; margin-bottom: 52px; }
.guide-plan { --plan-accent: var(--gold); position: relative; overflow: hidden; padding: 32px; border: 1px solid rgba(231,189,115,.34); border-left: 4px solid var(--plan-accent); background: linear-gradient(145deg, rgba(16,61,59,.94), rgba(7,30,30,.99)); box-shadow: 0 18px 50px rgba(0,0,0,.18); }
.guide-plan::after { content: ""; position: absolute; right: -74px; top: -74px; width: 190px; height: 190px; border: 1px solid var(--plan-accent); border-radius: 50%; opacity: .14; }
.guide-plan-head { position: relative; z-index: 1; display: grid; grid-template-columns: 92px minmax(0,1fr) auto; gap: 24px; align-items: center; }
.plan-number { color: var(--plan-accent); font-family: Georgia, serif; font-size: 52px; line-height: 1; border-right: 1px solid rgba(231,189,115,.26); }
.plan-kicker { color: var(--plan-accent); font-size: 12px; letter-spacing: .18em; }
.guide-plan h2 { margin: 3px 0 0; font-family: "STSong", "SimSun", serif; font-size: 33px; font-weight: 500; line-height: 1.25; }
.plan-type { padding: 7px 14px; border: 1px solid var(--plan-accent); border-radius: 999px; color: var(--plan-accent); font-size: 13px; white-space: nowrap; }
.plan-room-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; margin-top: 26px; }
.plan-room { min-height: 176px; padding: 22px 20px; border: 1px solid rgba(171,197,194,.18); background: rgba(3,22,22,.56); }
.plan-room h3 { margin: 0 0 16px; color: var(--ivory); font-size: 18px; }
.plan-price { color: var(--plan-accent); font-family: Georgia, serif; font-size: 34px; line-height: 1; }
.plan-price sup { margin-right: 3px; font-size: 13px; }
.plan-room p { display: flex; flex-direction: column; gap: 2px; margin: 16px 0 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.plan-room p b { color: var(--ivory); font-weight: 600; }
.plan-note { position: relative; z-index: 1; display: flex; align-items: center; gap: 16px; margin-top: 16px; padding: 14px 18px; border: 1px solid rgba(171,197,194,.16); background: rgba(3,22,22,.42); color: #d5e3e0; }
.plan-note strong { flex: 0 0 auto; color: var(--plan-accent); }
.plan-note-list { align-items: flex-start; }
.plan-note-list ol { margin: 0; padding-left: 1.5em; }
.plan-note-list li + li { margin-top: 5px; }
.plan-single { --plan-accent: #e7bd73; background: linear-gradient(145deg, rgba(77,58,24,.74), rgba(7,30,30,.99) 58%); }
.plan-shared { --plan-accent: #7ce0d7; background: linear-gradient(145deg, rgba(13,70,67,.9), rgba(7,30,30,.99) 62%); }
.plan-vip { --plan-accent: #aabfff; background: linear-gradient(145deg, rgba(38,54,91,.82), rgba(7,30,30,.99) 62%); }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 34px 0 56px; }
.step { counter-increment: step; padding: 28px; border: 1px solid var(--line); background: var(--surface); }
.step::before { content: "0" counter(step); color: var(--gold); font-family: Georgia,serif; font-size: 28px; }
.step h3 { margin: 13px 0 7px; }
.step p { margin: 0; color: var(--muted); }
.guide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.info-card { padding: 30px; border: 1px solid var(--line); background: rgba(10,39,39,.64); }
.info-card h2 { margin: 0 0 18px; font-family: "STSong", "SimSun", serif; font-weight: 500; font-size: 30px; }
.clean-list { list-style: none; padding: 0; margin: 0; }
.clean-list li { padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.clean-list li:last-child { border-bottom: 0; }
.clean-list strong { color: var(--ivory); }

.member-layout { display: block; }
.member-poster { border: 1px solid var(--line); padding: 10px; background: #e6f2e8; }
.member-content h2 { font-family: "STSong", "SimSun", serif; font-size: 34px; font-weight: 500; margin: 0 0 18px; }
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0 40px; }
.benefit { border: 1px solid var(--line); background: var(--surface); padding: 22px; }
.benefit b { color: var(--gold); display: block; font-size: 26px; }
.benefit span { color: var(--muted); font-size: 14px; }
.member-intro { display: flex; justify-content: space-between; gap: 36px; align-items: end; margin-bottom: 26px; }
.member-intro h2 { margin: 10px 0 6px; font-size: 44px; }
.member-intro p { color: var(--muted); margin: 0; }
.promo-group { margin-top: 48px; }
.promo-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.promo-heading span { color: var(--gold); font-size: 13px; letter-spacing: .16em; }
.promo-heading h3 { margin: 2px 0 0; font-family: "STSong", "SimSun", serif; font-size: 32px; font-weight: 500; }
.promo-heading small { color: var(--muted); }
.promo-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 18px; }
.promo-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.promo-card { position: relative; min-height: 188px; padding: 25px 24px; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(16,61,59,.94), rgba(7,30,30,.98)); }
.promo-card::after { content: ""; position: absolute; right: -38px; bottom: -58px; width: 130px; height: 130px; border: 1px solid rgba(124,224,215,.16); border-radius: 50%; }
.promo-kicker { display: block; color: var(--muted); font-size: 13px; letter-spacing: .12em; }
.promo-card > strong { display: block; margin: 7px 0 25px; color: var(--ivory); font-family: Georgia, "Times New Roman", serif; font-size: 32px; line-height: 1.15; }
.promo-return { display: flex; flex-wrap: wrap; gap: 8px 15px; position: relative; z-index: 1; }
.promo-return b { color: var(--teal-soft); font-size: 17px; }
.promo-return em { color: var(--gold); font-size: 14px; font-style: normal; }
.promo-card-featured { border-color: rgba(231,189,115,.55); background: linear-gradient(145deg, rgba(72,55,26,.82), rgba(7,30,30,.98)); }
.promo-badge { position: absolute; top: 18px; right: 18px; padding: 3px 9px; border: 1px solid rgba(231,189,115,.5); border-radius: 999px; color: var(--gold); font-size: 12px; }
.member-confirm { display: grid; grid-template-columns: 1fr .8fr; gap: 20px; margin-top: 56px; }
.member-confirm > div { padding: 30px; border: 1px solid var(--line); background: rgba(10,39,39,.64); }
.member-confirm h2 { font-size: 30px; }
.member-contact { display: flex; flex-direction: column; justify-content: center; }
.member-contact > span { color: var(--muted); }
.member-contact > b { color: var(--gold); font-family: Georgia, serif; font-size: 34px; letter-spacing: .04em; }
.member-contact p { color: var(--muted); }
.service-section { margin-bottom: 76px; }
.service-heading { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 28px; }
.service-heading h2 { margin: 10px 0 8px; font-size: 44px; }
.service-heading p { max-width: 720px; margin: 0; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.service-card { position: relative; min-height: 330px; padding: 30px 27px 25px; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(155deg, rgba(16,61,59,.9), rgba(7,30,30,.98)); }
.service-card::after { content: ""; position: absolute; right: -55px; top: -55px; width: 150px; height: 150px; border: 1px solid rgba(124,224,215,.14); border-radius: 50%; }
.service-no { display: block; color: var(--gold); font-family: Georgia, serif; font-size: 27px; line-height: 1; }
.service-card h3 { position: relative; z-index: 1; margin: 26px 0 13px; color: var(--ivory); font-size: 21px; line-height: 1.45; }
.service-card p { position: relative; z-index: 1; margin: 0 0 20px; color: #c1d4d1; line-height: 1.8; }
.service-card small { position: relative; z-index: 1; display: block; padding-top: 15px; border-top: 1px solid var(--line); color: #8caaa6; line-height: 1.65; }
.service-card-highlight { border-color: rgba(231,189,115,.6); background: linear-gradient(155deg, rgba(75,57,25,.86), rgba(7,30,30,.98)); }
.service-card-wide { grid-column: span 2; min-height: 260px; }
.service-badge { position: absolute; z-index: 2; top: 22px; right: 22px; padding: 4px 11px; border: 1px solid rgba(231,189,115,.55); border-radius: 999px; color: var(--gold); font-size: 12px; letter-spacing: .1em; }
.service-note { margin: 18px 0 0; color: var(--muted); font-size: 14px; }
.service-page { margin-bottom: 0; }
.service-callout { display: flex; justify-content: space-between; align-items: center; gap: 34px; margin-top: 42px; padding: 34px; border: 1px solid var(--line); background: linear-gradient(135deg, rgba(15,67,64,.9), rgba(7,30,30,.96)); }
.service-callout span { color: var(--gold); font-size: 13px; letter-spacing: .14em; }
.service-callout h2 { margin: 7px 0 4px; font-size: 30px; }
.service-callout p { margin: 0; color: var(--muted); }
.service-showcase { display: grid; gap: 18px; }
.service-item { display: grid; grid-template-columns: 110px minmax(230px,.7fr) minmax(0,1.35fr); gap: 30px; align-items: stretch; padding: 32px; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(16,61,59,.94), rgba(7,30,30,.99)); box-shadow: 0 18px 50px rgba(0,0,0,.16); }
.service-index { display: flex; align-items: flex-start; justify-content: center; padding-top: 5px; border-right: 1px solid var(--line); color: var(--gold); font-family: Georgia, serif; font-size: 58px; line-height: 1; }
.service-identity { display: flex; flex-direction: column; justify-content: center; }
.service-identity > span { color: var(--gold); font-size: 13px; letter-spacing: .08em; line-height: 1.6; }
.service-identity h3 { margin: 12px 0 10px; font-family: "STSong", "SimSun", serif; font-size: 38px; font-weight: 600; letter-spacing: .08em; }
.service-identity p { margin: 0; color: var(--teal-soft); font-size: 16px; }
.service-detail { display: flex; flex-direction: column; justify-content: center; }
.service-detail > p { margin: 0 0 18px; color: #c9d9d6; line-height: 1.95; }
.fee-rule, .experience-rule, .service-inline-note { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; padding: 15px 17px; border: 1px solid rgba(231,189,115,.46); background: rgba(231,189,115,.08); }
.fee-rule b, .experience-rule b, .service-inline-note b { color: var(--gold); white-space: nowrap; }
.fee-rule span, .experience-rule span, .service-inline-note span { color: #dce7e5; font-size: 14px; line-height: 1.75; }
.service-item-accent { border-color: rgba(231,189,115,.66); background: linear-gradient(145deg, rgba(83,62,25,.86), rgba(7,30,30,.99)); }
.service-item-accent .service-index { color: #ffe2a8; }
.experience-rule { border-color: rgba(124,224,215,.48); background: rgba(24,185,178,.1); }
.experience-rule b { color: var(--teal-soft); }
.service-inline-note { border-color: rgba(124,224,215,.24); background: rgba(24,185,178,.05); }
.service-inline-note b { color: var(--teal-soft); }
.service-item-finale { background: linear-gradient(145deg, rgba(54,39,28,.92), rgba(7,30,30,.99)); }
.service-quote { color: var(--gold) !important; font-family: "STSong", "SimSun", serif; font-size: 21px; }

.booking-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 34px; align-items: start; }
.booking-hero-layout { display: grid; grid-template-columns: minmax(0,1fr) 190px; gap: 52px; align-items: center; }
.booking-qr { margin: 0; padding: 10px; border: 1px solid var(--line); background: var(--ivory); box-shadow: var(--shadow); }
.booking-qr img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.booking-qr figcaption { display: flex; flex-direction: column; align-items: center; padding: 9px 6px 3px; color: var(--ink); line-height: 1.45; }
.booking-qr figcaption b { font-size: 17px; }
.booking-qr figcaption span { color: #315452; font-size: 13px; }
.booking-aside { padding: 34px; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(17,65,62,.9), rgba(7,30,30,.95)); }
.booking-aside h2 { font-family: "STSong", "SimSun", serif; font-size: 34px; font-weight: 500; margin: 0 0 12px; }
.booking-aside p { color: var(--muted); }
.booking-form { border: 1px solid var(--line); background: var(--surface); padding: 36px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 14px; color: #d9e8e5; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid rgba(124,224,215,.25); border-radius: 2px; color: var(--ivory); background: #071f20; outline: none; }
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(24,185,178,.1); }
.form-actions { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }
.summary { display: none; margin-top: 24px; padding: 20px; border: 1px solid var(--teal); background: rgba(24,185,178,.08); white-space: pre-line; }
.summary.show { display: block; }

.seo-local { border-top: 1px solid var(--line); background: linear-gradient(180deg, rgba(10,46,45,.54), rgba(5,24,24,0)); }
.seo-answer-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.seo-answer-grid article { padding: 26px; border: 1px solid var(--line); background: rgba(12,52,51,.62); }
.seo-answer-grid h3 { margin: 0 0 10px; color: var(--ivory); font-size: 20px; }
.seo-answer-grid p { margin: 0; color: var(--muted); line-height: 1.8; }
.seo-answer-grid a { color: var(--teal-soft); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 1100px) {
  .contact-row { grid-template-columns: 1fr 1fr auto; }
  .contact-row h2 { grid-column: 1 / -1; }
}

@media (min-width: 840px) {
  .drinks-page-hero .shell { width: min(1180px, calc(100% - 40px)); }
  .drinks-page-hero p { white-space: nowrap; font-size: 14px; }
}

@media (max-width: 900px) {
  .shell { width: min(100% - 28px, 760px); }
  .nav-wrap { min-height: 66px; }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 66px; padding: 12px 20px 22px; background: rgba(5,24,24,.98); border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 0; }
  .nav.open { display: flex; }
  .nav a { padding: 13px 4px; }
  .nav-cta { margin-top: 10px; text-align: center; }
  .brand b { font-size: 16px; }
  .hero { min-height: 690px; }
  .hero::before { background: linear-gradient(0deg, var(--ink) 0%, rgba(3,18,18,.64) 62%, rgba(3,18,18,.28) 100%); }
  .hero-content { padding: 82px 0 92px; }
  .quick-facts { margin-top: 46px; }
  .section { padding: 68px 0; }
  .room-grid, .feature-panel { grid-template-columns: 1fr; }
  .room-card:first-child { grid-row: auto; min-height: 440px; }
  .room-card { min-height: 320px; }
  .price-grid { grid-template-columns: repeat(2,1fr); }
  .home-plan-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .feature-copy { padding: 38px 28px; }
  .contact-row { grid-template-columns: 1fr 1fr; }
  .contact-row > .btn { grid-column: 1 / -1; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery button:nth-child(1), .gallery button:nth-child(8) { grid-column: span 1; }
  .menu-layout, .member-layout, .booking-layout { grid-template-columns: 1fr; }
  .booking-hero-layout { grid-template-columns: minmax(0,1fr) 160px; gap: 28px; }
  .promo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-heading { display: block; }
  .service-heading .btn { margin-top: 22px; }
  .service-heading h2 { font-size: 40px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card-wide { grid-column: span 1; }
  .service-callout { display: block; }
  .service-callout .actions { margin-top: 22px; }
  .service-item { grid-template-columns: 90px minmax(190px,.75fr) minmax(0,1.25fr); gap: 22px; padding: 26px 22px; }
  .service-index { font-size: 46px; }
  .service-identity h3 { font-size: 31px; }
  .poster-card { position: static; max-width: 560px; margin: 0 auto; }
  .drink-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .drink-grid-featured { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .guide-plan-head { grid-template-columns: 74px minmax(0,1fr); }
  .plan-number { font-size: 42px; }
  .plan-type { grid-column: 2; justify-self: start; }
  .plan-room-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .steps { grid-template-columns: 1fr; }
  .seo-answer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { padding-bottom: 66px; }
  .brand small { display: none; }
  .hero { min-height: 650px; }
  .hero-content { padding-top: 64px; }
  .hero h1 { font-size: 50px; }
  .hero-lead { font-size: 16px; }
  .actions .btn { flex: 1 1 150px; }
  .quick-facts { grid-template-columns: 1fr 1fr; }
  .fact:last-child { grid-column: 1 / -1; }
  .section-head { display: block; }
  .section-head p { margin-top: 12px; }
  .room-card:first-child, .room-card { min-height: 310px; }
  .price-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .home-plan-grid { grid-template-columns: 1fr; }
  .home-plan-card { min-height: auto; }
  .price-card { padding: 22px 16px; }
  .price { font-size: 32px; }
  .feature-panel img { min-height: 320px; }
  .feature-copy h2 { font-size: 34px; }
  .contact-row { grid-template-columns: 1fr; gap: 18px; }
  .footer-row { display: block; }
  .page-hero { padding: 62px 0 42px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery button { min-height: 240px; }
  .menu-row { grid-template-columns: 1.1fr .65fr .65fr; gap: 8px; font-size: 14px; }
  .drink-catalog { gap: 46px; }
  .drink-group-head { align-items: start; }
  .drink-group-head h2 { font-size: 30px; }
  .drink-grid { grid-template-columns: 1fr; }
  .drink-grid-featured { grid-template-columns: 1fr; }
  .drink-card { grid-template-columns: 112px minmax(0,1fr); min-height: 138px; }
  .drink-photo { min-height: 138px; }
  .guide-plans { gap: 18px; }
  .guide-plan { padding: 24px 18px; }
  .guide-plan-head { grid-template-columns: 1fr; gap: 10px; }
  .plan-number { padding-bottom: 10px; border-right: 0; border-bottom: 1px solid rgba(231,189,115,.26); font-size: 38px; }
  .guide-plan h2 { font-size: 28px; }
  .plan-type { grid-column: 1; }
  .plan-room-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 20px; }
  .plan-room { min-height: auto; }
  .plan-note { align-items: flex-start; flex-direction: column; gap: 3px; }
  .guide-grid, .benefit-grid, .form-grid { grid-template-columns: 1fr; }
  .member-intro { display: block; }
  .member-intro .btn { margin-top: 22px; width: 100%; }
  .promo-grid, .promo-grid-2, .member-confirm { grid-template-columns: 1fr; }
  .promo-card { min-height: 164px; }
  .service-heading { display: block; }
  .service-heading .btn { width: 100%; margin-top: 22px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-callout { padding: 26px 20px; }
  .service-callout .btn { width: 100%; }
  .service-item { grid-template-columns: 1fr; gap: 16px; padding: 26px 20px; }
  .service-index { justify-content: flex-start; border-right: 0; border-bottom: 1px solid var(--line); padding: 0 0 15px; }
  .service-identity h3 { margin-top: 8px; font-size: 34px; }
  .fee-rule, .experience-rule, .service-inline-note { grid-template-columns: 1fr; gap: 5px; }
  .field.full { grid-column: auto; }
  .booking-form { padding: 24px 18px; }
  .booking-hero-layout { grid-template-columns: 1fr; gap: 24px; }
  .booking-qr { width: 156px; justify-self: start; }
  .mobile-bar { display: grid; grid-template-columns: 1fr 1fr; position: fixed; z-index: 50; left: 0; right: 0; bottom: 0; height: 66px; box-shadow: 0 -12px 35px rgba(0,0,0,.28); }
  .mobile-bar a { display: flex; align-items: center; justify-content: center; font-weight: 700; }
  .mobile-bar a:first-child { background: #0c3433; color: var(--gold); }
  .mobile-bar a:last-child { background: var(--teal); color: #041818; }
}
