/* SHIAWASEI — warm editorial pet care · sw- */
:root {
  --sw-cream: #F7F3EC;
  --sw-paper: #EFE8DC;
  --sw-bark: #3A2A22;
  --sw-muted: #6B5A4E;
  --sw-leaf: #4F7A4E;
  --sw-leaf-deep: #3D623C;
  --sw-coral: #E07A5F;
  --sw-coral-deep: #C8664C;
  --sw-line: rgba(58, 42, 34, 0.12);
  --sw-soft: rgba(79, 122, 78, 0.12);
  --sw-shell: min(1120px, calc(100% - 2.5rem));
  --sw-bar-h: 4.75rem;
  --sw-ease: cubic-bezier(.22, .7, .2, 1);
  --sw-display: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --sw-body: "Noto Sans JP", "Hiragino Sans", sans-serif;
  --sw-radius: 1.65rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--sw-body);
  color: var(--sw-bark);
  background:
    radial-gradient(ellipse 70% 45% at 0% 0%, rgba(224, 122, 95, 0.1), transparent 55%),
    radial-gradient(ellipse 55% 40% at 100% 8%, rgba(79, 122, 78, 0.1), transparent 50%),
    var(--sw-cream);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
body.sw-sheet-open { overflow: hidden; }

body::before {
  content: "";
  position: fixed;
  inset: -12%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 42% 36% at 16% 24%, rgba(224, 122, 95, 0.14), transparent 62%),
    radial-gradient(ellipse 38% 34% at 86% 14%, rgba(79, 122, 78, 0.12), transparent 58%);
  animation: sw-drift 26s ease-in-out infinite alternate;
}
body > * { position: relative; z-index: 1; }
@keyframes sw-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(1.6%, -1.2%, 0) scale(1.04); }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--sw-display);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin: 0;
}
p { margin: 0; }

.sw-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--sw-leaf);
  color: #fff;
  padding: .6rem 1rem;
  border-radius: 999px;
  z-index: 200;
}
.sw-skip:focus { left: .75rem; top: .75rem; }

.sw-shell {
  width: var(--sw-shell);
  margin-inline: auto;
}

.sw-kicker {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--sw-leaf);
  margin: 0 0 .55rem;
}

.sw-lead {
  max-width: 34rem;
  color: rgba(247, 243, 236, 0.88);
  font-size: .98rem;
}

.sw-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--sw-leaf);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid color-mix(in srgb, var(--sw-leaf) 35%, transparent);
  padding-bottom: .1rem;
  width: fit-content;
}
.sw-link:hover { color: var(--sw-leaf-deep); }

.sw-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.4rem;
}

.sw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  background: none;
  transition: transform .25s var(--sw-ease), background .25s, color .25s;
}
.sw-btn:hover { transform: translateY(-1px); }
.sw-btn--coral { background: var(--sw-coral); color: #fff; }
.sw-btn--coral:hover { background: var(--sw-coral-deep); }
.sw-btn--leaf { background: var(--sw-leaf); color: #fff; }
.sw-btn--leaf:hover { background: var(--sw-leaf-deep); }
.sw-btn--ghost {
  background: transparent;
  border-color: rgba(247, 243, 236, 0.55);
  color: #fff;
}
.sw-btn--ghost:hover { background: rgba(255, 255, 255, 0.1); }

.sw-media {
  overflow: hidden;
  border-radius: var(--sw-radius);
  position: relative;
}
.sw-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--sw-ease);
}
a:hover .sw-media img { transform: scale(1.035); }

/* Header — stacked wordmark + pill nav */
.sw-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--sw-bar-h);
  padding: .55rem 1.25rem;
  background: color-mix(in srgb, var(--sw-cream) 88%, #fff);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: box-shadow .35s var(--sw-ease), background .35s var(--sw-ease);
}
.sw-bar.is-scrolled {
  box-shadow: 0 10px 28px rgba(58, 42, 34, 0.08);
  background: rgba(247, 243, 236, 0.96);
  border-bottom-color: var(--sw-line);
}

.sw-brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  min-width: 0;
}
.sw-brand__mark {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 6px 16px rgba(79, 122, 78, 0.14);
  flex-shrink: 0;
}
.sw-brand__mark svg { display: block; }
.sw-brand__stack {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.sw-brand__stack b {
  font-family: var(--sw-display);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.sw-brand__stack small {
  font-size: .68rem;
  letter-spacing: 0.16em;
  color: var(--sw-muted);
}

.sw-pills {
  display: flex;
  justify-content: center;
  flex: 1;
  gap: .35rem;
}
.sw-pill {
  padding: .45rem 1rem;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--sw-bark);
  transition: background .25s, color .25s;
}
.sw-pill:hover { background: var(--sw-soft); }
.sw-pill[aria-current="page"] {
  background: var(--sw-leaf);
  color: #fff;
}

.sw-bar__cta {
  padding: .5rem 1.05rem;
  border-radius: 999px;
  background: var(--sw-coral);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.sw-bar__cta:hover { background: var(--sw-coral-deep); }

.sw-toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--sw-line);
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
}
.sw-toggle span {
  display: block;
  width: 14px;
  height: 1.6px;
  margin: 3px auto;
  background: var(--sw-bark);
}

.sw-shade {
  position: fixed;
  inset: 0;
  background: rgba(58, 42, 34, 0.4);
  z-index: 60;
}
.sw-sheet {
  position: fixed;
  top: 0;
  right: 0;
  width: min(22rem, 92vw);
  height: 100%;
  background: var(--sw-cream);
  z-index: 70;
  padding: 1.25rem 1.35rem 2rem;
  transform: translateX(105%);
  transition: transform .4s var(--sw-ease);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.sw-sheet.is-open { transform: translateX(0); }
.sw-sheet__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.sw-sheet__head button {
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--sw-leaf);
  font-weight: 700;
}
.sw-sheet__nav {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.sw-sheet__nav a {
  padding: .7rem .2rem;
  border-bottom: 1px solid var(--sw-line);
  font-weight: 700;
}
.sw-sheet__nav a[aria-current="page"] { color: var(--sw-leaf); }
.sw-sheet__meta {
  margin-top: auto;
  font-size: .78rem;
  color: var(--sw-muted);
}

/* Hero — large rounded photo */
.sw-hero {
  padding: 1rem 1.25rem 0;
}
.sw-hero__frame {
  position: relative;
  min-height: min(82vh, 720px);
  border-radius: 2rem;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 22px 48px rgba(58, 42, 34, 0.12);
}
.sw-hero__media,
.sw-hero__slide {
  position: absolute;
  inset: 0;
  margin: 0;
}
.sw-hero__slide {
  opacity: 0;
  transition: opacity 1s var(--sw-ease);
}
.sw-hero__slide.is-active { opacity: 1; }
.sw-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sw-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(58, 42, 34, 0.72) 0%, rgba(58, 42, 34, 0.28) 52%, rgba(58, 42, 34, 0.12) 100%),
    linear-gradient(0deg, rgba(58, 42, 34, 0.45) 0%, transparent 48%);
  pointer-events: none;
}
.sw-hero__copy {
  position: relative;
  z-index: 2;
  width: var(--sw-shell);
  margin: 0 auto;
  padding: 5.5rem 0 3.5rem;
}
.sw-hero__place {
  font-size: .78rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: #f3d2c6;
  margin: 0 0 .7rem;
}
.sw-hero__copy h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin: 0 0 .85rem;
  color: #fff;
}
.sw-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: 1.6rem;
}
.sw-hero__chips button {
  min-height: 44px;
  padding: .4rem .95rem;
  border-radius: 999px;
  border: 1px solid rgba(247, 243, 236, 0.35);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  font-size: .82rem;
}
.sw-hero__chips button.is-active,
.sw-hero__chips button:hover {
  background: #fff;
  color: var(--sw-bark);
  border-color: #fff;
}

/* Sections */
.sw-section { padding: 4.5rem 0; }
.sw-section--leaf {
  background:
    radial-gradient(ellipse 80% 70% at 12% 20%, rgba(79, 122, 78, 0.1), transparent 60%),
    linear-gradient(180deg, #f3efe6 0%, var(--sw-cream) 55%, #eae4d8 100%);
}
.sw-section--paper { background: color-mix(in srgb, var(--sw-paper) 70%, #fff); }

.sw-head {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2.1rem;
}
.sw-head h2 { font-size: clamp(1.55rem, 3vw, 2.2rem); }
.sw-head p { color: var(--sw-muted); font-size: .95rem; }

.sw-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.sw-pillar {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.sw-pillar .sw-media { aspect-ratio: 4 / 5; }
.sw-pillar__body {
  padding: 1.1rem .15rem 0;
}
.sw-pillar__body em {
  font-style: normal;
  font-size: .68rem;
  letter-spacing: 0.14em;
  color: var(--sw-coral);
  font-weight: 700;
}
.sw-pillar__body h3 {
  font-size: 1.45rem;
  margin: .2rem 0 .15rem;
}
.sw-pillar__body small {
  display: block;
  color: var(--sw-leaf);
  font-weight: 700;
  margin-bottom: .4rem;
}
.sw-pillar__body p { color: var(--sw-muted); font-size: .9rem; }

.sw-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.sw-card a { display: block; }
.sw-card .sw-media { aspect-ratio: 5 / 4; }
.sw-card__body { padding: 1rem .1rem 0; }
.sw-card__body span {
  font-size: .7rem;
  letter-spacing: 0.1em;
  color: var(--sw-leaf);
  font-weight: 700;
}
.sw-card__body h3 { font-size: 1.05rem; margin: .25rem 0 .35rem; }
.sw-card__body p { font-size: .86rem; color: var(--sw-muted); }
.sw-card__body b {
  display: block;
  margin-top: .7rem;
  color: var(--sw-coral-deep);
}
.sw-card__body small { color: var(--sw-muted); font-weight: 500; }

.sw-life {
  display: grid;
  grid-template-columns: 1.3fr .7fr .7fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.sw-life__feature {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.sw-life__feature .sw-media { min-height: 420px; flex: 1; }
.sw-life__feature em,
.sw-life__tile em {
  display: block;
  font-style: normal;
  font-size: .7rem;
  letter-spacing: 0.14em;
  color: var(--sw-coral);
  font-weight: 700;
  margin-bottom: .25rem;
}
.sw-life__feature h3 { font-size: 1.35rem; margin-bottom: .35rem; }
.sw-life__feature p { color: var(--sw-muted); }
.sw-life__tile { display: flex; flex-direction: column; gap: .65rem; }
.sw-life__tile .sw-media { aspect-ratio: 16 / 11; }
.sw-life__tile--wide { grid-column: 2 / -1; }
.sw-life__tile--wide .sw-media { aspect-ratio: 21 / 8; }

.sw-journal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.sw-journal .sw-media { aspect-ratio: 16 / 11; margin-bottom: .8rem; }
.sw-journal time {
  display: block;
  font-size: .75rem;
  color: var(--sw-muted);
  margin: .25rem 0 .35rem;
}
.sw-journal h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.sw-journal p { font-size: .88rem; color: var(--sw-muted); }

.sw-tag {
  display: inline-block;
  padding: .2rem .65rem;
  border-radius: 999px;
  background: var(--sw-soft);
  color: var(--sw-leaf-deep);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.sw-faq-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 2.2rem;
  align-items: start;
}
.sw-faq-wrap h2 { font-size: clamp(1.55rem, 3vw, 2.1rem); margin-bottom: .5rem; }
.sw-faq-wrap > header p { color: var(--sw-muted); }
.sw-faq details {
  border-bottom: 1px solid var(--sw-line);
  padding: .85rem 0;
}
.sw-faq summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--sw-display);
  list-style: none;
}
.sw-faq summary::-webkit-details-marker { display: none; }
.sw-faq details p {
  margin-top: .55rem;
  color: var(--sw-muted);
  font-size: .92rem;
}
.sw-note {
  grid-column: 1 / -1;
  margin-top: .4rem;
  font-size: .8rem;
  color: var(--sw-muted);
}

.sw-visit { padding: 0 0 4.5rem; }
.sw-visit__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2.2rem;
  align-items: center;
}
.sw-visit__photo { min-height: 360px; }
.sw-visit h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); margin: .2rem 0 .8rem; }
.sw-visit > .sw-shell > div > p,
.sw-visit__grid > div > p { color: var(--sw-muted); margin-bottom: 1rem; }
.sw-meta-list,
.sw-visit dl {
  margin: 0 0 1.2rem;
  display: grid;
  gap: .75rem;
}
.sw-meta-list dt,
.sw-visit dt {
  font-size: .7rem;
  letter-spacing: 0.12em;
  color: var(--sw-leaf);
  font-weight: 700;
}
.sw-meta-list dd,
.sw-visit dd { margin: .15rem 0 0; }
.sw-route {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-wrap: wrap;
  font-size: .82rem;
  padding: .85rem 1rem;
  background: #fff;
  border-radius: 999px;
  margin-bottom: 1.2rem;
  border: 1px solid var(--sw-line);
}
.sw-route i { color: var(--sw-coral); font-style: normal; }
.sw-route b { color: var(--sw-leaf); }

/* Inner pages */
.sw-page-hero { padding: 3.2rem 0 1.2rem; }
.sw-page-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.6rem;
  align-items: end;
}
.sw-page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.sw-page-hero p { color: var(--sw-muted); }

.sw-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.sw-story .sw-media { min-height: 340px; }
.sw-story h2 { font-size: clamp(1.45rem, 2.8vw, 2rem); margin: .2rem 0 .8rem; }
.sw-story p { color: var(--sw-muted); margin-bottom: .8rem; }
.sw-story--rev { grid-template-columns: 1fr 1fr; }

.sw-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .9rem;
  margin-top: 1.2rem;
}
.sw-values b {
  display: block;
  font-size: .68rem;
  letter-spacing: 0.14em;
  color: var(--sw-coral);
}
.sw-values h3 { font-size: 1rem; margin: .2rem 0 .25rem; }
.sw-values p { font-size: .82rem; }

.sw-service-list { display: grid; gap: 3rem; }
.sw-service {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2rem;
  align-items: center;
}
.sw-service--rev { direction: rtl; }
.sw-service--rev > * { direction: ltr; }
.sw-service .sw-media { min-height: 300px; }
.sw-service span {
  font-size: .72rem;
  letter-spacing: 0.12em;
  color: var(--sw-leaf);
  font-weight: 700;
}
.sw-service h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: .3rem 0 .7rem; }
.sw-service p { color: var(--sw-muted); margin-bottom: .8rem; }
.sw-service ul {
  margin: 0 0 .6rem;
  padding: 0;
  list-style: none;
}
.sw-service li {
  padding: .35rem 0 .35rem 1.1rem;
  position: relative;
  border-bottom: 1px solid var(--sw-line);
}
.sw-service li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .85rem;
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--sw-coral);
}
.sw-service small { color: var(--sw-muted); }

.sw-feature {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1.8rem;
  align-items: center;
  margin-bottom: 2.4rem;
}
.sw-feature .sw-media { min-height: 320px; }
.sw-feature h2 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); margin: .3rem 0 .6rem; }
.sw-feature p { color: var(--sw-muted); }

.sw-articles .sw-journal,
.sw-page--articles .sw-journal { grid-template-columns: repeat(2, 1fr); }

.sw-contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2rem;
}
.sw-contact h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: .2rem 0 .8rem; }
.sw-contact > div > p { color: var(--sw-muted); margin-bottom: 1rem; }

.sw-form {
  background: #fff;
  border: 1px solid var(--sw-line);
  border-radius: 1.4rem;
  padding: 1.6rem 1.5rem;
}
.sw-form h2 { font-size: 1.25rem; margin-bottom: 1.1rem; }
.sw-field { margin-bottom: 1rem; }
.sw-field label {
  display: block;
  font-size: .8rem;
  margin-bottom: .35rem;
  font-weight: 700;
}
.sw-field label em {
  font-style: normal;
  color: var(--sw-coral);
  font-size: .72rem;
}
.sw-field input,
.sw-field select,
.sw-field textarea {
  width: 100%;
  border: 1px solid var(--sw-line);
  background: var(--sw-cream);
  padding: .7rem .8rem;
  border-radius: .8rem;
}
.sw-field input:focus,
.sw-field select:focus,
.sw-field textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--sw-leaf) 35%, transparent);
  border-color: var(--sw-leaf);
}
.sw-field--pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}
.sw-consent {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  font-size: .82rem;
  margin: .5rem 0 1.1rem;
}
.sw-success { text-align: center; padding: 1.5rem .5rem; }
.sw-success span {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--sw-leaf);
  color: #fff;
  margin-bottom: .85rem;
}

.sw-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.4rem;
  padding: 2rem 0 4rem;
}
.sw-cta h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: .2rem 0 .4rem; }
.sw-cta p { color: var(--sw-muted); }

.sw-404 {
  padding: 5rem 0 6rem;
  text-align: center;
}
.sw-404 strong {
  display: block;
  font-family: var(--sw-display);
  font-size: 4rem;
  color: var(--sw-leaf);
  margin: .5rem 0;
}
.sw-404 h1 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: .7rem; }
.sw-404 p { color: var(--sw-muted); margin-bottom: 1.4rem; }

/* Footer */
.sw-foot {
  background: var(--sw-bark);
  color: rgba(247, 243, 236, 0.82);
  padding: 3rem 0 1.4rem;
  margin-top: 1rem;
}
.sw-foot__main {
  display: grid;
  grid-template-columns: 1.3fr .8fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(247, 243, 236, 0.1);
}
.sw-foot__brand {
  display: flex;
  gap: .7rem;
  align-items: center;
  margin-bottom: .85rem;
  color: #fff;
}
.sw-foot__brand .sw-brand__mark { background: #fff; }
.sw-foot__brand b {
  display: block;
  font-family: var(--sw-display);
  letter-spacing: 0.1em;
}
.sw-foot__brand small {
  font-size: .68rem;
  opacity: .7;
  letter-spacing: 0.06em;
}
.sw-foot h2 {
  font-size: .78rem;
  letter-spacing: 0.14em;
  color: #f3d2c6;
  margin-bottom: .7rem;
}
.sw-foot a {
  display: block;
  font-size: .9rem;
  margin-bottom: .4rem;
  opacity: .85;
}
.sw-foot a:hover { opacity: 1; color: #fff; }
.sw-foot p { font-size: .88rem; line-height: 1.7; }
.sw-disclaimer {
  margin: 1.1rem auto 0;
  font-size: .78rem;
  line-height: 1.7;
  opacity: .72;
  max-width: var(--sw-shell);
}
.sw-foot__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.1rem;
  font-size: .78rem;
  opacity: .7;
}

/* Reveal — visible until .sw-ready */
[data-reveal] {
  opacity: 1;
  transform: none;
}
html.sw-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--sw-ease), transform .7s var(--sw-ease);
}
html.sw-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .sw-pills,
  .sw-bar__cta { display: none; }
  .sw-toggle { display: inline-block; }
  .sw-bar { justify-content: space-between; }

  .sw-head,
  .sw-faq-wrap,
  .sw-visit__grid,
  .sw-page-hero__grid,
  .sw-story,
  .sw-story--rev,
  .sw-service,
  .sw-feature,
  .sw-contact,
  .sw-foot__main {
    grid-template-columns: 1fr;
  }
  .sw-service--rev { direction: ltr; }
  .sw-pillars,
  .sw-cards,
  .sw-journal {
    grid-template-columns: 1fr 1fr;
  }
  .sw-life {
    grid-template-columns: 1fr 1fr;
  }
  .sw-life__feature { grid-column: 1 / -1; grid-row: auto; }
  .sw-life__tile--wide { grid-column: 1 / -1; }
  .sw-cta { flex-direction: column; align-items: flex-start; }
}

.sw-stats { padding: 2.4rem 0 1.1rem; }
.sw-stats__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.sw-stat { text-align: center; padding: 0.4rem; }
.sw-stat__value {
  margin: 0;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: clamp(1.8rem, 3.8vw, 2.4rem);
  color: var(--sw-leaf, #4F7A4E);
  line-height: 1;
  font-weight: 700;
}
.sw-stat__label { margin: 0.4rem 0 0; font-size: 0.76rem; letter-spacing: 0.08em; color: rgba(58, 42, 34, 0.58); }
.sw-marquee {
  overflow: hidden;
  border-block: 1px solid rgba(58, 42, 34, 0.1);
  padding: 0.9rem 0;
  background: #3A2A22;
  color: #F7F3EC;
}
.sw-marquee__track {
  display: flex; gap: 1.15rem; width: max-content;
  animation: sw-marquee 32s linear infinite;
  font-size: 0.8rem; letter-spacing: 0.1em; white-space: nowrap;
}
.sw-marquee i { color: #E07A5F; font-style: normal; }
@keyframes sw-marquee { to { transform: translateX(-50%); } }
html, body { max-width: 100%; overflow-x: hidden; }

@media (max-width: 720px) {
  .sw-stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  :root { --sw-shell: min(1120px, calc(100% - 1.5rem)); }
  .sw-hero { padding: .75rem .75rem 0; }
  .sw-hero__frame { border-radius: 1.35rem; min-height: 74vh; }
  .sw-hero__copy { padding: 4.2rem 0 2.6rem; }
  .sw-section { padding: 3.2rem 0; }
  .sw-pillars,
  .sw-cards,
  .sw-journal,
  .sw-values,
  .sw-life,
  .sw-field--pair {
    grid-template-columns: 1fr;
  }
  .sw-life__tile--wide { grid-column: auto; }
  .sw-hero__chips { flex-wrap: wrap; }
  .sw-btn { min-height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  .sw-marquee__track { animation: none; }
}
