/* ============================================================
   越前海岸 手ぶらBBQ＆焚き火リゾート — style.css
   ============================================================ */

:root {
  --navy: #123a5e;
  --navy-deep: #0d2a45;
  --blue: #2f7fb5;
  --blue-light: #6fb3d6;
  --sky: #dcecf5;
  --sand: #efe6d6;
  --sand-deep: #e3d3b8;
  --beige-bg: #faf6ef;
  --white: #ffffff;
  --ink: #22303c;
  --ink-soft: #5a6b78;
  --line: rgba(18, 58, 94, 0.10);
  --shadow-sm: 0 6px 20px rgba(18, 58, 94, 0.08);
  --shadow-md: 0 18px 50px rgba(18, 58, 94, 0.14);
  --shadow-lg: 0 30px 80px rgba(13, 42, 69, 0.22);
  --radius: 20px;
  --radius-lg: 28px;
  --serif: "Cormorant Garamond", "Noto Sans JP", serif;
  --sans: "Noto Sans JP", -apple-system, "Hiragino Sans", sans-serif;
  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--beige-bg);
  line-height: 1.85;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}
.container-narrow { max-width: 860px; }

.sp-br { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: 15px 34px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .04em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, background .35s, color .35s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  color: #fff;
  box-shadow: 0 12px 30px rgba(47, 127, 181, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(47, 127, 181, 0.45); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.22); transform: translateY(-3px); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-3px); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(18,58,94,.06);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px clamp(20px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { font-size: 26px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--navy);
}
.brand-sub { font-size: 10.5px; letter-spacing: .18em; color: var(--ink-soft); }
.site-header:not(.scrolled) .brand-name { color: #fff; }
.site-header:not(.scrolled) .brand-sub { color: rgba(255,255,255,.8); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .03em;
  color: var(--ink);
  position: relative;
  transition: color .3s;
}
.site-header:not(.scrolled) .nav a { color: rgba(255,255,255,.92); }
.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1.5px;
  background: currentColor;
  transition: width .35s;
}
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  padding: 9px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff !important;
  font-size: 13px;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--navy);
  transition: transform .35s, opacity .35s;
}
.site-header:not(.scrolled) .nav-toggle span { background: #fff; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding: 120px 20px 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(255, 214, 165, 0.55) 0%, rgba(255,214,165,0) 45%),
    radial-gradient(140% 120% at 15% 85%, rgba(18, 58, 94, 0.9) 0%, rgba(18,58,94,0) 55%),
    linear-gradient(160deg, #4a90bf 0%, #2f6f9f 32%, #1c4d76 60%, #0d2a45 100%);
  animation: heroShift 18s ease-in-out infinite alternate;
}
@keyframes heroShift {
  0% { transform: scale(1.05) translateY(0); }
  100% { transform: scale(1.12) translateY(-2%); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(13,42,69,.25) 0%, rgba(13,42,69,0) 30%, rgba(13,42,69,.55) 100%);
}
/* subtle sea-shimmer lines */
.hero-overlay::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(120deg, rgba(255,255,255,.04) 0 2px, transparent 2px 60px);
  opacity: .6;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: .35em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: rgba(255,255,255,.85);
}
.hero-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(28px, 5.4vw, 58px);
  line-height: 1.45;
  letter-spacing: .02em;
  text-shadow: 0 4px 30px rgba(0,0,0,.25);
  margin-bottom: 30px;
}
.hero-title span { display: block; }
.hero-lead {
  font-size: clamp(15px, 2.2vw, 19px);
  font-weight: 300;
  line-height: 2;
  color: rgba(255,255,255,.92);
  margin-bottom: 42px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: .3em;
  color: rgba(255,255,255,.8);
}
.scroll-line { width: 1px; height: 46px; background: rgba(255,255,255,.5); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: #fff; animation: scrollMove 2s ease-in-out infinite;
}
@keyframes scrollMove { 0% { top: -50%; } 100% { top: 100%; } }

/* ---------- Sections ---------- */
.section { padding: clamp(72px, 11vw, 140px) 0; position: relative; }
.section-head { max-width: 760px; margin: 0 auto clamp(44px, 6vw, 72px); text-align: center; }
.section-tag {
  display: inline-block;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: .3em;
  color: var(--blue);
  margin-bottom: 18px;
  text-transform: uppercase;
  font-weight: 600;
}
.section-tag.light { color: var(--blue-light); }
.section-title {
  font-size: clamp(25px, 4.2vw, 42px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .02em;
  color: var(--navy);
}
.section-title.light { color: #fff; }
.section-desc {
  margin-top: 22px;
  font-size: clamp(14.5px, 1.8vw, 17px);
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 2;
}
.section-desc.light { color: rgba(255,255,255,.85); }

/* ---------- Photo placeholders ---------- */
.photo-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.photo-placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 2px, transparent 2px 22px);
  z-index: 1;
}
.photo-placeholder::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.28) 0%, rgba(0,0,0,0) 55%);
  z-index: 1;
}
.ph-label {
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,.96);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .05em;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-shadow: 0 2px 14px rgba(0,0,0,.35);
  padding: 20px;
}
.ph-label-lg { font-size: clamp(16px, 2.4vw, 22px); }
.ph-icon { font-size: 40px; filter: drop-shadow(0 4px 10px rgba(0,0,0,.3)); }
.ph-label-lg .ph-icon { font-size: 56px; }
.ph-option {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  font-size: 10px;
  letter-spacing: .18em;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
}
/* placeholder color themes */
.ph-sunset  { background: linear-gradient(150deg, #ffd39b 0%, #ff9e7d 38%, #d96f8f 68%, #6a4c93 100%); }
.ph-bbq     { background: linear-gradient(150deg, #ffb765 0%, #e8743b 45%, #9c3d2e 100%); }
.ph-sea     { background: linear-gradient(160deg, #7fd4e8 0%, #35a0c9 45%, #1c5c8a 100%); }
.ph-fire    { background: linear-gradient(160deg, #ffcf70 0%, #ff7a3d 40%, #7a1f3d 78%, #241033 100%); }
.ph-cabin   { background: linear-gradient(150deg, #cdb79a 0%, #9d8062 45%, #5c4632 100%); }
.ph-gear    { background: linear-gradient(150deg, #b7c6cf 0%, #6f8695 45%, #3a4c58 100%); }
.ph-drone   { background: linear-gradient(160deg, #a9d6ec 0%, #5f9fc7 45%, #274b6b 100%); }
.ph-cafe    { background: linear-gradient(150deg, #f4e3c6 0%, #d9b98a 42%, #9c7a53 100%); }
.ph-onsen   { background: linear-gradient(150deg, #f6d7c4 0%, #d98f7a 45%, #8a4a55 100%); }
.ph-facility{ background: linear-gradient(150deg, #bfe2ef 0%, #5aa6cc 35%, #1c5c8a 70%, #0d2a45 100%); aspect-ratio: 16/7; }
.ph-mare    { background: linear-gradient(150deg, #ffe0ad 0%, #ea9d6d 50%, #b25a6c 100%); }
.ph-onsen2  { background: linear-gradient(150deg, #f6d7c4 0%, #cf8f88 50%, #7a4560 100%); }
.ph-coast   { background: linear-gradient(150deg, #cfd9c0 0%, #7f9a8e 45%, #3d5665 100%); }

/* placeholder with real photo: drop the gradient, let the img fill the box */
.photo-placeholder.has-photo { background: #0d1b26; }
.photo-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
}

/* ---------- Concept ---------- */
.concept-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.concept-text p { margin-bottom: 22px; font-size: 16px; font-weight: 300; color: var(--ink-soft); }
.concept-text p:first-child { color: var(--ink); font-size: 17px; }
.concept-media .photo-placeholder { aspect-ratio: 3/4; box-shadow: var(--shadow-md); }
.concept-marks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: clamp(48px, 6vw, 84px);
}
.mark {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.mark-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 600;
  color: var(--blue-light);
  display: block;
  margin-bottom: 12px;
}
.mark p { font-size: 15px; font-weight: 500; color: var(--navy); line-height: 1.7; }

/* ---------- Experiences ---------- */
.experiences { background: linear-gradient(180deg, var(--beige-bg) 0%, #f3f8fb 100%); }
.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}
.exp-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s;
}
.exp-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.exp-card .photo-placeholder { border-radius: 0; aspect-ratio: 16/10; }
.exp-card:hover .photo-placeholder { transform: none; }
.exp-body { padding: 30px 28px 34px; }
.exp-kicker {
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--blue);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}
.exp-body h3 { font-size: 19px; font-weight: 700; color: var(--navy); line-height: 1.5; margin-bottom: 14px; }
.exp-body p { font-size: 14.5px; font-weight: 300; color: var(--ink-soft); }

/* ---------- Schedule ---------- */
.schedule { background: var(--navy-deep); color: #fff; overflow: hidden; }
.schedule .section-title { color: #fff; }
.schedule .section-desc { color: rgba(255,255,255,.82); }
.schedule .section-tag { color: var(--blue-light); }
.timeline { max-width: 720px; margin: 0 auto; position: relative; }
.tl-day {
  text-align: center;
  margin: 12px 0 30px;
}
.tl-day span {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: .25em;
  color: var(--blue-light);
  padding: 6px 26px;
  border: 1px solid rgba(111,179,214,.4);
  border-radius: 999px;
}
.tl-list { list-style: none; position: relative; }
.tl-list::before {
  content: "";
  position: absolute;
  left: 78px; top: 10px; bottom: 10px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(111,179,214,.6), rgba(111,179,214,.1));
}
.tl-item {
  display: grid;
  grid-template-columns: 64px 26px 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: 22px;
  position: relative;
}
.tl-time {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-align: right;
  padding-top: 14px;
}
.tl-dot {
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--blue-light);
  margin: 18px auto 0;
  box-shadow: 0 0 0 5px rgba(111,179,214,.18);
  position: relative;
  z-index: 2;
}
.tl-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 16px 22px;
  backdrop-filter: blur(8px);
  transition: background .4s, transform .4s;
}
.tl-card:hover { background: rgba(255,255,255,.11); transform: translateX(4px); }
.tl-emoji { font-size: 22px; margin-right: 8px; }
.tl-card h4 { display: inline; font-size: 16px; font-weight: 700; }
.tl-card p { font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,.78); margin-top: 6px; }

/* ---------- Facility ---------- */
.facility-hero { margin-bottom: 48px; }
.facility-hero .photo-placeholder { box-shadow: var(--shadow-md); }
.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 20px;
}
.fac-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .4s, box-shadow .4s;
}
.fac-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.fac-icon { font-size: 34px; display: block; margin-bottom: 16px; }
.fac-item h4 { font-size: 16px; color: var(--navy); margin-bottom: 8px; font-weight: 700; }
.fac-item p { font-size: 13.5px; font-weight: 300; color: var(--ink-soft); }

/* ---------- Surroundings ---------- */
.surroundings { background: linear-gradient(180deg, #f3f8fb 0%, var(--beige-bg) 100%); }
.surr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.surr-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .5s, box-shadow .5s;
}
.surr-card:hover { transform: translateY(-8px); }
.surr-card .photo-placeholder { border-radius: 0; aspect-ratio: 16/11; }
.surr-body { padding: 26px 28px 32px; }
.surr-body h3 { font-size: 19px; color: var(--navy); font-weight: 700; margin-bottom: 12px; }
.surr-body p { font-size: 14.5px; font-weight: 300; color: var(--ink-soft); }

/* ---------- Glass ---------- */
.glass {
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: var(--shadow-md);
}
.glass-dark {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.18);
}

/* ---------- Furusato ---------- */
.furusato { position: relative; color: #fff; overflow: hidden; }
.furusato-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(100% 80% at 85% 15%, rgba(255,209,155,.35) 0%, transparent 50%),
    linear-gradient(155deg, #1c5c8a 0%, #123a5e 45%, #0d2a45 100%);
  z-index: -1;
}
.furusato-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(120deg, rgba(255,255,255,.03) 0 2px, transparent 2px 70px);
}
.furusato-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.fs-card {
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  transition: transform .5s, background .5s;
}
.fs-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.14); }
.fs-num {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 600;
  color: var(--blue-light);
  display: block;
  margin-bottom: 16px;
}
.fs-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 14px; line-height: 1.5; }
.fs-card p { font-size: 14.5px; font-weight: 300; color: rgba(255,255,255,.82); }
.furusato-note {
  text-align: center;
  margin-top: 48px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,.78);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Plans ---------- */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
  align-items: stretch;
}
.plan-card {
  border-radius: var(--radius-lg);
  padding: 44px 34px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .5s, box-shadow .5s;
  background: rgba(255,255,255,.7);
}
.plan-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.plan-card.featured {
  background: linear-gradient(160deg, #ffffff 0%, #eef6fb 100%);
  border: 1.5px solid var(--blue-light);
  box-shadow: var(--shadow-lg);
}
.plan-badge {
  position: absolute;
  top: 22px; right: 26px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff;
  font-size: 12px;
  letter-spacing: .12em;
  padding: 6px 16px;
  border-radius: 999px;
}
.plan-name { font-size: 18px; font-weight: 700; color: var(--navy); }
.plan-lead { font-size: 13.5px; color: var(--ink-soft); font-weight: 300; margin-top: 6px; }
.plan-price {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 600;
  color: var(--navy);
  margin: 22px 0 26px;
  line-height: 1;
}
.plan-yen { font-family: var(--sans); font-size: 13px; font-weight: 400; color: var(--ink-soft); display: block; margin-bottom: 6px; letter-spacing: .1em; }
.plan-unit { font-family: var(--sans); font-size: 16px; font-weight: 500; color: var(--ink-soft); margin-left: 4px; }
.plan-feat { list-style: none; margin-bottom: 30px; flex-grow: 1; }
.plan-feat li {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--ink);
  padding: 11px 0 11px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.plan-feat li::before {
  content: "✓";
  position: absolute; left: 0; top: 11px;
  color: var(--blue);
  font-weight: 700;
}
.plan-note {
  text-align: center;
  margin-top: 34px;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 300;
}

/* ---------- FAQ ---------- */
.faq { background: linear-gradient(180deg, var(--beige-bg) 0%, #f3f8fb 100%); }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  padding: 24px 60px 24px 28px;
  position: relative;
  line-height: 1.6;
}
.faq-icon {
  position: absolute;
  right: 26px; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--blue);
  border-radius: 2px;
  transition: transform .35s;
}
.faq-icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-icon::after { top: 0; left: 7px; width: 2px; height: 16px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.2,.8,.2,1);
}
.faq-a p {
  padding: 0 28px 26px;
  font-size: 14.5px;
  font-weight: 300;
  color: var(--ink-soft);
}

/* ---------- Contact ---------- */
.contact { background: #f3f8fb; }
.contact-card {
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px);
}
.contact-form { margin-top: 40px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}
.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 9px;
}
.form-field label span { color: #d15b5b; }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.85);
  color: var(--ink);
  transition: border-color .3s, box-shadow .3s;
  width: 100%;
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47,127,181,.15);
}
.form-field textarea { margin-bottom: 8px; }
.contact-form .btn { margin-top: 14px; }
.form-status {
  margin-top: 16px;
  font-size: 14px;
  text-align: center;
  min-height: 20px;
}
.form-status.error { color: #d15b5b; }
.form-status.success { color: #2f8b5a; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.85); padding: 64px 0 30px; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand .brand-mark { font-size: 30px; }
.footer-name { font-size: 16px; font-weight: 700; color: #fff; }
.footer-tagline { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.7); }
.footer-nav { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-nav a { font-size: 14px; color: rgba(255,255,255,.8); transition: color .3s; }
.footer-nav a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--maxw);
  margin: 26px auto 0;
  padding: 0 clamp(20px, 5vw, 48px);
  text-align: center;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.55); line-height: 1.9; }
.footer-copy { margin-top: 6px; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s cubic-bezier(.2,.8,.2,1), transform 1s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* hero reveals should animate on load */
.hero .reveal { transition-duration: 1.1s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg, .scroll-line::after { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Mobile nav panel ---------- */
@media (max-width: 900px) {
  .nav-toggle { display: flex; z-index: 120; }
  .nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform .5s cubic-bezier(.2,.8,.2,1);
    box-shadow: -20px 0 60px rgba(18,58,94,.2);
  }
  .nav.open { transform: translateX(0); }
  .nav a,
  .site-header:not(.scrolled) .nav a { color: var(--navy); font-size: 17px; }
  .nav-cta,
  .site-header:not(.scrolled) .nav-cta { color: #fff !important; align-self: flex-start; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .sp-br { display: inline; }
  .concept-grid { grid-template-columns: 1fr; }
  .concept-media .photo-placeholder { aspect-ratio: 4/3; max-width: 520px; margin: 0 auto; }
  .concept-marks { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .form-row { grid-template-columns: 1fr; gap: 22px; margin-bottom: 22px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-brand { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .tl-item { grid-template-columns: 50px 22px 1fr; }
  .tl-list::before { left: 61px; }
  .tl-time { font-size: 15px; }
  .hero-actions .btn { width: 100%; max-width: 320px; }
  .ph-icon { font-size: 34px; }
  .plan-card { padding: 36px 26px; }
}
