@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --serif: 'DM Serif Display', serif;
  --sans: 'DM Sans', sans-serif;
  --ink: #1a1a18;
  --muted: #6b6b66;
  --line: #e5e3dc;
  --accent: #0f6e56;
  --accent-light: #e1f5ee;
  --bg: #fafaf8;
  --white: #ffffff;
}

body { font-family: var(--sans); background: var(--bg); color: var(--ink); font-size: 16px; line-height: 1.65; }

/* ── LAYOUT ── */
.container { max-width: 960px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.section-title { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 400; margin-top: 0.5rem; line-height: 1.2; }

/* ── NAV ── */
nav { border-bottom: 0.5px solid var(--line); position: sticky; top: 0; background: rgba(250,250,248,0.95); backdrop-filter: blur(8px); z-index: 100; }
.nav-inner { position: relative; }
.nav-burger { display: none; }
.nav-inner { max-width: 960px; margin: 0 auto; padding: 1.25rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--serif); font-size: 1.05rem; letter-spacing: 0.02em; text-decoration: none; color: var(--ink); }
.logo span { color: var(--accent); }
.logo .logo-camps { color: var(--ink); }
.nav-links { list-style: none; display: flex; gap: 2rem; align-items: center; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: 0.875rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { background: var(--ink) !important; color: #fff !important; padding: 0.4rem 1.1rem; border-radius: 2rem; font-size: 0.8rem !important; font-weight: 500 !important; }
.lang-select { font-family: var(--sans); font-size: 0.8rem; color: var(--muted); border: 0.5px solid var(--line); background: transparent; border-radius: 1rem; padding: 0.3rem 0.6rem; cursor: pointer; outline: none; }
.lang-select:focus { border-color: var(--accent); }

/* ── HERO ── */
.hero { padding: 6rem 0 5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.25rem; }
.hero h1 { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1.15; font-weight: 400; margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-lead { color: var(--muted); font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; }
.btn-primary { display: inline-block; background: var(--ink); color: #fff; text-decoration: none; padding: 0.75rem 1.75rem; border-radius: 2rem; font-size: 0.875rem; font-weight: 500; transition: opacity 0.2s; cursor: pointer; border: none; font-family: var(--sans); }
.btn-primary:hover { opacity: 0.8; }
.btn-ghost { display: inline-block; color: var(--ink); text-decoration: none; padding: 0.75rem 1.25rem; font-size: 0.875rem; font-weight: 400; margin-left: 1rem; border-bottom: 1px solid var(--ink); transition: opacity 0.2s; }
.btn-ghost:hover { opacity: 0.6; }
.hero-img { border-radius: 1rem; height: 380px; overflow: hidden; position: relative; }
.hero-badge { position: absolute; bottom: 1.25rem; left: 1.25rem; background: rgba(255,255,255,0.92); border-radius: 0.75rem; padding: 0.65rem 1rem; font-size: 0.75rem; color: var(--muted); }
.hero-badge strong { display: block; font-size: 1.1rem; color: var(--ink); font-weight: 500; }

/* ── TRUST BAR ── */
.trust { border-top: 0.5px solid var(--line); border-bottom: 0.5px solid var(--line); padding: 1.75rem 0; display: flex; gap: 2.5rem; align-items: center; flex-wrap: wrap; }
.trust-item { font-size: 0.8rem; color: var(--muted); }
.trust-item strong { color: var(--ink); font-weight: 500; display: block; }
.trust-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line); flex-shrink: 0; }

/* ── COACH ── */
.coach-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; margin-top: 3rem; }
.coach-photo { border-radius: 0.875rem; height: 340px; overflow: hidden; }
.coach-bio h2 { font-family: var(--serif); font-size: 2rem; font-weight: 400; line-height: 1.25; margin-bottom: 1.25rem; }
.coach-bio p { color: var(--muted); margin-bottom: 1rem; line-height: 1.75; font-size: 0.95rem; }
.stat-row { display: flex; gap: 2.5rem; margin-top: 2rem; padding-top: 2rem; border-top: 0.5px solid var(--line); }
.stat-num { font-family: var(--serif); font-size: 2rem; color: var(--ink); display: block; }
.stat-desc { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* ── PROGRAM ── */
.days { display: flex; flex-direction: column; margin-top: 3rem; }
.day { display: grid; grid-template-columns: 72px 1fr; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 0.5px solid var(--line); align-items: start; }
.day-num { font-family: var(--serif); font-size: 2.2rem; color: var(--line); line-height: 1; padding-top: 0.2rem; }
.day h4 { font-size: 0.9rem; font-weight: 500; margin-bottom: 0.35rem; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.day p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }
.tag { display: inline-block; font-size: 0.68rem; font-weight: 500; padding: 0.18rem 0.55rem; border-radius: 1rem; letter-spacing: 0.04em; }
.tag-run { background: #e1f5ee; color: #0f6e56; }
.tag-rest { background: #f1efe8; color: #5f5e5a; }
.tag-sight { background: #e6f1fb; color: #185fa5; }
.tag-ultra { background: #faece7; color: #993c1d; }

/* ── INCLUDED ── */
.included-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.incl-card { background: var(--white); border: 0.5px solid var(--line); border-radius: 0.875rem; padding: 1.5rem; }
.incl-icon { width: 32px; height: 32px; border-radius: 6px; background: var(--accent-light); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.incl-icon svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 2; }
.incl-card h4 { font-size: 0.9rem; font-weight: 500; margin-bottom: 0.4rem; }
.incl-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

/* ── PACKAGES ── */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.pkg { background: var(--white); border: 0.5px solid var(--line); border-radius: 1rem; padding: 1.75rem; display: flex; flex-direction: column; gap: 0.875rem; }
.pkg.featured { border: 1.5px solid var(--accent); }
.pkg-badge { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }
.pkg-name { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.pkg-price { font-family: var(--serif); font-size: 2rem; font-weight: 300; }
.pkg-price span { font-size: 0.82rem; font-weight: 400; color: var(--muted); font-family: var(--sans); }
.pkg-price-label { font-size: 0.8rem; font-weight: 500; color: var(--accent); letter-spacing: 0.04em; }
.pkg-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }
.pkg hr { border: none; border-top: 0.5px solid var(--line); }
.pkg ul { list-style: none; font-size: 0.8rem; color: var(--muted); display: flex; flex-direction: column; gap: 0.5rem; }
.pkg ul li { padding-left: 1.25rem; position: relative; }
.pkg ul li::before { content: "—"; position: absolute; left: 0; color: var(--line); }
.pkg-btn { margin-top: auto; background: var(--ink); color: #fff; border: none; padding: 0.65rem; border-radius: 2rem; font-size: 0.8rem; font-family: var(--sans); cursor: pointer; font-weight: 500; transition: opacity 0.2s; text-align: center; text-decoration: none; display: block; }
.pkg-btn:hover { opacity: 0.75; }
.pkg-note { font-size: 0.78rem; color: var(--muted); margin-top: 1rem; line-height: 1.65; }

/* ── PHOTO STRIP ── */
.photo-strip { width: 100%; height: 210px; overflow: hidden; margin: 0; }
.photo-strip img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

/* ── WHY OKINAWA ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.why-card { background: var(--white); border: 0.5px solid var(--line); border-radius: 0.875rem; padding: 1.5rem; }
.why-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--accent-light); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.why-icon svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 1.75; }
.why-card h4 { font-size: 0.9rem; font-weight: 500; color: var(--ink); margin-bottom: 0.4rem; }
.why-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }


.req-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.req-card { padding: 1.25rem; border: 0.5px solid var(--line); border-radius: 0.875rem; }
.req-card strong { display: block; font-weight: 500; color: var(--ink); margin-bottom: 0.4rem; font-size: 0.875rem; }
.req-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

/* ── FAQ ── */
.faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; }
.faq-item { border-bottom: 0.5px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; font-family: var(--sans); font-size: 0.95rem; font-weight: 500; color: var(--ink); padding: 1.25rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q:hover { color: var(--accent); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; position: relative; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--muted); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.faq-icon::before { width: 12px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon::after { width: 1.5px; height: 12px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a { font-size: 0.875rem; color: var(--muted); line-height: 1.75; padding-bottom: 1.25rem; display: none; }
.faq-item.open .faq-a { display: block; }

/* ── CONTACT ── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; margin-top: 3rem; align-items: start; }
.contact-info h2 { font-family: var(--serif); font-size: 1.9rem; font-weight: 400; line-height: 1.25; margin-bottom: 1.25rem; }
.contact-info > p { font-size: 0.875rem; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
.info-rows { display: flex; flex-direction: column; gap: 1.25rem; padding-top: 2rem; border-top: 0.5px solid var(--line); margin-top: 1.5rem; }
.info-row-item .lbl { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 0.15rem; }
.info-row-item .val { font-size: 0.875rem; color: var(--ink); }
.info-row-item .val a { color: var(--accent); text-decoration: none; }
.form-card { background: var(--white); border: 0.5px solid var(--line); border-radius: 1rem; padding: 2.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.form-group label .req { color: #c0392b; font-style: normal; font-size: 0.85rem; text-transform: none; letter-spacing: 0; vertical-align: middle; }
.form-group input, .form-group select, .form-group textarea { font-family: var(--sans); font-size: 0.875rem; color: var(--ink); background: var(--bg); border: 0.5px solid var(--line); border-radius: 0.5rem; padding: 0.7rem 0.875rem; width: 100%; outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b66' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.875rem center; padding-right: 2.25rem; }
.checkbox-group { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.25rem; }
.checkbox-item { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.82rem; color: var(--muted); cursor: pointer; line-height: 1.5; }
.checkbox-item input[type=checkbox] { width: 15px; height: 15px; accent-color: var(--accent); cursor: pointer; margin-top: 2px; flex-shrink: 0; }
.submit-btn { width: 100%; background: var(--ink); color: #fff; border: none; padding: 0.85rem; border-radius: 2rem; font-family: var(--sans); font-size: 0.875rem; font-weight: 500; cursor: pointer; transition: opacity 0.2s; }
.submit-btn:hover { opacity: 0.75; }
.form-note { font-size: 0.72rem; color: var(--muted); margin-top: 0.875rem; line-height: 1.6; text-align: center; }
.success { display: none; text-align: center; padding: 3rem 2rem; }
.success-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--accent-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.success-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 2.5; }
.success h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; margin-bottom: 0.75rem; }
.success p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

/* ── FOOTER ── */
footer { border-top: 0.5px solid var(--line); padding: 2.5rem 0 1.5rem; }
.footer-inner { max-width: 960px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: var(--muted); flex-wrap: wrap; gap: 1rem; }
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--ink); }

/* ── RESPONSIVE ── */
@media (max-width: 720px) {
  .hero { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0; }
  .hero-img { height: 220px; }
  .coach-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pkg-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .req-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .trust { gap: 1.25rem; }
  .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0; background: rgba(250,250,248,0.98); border-bottom: 0.5px solid var(--line); padding: 0.5rem 0 1rem; }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.75rem 2rem; font-size: 0.9rem; border-radius: 0; }
  .nav-links .nav-cta { margin: 0.5rem 2rem 0; display: block; text-align: center; border-radius: 2rem; }
  .nav-burger { display: flex; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.25rem; width: 32px; height: 32px; }
  .nav-burger span { display: block; height: 1.5px; background: var(--ink); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
  .nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}
