/* =========================================================
   株式会社ケイティエスフーズ / KTS FOODS
   WEB/IT corporate site  -  style.css
========================================================= */

:root {
  /* Brand palette (logo: fresh green x warm orange) */
  --green: #57b22e;
  --green-mid: #7fc241;
  --green-dark: #2f8f27;
  --green-deep: #1f6b1c;
  --orange: #ee7d11;
  --orange-dark: #d96b00;

  --ink: #1b2a20;
  --body: #4a564e;
  --muted: #7a857d;
  --line: #e6ebe5;
  --line-soft: #eef2ec;

  --bg: #ffffff;
  --bg-soft: #f4f8f2;
  --bg-warm: #fbf6ee;
  --bg-dark: #16241b;

  --grad: linear-gradient(100deg, #57b22e 0%, #82c53f 48%, #ee7d11 100%);
  --grad-soft: linear-gradient(135deg, #eef8e8 0%, #fdf3e7 100%);

  --shadow-sm: 0 2px 10px rgba(24, 45, 28, .06);
  --shadow-md: 0 14px 34px rgba(24, 45, 28, .10);
  --shadow-lg: 0 26px 60px rgba(24, 45, 28, .16);

  --radius: 16px;
  --radius-lg: 24px;
  --container: 1160px;
  --header-h: 76px;

  --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", sans-serif;
  --font-en: "Manrope", "Noto Sans JP", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-jp);
  color: var(--body);
  line-height: 1.85;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s, opacity .2s; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p, dl, dd { margin: 0; }
:focus-visible { outline: 3px solid rgba(87, 178, 46, .55); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.site-main { width: 100%; overflow: clip; }
[id] { scroll-margin-top: calc(var(--header-h) + 14px); }

/* ---------- Section frame ---------- */
.section { padding-block: clamp(64px, 8vw, 112px); position: relative; }
.section--soft { background: var(--bg-soft); }
.section--warm { background: var(--bg-warm); }

.sec-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-en); font-weight: 700; font-size: 13px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--green-dark);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px; background: var(--grad);
}
.center .eyebrow::after {
  content: ""; width: 26px; height: 2px; border-radius: 2px; background: var(--grad);
}
.sec-title {
  font-size: clamp(26px, 4vw, 40px); line-height: 1.3; font-weight: 800;
  color: var(--ink); letter-spacing: .01em; margin-top: 16px;
}
.sec-title .accent { color: var(--green-dark); }
.sec-lead { margin-top: 18px; font-size: clamp(15px, 1.6vw, 17px); color: var(--body); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 0 30px; border-radius: 999px;
  font-weight: 700; font-size: 15px; letter-spacing: .02em; line-height: 1;
  transition: transform .2s, box-shadow .2s, opacity .2s, background .2s, color .2s;
  white-space: nowrap;
}
.btn .arw { transition: transform .2s; }
.btn:hover .arw { transform: translateX(4px); }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 12px 26px rgba(87, 178, 46, .32); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(87, 178, 46, .40); }
.btn--ghost { background: #fff; color: var(--green-deep); border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--green); color: var(--green-dark); box-shadow: var(--shadow-md); }
.btn--light { background: rgba(255,255,255,.14); color: #fff; border: 1.5px solid rgba(255,255,255,.5); backdrop-filter: blur(4px); }
.btn--light:hover { background: #fff; color: var(--green-deep); }
.btn--wide { width: 100%; }

.link-more { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--green-dark); }
.link-more:hover { color: var(--orange); }
.link-more .arw { transition: transform .2s; }
.link-more:hover .arw { transform: translateX(4px); }

/* =========================================================
   01. Header / Nav
========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s, border-color .25s, background .25s;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); background: rgba(255,255,255,.94); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; }
.brand .brand-name { display: none; }

.gnav > ul { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.gnav a {
  position: relative; font-weight: 600; font-size: 15px; color: var(--ink); padding-block: 6px;
}
.gnav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px;
  background: var(--grad); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.gnav a:hover { color: var(--green-dark); }
.gnav a:hover::after { transform: scaleX(1); }

.header-cta { display: inline-flex; align-items: center; gap: 16px; }
.header-tel { display: inline-flex; flex-direction: column; line-height: 1.2; text-align: right; }
.header-tel .t-label { font-size: 11px; color: var(--muted); letter-spacing: .08em; }
.header-tel .t-num { font-family: var(--font-en); font-weight: 800; font-size: 20px; color: var(--ink); }
.header-cta .btn { min-height: 46px; padding: 0 22px; font-size: 14px; }

.wf-hamburger {
  display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line);
  background: #fff; align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.wf-hamburger span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; }

/* Drawer */
.wb-drawer { position: fixed; inset: 0; z-index: 1000; }
.wb-drawer[hidden] { display: none; }
.wb-drawer-bg { position: absolute; inset: 0; background: rgba(16, 30, 20, .48); }
.wb-drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(320px, 84vw); background: #fff;
  box-shadow: -8px 0 40px rgba(16, 30, 20, .22); padding: 74px 26px 32px; display: flex; flex-direction: column;
  animation: drawerIn .3s ease;
}
@keyframes drawerIn { from { transform: translateX(100%); } to { transform: none; } }
.wb-drawer-panel a { display: block; padding: 15px; border-bottom: 1px solid var(--line-soft); font-weight: 600; color: var(--ink); }
.wb-drawer-panel a:hover { color: var(--green-dark); }
.wb-drawer-panel .btn { margin-top: 22px; }
.wb-drawer-panel .drawer-tel { margin-top: 20px; text-align: center; }
.wb-drawer-panel .drawer-tel .t-num { font-family: var(--font-en); font-weight: 800; font-size: 24px; color: var(--ink); }
.wb-drawer-close { position: absolute; top: 18px; right: 18px; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: #fff; font-size: 20px; color: var(--ink); }

/* =========================================================
   02. Hero slider
========================================================= */
.hero { position: relative; margin-top: var(--header-h); }
.wb-slider { position: relative; overflow: hidden; }
.wb-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s ease; pointer-events: none; }
.wb-slide.active { position: relative; opacity: 1; pointer-events: auto; }
.hero-slide {
  position: relative; min-height: clamp(520px, 74vh, 720px);
  display: flex; align-items: center;
  background-size: cover; background-position: center;
}
.hero-slide::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.80) 42%, rgba(255,255,255,.15) 72%, rgba(255,255,255,0) 100%);
}
.hero-slide::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 6px; background: var(--grad);
}
.hero-copy { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px;
  padding: 8px 16px; border-radius: 999px; background: rgba(87,178,46,.10);
  font-family: var(--font-en); font-weight: 700; font-size: 12px; letter-spacing: .14em; color: var(--green-deep);
}
.hero-title {
  font-size: clamp(28px, 5vw, 56px); line-height: 1.24; font-weight: 800; letter-spacing: .01em; color: var(--ink);
}
.hero-title .grad {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { margin-top: 24px; font-size: clamp(15px, 1.7vw, 18px); color: var(--body); max-width: 520px; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero-dots { position: absolute; z-index: 3; left: 0; right: 0; bottom: 26px; }
.dots { display: flex; gap: 10px; justify-content: center; }
.dot { width: 30px; height: 4px; border-radius: 3px; background: rgba(27,42,32,.18); transition: background .3s; }
.dot.on { background: var(--grad); }

/* =========================================================
   03. About (media)
========================================================= */
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 68px); align-items: center; }
.about-visual { position: relative; }
.about-visual .img-main { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-visual .badge {
  position: absolute; right: -18px; bottom: -22px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 20px 24px; display: flex; align-items: center; gap: 16px; max-width: 260px;
}
.about-visual .badge .num { font-family: var(--font-en); font-weight: 800; font-size: 40px; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.about-visual .badge .b-label { font-size: 13px; color: var(--body); font-weight: 600; }
.about-visual .deco { position: absolute; left: -20px; top: -20px; width: 120px; height: 120px; border-radius: 20px; background: var(--grad-soft); z-index: -1; }
.about-lead { font-size: clamp(19px, 2.4vw, 24px); font-weight: 700; color: var(--ink); line-height: 1.6; margin: 20px 0 18px; }
.about-text p + p { margin-top: 14px; }
.about-points { margin-top: 26px; display: grid; gap: 14px; }
.about-points li { display: flex; gap: 12px; align-items: flex-start; }
.about-points .ic { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; margin-top: 2px; }
.about-points .ic svg { width: 14px; height: 14px; stroke: #fff; }
.about-points b { color: var(--ink); }
.about-cta { margin-top: 30px; }

/* =========================================================
   04. Works
========================================================= */
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.5vw, 28px); }
.work-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s, border-color .25s; display: flex; flex-direction: column;
}
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.work-thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.work-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.work-card:hover .work-thumb img { transform: scale(1.06); }
.work-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-family: var(--font-en); font-size: 11px; font-weight: 700; letter-spacing: .04em; color: var(--green-deep); background: rgba(87,178,46,.12); padding: 5px 12px; border-radius: 999px; }
.tag--o { color: var(--orange-dark); background: rgba(238,125,17,.12); }
.work-title { font-size: 18px; font-weight: 700; color: var(--ink); line-height: 1.5; }
.work-desc { font-size: 14px; color: var(--body); }
.works-foot { margin-top: clamp(36px, 5vw, 52px); text-align: center; }

/* =========================================================
   05. Services
========================================================= */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 26px); }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px;
  box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; position: relative; overflow: hidden;
}
.svc-card::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 4px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-ic { width: 60px; height: 60px; border-radius: 16px; background: var(--grad-soft); display: grid; place-items: center; margin-bottom: 22px; }
.svc-ic svg { width: 30px; height: 30px; stroke: var(--green-dark); }
.svc-no { font-family: var(--font-en); font-size: 12px; font-weight: 700; letter-spacing: .1em; color: var(--orange); }
.svc-title { font-size: 20px; font-weight: 700; color: var(--ink); margin: 6px 0 12px; }
.svc-desc { font-size: 14px; color: var(--body); }

/* =========================================================
   06. Stats
========================================================= */
.stats-band {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; color: #fff;
  background: linear-gradient(115deg, #2f8f27 0%, #57b22e 55%, #ee7d11 130%);
  padding: clamp(40px, 5vw, 60px) clamp(28px, 4vw, 56px); box-shadow: var(--shadow-lg);
}
.stats-band::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; border-radius: 50%;
  background: rgba(255,255,255,.10);
}
.stats-head { position: relative; z-index: 1; text-align: center; margin-bottom: clamp(28px, 4vw, 44px); }
.stats-head .eyebrow { color: rgba(255,255,255,.9); }
.stats-head .eyebrow::before, .stats-head .eyebrow::after { background: rgba(255,255,255,.7); }
.stats-head h2 { font-size: clamp(24px, 3.4vw, 34px); font-weight: 800; margin-top: 12px; }
.stats-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 10px; }
.stat .st-num { font-family: var(--font-en); font-weight: 800; font-size: clamp(38px, 5vw, 56px); line-height: 1; }
.stat .st-num .u { font-size: .5em; margin-left: 4px; }
.stat .st-label { margin-top: 10px; font-size: 14px; color: rgba(255,255,255,.9); font-weight: 600; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,.22); }

/* =========================================================
   07. Company
========================================================= */
.company-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.company-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.company-map { margin-top: 18px; }
.info-table { width: 100%; }
.info-table dl { display: grid; grid-template-columns: 132px 1fr; padding: 18px 4px; border-bottom: 1px solid var(--line); }
.info-table dl:first-child { border-top: 1px solid var(--line); }
.info-table dt { font-weight: 700; color: var(--ink); font-size: 14px; }
.info-table dd { color: var(--body); font-size: 15px; }
.info-table dd a:hover { color: var(--green-dark); }

/* =========================================================
   08. News
========================================================= */
.news-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 34px; }
.news-list li { border-bottom: 1px solid var(--line); }
.news-list a {
  display: grid; grid-template-columns: 128px 116px 1fr auto; align-items: center; gap: 20px; padding: 22px 8px;
}
.news-list a:hover { background: var(--bg-soft); }
.news-date { font-family: var(--font-en); font-weight: 700; color: var(--muted); font-size: 14px; }
.news-cat { justify-self: start; font-size: 12px; font-weight: 700; letter-spacing: .04em; color: var(--green-deep); background: rgba(87,178,46,.12); padding: 5px 14px; border-radius: 999px; }
.news-cat.o { color: var(--orange-dark); background: rgba(238,125,17,.12); }
.news-title { color: var(--ink); font-weight: 600; }
.news-list a:hover .news-title { color: var(--green-dark); }
.news-arw { color: var(--muted); }

/* =========================================================
   09. Pricing
========================================================= */
.price-wrap { max-width: 860px; margin-inline: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); background: #fff; }
.price-row { display: grid; grid-template-columns: 1fr 200px; align-items: center; gap: 20px; padding: 26px 32px; border-bottom: 1px solid var(--line); }
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--bg-soft); }
.price-name { font-size: 18px; font-weight: 700; color: var(--ink); }
.price-note { font-size: 13.5px; color: var(--body); margin-top: 4px; }
.price-val { text-align: right; }
.price-val .yen { font-family: var(--font-en); font-weight: 800; font-size: clamp(24px, 3vw, 32px); color: var(--green-dark); }
.price-val .from { font-size: 13px; color: var(--muted); margin-left: 2px; }
.price-foot { text-align: center; margin-top: 22px; font-size: 13.5px; color: var(--muted); }

/* =========================================================
   10. CTA
========================================================= */
.cta { position: relative; color: #fff; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, #1f6b1c 0%, #2f8f27 46%, #d96b00 120%); }
.cta .container { position: relative; z-index: 1; }
.cta-head { text-align: center; max-width: 660px; margin: 0 auto clamp(34px, 4vw, 48px); }
.cta-head .eyebrow { color: rgba(255,255,255,.9); }
.cta-head .eyebrow::before, .cta-head .eyebrow::after { background: rgba(255,255,255,.7); }
.cta-head h2 { font-size: clamp(26px, 3.8vw, 40px); font-weight: 800; margin-top: 14px; }
.cta-head p { margin-top: 16px; color: rgba(255,255,255,.92); }
.cta-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 860px; margin-inline: auto; }
.cta-card { background: rgba(255,255,255,.98); color: var(--ink); border-radius: var(--radius-lg); padding: 38px 34px; text-align: center; box-shadow: var(--shadow-md); }
.cta-card .c-ic { width: 62px; height: 62px; border-radius: 50%; background: var(--grad-soft); display: grid; place-items: center; margin: 0 auto 18px; }
.cta-card .c-ic svg { width: 30px; height: 30px; stroke: var(--green-dark); }
.cta-card h3 { font-size: 19px; font-weight: 700; }
.cta-card .c-lead { font-size: 14px; color: var(--body); margin: 10px 0 20px; }
.cta-card .c-tel { font-family: var(--font-en); font-weight: 800; font-size: clamp(28px, 4vw, 36px); color: var(--ink); display: block; }
.cta-card .c-hours { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* =========================================================
   11. Footer
========================================================= */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,.78); padding-top: clamp(56px, 7vw, 84px); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand img { height: 52px; border-radius: 12px; }
.footer-brand p { margin-top: 20px; font-size: 14px; line-height: 1.9; }
.footer-brand .f-contact { margin-top: 18px; font-size: 14px; }
.footer-brand .f-contact a:hover { color: var(--green-mid); }
.footer-col h4 { font-family: var(--font-en); font-size: 13px; letter-spacing: .1em; color: #fff; margin-bottom: 18px; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; }
.footer-col a:hover { color: var(--green-mid); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 0 30px; flex-wrap: wrap; }
.footer-bottom small { font-family: var(--font-en); font-size: 12.5px; color: rgba(255,255,255,.55); }
.footer-bottom .f-legal { display: flex; gap: 20px; }
.footer-bottom .f-legal a { font-size: 12.5px; }
.footer-bottom .f-legal a:hover { color: var(--green-mid); }

/* ---------- To-top ---------- */
.wb-totop { position: fixed; right: 22px; bottom: 22px; z-index: 950; width: 50px; height: 50px; border-radius: 50%; background: var(--grad); color: #fff; font-size: 18px; box-shadow: 0 10px 26px rgba(31,107,28,.3); opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; transform: translateY(8px); }
.wb-totop.wb-visible { opacity: 1; pointer-events: auto; transform: none; }

/* ---------- Scroll reveal ---------- */
.wb-block { opacity: 1; transform: none; }
.wb-animate .wb-block { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.wb-animate .wb-block.wb-in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 1024px) {
  .works-grid, .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
  .stat:nth-child(3) { border-left: none; }
  .stat:nth-child(odd) { border-left: none; }
  .stat:nth-child(even) { border-left: 1px solid rgba(255,255,255,.22); }
}

@media (max-width: 900px) {
  :root { --header-h: 66px; }
  .gnav, .header-tel { display: none; }
  .header-cta > .btn { display: none; }
  .wf-hamburger { display: flex; }
  .about-grid, .company-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual .badge { right: 16px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { padding-inline: 18px; }
  .works-grid, .svc-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-cards { grid-template-columns: 1fr; }
  .hero-slide { min-height: 76vh; }
  .hero-slide::before { background: linear-gradient(180deg, rgba(255,255,255,.86) 0%, rgba(255,255,255,.72) 60%, rgba(255,255,255,.55) 100%); }
  .hero-actions .btn { flex: 1 1 100%; }
  .news-list a { grid-template-columns: auto 1fr; grid-template-areas: "date cat" "title title" ; gap: 8px 14px; row-gap: 10px; }
  .news-date { grid-area: date; }
  .news-cat { grid-area: cat; }
  .news-title { grid-area: title; }
  .news-arw { display: none; }
  .price-row { grid-template-columns: 1fr; gap: 8px; }
  .price-val { text-align: left; }
  .info-table dl { grid-template-columns: 104px 1fr; }
  .svc-card { padding: 28px 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .wb-animate .wb-block { opacity: 1; transform: none; transition: none; }
  .wb-slide { transition: none; }
}
