@charset "UTF-8";

/* =========================================================
   共同生活援助 ライトハート  Global Stylesheet
   Palette: Green (brand) + warm heart accents (orange/pink)
   ========================================================= */

:root {
  /* Pastel greens (soft sage/mint) — gentle, soft impression */
  --green-900: #4f7d63;   /* deepest — headings, hero base */
  --green-800: #5f9073;   /* button base */
  --green-700: #74a687;   /* links / primary green */
  --green-600: #93c3a3;
  --green-500: #b3dcc0;
  --green-300: #d2ecda;
  --green-100: #e9f5ec;
  --green-50:  #f4faf6;

  /* Pastel warm accents (softened Light Heart logo colors) */
  --warm-orange: #ffb27f;
  --warm-yellow: #ffe0a6;
  --warm-pink:   #f6a8bb;

  /* Text color that reads on pastel warm buttons */
  --btn-ink: #7a4a48;

  /* Neutrals (soft & warm) */
  --ink:    #574f4a;
  --muted:  #8b837b;
  --line:   #efe9e3;
  --white:  #ffffff;
  --cream:  #fbf7f2;

  --shadow-sm: 0 2px 10px rgba(120, 140, 125, 0.10);
  --shadow-md: 0 10px 26px rgba(120, 140, 125, 0.14);
  --shadow-lg: 0 20px 48px rgba(120, 140, 125, 0.18);

  --radius: 16px;
  --radius-lg: 26px;
  --maxw: 1120px;
  --header-h: 76px;

  --font-jp: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
             "Yu Gothic", "YuGothic", "Meiryo", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  margin: 0;
  font-family: var(--font-jp);
  color: var(--ink);
  line-height: 1.85;
  background: var(--cream);
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-wrap: anywhere;
}

img { max-width: 100%; display: block; }

a { color: var(--green-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--green-500); }

h1, h2, h3, h4 { line-height: 1.4; margin: 0; font-weight: 700; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(18px, 5vw, 40px);
}

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--green-700); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--warm-orange);
  outline-offset: 2px;
  border-radius: 4px;
}

/* =========================================================
   Header / Navigation
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__logo { width: 46px; height: 46px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__name { font-size: 1.12rem; font-weight: 800; letter-spacing: .02em; }
.brand__sub { font-size: .68rem; color: var(--muted); letter-spacing: .18em; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  display: inline-block; padding: 10px 15px; border-radius: 999px;
  color: var(--ink); font-weight: 600; font-size: .96rem;
}
.nav a:hover { background: var(--green-100); color: var(--green-800); }
.nav a.is-active { background: var(--green-500); color: #35553f; }

.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--warm-orange), var(--warm-pink));
  color: var(--btn-ink); font-weight: 700; padding: 10px 18px; border-radius: 999px;
  box-shadow: var(--shadow-sm); white-space: nowrap;
}
.header-cta:hover { color: var(--btn-ink); filter: brightness(1.03); transform: translateY(-1px); }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: #fff; border-radius: 12px; cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--ink);
  position: relative; transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle span::before { position: absolute; top: -7px; left: 0; }
.nav-toggle span::after  { position: absolute; top: 7px;  left: 0; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .header-cta.header-cta--desktop { display: none; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; padding: 16px clamp(18px,5vw,40px) 26px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    transform: translateY(-140%); transition: transform .3s ease; visibility: hidden;
  }
  .nav.is-open { transform: translateY(0); visibility: visible; }
  .nav a { padding: 14px 16px; border-radius: 12px; font-size: 1.05rem; }
  .nav .header-cta { justify-content: center; margin-top: 8px; }
  .nav .header-cta--desktop { display: inline-flex; }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 30px; border-radius: 999px; font-weight: 700; font-size: 1rem;
  cursor: pointer; border: none; transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn--primary { background: linear-gradient(135deg, var(--warm-orange), var(--warm-pink)); color: var(--btn-ink); box-shadow: var(--shadow-md); }
.btn--primary:hover { color: var(--btn-ink); transform: translateY(-2px); filter: brightness(1.03); box-shadow: var(--shadow-lg); }
.btn--green { background: var(--green-700); color: #fff; box-shadow: var(--shadow-sm); }
.btn--green:hover { color: #fff; background: var(--green-800); transform: translateY(-2px); }
.btn--ghost { background: #fff; color: var(--green-800); border: 2px solid var(--green-300); }
.btn--ghost:hover { color: var(--green-900); background: var(--green-50); border-color: var(--green-500); }
.btn--lg { padding: 17px 40px; font-size: 1.06rem; }

/* =========================================================
   Sections / headings
   ========================================================= */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section--tint { background: var(--green-50); }
.section--cream { background: var(--white); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto clamp(34px, 5vw, 54px); }
.section-head span {
	display: block;
}
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 800; letter-spacing: .22em;
  color: var(--green-600); text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.5rem, 3.4vw, 2.15rem); color: var(--green-900); letter-spacing: .01em;
}
.section-title .accent { color: var(--warm-orange); }
.section-lead { margin-top: 16px; color: var(--muted); font-size: 1.02rem; }

.section-title--bar {
  display: inline-flex; flex-direction: column; align-items: center; gap: 12px;
}
.section-title--bar::after {
  content: ""; width: 60px; height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, var(--warm-yellow), var(--warm-orange), var(--warm-pink));
}

/* =========================================================
   Hero
   ========================================================= */
.hero { position: relative; background: var(--green-900); color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(70,108,86,.84) 0%, rgba(95,144,115,.5) 48%, rgba(147,195,163,.12) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  min-height: clamp(460px, 74vh, 640px);
  display: flex; flex-direction: column; justify-content: center;
  padding-block: 70px; max-width: 680px;
}
.hero__tag {
  display: inline-flex; align-items: center; gap: 8px; width: fit-content;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.3);
  padding: 7px 16px; border-radius: 999px; font-size: .82rem; font-weight: 600; letter-spacing: .06em;
  backdrop-filter: blur(4px);
}
.hero__title {
  font-size: clamp(1.9rem, 5.4vw, 3.1rem); margin-top: 22px; line-height: 1.35;
  text-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.hero__title .mark {
  background: linear-gradient(120deg, var(--warm-yellow), var(--warm-orange));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__desc { margin-top: 20px; font-size: 1.06rem; color: rgba(255,255,255,.92); max-width: 560px; }
.hero__actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
@media only screen and (max-width: 860px) {
	.hero__actions { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 14px; }	
}

/* Page banner (sub pages) */
.page-banner { position: relative; color: #fff; background: var(--green-800); overflow: hidden; }
.page-banner__media { position: absolute; inset: 0; }
.page-banner__media img { width: 100%; height: 100%; object-fit: cover; }
.page-banner__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(70,108,86,.82), rgba(95,144,115,.5));
}
.page-banner__inner {
  position: relative; z-index: 2; padding: clamp(56px, 9vw, 96px) 0;
  text-align: center;
}
.page-banner__title { font-size: clamp(1.7rem, 4.6vw, 2.6rem); letter-spacing: .04em; text-shadow: 0 2px 16px rgba(0,0,0,.25); }
.page-banner__sub { margin-top: 12px; letter-spacing: .28em; font-size: .8rem; font-weight: 700; color: var(--warm-yellow); text-transform: uppercase; }

/* Breadcrumb */
.crumb { background: var(--green-50); border-bottom: 1px solid var(--line); }
.crumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 12px 0; font-size: .85rem; color: var(--muted); }
.crumb li::after { content: "›"; margin-left: 8px; color: var(--green-300); }
.crumb li:last-child::after { content: ""; }
.crumb a { color: var(--green-700); }

/* =========================================================
   Feature / card grids
   ========================================================= */
.grid { display: grid; gap: clamp(18px, 3vw, 28px); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .grid--3 { grid-template-columns: 1fr; } .grid--2 { grid-template-columns: 1fr; } }

/* Home quick links (3 columns under hero) */
.quicklinks {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); margin-top: clamp(34px, 5vw, 52px); position: relative; z-index: 5;
}
.quicklink {
  position: relative; display: block; color: #fff; min-height: 220px;
  overflow: hidden;
}
.quicklink img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.quicklink::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(79,125,99,.10), rgba(63,100,79,.80)); }
.quicklink__body { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 22px; }
.quicklink__cat { font-size: .72rem; letter-spacing: .18em; font-weight: 700; color: var(--warm-yellow); }
.quicklink__ttl { font-size: 1.24rem; font-weight: 800; margin-top: 4px; display: flex; align-items: center; gap: 8px; }
.quicklink__ttl::after { content: "→"; transition: transform .3s ease; }
.quicklink:hover { color: #fff; }
.quicklink:hover img { transform: scale(1.06); }
.quicklink:hover .quicklink__ttl::after { transform: translateX(6px); }
@media (max-width: 860px) {
  .quicklinks { grid-template-columns: 1fr; margin-top: clamp(28px, 6vw, 40px); }
  .quicklink { min-height: 180px; }
}

/* Value cards */
.vcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
}
.vcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.vcard__icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: var(--green-100); color: var(--green-700); margin-bottom: 18px;
}
.vcard__icon svg { width: 30px; height: 30px; }
.vcard__title { font-size: 1.16rem; color: var(--green-900); margin-bottom: 8px; }
.vcard__text { color: var(--muted); font-size: .97rem; }

/* Compact card: icon + title only (no description) */
.vcard--compact {
  display: flex; align-items: center; gap: 18px; padding: 22px 26px;
}
.vcard--compact .vcard__icon { margin-bottom: 0; flex: none; width: 52px; height: 52px; }
.vcard--compact .vcard__title { margin-bottom: 0; font-size: 1.1rem; }

/* Numbered feature blocks */
.pillar {
  display: flex; gap: 22px; background: #fff; border-radius: var(--radius);
  padding: 28px; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.pillar__num {
  flex: none; width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--warm-orange), var(--warm-pink));
  color: var(--btn-ink); font-weight: 800; font-size: 1.3rem; display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.pillar__title { font-size: 1.14rem; color: var(--green-900); margin-bottom: 6px; }
.pillar__text { color: var(--muted); font-size: .97rem; }
@media (max-width: 560px) { .pillar { flex-direction: column; gap: 14px; } }

/* Welcome (media + text) */
.media-row { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(26px, 5vw, 60px); align-items: center; }
.media-row--rev .media-row__media { order: 2; }
.media-row__media { position: relative; }
.media-row__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.media-row__media::before {
  content: ""; position: absolute; inset: -14px auto auto -14px; width: 120px; height: 120px; z-index: -1;
  background: radial-gradient(circle at 30% 30%, var(--warm-yellow), transparent 70%); opacity: .5; border-radius: 30px;
}
@media (max-width: 860px) {
  .media-row { grid-template-columns: 1fr; }
  .media-row--rev .media-row__media { order: 0; }
}

/* Feature list with check icons */
.checklist { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; }
.checklist li { position: relative; padding-left: 38px; color: var(--ink); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--green-600) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/15px no-repeat;
}

/* =========================================================
   Content prose blocks
   ========================================================= */
.prose p { margin: 0 0 1.1em; }
.lead-text { font-size: 1.08rem; color: var(--ink); }

.panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow-sm);
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--green-100), #fdeef1);
  color: var(--ink); border: 1px solid var(--green-300);
  border-radius: var(--radius-lg); padding: clamp(36px, 6vw, 60px);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: ""; position: absolute; border-radius: 50%; opacity: .18;
}
.cta-band::before { width: 260px; height: 260px; background: var(--warm-yellow); top: -120px; right: -60px; }
.cta-band::after { width: 200px; height: 200px; background: var(--warm-pink); bottom: -100px; left: -40px; }
.cta-band > * { position: relative; z-index: 2; }
.cta-band__title { font-size: clamp(1.4rem, 3.2vw, 2rem); margin-bottom: 14px; color: var(--green-900); }
.cta-band__text { color: var(--muted); max-width: 640px; margin: 0 auto 26px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-band .tel {pointer-events: none; display: inline-flex; flex-direction: column; align-items: center; color: var(--green-900);
  background: #fff; border: 1px solid var(--green-300);
  padding: 12px 26px; border-radius: 16px; box-shadow: var(--shadow-sm);
}
.cta-band .tel small { font-size: .74rem; letter-spacing: .12em; color: var(--muted); }
.cta-band .tel strong { font-size: 1.5rem; letter-spacing: .04em; }

/* =========================================================
   Gallery (facility)
   ========================================================= */
.gallery-group { margin-top: 40px; }
.gallery-group__title {
  display: inline-flex; align-items: center; gap: 10px; font-size: 1.2rem; color: var(--green-900);
  margin-bottom: 18px;
}
.gallery-group__title::before { content: ""; width: 10px; height: 22px; border-radius: 4px; background: linear-gradient(var(--warm-orange), var(--warm-pink)); }
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; /*box-shadow: var(--shadow-sm); background: #fff; border: 1px solid var(--line);*/ }
.gallery figure img { /*aspect-ratio: 4/3; object-fit: cover; */width: 100%; transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption { padding: 10px 14px; font-size: .86rem; color: var(--muted); text-align: center; }

/* =========================================================
   Tables (fees)
   ========================================================= */
.fee-wrap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 860px) { .fee-wrap { grid-template-columns: 1fr; } }
.fee-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.fee-card__head { padding: 18px 22px; color: var(--btn-ink); font-weight: 800; font-size: 1.12rem; display: flex; align-items: center; gap: 10px; }
.fee-card--a .fee-card__head { background: linear-gradient(120deg, var(--green-700), var(--green-500)); }
.fee-card--b .fee-card__head { background: linear-gradient(120deg, var(--warm-orange), var(--warm-pink)); }
.fee-table { width: 100%; border-collapse: collapse; }
.fee-table th, .fee-table td { padding: 13px 20px; text-align: left; border-bottom: 1px solid var(--line); font-size: .96rem; }
.fee-table td:last-child { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.fee-table tr:last-child th, .fee-table tr:last-child td { border-bottom: none; }
.fee-table .total { background: var(--green-50); font-weight: 800; color: var(--green-900); font-size: 1.06rem; }
.fee-note { font-size: .84rem; color: var(--muted); margin-top: 14px; }

/* =========================================================
   Steps (flow)
   ========================================================= */
.steps { display: grid; gap: 18px; counter-reset: step; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; box-shadow: var(--shadow-sm);
  position: relative;
}
.step__badge {
  flex: none; width: 66px; text-align: center;
}
.step__badge span { display: block; }
.step__step { font-size: .68rem; letter-spacing: .12em; color: var(--green-600); font-weight: 800; }
.step__no {
  width: 52px; height: 52px; margin: 4px auto 0; border-radius: 50%;
  background: var(--green-800); color: #fff; font-weight: 800; font-size: 1.4rem; display: grid; place-items: center;
}
.step__title { font-size: 1.14rem; color: var(--green-900); margin-bottom: 6px; }
.step__text { color: var(--muted); font-size: .97rem; }
.step .inline-note {
  margin-top: 14px; background: var(--green-50); border: 1px dashed var(--green-300);
  border-radius: 12px; padding: 12px 16px; font-size: .9rem; color: var(--green-900);
}
.step .inline-note strong { color: var(--warm-orange); }

/* =========================================================
   FAQ (accordion)
   ========================================================= */
.faq { max-width: 840px; margin-inline: auto; display: grid; gap: 14px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 56px 20px 58px; position: relative;
  font-weight: 700; color: var(--green-900); font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "Q"; position: absolute; left: 20px; top: 16px; width: 28px; height: 28px;
  background: var(--green-800); color: #fff; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: .95rem;
}
.faq summary::after {
  content: ""; position: absolute; right: 22px; top: 50%; width: 12px; height: 12px;
  border-right: 2px solid var(--green-600); border-bottom: 2px solid var(--green-600);
  transform: translateY(-70%) rotate(45deg); transition: transform .25s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq .faq__body { padding: 0 24px 22px 58px; color: var(--muted); position: relative; }
.faq .faq__body::before {
  content: "A"; position: absolute; left: 20px; top: 0; width: 28px; height: 28px;
  background: var(--warm-orange); color: var(--btn-ink); border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: .95rem;
}

/* =========================================================
   Info table (company)
   ========================================================= */
.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td { text-align: left; padding: 16px 8px; border-bottom: 1px solid var(--line); vertical-align: top; }
.info-table th { width: 34%; color: var(--green-900); font-weight: 700; white-space: nowrap; }
@media (max-width: 560px) {
  .info-table, .info-table tbody, .info-table tr, .info-table th, .info-table td { display: block; width: 100%; }
  .info-table th { border-bottom: none; padding-bottom: 2px; }
  .info-table td { padding-top: 2px; padding-bottom: 16px; }
}

/* Info / news list */
.news { max-width: 760px; margin-inline: auto; }
.news li { display: flex; flex-wrap: wrap; gap: 8px 22px; padding: 16px 4px; border-bottom: 1px solid var(--line); list-style: none; }
.news ul { padding: 0; margin: 0; }
.news time { color: var(--green-600); font-weight: 700; font-variant-numeric: tabular-nums; }
.news .tag { background: var(--green-100); color: var(--green-800); font-size: .74rem; font-weight: 700; padding: 2px 12px; border-radius: 999px; align-self: center; }

/* =========================================================
   Contact form
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(26px, 4vw, 46px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.form { display: grid; gap: 20px; }
.field { display: grid; gap: 7px; }
.field label { font-weight: 700; color: var(--green-900); font-size: .96rem; }
.req { background: var(--warm-pink); color: var(--btn-ink); font-size: .68rem; font-weight: 700; padding: 2px 8px; border-radius: 6px; margin-left: 8px; vertical-align: middle; }
.opt { background: var(--green-100); color: var(--green-700); font-size: .68rem; font-weight: 700; padding: 2px 8px; border-radius: 6px; margin-left: 8px; vertical-align: middle; }
.input, .textarea, .select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  font: inherit; color: var(--ink); background: #fff; transition: border-color .2s ease, box-shadow .2s ease;
}
.input:focus, .textarea:focus, .select:focus {
  outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px var(--green-100);
}
.textarea { min-height: 150px; resize: vertical; }
.form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--muted); }
.form-consent input { margin-top: 5px; width: 18px; height: 18px; accent-color: var(--green-600); }
.form-actions { margin-top: 6px; }

.contact-aside { display: grid; gap: 18px; }
.aside-card { background: var(--green-50); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.aside-card h3 { color: var(--green-900); font-size: 1.1rem; margin-bottom: 12px; }
.aside-tel { display: block; font-size: 1.7rem; font-weight: 800; color: var(--green-800); letter-spacing: .02em; }
.aside-tel:hover { color: var(--green-600); }
.aside-hours { color: var(--muted); font-size: .92rem; margin-top: 4px; }

.map-frame { border: 0; width: 100%; height: 260px; border-radius: var(--radius); box-shadow: var(--shadow-sm); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--green-900); color: rgba(255,255,255,.86); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-block: clamp(46px, 6vw, 70px); }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr; gap: 30px; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .brand__logo { width: 44px; height: 44px; }
.footer-brand .brand__name { color: #fff; font-weight: 800; font-size: 1.1rem; }
.footer-brand .brand__sub { color: var(--green-300); }
.footer-desc { font-size: .92rem; color: rgba(255,255,255,.72); max-width: 320px; }
.footer-col h4 { color: #fff; font-size: .96rem; margin-bottom: 16px; letter-spacing: .04em; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: rgba(255,255,255,.8); font-size: .92rem; }
.footer-col a:hover { color: var(--warm-yellow); }
.footer-contact li { display: flex; gap: 10px; font-size: .92rem; margin-bottom: 12px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--green-300); }
.footer-social { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; color: #fff; background: rgba(255,255,255,.1); padding: 9px 16px; border-radius: 999px; font-size: .88rem; }
.footer-social:hover { color: #fff; background: linear-gradient(135deg, var(--warm-orange), var(--warm-pink)); }
.footer-social.foot-pdf { display: block; width:fit-content; margin-top: 6px; color: #fff; background: rgba(255,255,255,.1); padding: 9px 16px; border-radius: 999px; font-size: .88rem;color: rgba(255, 255, 255, .8); }
.footer-social:hover { color: #fff; background: linear-gradient(135deg, var(--warm-orange), var(--warm-pink)); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); padding-block: 20px; display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between; font-size: .82rem; color: rgba(255,255,255,.6); }
.footer-bottom a { color: rgba(255,255,255,.7); }

/* =========================================================
   Floating banners
   ========================================================= */
.floating { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: grid; gap: 12px; }
.fab {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  box-shadow: var(--shadow-md); color: #fff; transition: transform .2s ease;
}
.fab:hover { color: #fff; transform: translateY(-3px) scale(1.05); }
.fab svg { width: 26px; height: 26px; }
.fab--ig { background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7); }
.fab--tel { background: var(--green-700); }
.fab--top { background: #fff; color: var(--green-700); border: 1px solid var(--line); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s, transform .2s; }
.fab--top.is-visible { opacity: 1; visibility: visible; }
@media (max-width: 900px) {
  .floating { right: 14px; bottom: 14px; }
  .fab--tel { display: grid; }
}

/* Mobile fixed call bar */
.callbar { display: none; }
@media (max-width: 640px) {
  .callbar {
    display: grid; grid-template-columns: 1fr 1fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    box-shadow: 0 -4px 16px rgba(0,0,0,.12);
  }
  .callbar a { padding: 14px 8px; text-align: center; color: #fff; font-weight: 700; font-size: .95rem; display: flex; align-items: center; justify-content: center; gap: 8px; }
  .callbar a svg { width: 18px; height: 18px; }
  .callbar .cb-tel { background: var(--green-800); }
  .callbar .cb-form { background: linear-gradient(135deg, var(--warm-orange), var(--warm-pink)); color: var(--btn-ink); }
  body { padding-bottom: 52px; }
  .floating { bottom: 66px; }
}

/* =========================================================
   Animation on scroll
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

.text-center { text-align: center; }
.mt-lg { margin-top: clamp(30px, 5vw, 50px); }
