/* ============================================================
   ccurs theme — main.css (editorial design)
   ============================================================ */

/* ── Base ── */
body {
  font-family: var(--font-ja);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--c-heading);
  margin: 0;
}

p { margin: 0; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--outer);
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--c-border-dk);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--outer);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--hh);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.header-logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 3px;
  background: linear-gradient(135deg, #00a0e9, #0072bc);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 17px;
  flex: none;
}

.header-logo-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 16px;
  color: var(--c-heading);
  letter-spacing: .01em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: .1em;
  font-weight: 600;
  color: var(--c-text);
  text-decoration: none;
  transition: color var(--tr-ui);
}

.header-nav a:hover { color: var(--c-primary); }

.header-nav .nav-contact {
  color: var(--c-primary);
  border: 1.5px solid var(--c-primary);
  padding: 8px 18px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: color 0.22s ease;
}

.header-nav .nav-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-primary);
  transform: translateY(105%);
  transition: transform 0.22s ease;
  z-index: -1;
}

.header-nav .nav-contact:hover { color: #fff; }
.header-nav .nav-contact:hover::before { transform: translateY(0); }

/* ── Page title bar ── */
.page-title-bar {
  padding: 56px var(--outer) 40px;
  border-bottom: 1px solid var(--c-border-dk);
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-title-bar .breadcrumb {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: .2em;
  font-weight: 700;
  color: var(--c-muted-lt);
  margin-bottom: 14px;
}

.page-title-bar h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 40px;
  color: var(--c-heading);
}

.page-title-bar h1 .en {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--c-primary);
  margin-left: 18px;
}

/* ── Section labels ── */
.sec-label {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .2em;
  color: var(--c-muted-lt);
}

.sec-index {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 40px;
}

.sec-index h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 28px;
}

/* ── Hero ── */
.hero {
  border-bottom: 1px solid var(--c-border-dk);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
}

.hero-content {
  padding: 80px var(--outer) 80px 0;
  padding-left: 0;
  border-right: 1px solid var(--c-border);
}

/* hero-contentはcontainerの内側に入る */
.hero .container {
  padding: 0;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-left {
  padding: 80px var(--outer);
  border-right: 1px solid var(--c-border);
}

.hero-eyebrow {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: .2em;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 26px;
}

.hero-left h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 48px;
  line-height: 1.34;
  letter-spacing: .01em;
  margin-bottom: 28px;
}

.hero-left p {
  font-size: 17px;
  line-height: 2.05;
  color: var(--c-text);
  max-width: 440px;
  margin-bottom: 34px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-primary {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  background: linear-gradient(to right, var(--c-primary-dk) 50%, var(--c-primary) 50%);
  background-size: 200% 100%;
  background-position: 100% 0%;
  transition: background-position 0.32s ease;
}

.btn-primary:hover { background-position: 0% 0%; color: #fff; }

.btn-ghost {
  color: var(--c-primary);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.hero-right {
  background: var(--c-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1.5px dashed #9cc4de;
  border-radius: 4px;
  background: linear-gradient(135deg, #eaf5fc, #dcefff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5b8bab;
  font-size: 14px;
  font-weight: 500;
}

/* ── Why Us (選ばれる理由) ── */
.why-us {
  padding: var(--section-py) var(--outer);
  border-bottom: 1px solid var(--c-border-dk);
  max-width: var(--max-w);
  margin: 0 auto;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--c-border);
}

.why-us-item {
  padding: 32px 28px;
  border-right: 1px solid var(--c-border);
}

.why-us-item:last-child { border-right: none; }
.why-us-item:first-child { padding-left: 0; }

.why-us-num {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 28px;
  color: var(--c-num-blue);
  margin-bottom: 18px;
}

.why-us-item h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 12px;
}

.why-us-item p {
  font-size: 16px;
  line-height: 1.95;
  color: var(--c-text);
}

/* ── Business Preview (事業紹介) ── */
.biz-preview {
  padding: var(--section-py) var(--outer);
  border-bottom: 1px solid var(--c-border-dk);
  max-width: var(--max-w);
  margin: 0 auto;
}

.biz-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--c-border);
}

.biz-preview-item {
  padding: 36px 36px 36px 0;
  border-right: 1px solid var(--c-border);
  cursor: pointer;
  transition: background var(--tr-ui);
  text-decoration: none;
  display: block;
  color: inherit;
}

.biz-preview-item:last-child {
  padding: 36px 0 36px 36px;
  border-right: none;
}

.biz-preview-item:hover { background: var(--c-bg-subtle); }

.biz-letter {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 10px;
}

.biz-letter.blue { color: var(--c-primary); }
.biz-letter.teal { color: var(--c-accent); }

.biz-preview-item h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 21px;
  margin-bottom: 14px;
}

.biz-preview-item p {
  font-size: 16px;
  line-height: 1.95;
  color: var(--c-text);
  margin-bottom: 16px;
}

.biz-more {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
}

.biz-more.blue { color: var(--c-primary); }
.biz-more.teal { color: var(--c-accent); }

/* ── News Preview ── */
.news-preview {
  padding: var(--section-py) var(--outer);
  border-bottom: 1px solid var(--c-border-dk);
  max-width: var(--max-w);
  margin: 0 auto;
}

.news-sec-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
}

.news-sec-head h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 28px;
}

.news-view-all {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: .1em;
  font-weight: 700;
  color: var(--c-primary);
  text-decoration: none;
}

.news-list { border-top: 1px solid var(--c-border); }

.news-row {
  display: grid;
  grid-template-columns: 130px 90px 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-border);
  text-decoration: none;
  color: inherit;
  transition: background var(--tr-ui);
}

.news-row:hover { background: var(--c-bg-subtle); }

.news-date {
  font-family: var(--font-en);
  font-size: 14px;
  color: var(--c-muted);
}

.news-tags {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.news-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-primary);
  border: 1px solid #bcdcf0;
  border-radius: 2px;
  padding: 3px 8px;
  text-align: center;
  display: inline-block;
  white-space: nowrap;
}

.news-title {
  font-size: 15px;
  color: var(--c-heading);
}

/* ── CTA Banner ── */
.cta-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--c-border-dk);
}

.cta-left {
  background: var(--c-primary);
  padding: 56px var(--outer);
  text-align: center;
}

.cta-left h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 28px;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 14px;
}

.cta-left p {
  font-size: 15px;
  color: rgba(255,255,255,.82);
  line-height: 1.9;
}

.cta-right {
  background: var(--c-navy);
  padding: 56px var(--outer);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-right .label {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: .2em;
  color: #7d99b3;
  margin-bottom: 12px;
}

.cta-right p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 24px;
}

.btn-cta {
  align-self: flex-start;
  background: #fff;
  color: var(--c-navy);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: color 0.28s ease;
}

.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-bg-light);
  transform: translateX(-105%);
  transition: transform 0.28s ease;
  z-index: 0;
}

.btn-cta:hover { color: var(--c-navy); }
.btn-cta:hover::before { transform: translateX(0); }

/* ── About page ── */
.about-philosophy {
  padding: var(--section-py) var(--outer);
  border-bottom: 1px solid var(--c-border-dk);
  max-width: var(--max-w);
  margin: 0 auto;
}

.about-philosophy-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}

.about-philosophy-label {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: .2em;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 12px;
}

.about-philosophy h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.5;
}

.about-profile {
  padding: var(--section-py) var(--outer);
  border-bottom: 1px solid var(--c-border-dk);
  max-width: var(--max-w);
  margin: 0 auto;
}

.profile-table { border-top: 1px solid var(--c-border); }

.profile-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-border);
}

.profile-label {
  font-weight: 700;
  font-size: 15px;
  color: var(--c-heading);
}

.profile-value {
  font-size: 15px;
  color: var(--c-text);
}

/* ── Business page ── */
.biz-overview {
  padding: 64px var(--outer);
  border-bottom: 1px solid var(--c-border-dk);
  max-width: var(--max-w);
  margin: 0 auto;
}

.biz-area {
  padding: var(--section-py) var(--outer);
  border-bottom: 1px solid var(--c-border-dk);
  max-width: var(--max-w);
  margin: 0 auto;
}

.biz-area-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}

.biz-area-num {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 34px;
  margin-bottom: 8px;
}

.biz-area-num.blue { color: var(--c-num-blue); }
.biz-area-num.teal { color: var(--c-num-teal); }

.biz-area h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.5;
}

.biz-service-list { display: flex; flex-direction: column; }

.biz-service-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--c-border);
}

.biz-service-item:first-child { padding-top: 0; }
.biz-service-item:last-child { border-bottom: none; padding-bottom: 0; }

.biz-service-item h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 10px;
}

.biz-service-item h3.blue { color: var(--c-primary); }
.biz-service-item h3.teal { color: var(--c-accent); }

.biz-service-item p {
  font-size: 16px;
  line-height: 1.95;
  color: var(--c-text);
}

/* ── Service page ── */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--c-border-dk);
}

.service-card {
  padding: 64px 48px;
  border-right: 1px solid var(--c-border);
}

.service-card:last-child { border-right: none; }

.service-img {
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
}

.service-img.blue {
  border: 1.5px dashed #9cc4de;
  background: linear-gradient(135deg, #eaf5fc, #dcefff);
  color: #5b8bab;
}

.service-img.teal {
  border: 1.5px dashed #9ad6cc;
  background: linear-gradient(135deg, #eafaf6, #dcf4ee);
  color: #3a9b8c;
}

.service-num {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 8px;
}

.service-num.blue { color: var(--c-primary); }
.service-num.teal { color: var(--c-accent); }

.service-card h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 16px;
}

.service-card > p {
  font-size: 16px;
  line-height: 1.95;
  color: var(--c-text);
  margin-bottom: 22px;
}

.service-points { display: flex; flex-direction: column; gap: 10px; }

.service-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--c-text);
}

.service-point::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex: none;
}

.service-point.blue::before { background: var(--c-primary); }
.service-point.teal::before { background: var(--c-accent); }

.service-cta {
  padding: 48px var(--outer);
  border-bottom: 1px solid var(--c-border-dk);
  background: var(--c-bg-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
}

.service-cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px var(--outer);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ── Contact page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  border-bottom: 1px solid var(--c-border-dk);
}

.contact-sidebar {
  padding: 64px 48px 64px var(--outer);
  border-right: 1px solid var(--c-border);
  background: var(--c-bg-light);
}

.contact-sidebar p {
  font-size: 15px;
  line-height: 2;
  color: var(--c-text);
  margin-bottom: 28px;
}

.contact-response {
  border-top: 1px solid #d6e6f0;
  padding-top: 20px;
}

.contact-response .label {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .15em;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 8px;
}

.contact-response p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 0;
}

.contact-form-wrap {
  padding: 64px var(--outer) 64px 48px;
}

/* CF7 スタイル */
.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 560px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-heading);
  margin-bottom: 8px;
}

.form-field label .req {
  color: var(--c-primary);
  margin-left: 2px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cfdce6;
  border-radius: 2px;
  font-size: 15px;
  font-family: var(--font-ja);
  color: var(--c-heading);
  outline: none;
  transition: border-color var(--tr-ui), box-shadow var(--tr-ui);
  background: #fff;
}

.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(0,114,188,.12);
}

.wpcf7-form textarea { resize: vertical; }

.form-submit {
  display: flex;
  align-items: center;
  gap: 16px;
}

.wpcf7-form input[type="submit"] {
  background: var(--c-primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 44px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background var(--tr-ui);
}

.wpcf7-form input[type="submit"]:hover { background: var(--c-primary-dk); }

.form-note {
  font-size: 13px;
  color: var(--c-muted);
}

/* ── News (archive-notes) ── */
.news-archive {
  padding: 32px var(--outer) var(--section-py);
  border-bottom: 1px solid var(--c-border-dk);
  max-width: var(--max-w);
  margin: 0 auto;
}

.news-archive-list { border-top: 1px solid var(--c-border); }

.news-archive-row {
  display: grid;
  grid-template-columns: 140px 100px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--c-border);
  text-decoration: none;
  color: inherit;
  transition: background var(--tr-ui);
}

.news-archive-row:hover { background: var(--c-bg-subtle); }

.news-archive-date {
  font-family: var(--font-en);
  font-size: 14px;
  color: var(--c-muted);
}

.news-archive-arrow {
  font-family: var(--font-en);
  font-size: 18px;
  color: var(--c-num-blue);
}

.news-title-main {
  font-size: 16px;
  color: var(--c-heading);
  font-weight: 500;
  margin-bottom: 4px;
}

.news-excerpt {
  font-size: 14px;
  color: var(--c-muted);
}

/* ── Single note ── */
.single-note {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--section-py) var(--outer);
}

.single-note-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.single-note h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.4;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-border);
}

.single-note-body {
  font-size: 16px;
  line-height: 2;
  color: var(--c-text);
}

.single-note-body h2 {
  font-size: 24px;
  margin: 40px 0 16px;
}

.single-note-body p { margin-bottom: 1.5em; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-primary);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 48px;
  border-top: 1px solid var(--c-border);
  padding-top: 32px;
}

/* ── Footer ── */
.site-footer {
  background: var(--c-navy);
  padding: 48px var(--outer);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 36px;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 17px;
  color: #fff;
  margin-bottom: 10px;
}

.footer-brand-desc {
  font-size: 14px;
  color: #9fb3c4;
  line-height: 1.8;
}

.footer-nav-groups {
  display: flex;
  gap: 48px;
}

.footer-nav-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-group a {
  font-size: 14px;
  color: #9fb3c4;
  text-decoration: none;
  transition: color var(--tr-ui), background var(--tr-ui);
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: -6px;
}

.footer-nav-group a:hover { color: #fff; background: #07203a; }

.footer-bottom {
  border-top: 1px solid #1d3e5a;
  padding-top: 20px;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .1em;
  color: #6b8197;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-wrap,
  .biz-preview-grid,
  .contact-grid,
  .cta-banner {
    grid-template-columns: 1fr;
  }

  .hero-left { border-right: none; border-bottom: 1px solid var(--c-border); }
  .hero-right { min-height: 300px; }

  .biz-preview-item { border-right: none; border-bottom: 1px solid var(--c-border); padding: 28px 0; }
  .biz-preview-item:last-child { padding: 28px 0; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-sidebar { border-right: none; border-bottom: 1px solid var(--c-border); padding: var(--section-py) var(--outer); }

  .cta-left, .cta-right { padding: 40px var(--outer); }

  .why-us-grid { grid-template-columns: 1fr; }
  .why-us-item { border-right: none; border-bottom: 1px solid var(--c-border); padding: 28px 0; }
  .why-us-item:first-child { padding-left: 0; }

  .service-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid var(--c-border); }

  .about-philosophy-grid,
  .biz-area-grid { grid-template-columns: 1fr; gap: 24px; }

  .footer-top { flex-direction: column; gap: 32px; }

  .news-archive-row { grid-template-columns: 120px 1fr; }
  .news-archive-date { font-size: 12px; }
  .news-archive-arrow { display: none; }
  .news-tags { display: none; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

/* ── Keyframes ── */
@keyframes ccFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes ccFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes ccSlideDown {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Header entrance ── */
.site-header {
  animation: ccSlideDown 0.45s ease both;
}

/* ── Hero page-load ── */
.hero-eyebrow {
  opacity: 0;
  animation: ccFadeIn 0.5s ease 0.05s forwards;
}

.hero-left h1 {
  opacity: 0;
  animation: ccFadeUp 0.65s ease 0.2s forwards;
}

.hero-left p {
  opacity: 0;
  animation: ccFadeUp 0.65s ease 0.38s forwards;
}

.hero-btns {
  opacity: 0;
  animation: ccFadeUp 0.6s ease 0.52s forwards;
}

.hero-right {
  opacity: 0;
  animation: ccFadeIn 0.9s ease 0.28s forwards;
}

/* ── Scroll-triggered ── */
.anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--anim-delay, 0s);
}

.anim.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Nav: underline slide ── */
.header-nav a:not(.nav-contact) {
  position: relative;
}

.header-nav a:not(.nav-contact)::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-primary);
  transition: width 0.22s ease;
}

.header-nav a:not(.nav-contact):hover::after { width: 100%; }

/* ── Arrow links: shift right ── */
.btn-ghost {
  transition: gap 0.18s ease, color 0.18s ease;
}
.btn-ghost:hover { gap: 16px; }

.biz-more,
.news-view-all {
  display: inline-block;
  transition: letter-spacing 0.2s ease;
}
.biz-more:hover,
.news-view-all:hover { letter-spacing: .16em; }

.back-link {
  transition: gap 0.18s ease;
}
.back-link:hover { gap: 14px; }

/* ── News / archive rows: left accent ── */
.news-row,
.news-archive-row {
  border-left: 3px solid transparent;
  transition: border-color 0.22s ease, background var(--tr-ui);
}

.news-row:hover,
.news-archive-row:hover {
  border-left-color: var(--c-primary);
}

/* ── Profile rows: subtle highlight ── */
.profile-row {
  transition: background 0.15s ease;
}
.profile-row:hover {
  background: var(--c-bg-subtle);
}

/* ── FAQ ── */
.faq-section {
  background: var(--c-bg-light);
  padding: var(--section-py) var(--outer);
}

.faq-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}

.faq-item {
  border-bottom: 1px solid var(--c-border);
  padding: 28px 0;
}

.faq-item:first-child { border-top: 1px solid var(--c-border); }

.faq-item dt,
.faq-item dd {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-text);
}

.faq-item dd { margin-top: 12px; }

.faq-q,
.faq-a {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
}

.faq-q {
  background: var(--c-primary);
  color: #fff;
}

.faq-a {
  background: var(--c-border);
  color: var(--c-heading);
}


/* ── Footer nav: slight right shift ── */
.footer-nav-group a {
  display: inline-block;
  transition: color var(--tr-ui), background var(--tr-ui), transform 0.18s ease;
}
.footer-nav-group a:hover {
  color: #fff;
  background: #07203a;
  transform: translateX(4px);
}

/* ── Prefers-reduced-motion ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .anim { opacity: 1; transform: none; }
}
