/* ============================================================
   COJ Brotherhood Outing 2027 — Main Stylesheet
   File: assets/style.css
   Mobile-first, Brotherhood-centered design
============================================================ */

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --red:         #F64648;
  --red-dark:    #d43335;
  --red-deeper:  #b82527;
  --dark:        #130B03;
  --dark-2:      #1e1208;
  --dark-3:      #2a1a0a;
  --brown:       #725B55;
  --gold:        #c9963a;
  --white:       #ffffff;
  --off-white:   #f8f5f2;
  --gray-light:  #f0ebe6;
  --gray-mid:    #c8bfb8;
  --gray-text:   #888;
  --text:        #1a0f08;
  --text-muted:  #6b5e56;
  --border:      #e8e0d8;

  --font-main:   'Poppins', system-ui, sans-serif;
  --font-body:   'Montserrat', system-ui, sans-serif;

  --radius:      10px;
  --radius-lg:   16px;
  --shadow:      0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.18);

  --container:   1100px;
  --header-h:    70px;
}

/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color .2s; }
a:hover { color: var(--red-dark); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Container ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Announcement Banner ───────────────────────────────── */
#announcement-banner {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-family: var(--font-main);
  font-size: .85rem;
  font-weight: 600;
  position: relative;
  z-index: 200;
  line-height: 1.4;
}

/* ── Header / Nav ──────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(19, 11, 3, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(114, 91, 85, 0.4);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.logo-wrap a { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-coj {
  font-family: var(--font-main);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 2px;
}
.logo-sub {
  font-family: var(--font-main);
  font-size: .65rem;
  color: var(--gray-mid);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Desktop nav */
#main-nav { display: none; }
#main-nav ul { display: flex; gap: 6px; align-items: center; }
#main-nav a {
  font-family: var(--font-main);
  font-size: .875rem;
  color: rgba(255,255,255,0.85);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .2s, background .2s;
  font-weight: 400;
}
#main-nav a:hover { color: var(--white); background: rgba(246,70,72,.15); }
#main-nav .nav-cta {
  background: var(--red);
  color: var(--white) !important;
  font-weight: 600;
  padding: 8px 18px;
}
#main-nav .nav-cta:hover { background: var(--red-dark); }

/* Mobile toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 110;
}
.mobile-menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .25s;
}
.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
#main-nav.mobile-open {
  display: block;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--dark);
  border-top: 1px solid rgba(114,91,85,.4);
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
#main-nav.mobile-open ul {
  flex-direction: column;
  gap: 4px;
}
#main-nav.mobile-open a {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
}
#main-nav.mobile-open .nav-cta {
  margin-top: 8px;
  text-align: center;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: .95rem;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,.08); }
.btn-secondary { background: var(--dark-3); color: var(--white); border-color: var(--brown); }
.btn-secondary:hover { background: var(--brown); }
.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-full { width: 100%; }
.btn-loading { display: none; }

/* ── Section Shared ────────────────────────────────────── */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
  display: inline-block;
  font-family: var(--font-main);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section-header h2 {
  font-family: var(--font-main);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-divider {
  width: 50px;
  height: 3px;
  background: var(--red);
  margin: 0 auto 16px;
  border-radius: 2px;
}
.section-desc {
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  font-size: .95rem;
}
.section-header.light h2 { color: var(--white); }
.section-header.light .section-desc { color: rgba(255,255,255,.7); }

/* ── Hero ──────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  background: var(--dark);
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(246,70,72,.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,150,58,.08) 0%, transparent 50%),
    url('https://coj.strategicbackboard.com/wp-content/uploads/2024/10/DSC_9010-2023_03_14-03_14_33-UTC-scaled.jpg.webp') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(19,11,3,.88) 0%, rgba(19,11,3,.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
}
.hero-badge {
  display: inline-block;
  background: rgba(246,70,72,.2);
  border: 1px solid rgba(246,70,72,.5);
  color: var(--red);
  font-family: var(--font-main);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-family: var(--font-main);
  font-size: clamp(2rem, 7vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero-sub {
  font-size: clamp(.95rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.78);
  margin-bottom: 28px;
}
.phase-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,150,58,.15);
  border: 1px solid rgba(201,150,58,.4);
  color: var(--gold);
  font-family: var(--font-main);
  font-size: .82rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 20px;
}
.hero-notice {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint a {
  color: rgba(255,255,255,.4);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  display: block;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ── Interest Notice ───────────────────────────────────── */
#interest-notice { padding: 32px 0; background: var(--off-white); }
.notice-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow);
}
.notice-icon {
  color: var(--red);
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.notice-body h2 {
  font-family: var(--font-main);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.notice-body p { color: var(--text-muted); font-size: .92rem; line-height: 1.6; }
.notice-body p + p { margin-top: 8px; }
.notice-footnote { font-size: .85rem; color: #888; }

/* ── About ─────────────────────────────────────────────── */
#about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.about-text .lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.65;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: .95rem;
}
.about-text blockquote {
  border-left: 4px solid var(--red);
  padding: 12px 20px;
  margin: 24px 0 0;
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--brown);
  font-size: .95rem;
}
.about-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.img-caption {
  font-size: .78rem;
  color: var(--gray-text);
  text-align: center;
  margin-top: 10px;
}

/* ── Experience ────────────────────────────────────────── */
#experience { background: var(--off-white); }
.experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.exp-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-bottom: 3px solid transparent;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.exp-card:hover {
  border-bottom-color: var(--red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.exp-icon {
  width: 52px;
  height: 52px;
  background: rgba(246,70,72,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.exp-card h3 {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.exp-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* ── Capacity ──────────────────────────────────────────── */
#capacity { background: var(--dark); }
.capacity-card {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
  padding: 48px 32px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(114,91,85,.3);
  border-radius: var(--radius-lg);
}
.capacity-icon {
  font-size: 3rem;
  color: var(--red);
}
.capacity-text h2 {
  font-family: var(--font-main);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.capacity-text > p { color: rgba(255,255,255,.72); margin-bottom: 28px; }
.capacity-options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.cap-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 28px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
}
.cap-option.highlight {
  background: rgba(246,70,72,.15);
  border-color: rgba(246,70,72,.4);
}
.cap-num {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.cap-option.highlight .cap-num { color: var(--red); }
.cap-label {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.cap-arrow { color: rgba(255,255,255,.3); font-size: 1.2rem; }
.cap-note { color: rgba(255,255,255,.6); font-size: .88rem; margin-bottom: 24px; }

/* ── Pricing ───────────────────────────────────────────── */
#pricing { background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 32px;
}
.price-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}
.price-card.featured {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(246,70,72,.08);
}
.price-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-main);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.price-badge.secondary { background: var(--dark-3); }
.price-amount {
  font-family: var(--font-main);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.price-label { font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.price-desc { color: var(--text-muted); font-size: .9rem; margin-bottom: 20px; }
.price-includes { margin-bottom: 24px; }
.price-includes li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 5px 0;
  font-size: .88rem;
  color: var(--text-muted);
}
.price-includes li i { color: var(--red); margin-top: 3px; flex-shrink: 0; }
.price-actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.payment-plan-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--text-muted);
  background: var(--off-white);
  padding: 10px 14px;
  border-radius: 7px;
  margin-top: 16px;
}
.payment-plan-note i { color: var(--red); }

/* Special rates card */
.price-card.special-info { background: var(--off-white); }
.special-icon { font-size: 2.5rem; color: var(--red); margin: 12px 0 16px; }
.price-card.special-info h3 {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.price-card.special-info p { font-size: .9rem; color: var(--text-muted); margin-bottom: 20px; }
.special-rates { margin-bottom: 20px; }
.special-rate-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 7px;
  margin-bottom: 8px;
}
.special-rate-item .label { font-size: .88rem; color: var(--text-muted); }
.special-rate-item .amount {
  font-family: var(--font-main);
  font-weight: 700;
  color: var(--text);
  font-size: 1.1rem;
}
.special-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .82rem;
  color: var(--brown);
  background: rgba(114,91,85,.08);
  padding: 12px 14px;
  border-radius: 7px;
  margin-bottom: 20px;
}
.special-note i { flex-shrink: 0; margin-top: 2px; color: var(--brown); }

.deposit-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
}
.deposit-note i { color: var(--red); font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.deposit-note strong { display: block; margin-bottom: 4px; font-family: var(--font-main); }
.deposit-note div { font-size: .9rem; color: var(--text-muted); }

/* ── Video ─────────────────────────────────────────────── */
#video { background: var(--dark-2); padding: 80px 0; }
#video .section-header h2 { color: var(--white); }
#video .section-divider { background: var(--red); }
.video-wrap { max-width: 760px; margin: 0 auto; }
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.video-link-wrap { text-align: center; }

/* ── History ───────────────────────────────────────────── */
#history { background: var(--off-white); }
.history-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.history-text p {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: .95rem;
}
.timeline { margin-top: 28px; }
.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
}
.timeline-item:last-child { border-bottom: none; }
.timeline-item .year {
  font-family: var(--font-main);
  font-weight: 700;
  color: var(--red);
  min-width: 80px;
  flex-shrink: 0;
}
.timeline-item span:last-child { color: var(--text-muted); }
.timeline-item.current .year { color: var(--gold); }
.history-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.history-gallery img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ── FAQ ───────────────────────────────────────────────── */
#faq { background: var(--dark); }
#faq .section-header h2 { color: var(--white); }
#faq .section-divider { background: var(--red); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(114,91,85,.3);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-family: var(--font-main);
  font-size: .95rem;
  font-weight: 500;
  transition: background .2s;
}
.faq-question:hover { background: rgba(255,255,255,.05); }
.faq-icon { color: var(--red); font-size: 1rem; flex-shrink: 0; }
.faq-question span:nth-child(2) { flex: 1; }
.faq-toggle { flex-shrink: 0; color: var(--gray-mid); transition: transform .25s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .2s; }
.faq-item.open .faq-answer { max-height: 600px; padding: 0 20px 18px; }
.faq-answer[hidden] { display: block !important; }
.faq-answer-inner {
  color: rgba(255,255,255,.68);
  font-size: .9rem;
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 14px;
}

/* ── Interest Form ─────────────────────────────────────── */
#interest-form { background: var(--white); }
.form-wrap { max-width: 700px; margin: 0 auto; }
.form-message {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: .9rem;
  font-family: var(--font-main);
  display: none;
}
.form-message.success {
  background: #e8f5e9;
  color: #1b5e20;
  border-left: 4px solid #4caf50;
  display: block;
}
.form-message.error {
  background: #fde8e8;
  color: #8b1a1a;
  border-left: 4px solid var(--red);
  display: block;
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full { margin-bottom: 16px; }
label {
  font-family: var(--font-main);
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 6px;
}
.req { color: var(--red); }
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(246,70,72,.12);
  background: var(--white);
}
textarea { resize: vertical; min-height: 80px; line-height: 1.5; }
.radio-group { display: flex; flex-direction: column; gap: 8px; }
.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: .9rem;
  font-family: var(--font-body);
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  padding: 8px 12px;
  border-radius: 7px;
  border: 1.5px solid var(--border);
  transition: border-color .2s, background .2s;
}
.radio-label:hover { border-color: var(--red); background: rgba(246,70,72,.04); }
.radio-label input[type="radio"] { accent-color: var(--red); width: 16px; height: 16px; }
.radio-label input[type="radio"]:checked ~ span { color: var(--text); font-weight: 500; }

/* Honeypot */
.hp-field { position: absolute; left: -9999px; visibility: hidden; }

.form-disclaimer { font-size: .75rem; color: var(--gray-text); text-align: center; margin-top: 12px; }

/* ── Contact ───────────────────────────────────────────── */
#contact { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
.contact-info h2 {
  font-family: var(--font-main);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.contact-info > p { color: var(--text-muted); margin-bottom: 20px; }
.contact-person { margin-bottom: 20px; }
.contact-name { font-family: var(--font-main); font-weight: 700; font-size: 1.1rem; color: var(--text); }
.contact-title { font-size: .85rem; color: var(--red); }
.contact-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: var(--text-muted);
}
.contact-list i { color: var(--red); margin-top: 3px; width: 16px; flex-shrink: 0; }
.contact-list a { color: var(--text-muted); }
.contact-list a:hover { color: var(--red); }
.mail-instructions {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
}
.mail-instructions h4 {
  font-family: var(--font-main);
  font-size: .9rem;
  color: var(--text);
  margin-bottom: 8px;
}
.mail-instructions p {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.mail-instructions .small { font-size: .78rem; color: var(--gray-text); }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text);
}

/* ── Footer ────────────────────────────────────────────── */
.footer-top { background: var(--dark); padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
.footer-logo {
  font-family: var(--font-main);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.6; }
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-main);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.4);
  margin-bottom: 14px;
}
.footer-links ul li { margin-bottom: 8px; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-links a:hover { color: var(--red); }
.footer-contact p, .footer-contact a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 6px;
  display: block;
}
.footer-contact a:hover { color: var(--red); }
.footer-bottom {
  background: rgba(0,0,0,.4);
  padding: 14px 0;
}
.footer-bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  text-align: center;
}
.footer-bottom a {
  color: rgba(255,255,255,.4);
}
.footer-bottom a:hover { color: var(--red); }

/* ── Back to Top ───────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(246,70,72,.4);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 80;
}
.back-to-top.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.back-to-top:hover { background: var(--red-dark); }

/* ── Tablet ────────────────────────────────────────────── */
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Desktop ───────────────────────────────────────────── */
@media (min-width: 900px) {
  section { padding: 100px 0; }

  /* Nav */
  .mobile-menu-toggle { display: none; }
  #main-nav { display: block !important; }
  #main-nav.mobile-open {
    position: static;
    padding: 0;
    box-shadow: none;
    background: transparent;
    border-top: none;
  }
  #main-nav.mobile-open ul { flex-direction: row; }
  #main-nav.mobile-open a { font-size: .875rem; }

  .about-grid { grid-template-columns: 1fr 1fr; }
  .experience-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .history-grid { grid-template-columns: 3fr 2fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1.5fr; }

  .capacity-card {
    flex-direction: row;
    text-align: left;
    padding: 60px 48px;
  }
  .capacity-text { flex: 1; }
  .capacity-options { justify-content: flex-start; }

  .notice-card { align-items: center; }
}

/* ── Private Room Upgrade (added v2) ──────────────────── */
.private-room-group { margin-bottom: 20px; }
.private-room-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: var(--off-white);
}
.private-room-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.private-room-header i { color: var(--red); }
.private-room-full {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--red-dark);
  font-family: var(--font-main);
  font-weight: 600;
  padding: 10px 14px;
  background: rgba(246,70,72,.07);
  border-radius: 7px;
  border: 1px solid rgba(246,70,72,.2);
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 10px;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--red);
  cursor: pointer;
}
.checkbox-box { display: none; }
.checkbox-text {
  font-family: var(--font-main);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}
.private-room-note {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 8px;
  padding: 10px 12px;
  background: rgba(114,91,85,.06);
  border-radius: 6px;
  border-left: 3px solid var(--brown);
}
