/* ===== PiscaCreate shared styles ===== */
:root {
  --ink: #1a1a1a;
  --ink-2: #4a4a4a;
  --ink-3: #767676;
  --line: #e5e5e5;
  --paper: #ffffff;
  --paper-2: #f5f4f0;
  --paper-3: #faf9f5;
  --yellow: #fbcb3a;
  --yellow-2: #f5b800;
  --yellow-soft: #fff4cc;
  --yellow-bg: #fffaeb;
  --sans: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  --num: 'Manrope', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.8;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
}
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  max-width: 1320px; margin: 0 auto;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: 17px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.logo-mark { width: 30px; height: 30px; flex-shrink: 0; display: block; }
.nav-menu { display: flex; gap: 36px; font-size: 14px; font-weight: 500; }
.nav-menu li { color: var(--ink-2); cursor: pointer; transition: color .2s; }
.nav-menu li:hover { color: var(--yellow-2); }
.nav-menu li.active { color: var(--ink); font-weight: 700; }
.nav-menu li.active a { color: var(--ink); font-weight: 700; }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  background: var(--paper);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
  content: '';
}
.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before { position: absolute; top: -6px; left: 0; }
.nav-toggle-bars::after { position: absolute; top: 6px; left: 0; }
.nav.is-open .nav-toggle-bars { background: transparent; }
.nav.is-open .nav-toggle-bars::before { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav-toggle-bars::after { transform: translateY(-6px) rotate(-45deg); }
.menu-cta { display: none; }
@media (min-width: 961px) {
  .nav-toggle,
  .menu-cta {
    display: none !important;
  }
  .nav-menu { display: flex !important; }
}
.mobile-contact-bar {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 120;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--yellow);
  border: 1.5px solid var(--ink);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
  font-size: 14px;
  font-weight: 800;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 999px;
  font-size: 14px; font-weight: 700;
  transition: transform .2s, box-shadow .2s, background .2s;
  cursor: pointer;
  border: 2px solid var(--ink);
}
.btn:hover { transform: translateY(-1px); background: var(--yellow-2); box-shadow: 3px 3px 0 var(--ink); }
.btn::after { content: '→'; font-family: var(--num); font-weight: 700; transition: transform .2s; }
.btn:hover::after { transform: translateX(3px); }
.btn-ghost { background: transparent; }
.btn-ghost:hover { background: var(--paper-2); box-shadow: 3px 3px 0 var(--ink); }
.btn-sm { padding: 10px 20px; font-size: 13px; border-width: 1.5px; }
.btn-no-arrow::after { content: ''; display: none; }

/* PAGE HERO (sub-pages) */
.page-hero {
  padding: 80px 0 70px;
  background: var(--paper-3);
  border-bottom: 1px solid var(--line);
}
.page-hero-inner {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.page-hero h1 {
  font-size: 44px;
  font-weight: 900;
  margin: 14px 0 10px;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.page-hero h1 .highlight {
  background: linear-gradient(transparent 65%, var(--yellow) 65%);
  padding: 0 6px;
}
.page-hero .lead {
  font-size: 15px;
  color: var(--ink-2);
  max-width: 540px;
  margin: 0;
  line-height: 2;
}
.page-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--num);
  font-size: 12px; font-weight: 800;
  color: var(--ink-2);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.page-eyebrow::before {
  content: ''; width: 24px; height: 2px; background: var(--yellow);
}
.breadcrumb {
  font-size: 12px; color: var(--ink-3);
  font-family: var(--num);
  letter-spacing: 0.08em;
  margin-bottom: 0;
}
.breadcrumb span { color: var(--yellow-2); margin: 0 8px; }

/* SECTION BASE */
section { padding: 100px 0; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--num);
  font-size: 12px; font-weight: 700;
  color: var(--ink-2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: ''; width: 24px; height: 2px;
  background: var(--yellow);
}
.section-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.55;
  margin: 0 0 16px;
  letter-spacing: 0.01em;
}
.section-title .highlight {
  background: linear-gradient(transparent 65%, var(--yellow) 65%);
  padding: 0 6px;
}
.section-lead {
  font-size: 15px; color: var(--ink-2);
  max-width: 640px;
  margin: 0;
  line-height: 2;
}
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .section-eyebrow,
.section-head.center .section-title { display: block; }
.section-head.center .section-eyebrow { justify-content: center; }
.section-head.center .section-lead { margin: 0 auto; }

/* FINAL CTA */
.final-cta {
  background: var(--yellow);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.final-cta-inner { text-align: center; }
.final-cta h2 {
  font-size: 32px; font-weight: 900;
  line-height: 1.6;
  margin: 0 0 20px;
}
.final-cta p {
  font-size: 15px;
  color: var(--ink-2);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 2;
}
.final-cta .btn {
  background: var(--ink); color: var(--paper);
  border-color: var(--ink);
}
.final-cta .btn:hover { background: #000; box-shadow: 3px 3px 0 var(--paper); }

/* FOOTER */
.footer {
  background: var(--paper);
  padding: 60px 0 32px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-3);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { margin-bottom: 16px; }
.footer-desc { color: var(--ink-3); font-size: 13px; max-width: 320px; line-height: 1.9; }
.footer-col h4 { font-size: 12px; color: var(--ink); margin: 0 0 16px; font-weight: 900; letter-spacing: 0.04em; }
.footer-col ul li { margin-bottom: 10px; cursor: pointer; }
.footer-col ul li:hover { color: var(--yellow-2); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  color: var(--ink-3); font-size: 12px;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  body { padding-top: 78px; padding-bottom: 82px; }
  body.nav-open { overflow: hidden; }
  .nav { position: fixed; top: 0; left: 0; right: 0; }
  .nav-inner { padding: 14px 20px; }
  .nav-toggle { display: inline-flex; }
  .nav > .nav-inner > .btn-sm { display: none; }
  .nav-menu {
    display: none;
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    z-index: 99;
    flex-direction: column;
    gap: 0;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(8px);
  }
  .nav.is-open .nav-menu { display: flex; }
  .nav-menu li { padding: 14px 2px; border-bottom: 1px solid var(--line); }
  .nav-menu li:last-child { border-bottom: none; }
  .menu-cta { display: block; padding: 16px 0 0; }
  .menu-cta .btn { width: 100%; justify-content: center; }
  .mobile-contact-bar { display: inline-flex; }
  section { padding: 70px 0; }
  .section-title { font-size: 24px; }
  .page-hero h1 { font-size: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .final-cta h2 { font-size: 24px; }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .page-hero h1 { font-size: 24px; }
}
