:root {
  --navy: #203746;
  --navy-deep: #142b36;
  --ink: #26353b;
  --muted: #6d7c80;
  --paper: #fffdf8;
  --mist: #f2f5f3;
  --line: #dce5e3;
  --gold: #c48a46;
  --gold-dark: #a66d34;
  --gold-light: #e7bd7d;
  --gold-pale: #f7eedf;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(29, 54, 65, .12);
  --sans: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", sans-serif;
  --serif: var(--sans);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.75; overflow-x: hidden; }
body, button, input, select, textarea { font-family: var(--sans); }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-size: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(196, 138, 70, .55); outline-offset: 4px; }

.shell { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }
.draft-note { background: var(--gold-pale); color: #755024; border-bottom: 1px solid rgba(196, 138, 70, .25); }
.draft-note__inner { min-height: 34px; display: flex; align-items: center; gap: 12px; font-size: 11px; letter-spacing: .03em; }
.draft-note__inner > span { padding: 3px 8px; background: var(--gold); color: var(--white); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.draft-note__inner p { margin: 0; }

.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255, 253, 248, .95); border-bottom: 1px solid rgba(32, 55, 70, .09); backdrop-filter: blur(16px); transition: box-shadow .2s ease; }
.site-header.is-scrolled { box-shadow: 0 10px 28px rgba(32, 55, 70, .08); }
.header-inner { min-height: 78px; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-mark { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid var(--navy); color: var(--navy); font-family: var(--serif); font-size: 21px; line-height: 1; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { color: var(--navy); font-family: var(--serif); font-size: 18px; font-weight: 700; letter-spacing: .06em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: 9px; letter-spacing: .08em; }
.main-nav { display: flex; align-items: center; justify-content: flex-end; gap: 23px; margin-left: auto; }
.main-nav a { position: relative; padding: 7px 0; color: var(--muted); font-size: 12px; font-weight: 700; white-space: nowrap; }
.main-nav a::after { position: absolute; right: 0; bottom: 0; left: 0; height: 1px; background: var(--gold); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.main-nav a:hover { color: var(--navy); }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 19px; padding: 0 21px; border: 1px solid transparent; font-size: 13px; font-weight: 800; letter-spacing: .03em; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button span { font-size: 19px; font-weight: 400; line-height: 1; }
.button--nav { min-height: 40px; padding: 0 18px; background: var(--navy); color: var(--white); font-size: 12px; }
.button--primary { background: var(--gold); color: var(--navy-deep); }
.button--primary:hover { background: var(--gold-light); }
.button--line { border-color: #06c755; background: #06c755; color: var(--white); }
.button--line:hover { border-color: #05b94f; background: #05b94f; color: var(--white); }
.button--quiet { border-color: rgba(32, 55, 70, .25); color: var(--navy); }
.button--quiet:hover { border-color: var(--navy); background: rgba(255, 255, 255, .65); }
.button--outline { border-color: var(--navy); color: var(--navy); }
.button--outline:hover { background: var(--navy); color: var(--white); }
.button--wide { width: 100%; }

.hero { position: relative; background: linear-gradient(125deg, #edf2f0 0%, var(--paper) 68%); overflow: hidden; }
.hero::before { position: absolute; top: -130px; left: 42%; width: 540px; height: 540px; border: 1px solid rgba(196, 138, 70, .18); border-radius: 50%; content: ""; }
.hero-grid { position: relative; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 69px; padding: 88px 0 88px; }
.hero-copy { position: relative; z-index: 1; }
.eyebrow { margin: 0 0 18px; color: var(--gold-dark); font-size: 11px; font-weight: 800; letter-spacing: .2em; line-height: 1.4; }
.eyebrow--light { color: var(--gold-light); }
.hero h1 { max-width: 580px; margin: 0; color: var(--navy); font-family: var(--serif); font-size: clamp(36px, 4.2vw, 61px); font-weight: 600; letter-spacing: .035em; line-height: 1.42; }
.hero h1 em, h2 em { color: var(--gold-dark); font-style: normal; }
.hero-lead { max-width: 515px; margin: 25px 0 0; color: var(--muted); font-size: 15px; line-height: 2.05; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 31px; color: var(--muted); font-size: 11px; font-weight: 700; }
.hero-points span { display: inline-flex; align-items: center; gap: 7px; }
.hero-points b { color: var(--gold-dark); font-size: 10px; letter-spacing: .08em; }
.hero-visual { position: relative; min-width: 0; }
.hero-visual::after { position: absolute; right: -22px; bottom: -22px; width: 76%; height: 72%; border: 1px solid var(--gold); content: ""; opacity: .45; pointer-events: none; }
.hero-visual img { position: relative; z-index: 1; display: block; width: 100%; height: auto; aspect-ratio: 1.27; object-fit: cover; border-radius: 3px; box-shadow: var(--shadow); }
.hero-visual__caption { position: absolute; z-index: 2; right: 24px; bottom: 24px; display: flex; flex-direction: column; align-items: flex-end; padding: 13px 15px; background: rgba(20, 43, 54, .86); color: var(--white); }
.hero-visual__caption span { color: var(--gold-light); font-size: 9px; font-weight: 800; letter-spacing: .18em; }
.hero-visual__caption strong { margin-top: 3px; font-family: var(--serif); font-size: 13px; font-weight: 600; letter-spacing: .06em; }
.hero-visual__badge { position: absolute; z-index: 3; top: -20px; left: -24px; display: grid; width: 95px; height: 95px; place-items: center; align-content: center; border: 1px solid var(--gold); border-radius: 50%; background: var(--paper); color: var(--navy); transform: rotate(-8deg); }
.hero-visual__badge span, .hero-visual__badge strong { display: block; line-height: 1.2; text-align: center; }
.hero-visual__badge span { color: var(--gold-dark); font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.hero-visual__badge strong { margin-top: 5px; font-family: var(--serif); font-size: 14px; }

.trust-strip { background: var(--navy); color: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { display: flex; min-height: 93px; align-items: center; gap: 14px; padding: 20px 25px; border-right: 1px solid rgba(255, 255, 255, .14); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; }
.trust-icon { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid var(--gold); color: var(--gold-light); font-size: 10px; font-weight: 800; }
.trust-item strong, .trust-item small { display: block; }
.trust-item strong { font-family: var(--serif); font-size: 15px; font-weight: 600; letter-spacing: .04em; }
.trust-item small { margin-top: 3px; color: rgba(255, 255, 255, .58); font-size: 11px; }

.section { padding: 108px 0; }
.section--white { background: var(--paper); }
.section--mist { background: var(--mist); }
.section-heading { max-width: 690px; }
.section-heading--center { margin: 0 auto; text-align: center; }
.section-heading h2 { margin: 0; color: var(--navy); font-family: var(--serif); font-size: clamp(29px, 3.2vw, 44px); font-weight: 600; letter-spacing: .04em; line-height: 1.55; }
.section-heading > p:not(.eyebrow) { margin: 20px 0 0; color: var(--muted); font-size: 14px; line-height: 2; }
.section-heading--center > p:not(.eyebrow) { max-width: 620px; margin-right: auto; margin-left: auto; }
.section-heading--split { display: grid; grid-template-columns: 1fr .75fr; align-items: end; gap: 70px; max-width: none; }
.section-heading--split > p { margin: 0 0 4px; }

.concern-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 55px; }
.concern-card { min-height: 225px; padding: 25px 23px; background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--gold); }
.card-number { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 27px; margin-bottom: 27px; border: 1px solid var(--gold); color: var(--gold-dark); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.concern-card h3 { margin: 0 0 11px; color: var(--navy); font-family: var(--serif); font-size: 18px; font-weight: 600; line-height: 1.55; }
.concern-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.9; }

.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 54px; }
.plan-card { position: relative; padding: 30px 27px 27px; background: var(--white); border: 1px solid var(--line); }
.plan-card--featured { background: var(--navy); border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-11px); }
.plan-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 27px; }
.plan-label { color: var(--gold-dark); font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.plan-card--featured .plan-label { color: var(--gold-light); }
.plan-label b { margin-left: 6px; padding: 4px 7px; background: var(--gold); color: var(--navy-deep); font-size: 9px; letter-spacing: .04em; }
.plan-symbol { color: var(--gold); font-family: var(--serif); font-size: 25px; }
.plan-card h3 { margin: 0; color: var(--navy); font-family: var(--serif); font-size: 23px; font-weight: 600; letter-spacing: .04em; }
.plan-card--featured h3 { color: var(--white); }
.plan-price { margin: 14px 0 5px; color: var(--navy); font-size: 32px; font-weight: 800; letter-spacing: .02em; line-height: 1.25; }
.plan-price small { margin-left: 4px; font-size: 13px; font-weight: 700; }
.plan-card--featured .plan-price { color: var(--gold-light); }
.plan-card > p:not(.plan-price) { min-height: 54px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.85; }
.plan-card--featured > p:not(.plan-price) { color: rgba(255, 255, 255, .7); }
.plan-card ul { display: grid; gap: 8px; margin: 22px 0 23px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); list-style: none; }
.plan-card--featured ul { border-color: rgba(255, 255, 255, .18); }
.plan-card li { color: var(--muted); font-size: 12px; }
.plan-card--featured li { color: rgba(255, 255, 255, .75); }
.plan-card li::before { margin-right: 8px; color: var(--gold); content: "✓"; font-weight: 800; }
.text-link { display: inline-flex; align-items: center; gap: 14px; color: var(--navy); font-size: 12px; font-weight: 800; }
.text-link span { color: var(--gold-dark); font-size: 19px; font-weight: 400; line-height: 1; }
.plan-card--featured .text-link { color: var(--white); }
.option-row { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-top: 33px; padding: 16px 20px; border: 1px solid var(--line); background: rgba(255, 255, 255, .58); }
.option-row > span { flex: 0 0 auto; color: var(--navy); font-size: 11px; font-weight: 800; }
.option-row > div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.option-row > div span { padding: 5px 10px; border: 1px solid rgba(196, 138, 70, .44); color: var(--muted); font-size: 11px; }
.pet-service-note { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; margin-top: 14px; padding: 20px 21px; border: 1px solid rgba(196, 138, 70, .36); background: var(--gold-pale); }
.pet-service-note > span { color: var(--gold-dark); font-size: 9px; font-weight: 800; letter-spacing: .14em; white-space: nowrap; }
.pet-service-note strong { display: block; color: var(--navy); font-size: 14px; }
.pet-service-note p { margin: 5px 0 0; color: var(--muted); font-size: 11px; line-height: 1.75; }
.pet-service-note .text-link { white-space: nowrap; }

.report-grid { display: grid; grid-template-columns: .84fr 1.16fr; align-items: center; gap: 90px; }
.report-copy > p:not(.eyebrow) { margin: 20px 0 0; color: var(--muted); font-size: 14px; line-height: 2; }
.report-checklist { display: grid; gap: 13px; margin: 27px 0 31px; padding: 0; list-style: none; }
.report-checklist li { display: flex; align-items: center; gap: 12px; }
.report-checklist li > span { display: grid; width: 31px; height: 25px; place-items: center; border: 1px solid rgba(196, 138, 70, .62); border-radius: 2px; background: var(--gold); color: var(--navy-deep); font-size: 9px; font-weight: 800; letter-spacing: .04em; }
.report-checklist strong, .report-checklist small { display: block; }
.report-checklist strong { color: var(--navy); font-size: 13px; }
.report-checklist small { color: var(--muted); font-size: 11px; }
.report-card { padding: 28px 29px 19px; background: var(--white); border: 1px solid rgba(32, 55, 70, .16); box-shadow: var(--shadow); }
.report-card__header { display: flex; align-items: start; justify-content: space-between; gap: 18px; padding-bottom: 18px; border-bottom: 2px solid var(--navy); }
.report-card__header > div > span { color: var(--gold-dark); font-size: 9px; font-weight: 800; letter-spacing: .17em; }
.report-card h3 { margin: 6px 0 0; color: var(--navy); font-size: 23px; letter-spacing: .08em; }
.report-stamp { display: grid; width: 55px; height: 55px; place-items: center; border: 1px solid var(--gold); color: var(--gold-dark); font-size: 9px; font-weight: 800; transform: rotate(-7deg); }
.report-card__meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.report-card__meta small, .report-card__meta strong { display: block; }
.report-card__meta small { color: var(--muted); font-size: 9px; }
.report-card__meta strong { margin-top: 3px; color: var(--ink); font-size: 11px; }
.report-compare { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 18px 0 12px; }
.report-shot { min-width: 0; margin: 0; overflow: hidden; border: 1px solid var(--line); background: #fbfcf9; }
.report-shot__image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #e4e6e1; }
.report-shot__image::after { position: absolute; inset: 0; border: 1px solid rgba(255, 255, 255, .16); content: ""; pointer-events: none; }
.report-shot img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center center; filter: saturate(.82) contrast(.96); }
.report-shot figcaption { padding: 11px 12px 13px; }
.report-shot figcaption span { display: block; color: var(--gold-dark); font-size: 8px; font-weight: 800; letter-spacing: .13em; }
.report-shot figcaption strong { display: block; margin-top: 4px; color: var(--navy); font-size: 11px; }
.report-shot figcaption small { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; line-height: 1.5; }
.report-shot--offering { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; margin-top: 12px; border-color: var(--navy); background: var(--navy); }
.report-shot--offering .report-shot__image { aspect-ratio: 16 / 7; }
.report-shot--offering figcaption { padding: 16px 17px; }
.report-shot--offering figcaption span { color: var(--gold-light); }
.report-shot--offering figcaption strong { color: var(--white); font-family: var(--serif); font-size: 15px; font-weight: 600; }
.report-shot--offering figcaption small { color: rgba(255, 255, 255, .7); }
.report-lines { position: relative; display: grid; gap: 0; padding-bottom: 6px; }
.report-lines::before { position: absolute; top: 10px; bottom: 25px; left: 6px; width: 1px; background: var(--line); content: ""; }
.report-lines > div { position: relative; display: grid; grid-template-columns: 14px 1fr; gap: 12px; min-height: 52px; }
.done-dot { z-index: 1; display: block; width: 13px; height: 13px; margin-top: 5px; border: 3px solid var(--white); border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.done-dot--last { background: var(--navy); box-shadow: 0 0 0 1px var(--navy); }
.report-lines p { margin: 0; }
.report-lines strong, .report-lines small { display: block; }
.report-lines strong { color: var(--navy); font-size: 11px; }
.report-lines small { color: var(--muted); font-size: 10px; }
.report-card__footer { display: flex; justify-content: space-between; gap: 15px; padding-top: 14px; border-top: 1px solid var(--line); color: var(--muted); font-size: 9px; }

.work-feature { display: grid; grid-template-columns: 1.3fr .7fr; min-height: 294px; margin: 55px 0 14px; overflow: hidden; border: 1px solid var(--line); background: var(--navy); }
.work-feature__image { min-height: 294px; overflow: hidden; }
.work-feature__image img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center center; filter: saturate(.9) contrast(.98); }
.work-feature figcaption { display: flex; flex-direction: column; justify-content: center; padding: 31px 32px; background: var(--navy); }
.work-feature figcaption span { color: var(--gold-light); font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.work-feature figcaption strong { margin-top: 11px; color: var(--white); font-family: var(--serif); font-size: 20px; font-weight: 600; line-height: 1.65; }
.work-feature figcaption small { margin-top: 16px; color: rgba(255, 255, 255, .68); font-size: 11px; line-height: 1.8; }
.work-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 55px; }
.work-card { display: flex; min-width: 0; flex-direction: column; margin: 0; overflow: hidden; border: 1px solid var(--line); background: var(--mist); }
.work-card__image { aspect-ratio: 4 / 3; overflow: hidden; background: #e4e6e1; }
.work-card__image img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(.88) contrast(.98); }
.work-card--cleaning .work-card__image img { object-position: center 38%; }
.work-card--finished .work-card__image img { object-position: center center; }
.work-card--offering .work-card__image img { object-position: 62% center; }
.work-card figcaption { flex: 1; padding: 18px 19px 20px; background: var(--navy); }
.work-card figcaption span { display: block; color: var(--gold-light); font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.work-card figcaption strong { display: block; margin-top: 7px; color: var(--white); font-family: var(--serif); font-size: 16px; font-weight: 600; letter-spacing: .04em; }
.work-card figcaption small { display: block; margin-top: 5px; color: rgba(255, 255, 255, .66); font-size: 11px; line-height: 1.75; }
.work-note { margin: 22px 0 0; color: var(--muted); font-size: 11px; line-height: 1.8; }

.support-section { background: var(--mist); }
.support-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }
.support-copy > p:not(.eyebrow) { margin: 20px 0 0; color: var(--muted); font-size: 14px; line-height: 2; }
.support-copy h2 { margin: 0; color: var(--navy); font-family: var(--serif); font-size: clamp(29px, 3.2vw, 44px); font-weight: 600; letter-spacing: .04em; line-height: 1.55; }
.support-copy h2 em { color: var(--gold-dark); font-style: normal; }
.support-note { display: grid; gap: 4px; margin: 28px 0 31px; padding: 17px 19px; border-left: 3px solid var(--gold); background: var(--paper); }
.support-note span { color: var(--gold-dark); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.support-note strong { color: var(--navy); font-size: 16px; }
.support-note small { color: var(--muted); font-size: 11px; }
.support-portrait { position: relative; margin: 0; padding: 0 16px 16px 0; }
.support-portrait::after { position: absolute; right: 0; bottom: 0; width: 76%; height: 72%; border: 1px solid var(--gold); content: ""; opacity: .55; pointer-events: none; }
.support-portrait img { position: relative; z-index: 1; display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 31%; border-radius: 3px; box-shadow: var(--shadow); }
.support-portrait figcaption { position: absolute; z-index: 2; right: 28px; bottom: 28px; padding: 10px 13px; background: rgba(20, 43, 54, .86); color: var(--white); font-size: 10px; letter-spacing: .06em; }

.flow-list { max-width: 850px; margin: 53px auto 0; }
.flow-item { display: grid; grid-template-columns: 58px 1fr 27px; gap: 26px; align-items: start; padding: 23px 0 27px; border-bottom: 1px solid var(--line); }
.flow-number { display: grid; width: 55px; height: 55px; place-items: center; background: var(--navy); color: var(--gold-light); font-family: var(--serif); font-size: 15px; }
.flow-item h3 { margin: 2px 0 7px; color: var(--navy); font-family: var(--serif); font-size: 20px; font-weight: 600; }
.flow-item p { max-width: 620px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.9; }
.flow-arrow { align-self: center; color: var(--gold-dark); font-size: 21px; }
.flow-arrow--done { color: var(--navy); font-weight: 800; }

.promise-band { background: var(--navy); color: var(--white); }
.promise-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 86px; padding: 79px 0; }
.promise-band h2 { margin: 0; color: var(--white); font-family: var(--serif); font-size: clamp(29px, 3vw, 43px); font-weight: 600; line-height: 1.55; }
.promise-band h2 span { color: var(--gold-light); }
.promise-items { display: grid; gap: 0; }
.promise-items > div { display: grid; grid-template-columns: 43px 1fr; gap: 15px; padding: 15px 0; border-bottom: 1px solid rgba(255, 255, 255, .16); }
.promise-items > div:first-child { padding-top: 0; }
.promise-items > div:last-child { border-bottom: 0; }
.promise-items b { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid var(--gold); color: var(--gold-light); font-size: 10px; }
.promise-items p { margin: 0; }
.promise-items strong, .promise-items small { display: block; }
.promise-items strong { font-family: var(--serif); font-size: 15px; font-weight: 600; }
.promise-items small { margin-top: 4px; color: rgba(255, 255, 255, .62); font-size: 11px; line-height: 1.8; }

.area-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 92px; }
.area-grid .section-heading > p:not(.eyebrow) { max-width: 410px; }
.area-grid .text-link { margin-top: 26px; }
.area-card { padding: 30px 32px 25px; border: 1px solid var(--line); background: var(--mist); }
.area-card__head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 20px; border-bottom: 2px solid var(--navy); }
.area-card__head span { color: var(--gold-dark); font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.area-card__head strong { color: var(--navy); font-family: var(--serif); font-size: 20px; font-weight: 600; }
.area-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 27px 0; }
.area-columns > div { padding: 15px 17px; background: var(--white); }
.area-columns small { color: var(--gold-dark); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.area-columns p { margin: 8px 0 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.area-columns p + p { margin-top: 2px; }
.area-card__note { padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; line-height: 1.8; }

.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; align-items: start; }
.faq-grid .text-link { margin-top: 26px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: grid; grid-template-columns: 31px 1fr auto; gap: 13px; align-items: center; padding: 20px 0; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span { display: grid; width: 27px; height: 27px; place-items: center; border: 1px solid var(--navy); color: var(--navy); font-family: var(--serif); font-size: 12px; }
.faq-list summary b { color: var(--ink); font-size: 13px; }
.faq-list summary i { color: var(--gold-dark); font-size: 22px; font-style: normal; font-weight: 300; transition: transform .2s ease; }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details p { max-width: 630px; margin: -3px 0 22px 44px; color: var(--muted); font-size: 12px; line-height: 1.95; }

.contact-section { background: linear-gradient(130deg, var(--navy-deep), var(--navy)); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 88px; align-items: start; padding: 105px 0; }
.contact-copy { padding-top: 16px; }
.contact-copy h2 { margin: 0; color: var(--white); font-family: var(--serif); font-size: clamp(35px, 4vw, 56px); font-weight: 600; line-height: 1.45; }
.contact-copy h2 span { color: var(--gold-light); }
.contact-copy > p:not(.eyebrow) { max-width: 450px; margin: 24px 0 0; color: rgba(255, 255, 255, .68); font-size: 14px; line-height: 2; }
.contact-copy .contact-support { margin-top: 13px; color: rgba(255, 255, 255, .82); font-weight: 700; }
.contact-points { display: grid; gap: 10px; margin-top: 31px; }
.contact-points span { display: flex; align-items: center; color: rgba(255, 255, 255, .84); font-size: 13px; }
.contact-points b { display: grid; width: 23px; height: 23px; place-items: center; margin-right: 10px; border-radius: 50%; background: var(--gold); color: var(--navy-deep); font-size: 11px; }
.line-account-card { display: flex; max-width: 350px; align-items: center; gap: 14px; margin-top: 28px; padding: 12px 14px; border: 1px solid rgba(255, 255, 255, .24); background: rgba(255, 255, 255, .07); transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.line-account-card:hover { border-color: #06c755; background: rgba(6, 199, 85, .14); transform: translateY(-2px); }
.line-account-card img { width: 56px; height: 56px; flex: 0 0 auto; border-radius: 14px; object-fit: cover; }
.line-account-card__copy { display: grid; gap: 2px; }
.line-account-card__copy small { color: var(--gold-light); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.line-account-card__copy strong { color: var(--white); font-size: 14px; }
.line-account-card__copy em { color: rgba(255, 255, 255, .56); font-size: 10px; font-style: normal; letter-spacing: .05em; }
.line-account-note { margin: 10px 0 0 !important; color: rgba(255, 255, 255, .52) !important; font-size: 10px !important; line-height: 1.7 !important; }
.contact-form { padding: 31px; background: var(--paper); color: var(--ink); box-shadow: var(--shadow); }
.form-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 15px; margin-bottom: 23px; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.form-heading span { color: var(--gold-dark); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.form-heading small { color: var(--muted); font-size: 10px; }
.contact-form label { display: block; margin-bottom: 17px; color: var(--navy); font-size: 12px; font-weight: 800; }
.contact-form label > span { margin-left: 7px; color: var(--muted); font-size: 10px; font-weight: 500; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input:not([type="checkbox"]), .contact-form select, .contact-form textarea { display: block; width: 100%; margin-top: 8px; padding: 12px 13px; border: 1px solid rgba(32, 55, 70, .2); border-radius: 0; outline: none; background: var(--white); color: var(--ink); font-size: 13px; font-weight: 500; }
.contact-form input:not([type="checkbox"]):focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196, 138, 70, .16); }
.contact-form textarea { resize: vertical; }
.checkbox-label { display: flex !important; align-items: center; gap: 7px; color: var(--muted) !important; font-size: 11px !important; font-weight: 500 !important; }
.checkbox-label input { accent-color: var(--navy); }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: 10px; line-height: 1.7; }
.form-message { min-height: 20px; margin: 9px 0 0; color: var(--gold-dark); font-size: 11px; font-weight: 800; }

.site-footer { background: #122833; color: rgba(255, 255, 255, .65); }
.footer-top { display: grid; grid-template-columns: 1.1fr .8fr 1fr; gap: 60px; padding: 57px 0 47px; }
.brand--footer .brand-mark { border-color: var(--gold); color: var(--gold-light); }
.brand--footer .brand-copy strong { color: var(--white); }
.brand--footer .brand-copy small { color: rgba(255, 255, 255, .47); }
.footer-top > div:first-child p { margin: 19px 0 0; color: rgba(255, 255, 255, .48); font-size: 11px; line-height: 1.9; }
.footer-contact { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.footer-contact > span { color: var(--gold-light); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.footer-contact strong { margin-top: 8px; color: var(--white); font-family: var(--serif); font-size: 18px; font-weight: 600; }
.footer-contact small { margin-top: 6px; color: rgba(255, 255, 255, .4); font-size: 10px; }
.line-footer-link { transition: transform .2s ease, opacity .2s ease; }
.line-footer-link:hover { opacity: .86; transform: translateY(-2px); }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px 25px; align-content: center; }
.footer-links a { color: rgba(255, 255, 255, .62); font-size: 11px; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 16px 0; border-top: 1px solid rgba(255, 255, 255, .12); color: rgba(255, 255, 255, .37); font-size: 9px; }
.mobile-cta { display: none; }

@media (max-width: 980px) {
  .main-nav { gap: 14px; }
  .hero-grid { gap: 44px; }
  .concern-grid { grid-template-columns: repeat(2, 1fr); }
  .report-grid, .support-grid, .area-grid { gap: 55px; }
  .faq-grid, .contact-grid { gap: 50px; }
}

@media (max-width: 760px) {
  body { padding-bottom: 65px; }
  .shell { width: min(100% - 34px, 560px); }
  .draft-note__inner { min-height: 39px; align-items: flex-start; padding: 8px 0; }
  .draft-note__inner p { line-height: 1.45; }
  .header-inner { min-height: 70px; gap: 12px; }
  .brand-mark { width: 36px; height: 36px; font-size: 19px; }
  .brand-copy strong { font-size: 16px; }
  .brand-copy small { font-size: 8px; }
  .main-nav { order: 3; position: absolute; top: 70px; right: 0; left: 0; display: flex; justify-content: flex-start; width: 100%; overflow-x: auto; padding: 0 17px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 253, 248, .97); }
  .main-nav a { padding: 10px 13px; font-size: 10px; }
  .button--nav { min-height: 36px; margin-left: auto; padding: 0 13px; font-size: 11px; }
  .hero { margin-top: 45px; }
  .hero-grid { display: flex; flex-direction: column; gap: 35px; padding: 63px 0 74px; }
  .hero::before { top: 10px; left: 15%; width: 390px; height: 390px; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: 36px; line-height: 1.48; }
  .hero-lead { font-size: 13px; line-height: 1.95; }
  .hero-actions { gap: 9px; }
  .hero-actions .button { flex: 1 1 auto; min-height: 48px; padding: 0 13px; font-size: 12px; }
  .hero-points { gap: 8px 13px; font-size: 10px; }
  .hero-visual { width: calc(100% - 14px); margin-right: 0; margin-left: auto; }
  .hero-visual__badge { top: -16px; left: -14px; width: 82px; height: 82px; }
  .hero-visual__caption { right: 14px; bottom: 14px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item:first-child { min-height: 68px; padding: 13px 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .14); }
  .trust-item:last-child { border-bottom: 0; }
  .trust-item strong { font-size: 14px; }
  .section { padding: 74px 0; }
  .section-heading h2 { font-size: 30px; }
  .section-heading > p:not(.eyebrow) { font-size: 13px; }
  .section-heading--split, .report-grid, .support-grid, .promise-grid, .area-grid, .faq-grid, .contact-grid { display: block; }
  .section-heading--split > p { margin-top: 22px; }
  .concern-grid, .plan-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 39px; }
  .concern-card { min-height: 0; padding: 22px 20px; }
  .card-number { margin-bottom: 17px; }
  .plan-card { padding: 26px 22px 23px; }
  .plan-card--featured { transform: none; }
  .plan-card > p:not(.plan-price) { min-height: 0; }
  .option-row { display: block; margin-top: 20px; padding: 14px; }
  .option-row > div { justify-content: flex-start; margin-top: 10px; }
  .pet-service-note { display: block; padding: 17px 16px; }
  .pet-service-note > span { display: block; }
  .pet-service-note strong { margin-top: 8px; font-size: 13px; }
  .pet-service-note .text-link { margin-top: 15px; }
  .report-grid, .support-grid, .area-grid, .faq-grid, .contact-grid { gap: 0; }
  .report-card { margin-top: 40px; padding: 23px 20px 16px; }
  .report-card__meta { gap: 8px; }
  .report-compare { gap: 8px; }
  .report-shot figcaption { padding: 9px 10px 11px; }
  .report-shot figcaption strong { font-size: 10px; }
  .report-shot figcaption small { font-size: 9px; }
  .report-shot--offering { display: block; }
  .report-shot--offering .report-shot__image { aspect-ratio: 4 / 2.25; }
  .report-shot--offering figcaption { padding: 12px 13px 14px; }
  .work-feature { display: block; min-height: 0; margin-top: 39px; }
  .work-feature__image { min-height: 0; aspect-ratio: 16 / 8; }
  .work-feature figcaption { padding: 22px 19px 24px; }
  .work-feature figcaption strong { font-size: 18px; }
  .work-gallery { grid-template-columns: 1fr; gap: 10px; margin-top: 39px; }
  .work-card__image { aspect-ratio: 4 / 3; }
  .work-card figcaption { padding: 16px 17px 18px; }
  .support-copy h2 { font-size: 30px; }
  .support-portrait { margin-top: 40px; padding-right: 10px; padding-bottom: 10px; }
  .support-portrait figcaption { right: 18px; bottom: 18px; }
  .flow-list { margin-top: 37px; }
  .flow-item { grid-template-columns: 47px 1fr 20px; gap: 15px; padding: 19px 0 23px; }
  .flow-number { width: 45px; height: 45px; font-size: 13px; }
  .flow-item h3 { font-size: 18px; }
  .flow-item p { font-size: 12px; line-height: 1.8; }
  .promise-grid { padding: 66px 0; }
  .promise-items { margin-top: 35px; }
  .area-card { margin-top: 38px; padding: 23px 20px 19px; }
  .area-card__head { display: block; }
  .area-card__head strong { display: block; margin-top: 8px; }
  .area-columns { gap: 9px; padding: 20px 0; }
  .area-columns > div { padding: 13px 12px; }
  .area-columns p { font-size: 11px; }
  .faq-grid .section-heading { margin-bottom: 37px; }
  .faq-list details p { margin-left: 40px; font-size: 12px; }
  .contact-grid { padding: 74px 0; }
  .contact-form { margin-top: 42px; padding: 23px 20px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-top { display: block; padding: 45px 0 34px; }
  .footer-contact { margin-top: 28px; }
  .footer-links { margin-top: 32px; }
  .footer-bottom { display: block; line-height: 1.9; }
  .footer-bottom span + span { display: block; margin-top: 4px; }
  .mobile-cta { position: fixed; z-index: 30; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 1fr; min-height: 65px; background: var(--navy-deep); box-shadow: 0 -7px 20px rgba(0, 0, 0, .12); }
  .mobile-cta a { display: flex; flex-direction: column; align-items: center; justify-content: center; border-right: 1px solid rgba(255, 255, 255, .16); color: var(--white); }
  .mobile-cta__line { background: #06c755; }
  .mobile-cta a:last-child { border-right: 0; background: var(--gold); color: var(--navy-deep); }
  .mobile-cta span { font-size: 9px; letter-spacing: .08em; }
  .mobile-cta strong { margin-top: 1px; font-size: 13px; }
}

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