:root {
  --bg: #ffffff;
  --bg-soft: #f5f8ff;
  --text: #17182b;
  --text-muted: #5c6178;
  --primary: #2f6fed;
  --primary-dark: #1f56c9;
  --primary-soft: #e9f1ff;
  --accent: #f59e0b;
  --navy: #172038;
  --border: #e6e9f5;
  --radius: 18px;
  --shadow: 0 24px 48px -24px rgba(23, 24, 43, 0.28);
  --font-head: 'Zen Maru Gothic', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
}

h1, h2, h3 { font-family: var(--font-head); margin: 0 0 0.5em; line-height: 1.3; }

p { margin: 0 0 1em; color: var(--text-muted); }

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 28px -10px rgba(47, 111, 237, 0.55);
}
.btn-primary:hover { background: var(--primary-dark); }

.btn-ghost {
  background: #fff;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

/* Icons */
.sprite-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon-svg { width: 28px; height: 28px; color: var(--primary); }
.icon-svg-sm { width: 22px; height: 22px; color: var(--primary); flex-shrink: 0; }
.icon-svg-xl { width: 72px; height: 72px; color: var(--primary); }
.inline-icon { width: 16px; height: 16px; vertical-align: -3px; color: currentColor; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
}
.logo span { color: var(--primary); }
.logo-mark { width: 32px; height: auto; flex-shrink: 0; }

.nav-desktop { display: flex; gap: 30px; }
.nav-desktop a { font-weight: 500; color: var(--text-muted); }
.nav-desktop a:hover { color: var(--primary); }
.nav-cta { display: inline-flex; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  white-space: nowrap;
}
.nav-phone:hover { color: var(--primary); }
.nav-phone .inline-icon { width: 18px; height: 18px; color: var(--primary); }
.nav-phone-mobile { display: none; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span { width: 22px; height: 2px; background: var(--text); display: block; }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 8px 24px 20px;
  border-top: 1px solid var(--border);
}
.nav-mobile a { padding: 12px 0; font-weight: 500; border-bottom: 1px solid var(--border); }
.nav-mobile.open { display: flex; }

/* Hero */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hero {
  padding: 56px 0 72px;
  background: radial-gradient(ellipse at top right, var(--primary-soft) 0%, #fff 60%);
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.hero-banner {
  width: 100%;
  max-width: 920px;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: block;
}
.eyebrow {
  letter-spacing: 0.03em;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.eyebrow-center { justify-content: center; }
.highlight { color: var(--primary); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.line-qr-card {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 22px 12px 12px;
  box-shadow: var(--shadow);
  text-align: left;
}
.line-qr-img { width: 76px; height: auto; border-radius: 8px; flex-shrink: 0; }
.line-qr-card strong { display: block; color: #06c755; font-size: 1rem; margin-bottom: 2px; }
.line-qr-card span { display: block; font-size: 0.82rem; color: var(--text-muted); }

/* Trust bar */
.trustbar { background: var(--navy); padding: 26px 0; }
.trustbar-inner { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
.trustbar-inner div { display: flex; flex-direction: column; text-align: center; }
.trustbar-inner strong { font-family: var(--font-head); font-size: 1.05rem; color: #fff; }
.trustbar-inner span { font-size: 0.82rem; color: rgba(255, 255, 255, 0.68); }

.reassure {
  text-align: center;
  max-width: 56ch;
  margin: -24px auto 40px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-dark);
  background: var(--primary-soft);
  border-radius: 999px;
  padding: 10px 22px;
  display: table;
}

/* Sections generic */
section h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); text-align: center; }
.section-sub { text-align: center; max-width: 54ch; margin: 0 auto 44px; }
.section-sub-left { text-align: left; margin: 0 0 24px; }

.servicos { padding: 88px 0; background: var(--bg-soft); }

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cards-grid-wide { grid-template-columns: repeat(4, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }
.cards-grid-6 { grid-template-columns: repeat(3, 1fr); }

.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--border);
}

.service-card .icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-soft);
  border-radius: 14px;
  margin-bottom: 16px;
}
.service-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
.service-card p { font-size: 0.9rem; margin: 0; }
.service-note { text-align: center; margin: 36px auto 0; font-weight: 500; color: var(--text); }

/* Kaitori */
.kaitori { padding: 88px 0; }
.kaitori-inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.kaitori h2 { text-align: left; font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0; }
.tag { background: var(--primary-soft); color: var(--primary-dark); font-weight: 700; font-size: 0.85rem; padding: 8px 18px; border-radius: 999px; }
.callout { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 26px; margin-top: 26px; }
.callout strong { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; color: var(--text); }
.callout p { margin: 0; }

.license-card {
  margin: 18px 0 0;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.license-notice {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.qualification-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.qualification-list li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow);
}
.qual-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
  border-radius: 50%;
}
.qual-icon .icon-svg { width: 24px; height: 24px; }
.qual-text { display: flex; flex-direction: column; gap: 4px; }
.qualification-list strong { font-family: var(--font-head); font-size: 1.02rem; color: var(--text); }
.qualification-list span { font-size: 0.85rem; color: var(--text-muted); }
.qual-why {
  margin-top: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-dark) !important;
}

.qual-featured {
  position: relative;
  border: 2px solid var(--accent) !important;
  background: #fffaf0 !important;
}
.qual-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 999px;
}
.qual-featured .qual-icon { background: #ffe9c7; }
.qual-featured .qual-icon .icon-svg { color: var(--accent); }
.kaitori-visual { display: flex; align-items: center; justify-content: center; }
.kaitori-photo {
  width: 100%;
  max-width: 460px;
  height: auto;
  filter: drop-shadow(0 24px 32px rgba(23, 24, 43, 0.25));
}

/* Tokucho */
.tokucho { padding: 88px 0; background: var(--bg-soft); }
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
}
.feature-card .icon {
  width: 46px; height: 46px; margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-soft);
  border-radius: 12px;
}
.feature-card h3 { font-size: 0.92rem; margin: 0; }

/* Omakase */
.omakase { padding: 88px 0; }
.omakase-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--primary-soft);
  border-radius: var(--radius);
  padding: 22px 24px;
  font-weight: 600;
  color: var(--text);
}

/* Results (cleaning before/after) */
.results { padding: 88px 0; background: var(--bg-soft); }

/* Reforma */
.reforma { padding: 88px 0; background: #fff8ee; }
.reforma-title { text-align: center; }
.reforma-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.reforma-item {
  margin: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.reforma-item img { width: 100%; height: auto; display: block; }
.reforma-item figcaption {
  padding: 14px 10px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

/* FAQ */
.faq { padding: 88px 0; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-head);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--primary);
  transition: transform 0.15s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 14px 0 0; }

/* LINE CTA */
.line-cta { background: #06c755; color: #fff; padding: 64px 0; }
.line-cta-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 28px; }
.line-cta h2 { text-align: left; color: #fff; margin-bottom: 8px; }
.line-cta p { color: rgba(255,255,255,0.92); margin: 0 0 6px; max-width: 46ch; }
.line-id { font-size: 0.95rem; }
.line-id strong { font-family: var(--font-head); }
.line-cta p.line-badge { display: inline-block; background: #fff; color: #06c755; font-weight: 800; font-size: 0.8rem; padding: 4px 14px; border-radius: 6px; margin-bottom: 12px; }
.line-cta .btn-primary { background: #fff; color: #06c755; box-shadow: none; }
.line-cta .btn-primary:hover { background: #f0fff6; }

/* Contato */
.contato { padding: 88px 0; }
.contato-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; }
.contato h2 { text-align: left; }
.contact-list { list-style: none; padding: 0; margin-top: 0; }
.contact-list li { padding: 9px 0; font-weight: 500; }
.contact-list a:hover { color: var(--primary); }

.map-embed {
  margin-top: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.map-embed iframe { width: 100%; height: 260px; display: block; border: 0; }

.contact-form {
  display: flex; flex-direction: column; gap: 18px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: 0.9rem; font-weight: 600; color: var(--text); }
.contact-form input, .contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--primary); outline-offset: 1px; }
.form-note { min-height: 1.2em; font-size: 0.9rem; color: var(--primary); margin: 0; }
.form-note.form-note-error { color: #d64545; }

.hp-field {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 30px 0; background: var(--bg-soft); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; color: var(--text-muted); }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.mascot-footer { width: 34px; height: auto; }
.footer-motto { font-weight: 500; }

/* Responsive */
@media (max-width: 960px) {
  .kaitori-inner, .contato-inner { grid-template-columns: 1fr; }
  .kaitori-visual { order: -1; }
  .cards-grid, .cards-grid-wide, .cards-grid-4, .cards-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .reforma-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-desktop, .nav-cta, .header-inner .nav-phone { display: none; }
  .menu-toggle { display: flex; }
  .nav-phone-mobile { display: flex; padding: 12px 0; }
  .trustbar-inner { gap: 20px 32px; }
  .line-cta-inner { text-align: center; justify-content: center; }
  .line-cta h2 { text-align: center; }
  .line-cta p { margin-left: auto; margin-right: auto; }
  .section-sub-left { text-align: center; }
  .kaitori h2 { text-align: center; }
  .contato h2 { text-align: center; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .cards-grid, .cards-grid-wide, .cards-grid-4, .cards-grid-6 { grid-template-columns: 1fr; }
  .reforma-grid { grid-template-columns: 1fr; }
  .trustbar-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 12px; }
}
