/* MAT Endüstriyel Mutfak — site styles */
:root {
  --bg: #ffffff;
  --surface: #f5f6f8;
  --tile: #f1f2f5;
  --text: #111318;
  --muted: #5b6270;
  --line: #e5e7eb;
  --brand: #1f5bd6;
  --brand-dark: #16408f;
  --brand-soft: #e9f0fd;
  --wa: #0e7c6b;
  --wa-dark: #0b6658;
  --dark: #111318;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-lg: 0 2px 4px rgba(17, 19, 24, 0.05), 0 24px 48px -20px rgba(17, 19, 24, 0.28);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
  --container: 1200px;
  --nav-h: 76px;
  --font: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { margin: 0; line-height: 1.12; letter-spacing: -0.02em; font-weight: 800; }
h1 { font-size: clamp(2rem, 4.2vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.15rem); }
h3 { font-size: 1.1rem; letter-spacing: -0.01em; }
p { margin: 0; }
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.ic { width: 1.15em; height: 1.15em; flex: none; }
.skip-link { position: absolute; left: 12px; top: -48px; background: var(--dark); color: #fff; padding: 8px 12px; border-radius: 8px; z-index: 100; }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 6px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.hide-sm { display: inline-flex; }
@media (max-width: 900px) { .hide-sm { display: none !important; } }
#main, .section[id] { scroll-margin-top: calc(var(--nav-h) + 16px); }

.eyebrow { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand); margin-bottom: 10px; }
.lead { font-size: 1.1rem; color: var(--muted); max-width: 60ch; }
.prose { color: var(--muted); margin-bottom: 14px; }
.prose strong { color: var(--text); }

/* ---------- buttons & links ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 18px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.95rem; line-height: 1.2;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform 160ms var(--ease-out), background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}
.btn-lg { padding: 14px 22px; font-size: 1rem; }
.btn-sm { padding: 9px 14px; font-size: 0.88rem; }
.btn-primary { background: var(--dark); color: #fff; }
.btn-wa { background: var(--wa); color: #fff; }
.btn-light { background: #fff; color: var(--dark); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { background: #000; }
  .btn-wa:hover { background: var(--wa-dark); }
  .btn-light:hover { background: #eef0f4; }
  .btn-ghost:hover { border-color: #c9ced8; background: var(--surface); }
}
.btn:active { transform: scale(0.97); }
@media (max-width: 400px) { .btn { white-space: normal; text-align: center; } }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--text); font-size: 0.95rem; transition: transform 120ms var(--ease-out); }
.link-arrow .ic { transition: transform 200ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .link-arrow:hover .ic { transform: translateX(3px); } }
.link-arrow:active { transform: scale(0.97); }
/* light press feedback for plain text links */
.nav > ul > li > a:active, .mega-col li a:active, .drawer-main li a:active, .drawer-group li a:active, .site-footer li a:active, .crumbs a:active, .topbar a:active { opacity: 0.55; }

/* ---------- header ---------- */
.topbar { background: var(--dark); color: #d5d9e2; font-size: 0.82rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; min-height: 40px; gap: 16px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; min-width: 0; }
.topbar a, .topbar span { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.topbar a { min-height: 40px; transition: color 150ms ease, opacity 120ms ease; }
@media (hover: hover) and (pointer: fine) { .topbar a:hover { color: #fff; } }
@media (max-width: 380px) { .topbar-right a span { display: none; } }
.navbar { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, 0.86); backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%); transition: box-shadow 200ms ease; }
.navbar.is-scrolled { box-shadow: 0 1px 0 var(--line), 0 8px 24px -16px rgba(17, 19, 24, 0.25); }
@media (prefers-reduced-transparency: reduce) { .navbar { background: #fff; backdrop-filter: none; -webkit-backdrop-filter: none; } }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: var(--nav-h); }
.brand img { width: 150px; height: auto; }
.nav > ul { display: flex; gap: 4px; align-items: center; }
.nav > ul > li > a { display: inline-flex; align-items: center; gap: 4px; padding: 10px 14px; border-radius: 10px; font-weight: 700; font-size: 0.95rem; transition: background-color 150ms ease, color 150ms ease, opacity 120ms ease; }
.nav > ul > li > a[aria-current="page"] { color: var(--brand); }
@media (hover: hover) and (pointer: fine) { .nav > ul > li > a:hover { background: var(--surface); } }
.has-mega { position: static; display: inline-flex; align-items: center; }
.has-mega > a { padding-right: 6px; border-radius: 10px 0 0 10px; }
.mega-toggle { width: 30px; height: 40px; border: 0; background: transparent; border-radius: 0 10px 10px 0; display: grid; place-items: center; cursor: pointer; color: var(--text); transition: background-color 150ms ease, transform 160ms var(--ease-out); }
.mega-toggle:active { transform: scale(0.92); }
.mega-toggle .chev { transition: transform 200ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .mega-toggle:hover { background: var(--surface); }
  .has-mega:hover .chev { transform: rotate(180deg); }
}
.has-mega.is-open .chev { transform: rotate(180deg); }
.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff; border-top: 1px solid var(--line); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out), visibility 0s linear 180ms;
}
.has-mega.is-open .mega { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
@media (hover: hover) and (pointer: fine) { .has-mega:hover .mega { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; } }
.mega-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; padding: 28px 0 32px; }
.mega-title { display: block; font-weight: 800; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.mega-col li a { display: block; padding: 6px 0; color: var(--muted); font-size: 0.92rem; transition: color 120ms ease, transform 160ms var(--ease-out), opacity 120ms ease; }
@media (hover: hover) and (pointer: fine) { .mega-col li a:hover { color: var(--brand); transform: translateX(3px); } .mega-title:hover { color: var(--brand); } }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: #fff; border-radius: 10px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; cursor: pointer; transition: transform 160ms var(--ease-out); }
.nav-toggle:active { transform: scale(0.94); }
.nav-toggle span { width: 18px; height: 2px; background: var(--text); border-radius: 2px; }
@media (max-width: 960px) {
  :root { --nav-h: 68px; }
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .brand img { width: 124px; }
  .nav-actions .btn span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .nav-actions .btn { padding: 0; width: 44px; height: 44px; }
}

/* ---------- drawer ---------- */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(17, 19, 24, 0.45); z-index: 60; opacity: 0; transition: opacity 200ms ease; }
.drawer-backdrop.is-open { opacity: 1; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(88vw, 380px); background: #fff; z-index: 70;
  display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform 200ms var(--ease-in);
}
.drawer.is-open { transform: none; transition: transform 280ms var(--ease-drawer); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; border-bottom: 1px solid var(--line); }
.drawer-close { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px; background: #fff; display: grid; place-items: center; cursor: pointer; transition: transform 160ms var(--ease-out); }
.drawer-close:active { transform: scale(0.94); }
.drawer-nav { flex: 1; overflow-y: auto; padding: 8px 20px 20px; }
.drawer-main li a { display: block; padding: 12px 0; font-weight: 800; font-size: 1.05rem; border-bottom: 1px solid var(--line); transition: opacity 120ms ease; }
.drawer-group { margin-top: 18px; }
.drawer-title { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand); margin-bottom: 4px; }
.drawer-group li a { display: block; padding: 10px 0; color: var(--muted); transition: opacity 120ms ease; }
.drawer-foot { padding: 16px 20px; border-top: 1px solid var(--line); display: grid; gap: 10px; }

/* ---------- hero ---------- */
.hero { padding: clamp(40px, 6vw, 84px) 0 clamp(32px, 5vw, 64px); background: radial-gradient(1200px 500px at 85% -10%, #e9f0fd 0%, rgba(233, 240, 253, 0) 60%), #fff; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.hero h1 { margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--brand); }
.hero .lead { margin-bottom: 26px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.trust { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 28px; color: var(--muted); font-weight: 600; font-size: 0.92rem; }
.trust li { display: inline-flex; align-items: center; gap: 6px; }
.trust .ic { color: var(--brand); }
.hero-visual { position: relative; }
.hero-tile { background: var(--tile); border-radius: 28px; aspect-ratio: 1; display: grid; place-items: center; padding: 6%; overflow: hidden; }
.hero-tile img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.hero-chip { position: absolute; left: 20px; bottom: 20px; display: flex; align-items: center; gap: 12px; background: #fff; border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow-lg); transition: transform 200ms var(--ease-out); }
.hero-chip-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--brand); display: block; }
.hero-chip-title { font-weight: 800; display: block; }
.hero-chip .ic { margin-left: auto; }
@media (hover: hover) and (pointer: fine) { .hero-chip:hover { transform: translateY(-2px); } }
.hero-chip:active { transform: scale(0.97); }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-tile { aspect-ratio: 4 / 3; border-radius: 20px; }
}
@media (max-width: 600px) {
  .hero-chip { position: static; margin-top: 10px; width: 100%; box-shadow: none; border: 1px solid var(--line); }
}

/* ---------- sections & grids ---------- */
.section { padding: clamp(48px, 7vw, 88px) 0; }
.section-alt { background: var(--surface); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 28px; }
@media (max-width: 640px) { .section-head { flex-direction: column; align-items: flex-start; gap: 10px; } }
.grid { display: grid; gap: 20px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1000px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-4, .grid-3 { grid-template-columns: 1fr; } .grid { gap: 14px; } }

/* ---------- cards ---------- */
.card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms ease; }
@media (hover: hover) and (pointer: fine) {
  .card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: #d9dde5; }
  .card:hover .card-media img { transform: scale(1.04); }
  .card:hover .card-link .ic { transform: translateX(3px); }
}
.card:active { transform: scale(0.985); }
.card-media { aspect-ratio: 1; background: var(--tile); display: grid; place-items: center; padding: 8%; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform 300ms var(--ease-out); }
.card-media.is-dark { background: #0a0a0b; }
.card-media.is-dark img { mix-blend-mode: normal; }
.card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-kicker { font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--brand); }
.card-short, .card-meta { color: var(--muted); font-size: 0.93rem; }
.card-link { margin-top: auto; padding-top: 10px; display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 0.92rem; }
.card-link .ic { transition: transform 200ms var(--ease-out); }
.group-card .card-media { aspect-ratio: 4 / 3; }

/* ---------- why ---------- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.why-copy h2 { margin-bottom: 14px; }
.why-copy > p { color: var(--muted); margin-bottom: 22px; }
.why-list { display: grid; gap: 16px; margin-bottom: 26px; }
.why-list li { display: flex; gap: 14px; align-items: flex-start; }
.why-list .ic { width: 40px; height: 40px; padding: 9px; border-radius: 12px; background: var(--brand-soft); color: var(--brand); }
.why-list strong { display: block; }
.why-list span { color: var(--muted); font-size: 0.93rem; }
.why-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.why-photos img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; aspect-ratio: 1; }
.why-photos img:last-child { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- reels ---------- */
.reels { display: grid; grid-template-columns: repeat(3, minmax(0, 360px)); justify-content: center; gap: 24px; }
.reel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.reel iframe { display: block; width: 100%; height: 640px; border: 0; }
.reel-link { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 12px; font-weight: 700; font-size: 0.9rem; border-top: 1px solid var(--line); }
.reel-link:active { opacity: 0.6; }
@media (max-width: 900px) { .reels { grid-template-columns: repeat(auto-fit, minmax(280px, 360px)); } }

/* ---------- cta band ---------- */
.cta-band { background: var(--dark); color: #fff; padding: clamp(40px, 6vw, 72px) 0; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 28px; flex-wrap: wrap; }
.cta-inner h2 { margin-bottom: 8px; }
.cta-inner p { color: #b8bec9; max-width: 56ch; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- footer ---------- */
.site-footer { background: #0c0e12; color: #c7ccd6; padding: 56px 0 0; font-size: 0.93rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1.2fr 0.9fr 1fr; gap: 36px; }
.footer-title { font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: #aeb4bf; font-weight: 700; margin: 0 0 14px; }
.footer-brand img { width: 160px; margin-bottom: 16px; }
.footer-brand p { margin-bottom: 12px; color: #98a0ad; }
.footer-addr { color: #c7ccd6 !important; display: inline-block; }
.site-footer li a { display: inline-flex; align-items: center; gap: 8px; padding: 4px 0; color: #98a0ad; transition: color 120ms ease, opacity 120ms ease; }
@media (hover: hover) and (pointer: fine) { .site-footer li a:hover, .footer-addr:hover { color: #fff !important; } }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding: 22px 0 28px; margin-top: 44px; border-top: 1px solid #1f232c; color: #7e8592; font-size: 0.82rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } .footer-bottom { padding-bottom: 96px; } }

.wa-fab { position: fixed; right: 18px; bottom: 18px; width: 56px; height: 56px; border-radius: 50%; background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px -8px rgba(14, 124, 107, 0.6), 0 2px 6px rgba(0, 0, 0, 0.15); z-index: 40; transition: transform 160ms var(--ease-out), background-color 150ms ease; }
.wa-fab .ic { width: 30px; height: 30px; }
@media (hover: hover) and (pointer: fine) { .wa-fab:hover { transform: translateY(-2px) scale(1.04); background: var(--wa-dark); } }
.wa-fab:active { transform: scale(0.94); }

/* ---------- page head / crumbs / subnav ---------- */
.page-head { padding: clamp(28px, 4vw, 48px) 0 clamp(24px, 3vw, 36px); background: linear-gradient(#fff, var(--surface)); }
.page-head h1 { margin-bottom: 12px; }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: 0.85rem; color: var(--muted); margin-bottom: 14px; }
.crumbs a { color: var(--muted); transition: color 120ms ease, opacity 120ms ease; }
@media (hover: hover) and (pointer: fine) { .crumbs a:hover { color: var(--brand); } }
.crumbs span:last-child { color: var(--text); font-weight: 600; }
.subnav-bar { background: var(--surface); box-shadow: 0 1px 0 var(--line); }
.subnav { display: flex; gap: 8px; overflow-x: auto; padding: 10px 0; scrollbar-width: none; }
.subnav::-webkit-scrollbar { display: none; }
.subnav a { flex: none; padding: 10px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-weight: 700; font-size: 0.88rem; transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease, transform 160ms var(--ease-out); }
.subnav a:active { transform: scale(0.96); }
.subnav a.is-active { background: var(--dark); color: #fff; border-color: var(--dark); }
@media (hover: hover) and (pointer: fine) { .subnav a:not(.is-active):hover { border-color: #c9ced8; } }

/* ---------- product page ---------- */
.product-hero { padding: clamp(24px, 4vw, 48px) 0 clamp(40px, 6vw, 72px); }
.product-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
.product-grid > * { min-width: 0; }
.gallery { position: sticky; top: calc(var(--nav-h) + 20px); }
.gallery-main { background: var(--tile); border-radius: 24px; aspect-ratio: 1; display: grid; place-items: center; padding: 6%; overflow: hidden; }
.gallery-main img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: opacity 140ms ease; }
.gallery-main.is-dark { background: #0a0a0b; }
.gallery-main.is-dark img { mix-blend-mode: normal; }
.gallery-main img.is-fading { opacity: 0; }
.thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; padding-bottom: 4px; }
.thumb { flex: none; width: 88px; border: 2px solid var(--line); border-radius: 12px; background: var(--tile); padding: 0; cursor: pointer; overflow: hidden; display: flex; flex-direction: column; transition: border-color 150ms ease, transform 160ms var(--ease-out); }
.thumb:active { transform: scale(0.95); }
.thumb img { width: 100%; aspect-ratio: 1; object-fit: contain; mix-blend-mode: multiply; padding: 6px; }
.thumb span { font-size: 0.7rem; font-weight: 700; padding: 4px 6px 6px; background: #fff; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.thumb.is-active { border-color: var(--dark); }
.thumb.is-active span { color: var(--text); }
@media (hover: hover) and (pointer: fine) { .thumb:not(.is-active):hover { border-color: #c9ced8; } }
.product-info h1 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 8px; }
.product-short { font-weight: 700; color: var(--muted); margin-bottom: 16px; }
.product-info .lead { font-size: 1.02rem; margin-bottom: 20px; }
.features { display: grid; gap: 10px; margin-bottom: 26px; }
.features li { display: flex; gap: 10px; align-items: flex-start; font-weight: 500; }
.features .ic { color: var(--brand); margin-top: 3px; }
.product-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
.product-note { font-size: 0.86rem; color: var(--muted); }
@media (max-width: 860px) { .product-grid { grid-template-columns: 1fr; } .gallery { position: static; } }

/* ---------- series chips ---------- */
.series { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: -6px 0 18px; }
.series-label { font-size: 0.85rem; font-weight: 700; color: var(--muted); margin-right: 2px; }
.chip { display: inline-flex; align-items: center; min-height: 36px; padding: 6px 14px; border-radius: 999px; border: 1px solid var(--line); background: #fff; font-weight: 700; font-size: 0.88rem; color: var(--text); transition: border-color 150ms ease, background-color 150ms ease, transform 160ms var(--ease-out); }
.chip.is-active { background: var(--dark); color: #fff; border-color: var(--dark); }
@media (hover: hover) and (pointer: fine) { a.chip:hover { border-color: #c9ced8; background: var(--surface); } }
a.chip:active { transform: scale(0.96); }

/* ---------- specs table ---------- */
.table-hint { display: none; font-size: 0.82rem; color: var(--muted); margin-bottom: 8px; }
.table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); -webkit-overflow-scrolling: touch; }
.specs { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 0.92rem; min-width: 640px; }
.specs th, .specs td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; white-space: nowrap; background: #fff; }
.specs thead th { background: var(--surface); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.specs tbody th { font-weight: 800; }
.specs tbody tr:last-child th, .specs tbody tr:last-child td { border-bottom: 0; }
.specs tbody tr:nth-child(even) th, .specs tbody tr:nth-child(even) td { background: #fafbfc; }
.specs th:first-child { position: sticky; left: 0; z-index: 1; box-shadow: 1px 0 0 var(--line); }
.specs .ask a { display: inline-flex; align-items: center; gap: 5px; color: var(--wa); font-weight: 700; font-size: 0.85rem; }
.specs .ask a:active { opacity: 0.6; }
.specs-note { padding: 20px; background: #fff; border: 1px dashed var(--line); border-radius: var(--radius); color: var(--muted); display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; }
.table-note { font-size: 0.85rem; color: var(--muted); margin-top: 10px; }
@media (max-width: 720px) { .table-hint { display: block; } }

/* ---------- warranty ---------- */
.card-tag { display: inline-flex; align-self: flex-start; padding: 3px 9px; border-radius: 999px; background: #e3f6f0; color: var(--wa); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.02em; }
.warranty-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.warranty-grid h2 { margin-bottom: 14px; }
.terms { display: grid; gap: 12px; }
.terms li { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: 0.95rem; }
.terms .ic { color: var(--brand); margin-top: 4px; }
@media (max-width: 860px) { .warranty-grid { grid-template-columns: 1fr; } }

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); }
.about-grid h2 { margin-bottom: 18px; font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
.promise-list { display: grid; gap: 12px; }
.promise-list li { display: flex; gap: 10px; align-items: flex-start; font-weight: 600; }
.promise-list .ic { color: var(--brand); margin-top: 3px; }
.about-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 22px; }
.about-facts div { background: var(--surface); border-radius: 14px; padding: 16px; }
.about-facts strong { display: block; font-size: 1.15rem; letter-spacing: -0.01em; }
.about-facts span { color: var(--muted); font-size: 0.82rem; }
.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.photo-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 14px; }
.store-grid, .cert-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.store-photo { border-radius: 22px; }
.store-grid h2, .cert-grid h2 { margin-bottom: 14px; }
.cert-grid .btn { margin-top: 8px; }
.cert { margin: 0; justify-self: center; max-width: 420px; }
.cert img { border-radius: 14px; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.cert figcaption { text-align: center; color: var(--muted); font-size: 0.85rem; margin-top: 10px; }
@media (max-width: 860px) { .about-grid, .store-grid, .cert-grid { grid-template-columns: 1fr; } .photo-grid { grid-template-columns: repeat(2, 1fr); } .about-facts { grid-template-columns: 1fr; } }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 28px; align-items: start; }
.contact-cards { display: grid; gap: 12px; }
.contact-card { display: flex; gap: 14px; align-items: center; padding: 16px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out), border-color 200ms ease; }
@media (hover: hover) and (pointer: fine) { a.contact-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: #d9dde5; } }
a.contact-card:active { transform: scale(0.98); }
.contact-ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand); flex: none; }
.contact-ic .ic { width: 24px; height: 24px; }
.contact-ic.wa { background: #e3f6f0; color: var(--wa); }
.contact-card div { display: flex; flex-direction: column; min-width: 0; }
.contact-card strong { font-size: 1rem; }
.contact-card span { color: var(--text); font-weight: 600; word-break: break-word; }
.contact-card em { font-style: normal; color: var(--muted); font-size: 0.85rem; }
.map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
.map iframe { display: block; width: 100%; height: 520px; border: 0; }
.map-link { display: flex; justify-content: center; padding: 12px; border-top: 1px solid var(--line); background: #fff; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } .map iframe { height: 360px; } }

/* ---------- reveal ---------- */
.js .reveal { transition: opacity 400ms var(--ease-out), transform 400ms var(--ease-out); transition-delay: min(calc(var(--i, 0) * 45ms), 180ms); }
.js .reveal:not(.in) { opacity: 0; transform: translateY(12px); }
.js .card.reveal.in, .js a.contact-card.reveal.in { transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms ease, opacity 400ms var(--ease-out); transition-delay: 0s; }
@media (max-width: 560px) { .js .reveal { transition-delay: 0s; } }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { transition: opacity 200ms ease; transition-delay: 0s; }
  .js .reveal:not(.in) { transform: none; }
  .card, .card-media img, .btn, .hero-chip, .thumb, .link-arrow, .link-arrow .ic, .card-link .ic, .mega, .mega-toggle .chev, .wa-fab, .subnav a, .nav-toggle, .drawer-close, a.contact-card, .gallery-main img, .mega-col li a { transition: none !important; }
  .card:hover, .card:hover .card-media img, .hero-chip:hover, .wa-fab:hover, a.contact-card:hover, .mega-col li a:hover, .link-arrow:hover .ic, .card:hover .card-link .ic { transform: none !important; }
  .drawer, .drawer.is-open { transition: opacity 150ms ease; transform: none; opacity: 0; }
  .drawer.is-open { opacity: 1; }
}
