/* ========================================
   高菜先生どりんく倶楽部 — common.css
   全ページ共通スタイル
======================================== */

@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&family=Nunito:wght@400;600;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Design Tokens ── */
:root {
  --yellow:      #FFD83E;
  --yellow-dark: #E8B800;
  --yellow-light:#FFF5C0;
  --orange:      #FF8C42;
  --pink:        #FF6B9D;
  --pink-light:  #FFE0EE;
  --pink-dark:   #E0457A;
  --mint:        #4ECDC4;
  --mint-light:  #E0F8F6;
  --mint-dark:   #2BA8A0;
  --purple:      #A78BFA;
  --purple-light:#EDE9FE;
  --purple-dark: #7C5DC7;
  --green:       #7BC47E;
  --green-light: #E8F8E8;
  --green-dark:  #3D8B42;
  --red:         #EF4444;
  --red-light:   #FEE2E2;
  --cream:       #FFFEF5;
  --white:       #FFFFFF;
  --dark:        #2D2A26;
  --text:        #3D3A35;
  --text-light:  #7A7570;
  --border:      #E8E4DA;
  --border-dark: #C8C4BA;

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 48px;
  --r-full: 9999px;

  --shadow-sm: 2px 2px 0 var(--dark);
  --shadow-md: 4px 4px 0 var(--dark);
  --shadow-lg: 6px 6px 0 var(--dark);

  --font-body: 'Zen Maru Gothic', sans-serif;
  --max-w: 900px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ========================================
   SKIP LINK
======================================== */
.skip {
  position: absolute; top: -40px; left: 16px;
  background: var(--dark); color: var(--yellow);
  padding: 8px 16px; border-radius: 0 0 8px 8px;
  font-size: 13px; text-decoration: none; z-index: 9999;
  transition: top 0.2s;
}
.skip:focus { top: 0; }

/* ========================================
   HEADER & NAV
======================================== */
#header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255, 254, 245, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--yellow);
  box-shadow: 0 2px 12px rgba(45,42,38,0.08);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  font-weight: 900;
  font-size: 15px;
  color: var(--dark);
  flex-shrink: 0;
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--yellow);
  border: 2px solid var(--dark);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-sm);
}
.logo-text-sub {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.05em;
  margin-top: -2px;
}

#header nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  flex-wrap: nowrap;
}

#header nav a {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: var(--r-md);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
#header nav a:hover,
#header nav a.active {
  background: var(--yellow-light);
  color: var(--dark);
}

.nav-cta {
  background: var(--pink) !important;
  color: white !important;
  border: 2px solid var(--dark);
  border-radius: var(--r-md) !important;
  box-shadow: var(--shadow-sm);
  padding: 8px 16px !important;
}
.nav-cta:hover { background: var(--pink-dark) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 3px solid var(--yellow);
  z-index: 190;
  padding: 16px 20px 24px;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-size: 15px; font-weight: 700;
  color: var(--text);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: var(--r-md);
  transition: background 0.15s;
}
.nav-drawer a:hover { background: var(--yellow-light); }
.drawer-cta {
  background: var(--pink) !important;
  color: white !important;
  text-align: center;
  margin-top: 8px;
  border: 2px solid var(--dark) !important;
}

/* ========================================
   PAGE HERO (各ページのファーストビュー)
======================================== */
.page-hero {
  background: var(--dark);
  padding: 64px 24px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255,216,62,0.04) 20px,
    rgba(255,216,62,0.04) 40px
  );
}
.page-hero-eyebrow {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  border-radius: var(--r-full);
  padding: 5px 18px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  position: relative;
}
.page-hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 12px;
  position: relative;
}
.page-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  position: relative;
}

/* ========================================
   BREADCRUMB
======================================== */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 10px 24px;
  font-size: 12px;
  color: var(--text-light);
}
.breadcrumb a { color: var(--text-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--pink); }
.breadcrumb span { margin: 0 6px; }

/* ========================================
   SECTION COMMON
======================================== */
.section { padding: 72px 24px; }
.section-alt { background: var(--white); }
.section-dark { background: var(--dark); color: white; }

.container { max-width: var(--max-w); margin: 0 auto; }
.container-wide { max-width: 1100px; margin: 0 auto; }

.section-label {
  display: inline-block;
  background: var(--dark);
  color: var(--yellow);
  border-radius: var(--r-full);
  padding: 4px 16px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-label-light {
  background: var(--yellow);
  color: var(--dark);
}

.section-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 8px;
}
.section-title-white { color: white; }

.section-desc {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.8;
}
.section-desc-white { color: rgba(255,255,255,0.65); }

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  border-radius: var(--r-md);
  line-height: 1;
}

.btn-lg { font-size: 18px; padding: 16px 40px; }
.btn-md { font-size: 15px; padding: 12px 28px; }
.btn-sm { font-size: 13px; padding: 9px 20px; }

.btn-primary {
  background: var(--pink);
  color: white;
  border: 2.5px solid var(--dark);
  box-shadow: var(--shadow-lg);
}
.btn-primary:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--dark); }

.btn-secondary {
  background: var(--white);
  color: var(--dark);
  border: 2.5px solid var(--dark);
  box-shadow: var(--shadow-md);
}
.btn-secondary:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--dark); }

.btn-yellow {
  background: var(--yellow);
  color: var(--dark);
  border: 2.5px solid var(--dark);
  box-shadow: var(--shadow-lg);
}
.btn-yellow:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--dark); }

.btn-mint {
  background: var(--mint);
  color: var(--dark);
  border: 2.5px solid var(--dark);
  box-shadow: var(--shadow-md);
}
.btn-mint:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--dark); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px dashed var(--border);
}
.btn-ghost:hover { border-color: var(--pink); background: var(--pink-light); }

.btn-submit {
  display: block; width: 100%;
  background: var(--pink);
  color: white;
  border: 2.5px solid var(--dark);
  border-radius: var(--r-md);
  padding: 14px;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 700;
  cursor: pointer;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-submit:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-lg); }
.btn-submit:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: var(--shadow-md); }

.btn-back {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; color: var(--text-light);
  background: none; border: none; cursor: pointer;
  margin-bottom: 16px; font-family: var(--font-body);
}
.btn-back:hover { color: var(--pink); }

/* ========================================
   CARDS
======================================== */
.card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.card-icon { font-size: 36px; margin-bottom: 12px; }
.card-title { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.card-desc { font-size: 13px; color: var(--text-light); line-height: 1.7; }

/* ========================================
   PRICE BADGE
======================================== */
.price-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  background: var(--yellow);
  border: 3px solid var(--dark);
  border-radius: var(--r-lg);
  padding: 14px 36px;
  box-shadow: var(--shadow-lg);
}
.price-badge .yen { font-size: 18px; font-weight: 900; }
.price-badge .amount { font-size: 48px; font-weight: 900; line-height: 1; }
.price-badge .suffix { font-size: 14px; font-weight: 700; }

.price-note {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  font-size: 13px; color: var(--text-light); margin-top: 12px;
}
.price-note span::before { content: "✓ "; color: var(--green-dark); font-weight: 700; }

/* ========================================
   FEATURE GRID
======================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}

/* ========================================
   STEP FLOW
======================================== */
.flow-steps { display: flex; flex-direction: column; }

.flow-step {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 18px 0;
  position: relative;
}
.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 22px; top: 60px;
  width: 2px; height: calc(100% - 40px);
  background: repeating-linear-gradient(
    to bottom, var(--yellow) 0, var(--yellow) 6px, transparent 6px, transparent 12px
  );
}
.step-num {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--yellow);
  border: 2.5px solid var(--dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900; color: var(--dark);
  box-shadow: var(--shadow-sm);
  z-index: 1;
}
.step-content { padding-top: 6px; }
.step-title { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.step-desc { font-size: 13px; color: var(--text-light); }

.step-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.step-tag {
  background: var(--yellow-light);
  border: 1px solid var(--yellow);
  border-radius: var(--r-full);
  padding: 3px 12px;
  font-size: 12px; font-weight: 500; color: var(--dark);
}

/* ========================================
   TAGS / CHIPS
======================================== */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--cream);
  border: 2px solid var(--border);
  border-radius: var(--r-full);
  padding: 8px 18px;
  font-size: 14px; font-weight: 500;
  transition: transform 0.15s, background 0.15s;
  cursor: default;
}
.chip:hover { transform: scale(1.05); background: var(--yellow-light); border-color: var(--yellow); }
.chip-emoji { font-size: 17px; }

.tag {
  display: inline-block;
  border-radius: var(--r-full);
  padding: 4px 14px;
  font-size: 12px; font-weight: 700;
}
.tag-yellow { background: var(--yellow); color: var(--dark); border: 1.5px solid var(--dark); }
.tag-pink   { background: var(--pink-light); color: var(--pink-dark); border: 1.5px solid var(--pink); }
.tag-mint   { background: var(--mint-light); color: var(--mint-dark); border: 1.5px solid var(--mint); }
.tag-green  { background: var(--green-light); color: var(--green-dark); border: 1.5px solid var(--green); }
.tag-red    { background: var(--red-light); color: var(--red); border: 1.5px solid var(--red); }
.tag-purple { background: var(--purple-light); color: var(--purple-dark); border: 1.5px solid var(--purple); }

/* ========================================
   HASHTAG
======================================== */
.hashtag-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.hashtag {
  background: var(--purple-light);
  color: var(--purple-dark);
  border: 1.5px solid var(--purple);
  border-radius: var(--r-full);
  padding: 8px 20px;
  font-size: 14px; font-weight: 700;
  transition: background 0.15s, color 0.15s;
  cursor: default;
}
.hashtag:hover { background: var(--purple); color: white; }

/* ========================================
   AGE NOTICE (リキュール用)
======================================== */
.age-notice {
  background: var(--red-light);
  border: 2px solid var(--red);
  border-radius: var(--r-md);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 700; color: var(--red);
  margin-bottom: 24px;
}
.age-notice-icon { font-size: 24px; }

/* ========================================
   NOTICE / INFO BOX
======================================== */
.info-box {
  background: var(--yellow-light);
  border: 1.5px solid var(--yellow);
  border-left: 4px solid var(--yellow-dark);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 12px 16px;
  font-size: 13px; color: var(--dark);
  line-height: 1.7;
  margin-bottom: 20px;
}
.info-box a { color: var(--dark); font-weight: 700; }

/* ========================================
   FAQ
======================================== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--yellow); }

.faq-q {
  width: 100%;
  padding: 16px 20px;
  background: none; border: none;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  display: flex; align-items: center; gap: 10px;
  text-align: left;
}
.faq-q-icon {
  width: 26px; height: 26px; min-width: 26px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 900;
}
.faq-arrow { margin-left: auto; font-size: 11px; transition: transform 0.2s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  font-size: 13px; color: var(--text-light);
  line-height: 1.85; padding: 0 20px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 20px 16px; }

/* ========================================
   CONTACT / FORM
======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 2rem;
}

.cc {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.cc-head {
  padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
}
.cc-head-ln   { background: #06c755; }
.cc-head-wa   { background: #25d366; }
.cc-head-tel  { background: var(--orange); }
.cc-head-mail { background: #4a90d9; }

.cc-head-icon { width: 20px; height: 20px; flex-shrink: 0; }
.cc-head-icon svg { width: 20px; height: 20px; filter: brightness(0) invert(1); }
.cc-head-title { font-size: 13px; font-weight: 700; color: white; flex: 1; }
.cc-head-badge {
  font-size: 10px;
  background: rgba(255,255,255,.25);
  color: white;
  padding: 2px 8px; border-radius: 20px; white-space: nowrap;
}

.cc-body { padding: 14px; }
.cc-desc { font-size: 13px; color: var(--text-light); line-height: 1.65; margin-bottom: 12px; }
.cc-note { font-size: 11px; color: #aaa; margin-top: 8px; }

.cc-btn {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 10px 14px; border-radius: 8px;
  font-size: 13px; font-weight: 700;
  text-decoration: none;
  transition: opacity 0.15s;
  font-family: var(--font-body);
}
.cc-btn:hover { opacity: 0.85; }
.cc-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-ln   { background: #06c755; color: white; }
.btn-wa   { background: #25d366; color: white; }
.btn-tel  { background: var(--orange); color: white; font-size: 15px; }
.btn-mail { background: #4a90d9; color: white; }

/* ========================================
   FORM
======================================== */
.form-outer {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 2rem;
}
.form-hd {
  background: var(--dark);
  padding: 20px 28px;
}
.form-hd-title { font-size: 18px; font-weight: 900; color: white; }
.form-hd-sub { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 4px; }

.prog {
  display: flex;
  border-bottom: 1.5px solid var(--border);
  background: var(--white);
}
.ps {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  padding: 10px 4px;
  position: relative;
}
.ps + .ps::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 20px;
  background: var(--border);
}
.pc {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: var(--text-light);
  margin-bottom: 2px;
}
.ps.active .pc { border-color: var(--pink); background: var(--pink); color: white; }
.ps.done .pc   { border-color: var(--green-dark); background: var(--green-dark); color: white; }
.pl { font-size: 9px; color: var(--text-light); white-space: nowrap; }
.ps.active .pl { color: var(--pink); font-weight: 700; }

.fb { padding: 24px 28px; }
.fpanel { display: none; }
.fpanel.active { display: block; }

.fp-title { font-size: 18px; font-weight: 900; color: var(--dark); margin-bottom: 4px; }
.fp-sub { font-size: 13px; color: var(--text-light); margin-bottom: 20px; }

.fg { margin-bottom: 16px; }
.fr2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fr2 .fg { margin-bottom: 0; }

.flbl { display: block; font-size: 12px; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.freq { color: var(--pink); }

.fin {
  width: 100%; padding: 10px 13px;
  font-size: 14px; color: var(--dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.15s;
}
.fin:focus { border-color: var(--pink); }
.fin::placeholder { color: #c4bebb; }
.fta { resize: vertical; min-height: 80px; }

.course-dd {
  width: 100%; padding: 10px 13px;
  font-size: 13px; color: var(--dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  outline: none;
}
.course-dd:focus { border-color: var(--pink); }

/* Calendar */
.mcal-hd {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.mcal-title { font-size: 15px; font-weight: 700; }
.mcal-btn {
  width: 30px; height: 30px;
  border: 1.5px solid var(--border);
  background: var(--white); border-radius: var(--r-sm);
  cursor: pointer; font-size: 16px; color: var(--text-light);
  display: flex; align-items: center; justify-content: center;
}
.cal-leg { display: flex; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.cal-leg-item { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--text-light); }
.leg-box { width: 11px; height: 11px; border-radius: 3px; }

.mcal {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 8px;
  margin-bottom: 12px;
}
.mcal-dow { text-align: center; font-size: 10px; font-weight: 700; padding: 3px 0 6px; color: var(--text-light); }
.mcal-dow.sun { color: var(--red); }
.mcal-dow.sat { color: #1d4ed8; }

.mday {
  aspect-ratio: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border-radius: 4px; font-size: 11px; cursor: pointer;
  border: 1px solid transparent; gap: 1px;
}
.mday.past   { color: var(--text-light); opacity: 0.35; pointer-events: none; }
.mday.today  { background: #fff3e0; border-color: #ffb74d; }
.mday.avail  { background: #edf7ed; border-color: #c3e6c3; }
.mday.blocked{ background: #fef2f2; border-color: #fca5a5; pointer-events: none; opacity: 0.7; }
.mday.picked { background: var(--pink) !important; border-color: var(--pink) !important; color: white !important; }
.mday .dn { font-size: 12px; font-weight: 700; line-height: 1; }
.mday .ds { font-size: 8px; }
.mday.avail .ds { color: var(--green-dark); }
.mday.today .ds { color: #e65100; }

.date-box {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  margin-bottom: 14px;
}
.date-box p { font-size: 12px; color: var(--text-light); margin-bottom: 10px; }
.dr { margin-bottom: 10px; }
.dr label { display: block; font-size: 11px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.dr input { width: 100%; border: 1.5px solid var(--border); border-radius: var(--r-sm); padding: 8px 12px; font-size: 13px; background: var(--white); outline: none; font-family: var(--font-body); }

/* People picker */
.pax-block {
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden; margin-bottom: 16px;
}
.pax-row {
  display: flex; align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border); gap: 12px;
}
.pax-row:last-child { border-bottom: none; }
.pax-icon { font-size: 20px; width: 26px; text-align: center; }
.pax-info { flex: 1; }
.pax-info strong { display: block; font-size: 13px; font-weight: 700; }
.pax-info small  { font-size: 11px; color: var(--text-light); }
.pax-ctrl { display: flex; align-items: center; gap: 8px; }
.pbtn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--pink); background: transparent;
  color: var(--pink); font-size: 17px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
}
.pbtn:disabled { border-color: var(--border); color: var(--text-light); cursor: not-allowed; }
.pnum { font-size: 16px; font-weight: 700; min-width: 22px; text-align: center; }

.price-bar {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px 16px;
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.price-bar span { font-size: 13px; color: var(--text-light); }
.price-bar strong { font-size: 20px; font-weight: 900; color: var(--pink); }

/* Confirm */
.cfm {
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden; margin-bottom: 16px;
}
.cfm-hd { background: var(--dark); padding: 10px 16px; }
.cfm-hd span { font-size: 13px; font-weight: 700; color: var(--yellow); letter-spacing: 0.06em; }
.cfm-row {
  display: flex; padding: 9px 16px;
  border-bottom: 1px solid var(--border);
  gap: 10px; font-size: 13px;
}
.cfm-row:last-child { border-bottom: none; }
.ck { color: var(--text-light); width: 80px; flex-shrink: 0; }
.cv { color: var(--dark); font-weight: 700; flex: 1; }
.cfm-total {
  background: var(--cream);
  padding: 12px 16px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 2px solid var(--border);
}
.cfm-total .k { font-size: 13px; color: var(--text-light); }
.cfm-total .v { font-size: 22px; font-weight: 900; color: var(--pink); }

.form-error-msg {
  display: none;
  background: var(--red-light);
  border: 1.5px solid var(--red);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-size: 13px; color: var(--red);
  margin-top: 10px;
}

/* Success */
.form-success {
  text-align: center;
  padding: 40px 20px 32px;
}
.success-seal {
  width: 60px; height: 60px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: white;
  margin: 0 auto 16px;
}
.success-ref {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 24px;
  display: inline-block;
  margin: 16px 0;
}
.success-ref-label { font-size: 10px; color: var(--text-light); letter-spacing: 0.1em; text-transform: uppercase; }
.success-ref-num { font-size: 20px; font-weight: 900; letter-spacing: 0.08em; }

/* ========================================
   MAP
======================================== */
.map-wrap {
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 2px solid var(--border);
}
.map-wrap iframe { display: block; width: 100%; border: none; }

/* Access table */
.access-table { width: 100%; border-collapse: collapse; }
.access-table th,
.access-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  text-align: left;
  vertical-align: top;
}
.access-table th { width: 100px; font-weight: 700; color: var(--text-light); white-space: nowrap; }

/* ========================================
   RELATED / SET PLAN
======================================== */
.plan-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.plan-step {
  background: var(--mint-light);
  border: 1.5px solid var(--mint);
  border-radius: var(--r-sm);
  padding: 7px 16px;
  font-size: 14px; font-weight: 700; color: var(--dark);
}
.plan-step.hl {
  background: var(--yellow);
  border-color: var(--dark);
  box-shadow: var(--shadow-sm);
}
.plan-arrow { font-size: 16px; color: var(--text-light); }

/* ========================================
   STICKY CTA
======================================== */
.sticky-cta {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 500;
}
.sticky-cta a {
  display: flex; align-items: center; gap: 8px;
  background: var(--pink);
  color: white;
  border: 2.5px solid var(--dark);
  border-radius: var(--r-full);
  padding: 13px 22px;
  font-size: 14px; font-weight: 900;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: transform 0.15s, box-shadow 0.15s;
}
.sticky-cta a:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--dark); }

/* ========================================
   FOOTER
======================================== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.55);
  padding: 56px 24px 40px;
}
.footer-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { font-size: 18px; font-weight: 900; color: white; margin-bottom: 8px; }
.footer-desc { font-size: 13px; line-height: 1.8; margin-bottom: 16px; }
.footer-tel {
  display: inline-block;
  color: var(--yellow);
  font-size: 20px; font-weight: 900;
  text-decoration: none;
}
.footer-nav-title { font-size: 11px; font-weight: 700; color: var(--yellow); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-nav-list a { font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.15s; }
.footer-nav-list a:hover { color: var(--yellow); }
.footer-bottom {
  max-width: 1000px; margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 11px;
}

/* ========================================
   SCROLL REVEAL
======================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 700px) {
  #header nav { display: none; }
  .hamburger { display: flex; }

  .fr2 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .fb { padding: 16px; }
  .footer-bottom { flex-direction: column; }

  .price-badge .amount { font-size: 40px; }
  .sticky-cta a { padding: 11px 16px; font-size: 13px; }
}
