:root {
  --paper: #fffaf5;
  --paper-deep: #f9efe7;
  --white: #ffffff;
  --ink: #493f4d;
  --muted: #756b77;
  --lavender: #83718f;
  --lavender-soft: #eee6f1;
  --blush: #f5d8d3;
  --rose: #dfa9aa;
  --gold: #d9a431;
  --gold-light: #f5d98d;
  --terracotta: #cf6f3c;
  --animal-accent: #b97920;
  --animal-soft: #f8ead0;
  --human-accent: #796487;
  --human-soft: #eee6f2;
  --line: rgba(111, 89, 112, 0.16);
  --shadow: 0 24px 60px rgba(106, 75, 88, 0.13);
  --radius-lg: 32px;
  --radius-md: 22px;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(245, 216, 211, 0.55), transparent 25rem),
    radial-gradient(circle at 92% 22%, rgba(238, 230, 241, 0.75), transparent 27rem),
    var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.3;
  pointer-events: none;
  background-image: repeating-linear-gradient(118deg, transparent 0 5px, rgba(176, 139, 111, 0.025) 5px 6px);
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.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;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.section-shell { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(111, 89, 112, 0.1);
  background: rgba(255, 250, 245, 0.9);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 40px));
  min-height: 82px;
  margin-inline: auto;
  gap: 32px;
}

.brand { display: inline-flex; align-items: center; flex: 0 0 auto; gap: 12px; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 44px; height: 44px; color: var(--white); background: linear-gradient(145deg, var(--terracotta), var(--gold)); border-radius: 50%; box-shadow: 0 8px 18px rgba(203, 112, 58, 0.2); font-family: var(--font-display); font-size: 0.92rem; font-style: italic; }
.brand-words { display: grid; line-height: 1.05; }
.brand-words strong { color: var(--terracotta); font-family: var(--font-display); font-size: 1.42rem; font-style: italic; font-weight: 500; }
.brand-words small { margin-top: 5px; color: var(--lavender); font-size: 0.62rem; font-weight: 750; letter-spacing: 0.075em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); }
.main-nav a { font-size: 0.93rem; font-weight: 650; text-decoration: none; color: #615665; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--ink); }
.main-nav a[aria-current="page"] { color: var(--terracotta); }
.main-nav a[href="pour-votre-animal.html"], .main-nav a[href="pour-votre-animal.html"]:hover, .animal-page .main-nav a[aria-current="page"] { color: var(--animal-accent); }
.main-nav a[href="pour-vous.html"], .main-nav a[href="pour-vous.html"]:hover, .human-page .main-nav a[aria-current="page"] { color: var(--human-accent); }
.main-nav .nav-contact { padding: 10px 18px; border: 1px solid rgba(73, 63, 77, 0.28); border-radius: 999px; color: var(--ink); }
.main-nav .nav-contact:hover, .main-nav .nav-contact:focus-visible { color: var(--white); background: var(--ink); border-color: var(--ink); }

.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px; border: 0; background: transparent; }
.menu-toggle span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--ink); transition: 0.25s; }

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  min-height: calc(100vh - 82px);
  padding-block: 72px 86px;
  gap: 60px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--lavender);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.dual-eyebrow { display: flex; align-items: center; gap: 8px; }
.animal-accent { color: var(--animal-accent); }
.human-accent { color: var(--human-accent); }
.title-separator { color: #b6aeb8; }

h1, h2, h3 { margin-top: 0; font-family: var(--font-display); font-weight: 500; line-height: 1.08; }
h1 { margin-bottom: 24px; font-size: clamp(3rem, 6vw, 5.7rem); letter-spacing: -0.045em; }
h2 { margin-bottom: 20px; font-size: clamp(2.25rem, 4.1vw, 4.2rem); letter-spacing: -0.035em; }
h3 { margin-bottom: 12px; font-size: 1.55rem; }

.hero-lead { max-width: 650px; margin: 0 0 32px; color: var(--muted); font-size: clamp(1.08rem, 1.8vw, 1.28rem); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid rgba(73, 63, 77, 0.24); outline-offset: 3px; }
.button-primary { color: var(--white); background: linear-gradient(120deg, #a96b1e, #dca53a); box-shadow: 0 13px 28px rgba(185, 121, 32, 0.24); }
.button-secondary { color: var(--white); background: linear-gradient(120deg, #6f5a7c, #a07dab); box-shadow: 0 13px 28px rgba(121, 100, 135, 0.24); }
.button-neutral { color: var(--white); background: linear-gradient(120deg, #493f4d, #675b6b); box-shadow: 0 13px 28px rgba(73, 63, 77, 0.2); }
.text-link { font-weight: 750; color: var(--lavender); text-decoration: none; }
.text-link:hover { color: var(--terracotta); }

.hero-notes { display: flex; flex-wrap: wrap; margin-top: 36px; gap: 9px; }
.hero-notes span { padding: 7px 12px; color: #6a5d6e; background: rgba(255, 255, 255, 0.72); border: 1px solid var(--line); border-radius: 999px; font-size: 0.82rem; }

.hero-art { position: relative; display: grid; place-items: center; min-height: 600px; }
.brand-illustration::before { position: absolute; width: 90%; aspect-ratio: 1; content: ""; background: radial-gradient(circle, rgba(245, 217, 141, 0.5), rgba(237, 222, 239, 0.4) 52%, transparent 72%); border-radius: 50%; }
.brand-illustration img { position: relative; z-index: 1; width: min(100%, 560px); border-radius: 50%; filter: drop-shadow(0 26px 36px rgba(104, 76, 113, 0.14)); }

.trust-strip { background: rgba(255, 255, 255, 0.52); border-block: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); padding-block: 24px; }
.trust-grid p { margin: 0; padding: 6px 30px; border-right: 1px solid var(--line); }
.trust-grid p:first-child { padding-left: 0; }
.trust-grid p:last-child { padding-right: 0; border-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { margin-bottom: 2px; color: var(--lavender); font-family: var(--font-display); font-size: 1.12rem; }
.trust-grid span { color: var(--muted); font-size: 0.86rem; }

.content-section { padding-block: 120px; }
.section-heading { max-width: 790px; margin-bottom: 50px; }
.section-heading.narrow { max-width: 680px; }
.section-heading > p:last-child { margin: 0; color: var(--muted); font-size: 1.08rem; }

.situation-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.soft-card { min-height: 280px; padding: 28px; background: rgba(255, 255, 255, 0.76); border: 1px solid rgba(185, 121, 32, 0.14); border-radius: var(--radius-md); transition: transform 0.25s, box-shadow 0.25s; }
.soft-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.soft-card:nth-child(2) { background: rgba(245, 216, 211, 0.38); }
.soft-card:nth-child(3) { background: rgba(249, 237, 209, 0.44); }
.soft-card:nth-child(4) { background: rgba(247, 226, 181, 0.28); }
.card-number { display: block; margin-bottom: 52px; color: var(--gold); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.12em; }
.soft-card p { margin: 0; color: var(--muted); font-size: 0.94rem; }

.process-section { padding-block: 110px; background: linear-gradient(135deg, #65586d, #8b7892); color: var(--white); }
.process-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 100px; }
.process-intro .eyebrow { color: var(--gold-light); }
.process-intro p:last-child { color: rgba(255, 255, 255, 0.75); }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
.process-list li:first-child { padding-top: 0; }
.process-list li > span { display: grid; place-items: center; width: 46px; height: 46px; color: #65586d; background: var(--gold-light); border-radius: 50%; font-family: var(--font-display); font-size: 1.25rem; }
.process-list strong { display: block; margin-bottom: 3px; font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; }
.process-list p { margin: 0; color: rgba(255, 255, 255, 0.68); }

.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card { position: relative; overflow: hidden; min-height: 310px; padding: 42px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: 0 16px 44px rgba(94, 75, 95, 0.08); transition: transform 0.25s, box-shadow 0.25s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card::after { position: absolute; right: -70px; bottom: -90px; width: 220px; height: 220px; content: ""; border-radius: 50%; }
.service-card.featured { background: linear-gradient(145deg, #fffdfa, var(--animal-soft)); border-color: rgba(185, 121, 32, 0.16); }
.service-card.human-pathway { background: linear-gradient(145deg, #fffdfa, #eee7f2); }
.animal-pathway::after { background: radial-gradient(circle, rgba(217, 164, 49, 0.28), transparent 68%); }
.human-pathway::after { background: radial-gradient(circle, rgba(131, 113, 143, 0.24), transparent 68%); }
.animal-pathway { border-top: 4px solid var(--animal-accent); }
.human-pathway { border-top: 4px solid var(--human-accent); }
.service-card h3 { font-size: 2.25rem; }
.service-card > p:not(.service-kicker) { max-width: 480px; color: var(--muted); }
.service-kicker { color: var(--terracotta); font-size: 0.74rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.service-card a { position: absolute; z-index: 2; bottom: 36px; font-weight: 750; color: var(--lavender); text-decoration: none; }
.animal-pathway .service-kicker, .animal-pathway a { color: var(--animal-accent); }
.human-pathway .service-kicker, .human-pathway a { color: var(--human-accent); }

.about-section { padding-block: 112px; background: rgba(247, 235, 229, 0.72); border-block: 1px solid rgba(218, 164, 49, 0.16); }
.about-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: 90px; }
.about-visual { position: relative; display: grid; place-items: center; }
.about-visual::before { position: absolute; width: 90%; aspect-ratio: 1; content: ""; background: rgba(255, 255, 255, 0.72); border-radius: 48% 52% 55% 45%; transform: rotate(7deg); }
.about-visual img { position: relative; z-index: 1; width: min(100%, 540px); border-radius: 40% 40% 28px 28px; }
.about-lead { color: #5c4f61; font-family: var(--font-display); font-size: 1.35rem; line-height: 1.45; }
.about-copy > p:not(.eyebrow):not(.about-lead) { color: var(--muted); }
.quote-block { margin-top: 34px; padding: 20px 24px; border-left: 2px solid var(--gold); background: rgba(255, 255, 255, 0.48); }
.quote-block p { margin: 0; color: var(--lavender); font-family: var(--font-display); font-size: 1.2rem; font-style: italic; }

.faq-section { padding-block: 110px; }
.faq-list { max-width: 840px; }
.faq-list details { padding: 22px 2px; border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; cursor: pointer; list-style: none; font-family: var(--font-display); font-size: 1.35rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--lavender); font-family: var(--font-body); font-size: 1.4rem; font-weight: 300; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { max-width: 700px; margin: 15px 0 0; color: var(--muted); }

.care-notice { display: grid; grid-template-columns: 0.72fr 1.28fr; align-items: center; margin-bottom: 110px; padding: 42px; background: rgba(255,255,255,0.76); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: 0 16px 44px rgba(94,75,95,0.06); gap: 60px; }
.care-notice h2 { margin: 0; font-size: clamp(2rem, 3.3vw, 3.2rem); }
.care-notice-text { display: grid; gap: 16px; }
.care-notice-text p { margin: 0; padding-left: 18px; color: var(--muted); border-left: 3px solid var(--line); }
.care-notice-text p:first-child { border-left-color: var(--animal-accent); }
.care-notice-text p:last-child { border-left-color: var(--human-accent); }
.care-notice-text strong { display: block; margin-bottom: 3px; font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; }

.contact-section { padding-block: 112px; background: linear-gradient(135deg, #f7dfdb, #f0e9f2 60%, #faedce); }
.contact-layout { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: 80px; }
.contact-copy > p:not(.eyebrow):not(.contact-location) { max-width: 490px; color: var(--muted); }
.email-link { display: inline-block; margin-top: 16px; color: var(--lavender); font-family: var(--font-display); font-size: clamp(1.35rem, 2.5vw, 2rem); text-decoration-thickness: 1px; text-underline-offset: 6px; }
.email-link, .page-cta-inner a:not(.button) { overflow-wrap: anywhere; }
.contact-location { margin-top: 26px; color: var(--lavender); font-size: 0.9rem; font-weight: 700; }
.contact-form { padding: 36px; background: rgba(255, 255, 255, 0.76); border: 1px solid rgba(255, 255, 255, 0.8); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.contact-form label { display: block; margin-bottom: 18px; color: #5b5060; font-size: 0.84rem; font-weight: 750; }
.contact-form input:not([type="checkbox"]), .contact-form textarea, .contact-form select { width: 100%; margin-top: 7px; padding: 13px 14px; color: var(--ink); background: rgba(255, 252, 249, 0.85); border: 1px solid rgba(111, 89, 112, 0.2); border-radius: 12px; outline: none; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--lavender); box-shadow: 0 0 0 3px rgba(131, 113, 143, 0.12); }
.contact-form .consent { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; line-height: 1.4; }
.consent input { margin-top: 3px; accent-color: var(--lavender); }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: 0.78rem; }

.site-footer { padding-block: 50px; background: #4e4553; color: rgba(255, 255, 255, 0.72); text-align: center; }
.footer-brand { margin-bottom: 12px; color: #f5d98d; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-style: italic; }
.footer-brand span { color: #efa976; }
.footer-layout p { margin: 5px 0; }
.footer-paths { display: flex; justify-content: center; gap: 10px; font-weight: 750; }
.footer-paths span:first-child { color: #f1cc79; }
.footer-paths span:last-child { color: #d9c4e2; }
.footer-paths b { color: rgba(255,255,255,0.4); font-weight: 400; }
.footer-small { font-size: 0.8rem; opacity: 0.72; }

.inner-page h1 { font-size: clamp(3rem, 4.8vw, 4.9rem); }
.inner-hero { display: grid; grid-template-columns: 1fr 0.9fr; align-items: center; min-height: 700px; padding-block: 80px; gap: 70px; }
.inner-hero-copy > p:not(.eyebrow) { max-width: 650px; margin-bottom: 32px; color: var(--muted); font-size: 1.16rem; }
.inner-hero-art { position: relative; display: grid; place-items: center; }

.focus-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.focus-card { min-height: 270px; padding: 34px; background: rgba(255, 255, 255, 0.72); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: 0 12px 34px rgba(94, 75, 95, 0.045); }
.focus-card:nth-child(2) { background: rgba(245, 216, 211, 0.34); }
.focus-card:nth-child(3) { background: rgba(238, 230, 241, 0.52); }
.focus-card:nth-child(4) { background: rgba(247, 226, 181, 0.26); }
.focus-label { display: inline-block; margin-bottom: 42px; color: var(--terracotta); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.focus-card h3 { font-size: 2rem; }
.focus-card p { margin: 0; color: var(--muted); }

.gentle-notice { display: grid; grid-template-columns: 0.85fr 1.15fr; align-items: center; padding-block: 100px; gap: 80px; }
.gentle-notice h2 { margin-bottom: 0; }
.gentle-notice > p { color: var(--muted); font-size: 1.06rem; }
.practical-strip { display: grid; grid-template-columns: repeat(3, 1fr); padding-block: 0 100px; gap: 18px; }
.practical-strip p { margin: 0; padding: 26px 28px; background: rgba(255,255,255,0.7); border-top: 3px solid var(--animal-accent); border-radius: 0 0 var(--radius-md) var(--radius-md); }
.practical-strip strong, .practical-strip span { display: block; }
.practical-strip strong { margin-bottom: 6px; color: var(--animal-accent); font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; }
.practical-strip span { color: var(--muted); font-size: 0.9rem; }
.page-cta { padding-block: 100px; background: linear-gradient(130deg, #f7dfdb, #f1e9f3, #faeccb); text-align: center; }
.page-cta-inner { max-width: 780px; }
.page-cta-inner > p:not(.eyebrow) { color: var(--muted); }
.page-cta-inner a:not(.button) { color: var(--terracotta); font-weight: 750; }
.page-cta .button { margin-top: 18px; }

.human-hero { position: relative; }
.human-page { background: radial-gradient(circle at 78% 9%, rgba(238, 222, 239, 0.82), transparent 28rem), radial-gradient(circle at 14% 32%, rgba(247, 226, 181, 0.45), transparent 24rem), var(--paper); }
.animal-page { background: radial-gradient(circle at 78% 9%, rgba(247, 226, 181, 0.66), transparent 28rem), radial-gradient(circle at 14% 32%, rgba(245, 216, 211, 0.36), transparent 24rem), var(--paper); }
.animal-page .eyebrow, .animal-page .focus-label { color: var(--animal-accent); }
.human-page .eyebrow, .human-page .focus-label { color: var(--human-accent); }
.animal-page .brand-illustration::before { background: radial-gradient(circle, rgba(245, 217, 141, 0.62), rgba(247, 226, 181, 0.34) 52%, transparent 72%); }
.human-page .brand-illustration::before { background: radial-gradient(circle, rgba(226, 210, 233, 0.64), rgba(238, 230, 241, 0.38) 52%, transparent 72%); }
.animal-page .focus-card { background: rgba(255, 253, 248, 0.76); border-color: rgba(200, 116, 40, 0.15); }
.animal-page .focus-card:nth-child(2) { background: rgba(247, 226, 181, 0.34); }
.animal-page .focus-card:nth-child(3) { background: rgba(249, 237, 209, 0.48); }
.animal-page .focus-card:nth-child(4) { background: rgba(245, 216, 211, 0.24); }
.human-focus-grid .focus-card { background: rgba(255, 255, 255, 0.66); border-color: rgba(131, 113, 143, 0.16); }
.human-focus-grid .focus-card:nth-child(2) { background: rgba(238, 230, 241, 0.62); }
.human-focus-grid .focus-card:nth-child(3) { background: rgba(226, 210, 233, 0.46); }
.human-focus-grid { grid-template-columns: repeat(2, 1fr); }
.human-focus-grid .future-card { border-style: dashed; }
.human-guidance-section { padding-block: 105px; color: var(--white); background: linear-gradient(135deg, #5f5267, #8b7195); }
.human-guidance-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: start; gap: 90px; }
.human-guidance-section .eyebrow { color: #eee2f2; }
.human-guidance-layout p { color: rgba(255,255,255,0.8); }
.human-guidance-layout .guidance-note { margin-top: 24px; padding-left: 18px; border-left: 2px solid #ddcbe4; font-size: 0.9rem; }
.simple-process { padding-block: 110px; }
.simple-process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.simple-process-grid p { margin: 0; padding: 30px; color: var(--muted); background: rgba(255,255,255,0.68); border: 1px solid var(--line); border-radius: var(--radius-md); }
.simple-process-grid span { display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 38px; color: var(--white); background: var(--human-accent); border-radius: 50%; font-family: var(--font-display); }
.simple-process-grid strong { display: block; margin-bottom: 8px; color: var(--ink); font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; }

#communication .eyebrow { color: var(--animal-accent); }
.animal-page .process-section, body:not(.inner-page) .process-section { background: linear-gradient(135deg, #765037, #a66d31); }
.animal-page .process-list li > span, body:not(.inner-page) .process-list li > span { color: #765037; background: #f7dda0; }
.animal-page .page-cta { background: linear-gradient(130deg, #fae9d0, #f7dfca, #fff3df); }
.human-page .page-cta { background: linear-gradient(130deg, #eee5f1, #e4d6e9, #f7f1f8); }
.human-page .page-cta-inner a:not(.button) { color: var(--human-accent); }
.human-page .button-secondary { background: linear-gradient(120deg, #6f5a7c, #a07dab); }
.trust-grid p:first-child strong { color: var(--animal-accent); }
.trust-grid p:nth-child(2) strong { color: var(--human-accent); }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 76px; }
  .hero-copy { max-width: 760px; }
  .hero-art { min-height: 0; }
  .brand-illustration img { width: min(72vw, 520px); }
  .situation-grid { grid-template-columns: repeat(2, 1fr); }
  .process-layout, .about-layout, .contact-layout, .care-notice { grid-template-columns: 1fr; gap: 36px; }
  .about-visual img { width: min(72vw, 520px); }
  .inner-hero { grid-template-columns: 1fr; min-height: auto; }
  .inner-hero-art { order: -1; }
  .gentle-notice, .human-guidance-layout { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 780px) {
  .section-shell, .nav-shell { width: min(100% - 28px, 1160px); }
  .nav-shell { min-height: 72px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-words strong { font-size: 1.12rem; }
  .brand-words small { font-size: 0.52rem; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 72px; right: 14px; left: 14px; display: none; align-items: stretch; padding: 18px; background: rgba(255, 252, 249, 0.98); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
  .main-nav.is-open { display: grid; }
  .main-nav a { padding: 10px 12px; }
  .main-nav .nav-contact { text-align: center; }
  .hero { padding-block: 58px 70px; gap: 24px; }
  .hero-notes { align-items: flex-start; flex-direction: column; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid p, .trust-grid p:first-child, .trust-grid p:last-child { padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid p:last-child { border-bottom: 0; }
  .content-section, .faq-section { padding-block: 84px; }
  .service-grid { grid-template-columns: 1fr; }
  .focus-grid, .simple-process-grid, .practical-strip { grid-template-columns: 1fr; }
  .inner-hero { padding-block: 58px 80px; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(2.75rem, 15vw, 4.2rem); }
  h2 { font-size: clamp(2.2rem, 11vw, 3.2rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .brand-illustration img { width: min(82vw, 320px); }
  .situation-grid { grid-template-columns: 1fr; }
  .soft-card { min-height: 240px; }
  .card-number { margin-bottom: 34px; }
  .process-section, .about-section, .contact-section { padding-block: 80px; }
  .process-list li { grid-template-columns: 44px 1fr; gap: 14px; }
  .process-list li > span { width: 40px; height: 40px; }
  .service-card { min-height: 330px; padding: 32px 26px; }
  .contact-form { padding: 26px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .brand-words small { display: none; }
  .focus-card { min-height: 240px; padding: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
