/* ============== TOKENS ============== */
:root {
  --ink: #4b4642;
  --ink-soft: #6d6863;
  --navy: #1d3f7a;
  --navy-deep: #143063;
  --cream: #f5ecd6;
  --cream-2: #faf3df;
  --bg-soft: #f6f3ec;
  --bg-page: #fbfaf6;
  --line: #e6e2d6;
  --peach: #f4ebd8;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  color: var(--ink);
  background: var(--bg-page);
  font-feature-settings: "palt";
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============== HEADER ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  margin: 0 auto;
  padding: 10px 32px;
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}
.logo img { height: 60px; width: auto; }
.gnav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  font-size: 19px;
  font-weight: 500;
}
.gnav a { line-height: 1.35; }
.gnav a span { font-size: 16px; color: var(--ink-soft); }
.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.h-tel {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 10.5px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.h-quote {
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.h-quote::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.6'><rect x='3' y='5' width='18' height='14' rx='1.5'/><path d='m3.5 6 8.5 7 8.5-7'/></svg>") center/contain no-repeat;
}

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #fbf6e8 0%, #fdfaf0 100%);
}
.hero-wc-left {
  position: absolute;
  left: -80px;
  top: 50%;
  width: 260px;
  transform: translateY(-30%) rotate(-8deg);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(620px, 55%) 1fr;
  align-items: stretch;
  min-height: 700px;
  z-index: 1;
}

.hero-copy {
  padding: 70px 24px 80px 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 3;
}
.hero-copy h1 {
  margin: 0 0 32px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 54px;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: var(--ink);
  white-space: nowrap;
}
.h1-line { display: block; }
.hero-lead {
  font-size: 20px;
  color: var(--ink-soft);
  margin: 0 0 40px;
  line-height: 2;
}

.hero-badges {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  gap: 0;
  flex-wrap: nowrap;
  align-items: stretch;
}
.hero-badges li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
  border-right: 1px solid #d6d2c2;
}
.hero-badges li:first-child { padding-left: 0; }
.hero-badges li:last-child { border-right: none; }
.hero-badges img { width: 38px; height: auto; }
.hero-badges b {
  display: block;
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
}
.hero-badges span {
  display: block;
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.4;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 8px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.btn-tel {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 2px 0 rgba(0,0,0,0.04);
}
.btn-quote {
  background: #fff;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

/* hero photo + contact card — full bleed right */
.hero-photo {
  position: relative;
  min-height: 700px;
  overflow: hidden;
}
.hero-photo .hero-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 12%, #000 28%);
          mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 12%, #000 28%);
}

.hero-contact-card {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 340px;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 8px 22px rgba(140, 100, 40, 0.18));
}

/* ============== TROUBLES ============== */
.troubles {
  position: relative;
  background: #f6efdb;
  padding: 56px 0 48px;
  overflow: hidden;
}
.t-inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 60px;
  display: grid;
  grid-template-columns: 340px 1fr 320px;
  gap: 40px;
  align-items: center;
}
.t-left {
  position: relative;
}
.t-left h2 {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.04em;
  margin: 0 0 4px;
  color: var(--ink);
}
.t-underline {
  display: block;
  width: 220px;
  height: 12px;
  margin: 0 0 18px;
}
.t-left p {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.95;
  margin: 0;
}
.t-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.t-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
}
.ck-box {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #ece3c8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.ck-box svg { width: 16px; height: 16px; }
.t-illust {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.t-illust img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
}

/* ============== SECTION TITLE ============== */
.section-title {
  text-align: center;
  margin: 64px auto 36px;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 34px;
  letter-spacing: 0.06em;
}
.st-jp {
  position: relative;
  display: inline-block;
  padding: 0 6px;
}
.st-jp::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 6px;
  background: linear-gradient(90deg, transparent, #cfe0f0 20%, #cfe0f0 80%, transparent);
  border-radius: 3px;
}
.st-accent { color: var(--navy); }
.section-sub {
  text-align: center;
  margin: -16px 0 32px;
  font-size: 18px;
  color: var(--ink-soft);
}

/* ============== WHY ============== */
.why {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 24px 56px;
}
.why-title {
  text-align: center;
  margin: 0 0 48px;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 0;
}
.why-card {
  text-align: left;
  padding: 8px 30px 12px;
  position: relative;
}
.why-card + .why-card {
  border-left: 1px solid #d6d2c2;
}
.why-card > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 0 22px;
  display: block;
}
.why-card h3 {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 14px;
  line-height: 1.55;
  letter-spacing: 0.02em;
}
.why-num {
  font-family: "Klee One", "Zen Old Mincho", serif;
  font-weight: 600;
  color: var(--navy);
  margin-right: 4px;
}
.why-card p {
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 2;
  text-align: left;
}

/* ============== SERVICE ============== */
.service {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 40px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.srv-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  padding: 0 0 18px;
  display: flex;
  flex-direction: column;
}
.srv-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.srv-thumb img { width: 100%; height: 100%; object-fit: cover; }
.srv-card h3 {
  margin: 14px 16px 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}
.srv-card p {
  margin: 0 16px 14px;
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.8;
  flex: 1;
}
.srv-link {
  margin: 0 16px;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  align-self: flex-start;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
  white-space: nowrap;
}

/* ============== WORKS ============== */
.works {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 40px;
}
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 26px;
}
.work img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}
.work-meta {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.work-meta li {
  font-size: 18px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  background: #fafaf5;
  padding: 4px 8px;
  border-radius: 3px;
  white-space: nowrap;
}
.works-more, .vf-more { text-align: center; margin-top: 28px; }
.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: #fff;
  padding: 14px 36px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
}
.pill-btn-sm {
  padding: 11px 26px;
  font-size: 18px;
}

/* ============== FLOW ============== */
.flow-section {
  position: relative;
  background: #fbf8ee;
  padding: 70px 24px 70px;
  overflow: hidden;
}
.flow-roller {
  position: absolute;
  right: 0;
  top: -20px;
  width: 200px;
  transform: rotate(15deg);
  opacity: 0.9;
  pointer-events: none;
}
.flow-title {
  text-align: center;
  margin: 0 0 56px;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.08em;
}
.flow {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1320px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}
.flow-step-item {
  flex: 1;
  min-width: 0;
  max-width: 220px;
  text-align: center;
}
.flow-arrow {
  flex: 0 0 28px;
  color: #c4c0ad;
  font-size: 28px;
  line-height: 1;
  text-align: center;
  align-self: flex-start;
  margin-top: 46px;
}
.flow-circle {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.fc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transform: translateY(3px);
}
.fc-icon svg { width: 72px; height: 72px; }
.fc-icon-pair svg { width: 50px; height: 50px; }
.fc-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.55;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.fc-title span {
  color: var(--ink);
  margin-right: 2px;
  font-weight: 700;
}
.fc-body {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.flow-more { text-align: center; margin-top: 44px; }
.ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 14px 44px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
}

/* ============== INFO COLS ============== */
.info-cols {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
}
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px 22px 26px;
}
.info-title {
  margin: 0 0 16px;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.info-lead { font-size: 18px; color: var(--ink-soft); line-height: 1.9; margin: 0 0 12px; }
.info-area-body { display: grid; grid-template-columns: 1fr 130px; gap: 14px; align-items: start; }
.area-list { margin: 0; font-size: 18px; }
.area-list dt { font-weight: 700; color: var(--navy); margin-top: 8px; font-size: 18px; }
.area-list dd { margin: 2px 0 0; color: var(--ink-soft); font-size: 18px; line-height: 1.6; }
.area-map img { width: 100%; height: auto; }
.area-addr { font-size: 14px; color: var(--ink-soft); margin: 10px 0 0; line-height: 1.5; }

.kv { margin: 0; font-size: 18px; }
.kv dt { font-weight: 700; color: var(--ink); border-bottom: 1px dotted var(--line); padding: 8px 0 4px; }
.kv dd { margin: 0; color: var(--ink-soft); padding: 0 0 8px; line-height: 1.7; }
.company .pill-btn-sm, .faq .pill-btn-sm { margin-top: 14px; display: inline-flex; }

.faq-list { padding: 0; margin: 0 0 8px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 4px;
  background: transparent;
  border: 0;
  font: inherit;
  text-align: left;
  font-size: 18px;
  color: var(--ink);
  cursor: pointer;
  user-select: none;
}
.faq-q {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1.5px solid var(--navy);
  border-radius: 50% 50% 50% 0;
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
}
.faq-text { flex: 1; }
.faq-toggle {
  color: var(--navy);
  font-size: 20px;
  line-height: 1;
  display: inline-block;
  transition: transform 0.3s ease;
}
.faq-item.is-open .faq-toggle { transform: rotate(180deg); }
.faq-answer-wrap {
  display: none;
}
.faq-item.is-open .faq-answer-wrap {
  display: block;
  animation: faqFade 0.35s ease both;
}
@keyframes faqFade {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.faq-answer {
  padding: 4px 4px 18px 46px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-soft);
}

/* ============== CTA ============== */
.cta {
  position: relative;
  background:
    radial-gradient(80% 100% at 50% 0%, #e8eef5 0%, transparent 60%),
    linear-gradient(180deg, #f1f5fa 0%, #eef3f8 100%);
  padding: 56px 24px 70px;
  overflow: hidden;
}
.cta-wc-left, .cta-wc-right {
  position: absolute;
  top: 0;
  width: 240px;
  opacity: 0.7;
}
.cta-wc-left { left: 0; transform: rotate(-10deg) translateY(-30px); }
.cta-wc-right { right: 0; transform: rotate(170deg) translateY(-20px); }
.cta-staff {
  position: absolute;
  left: 60px;
  bottom: -10px;
  width: 150px;
  z-index: 2;
}
.cta-roller {
  position: absolute;
  right: 80px;
  bottom: 0;
  width: 130px;
  opacity: 0.85;
}
.cta-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}
.cta-title {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ink);
}
.cta-lead {
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0 0 28px;
  line-height: 1.9;
}
.cta-buttons {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  max-width: 720px;
  margin: 0 auto;
}
.cta-btn {
  background: #fff;
  border: 1px solid #d6dfeb;
  border-radius: 6px;
  padding: 20px 14px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 140px;
}
.cta-btn small {
  display: block;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.cta-btn a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.cta-mail a { font-size: 18px; white-space: normal; text-align: center; line-height: 1.4; }
.cta-btn .hours { margin-top: 8px; font-size: 13px; }

/* ============== FOOTER ============== */
.site-footer {
  background: #1a1f2c;
  color: #d6d9df;
  padding: 36px 24px 20px;
  position: relative;
  overflow: hidden;
}
.ft-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}
.ft-left { font-size: 14px; line-height: 1.9; }
.ft-name { font-size: 18px; font-weight: 700; color: #fff; margin: 0 0 6px; }
.ft-addr, .ft-left p { margin: 0; }
.ft-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  font-size: 14px;
  color: #cbd0d8;
  max-width: 520px;
  justify-content: flex-end;
  white-space: nowrap;
}
.ft-nav a:hover { color: #fff; }
.ft-bucket { display: none; }
.ft-copy {
  max-width: 1100px;
  margin: 24px auto 0;
  padding-top: 16px;
  border-top: 1px solid #2a3040;
  text-align: center;
  font-size: 12px;
  color: #9aa0ac;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1100px) {
  .gnav { display: none; }
  .header-cta { margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { order: -1; min-height: 360px; }
  .hero-photo .hero-photo-img { -webkit-mask-image: none; mask-image: none; }
  .hero-copy { padding: 48px 24px 24px; }
  .hero-copy h1 { font-size: 40px; white-space: normal; }
  .hero-contact-card { width: 240px; right: 16px; bottom: 16px; }
  .t-inner { grid-template-columns: 1fr; padding: 0 24px; gap: 24px; }
  .t-illust { display: none; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 30px 0; }
  .why-card:nth-child(2) { border-left: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .info-cols { grid-template-columns: 1fr; gap: 18px; }
  .flow { flex-wrap: wrap; gap: 12px; }
  .flow-arrow { display: none; }
  .flow-step-item { flex: 0 1 calc(33.333% - 12px); max-width: none; }
}

@media (max-width: 760px) {
  .header-inner { padding: 8px 16px; gap: 8px; flex-wrap: nowrap; }
  .gnav { display: none; }
  .logo img { height: 44px; }
  .header-cta { display: none; }
  .hero-copy h1 { font-size: 28px; line-height: 1.45; white-space: normal; }
  .hero-copy h1 br { display: none; }
  .hero-lead { font-size: 16px; line-height: 1.85; }
  .hero-lead br { display: none; }
  .hero-buttons { flex-direction: column; gap: 12px; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-photo { min-height: 340px; }
  .hero-contact-card { width: 200px; }
  .troubles { padding: 40px 0; }
  .t-left { text-align: center; }
  .t-left h2 { font-size: 22px; text-align: center; }
  .t-left h2 br { display: none; }
  .t-underline { margin-left: auto; margin-right: auto; width: 180px; }
  .t-left p { text-align: center; }
  .t-list li { font-size: 16px; }
  .why-title { font-size: 28px; margin-bottom: 32px; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-card { padding: 0 16px; border-left: none !important; }
  .why-card > img { height: 200px; }
  .why-card h3 { font-size: 20px; }
  .why-card p { font-size: 16px; line-height: 1.85; }
  .section-title { font-size: 26px; margin: 40px auto 24px; }
  .service-grid, .works-grid { grid-template-columns: 1fr; gap: 20px; padding: 0 16px; }
  .srv-card h3, .work h3 { font-size: 18px; }
  .flow-section { padding: 40px 0; }
  .flow-roller { display: none; }
  .flow-title { font-size: 24px; margin-bottom: 32px; padding: 0 16px; line-height: 1.5; }
  .flow {
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 0 20px;
    gap: 18px;
    max-width: 480px;
  }
  .flow-step-item {
    flex: 0 0 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 84px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 4px;
    align-items: center;
    text-align: left;
  }
  .flow-circle {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 84px;
    height: 84px;
    margin: 0;
  }
  .fc-icon { transform: none; }
  .fc-icon svg { width: 44px; height: 44px; }
  .fc-icon-pair svg { width: 32px; height: 32px; }
  .fc-title { grid-column: 2; grid-row: 1; font-size: 16px; margin: 0; align-self: end; }
  .fc-body { grid-column: 2; grid-row: 2; font-size: 14px; line-height: 1.6; align-self: start; }
  .info-cols { padding: 0 16px; margin: 40px auto; }
  .info-title { font-size: 22px; }
  .area-list, .kv, .info-lead { font-size: 16px; }
  .faq-text { font-size: 16px; }
  .cta { padding: 50px 16px; }
  .cta-title { font-size: 24px; line-height: 1.5; }
  .cta-lead { font-size: 16px; }
  .cta-buttons { grid-template-columns: 1fr; gap: 12px; }
  .cta-staff, .cta-roller, .cta-wc-left, .cta-wc-right { display: none; }
  .site-footer { padding: 32px 20px 16px; }
  .ft-inner { display: flex; flex-direction: column; gap: 24px; padding: 0; align-items: stretch; }
  .ft-left { font-size: 13px; line-height: 1.8; }
  .ft-name { font-size: 17px; margin-bottom: 8px; }
  .ft-nav { flex-direction: column; gap: 12px; max-width: none; justify-content: flex-start; font-size: 14px; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; }
  .ft-bucket { display: none; }
  .ft-copy { font-size: 11px; }
}

@media (max-width: 480px) {
  .hero-copy h1 { font-size: 26px; }
  .hero-contact-card { width: 160px; }
  .why-grid { gap: 24px; }
  .flow-step-item { flex: 0 1 100%; }
}

/* Mobile fixed CTA bar — hidden by default */
.mobile-cta-bar { display: none; }

@media (max-width: 760px) {
  /* Hero — overlay copy on photo */
  .hero { background: none; }
  .hero-grid { display: block; position: relative; min-height: 0; }
  .hero-photo { order: 0; min-height: 540px; position: relative; }
  .hero-photo .hero-photo-img { -webkit-mask-image: none; mask-image: none; }
  .hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0) 60%);
    z-index: 1;
    pointer-events: none;
  }
  .hero-copy {
    position: absolute;
    top: 28px;
    left: 22px;
    right: 22px;
    padding: 0;
    z-index: 2;
    background: none;
  }
  .hero-copy h1 {
    font-size: 22px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    letter-spacing: 0.04em;
    text-shadow: 0 1px 10px rgba(0,0,0,0.3);
    margin: 0;
    white-space: normal;
  }
  .hero-copy h1 br { display: none; }
  .hero-lead { display: none; }
  .hero-buttons { display: none; }
  .hero-contact-card { display: none; }
  .hero-wc-left { display: none; }

  /* Fixed bottom CTA bar */
  body { padding-bottom: 64px; }
  .mobile-cta-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.12);
  }
  .mcb-tel, .mcb-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 16px 8px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
  }
  .mcb-tel { background: var(--navy); }
  .mcb-form { background: #2f6fb3; }
}

/* Hamburger menu — hidden on desktop */
.menu-toggle { display: none; }
.menu-drawer { display: none; }

@media (max-width: 1100px) {
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    margin-left: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    align-items: center;
  }
  .menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.25s, opacity 0.2s;
    transform-origin: center;
  }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .menu-drawer {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(78%, 320px);
    background: #fff;
    box-shadow: -8px 0 24px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 200;
    padding: 80px 28px 32px;
    overflow-y: auto;
  }
  .menu-drawer.is-open { transform: translateX(0); }
  .menu-drawer[hidden] { display: block; }
  .menu-drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .menu-drawer-nav a {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
  }
  /* Backdrop using ::before on drawer when open */
  .menu-drawer.is-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: -1;
  }
}

@media (max-width: 760px) {
  .menu-toggle { margin-left: auto; }
}

/* ============== SCROLL REVEAL ============== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children inside grids for a cascading feel */
.why-grid .reveal:nth-child(1).is-revealed { transition-delay: 0.05s; }
.why-grid .reveal:nth-child(2).is-revealed { transition-delay: 0.18s; }
.why-grid .reveal:nth-child(3).is-revealed { transition-delay: 0.31s; }
.service-grid .reveal:nth-child(1).is-revealed { transition-delay: 0.05s; }
.service-grid .reveal:nth-child(2).is-revealed { transition-delay: 0.15s; }
.service-grid .reveal:nth-child(3).is-revealed { transition-delay: 0.25s; }
.service-grid .reveal:nth-child(4).is-revealed { transition-delay: 0.35s; }
.works-grid .reveal:nth-child(1).is-revealed { transition-delay: 0.04s; }
.works-grid .reveal:nth-child(2).is-revealed { transition-delay: 0.12s; }
.works-grid .reveal:nth-child(3).is-revealed { transition-delay: 0.20s; }
.works-grid .reveal:nth-child(4).is-revealed { transition-delay: 0.28s; }
.works-grid .reveal:nth-child(5).is-revealed { transition-delay: 0.36s; }
.works-grid .reveal:nth-child(6).is-revealed { transition-delay: 0.44s; }
.flow-step-item.reveal.is-revealed { transition-delay: var(--reveal-delay, 0s); }
.t-list .reveal:nth-child(1).is-revealed { transition-delay: 0.04s; }
.t-list .reveal:nth-child(2).is-revealed { transition-delay: 0.12s; }
.t-list .reveal:nth-child(3).is-revealed { transition-delay: 0.20s; }
.t-list .reveal:nth-child(4).is-revealed { transition-delay: 0.28s; }
.t-list .reveal:nth-child(5).is-revealed { transition-delay: 0.36s; }
.info-cols .reveal:nth-child(1).is-revealed { transition-delay: 0.05s; }
.info-cols .reveal:nth-child(2).is-revealed { transition-delay: 0.15s; }
.info-cols .reveal:nth-child(3).is-revealed { transition-delay: 0.25s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; transform: none; opacity: 1; }
}
