@font-face {
  font-family: "Be Vietnam Pro";
  src: url("../fonts/be-vietnam-pro-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Be Vietnam Pro";
  src: url("../fonts/be-vietnam-pro-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Be Vietnam Pro";
  src: url("../fonts/be-vietnam-pro-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Be Vietnam Pro";
  src: url("../fonts/be-vietnam-pro-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Be Vietnam Pro";
  src: url("../fonts/be-vietnam-pro-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Lora";
  src: url("../fonts/lora-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Lora";
  src: url("../fonts/lora-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --white: #fff;
  --ink: #202428;
  --muted: #62676c;
  --line: #e4e6e8;
  --soft: #f7f7f6;
  --red: #e10b17;
  --red-dark: #bd0710;
  --orange: #f25a0a;
  --gold: #c89024;
  --charcoal: #22272b;
  --shadow-sm: 0 5px 18px rgba(25, 28, 31, 0.08);
  --shadow-lg: 0 18px 50px rgba(25, 28, 31, 0.14);
  --container: min(1240px, calc(100vw - 48px));
  --radius: 6px;
  --font-body: "Be Vietnam Pro", Arial, sans-serif;
  --font-art: "Lora", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.62;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.nav-open,
body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
svg { display: block; width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2, h3 { margin: 0; color: var(--ink); line-height: 1.2; letter-spacing: 0; }
h1, h2 { font-weight: 800; }
h3 { font-size: 1rem; font-weight: 700; }

code {
  border: 1px solid #efdad3;
  border-radius: 4px;
  background: #fff6f2;
  color: #852319;
  padding: 0.08rem 0.35rem;
  font-size: 0.92em;
}

.site-header { position: sticky; top: 0; z-index: 50; min-height: 72px; border-bottom: 1px solid rgba(228, 230, 232, 0.9); background: var(--white); transition: box-shadow 180ms ease; }
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.site-header__inner { display: grid; grid-template-columns: 150px 1fr auto; align-items: center; gap: 22px; width: var(--container); min-height: 72px; margin: 0 auto; }
.brand { display: inline-flex; align-items: center; width: 124px; height: 56px; }
.brand img { width: 100%; height: auto; object-fit: contain; image-rendering: auto; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 30px; }
.main-nav a { position: relative; padding: 25px 0 23px; color: #3c4145; font-size: 0.83rem; font-weight: 600; line-height: 1; }
.main-nav a::after { position: absolute; right: 0; bottom: 17px; left: 0; height: 2px; background: var(--red); content: ""; opacity: 0; transform: scaleX(0.4); transition: opacity 160ms ease, transform 160ms ease; }
.main-nav a:hover,
.main-nav a.is-active { color: var(--red); }
.main-nav a:hover::after,
.main-nav a.is-active::after { opacity: 1; transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; min-height: 38px; border: 1px solid #d9dcdf; border-radius: var(--radius); padding: 8px 13px; color: var(--ink); font-size: 0.8rem; font-weight: 600; }
.header-phone svg { width: 15px; height: 15px; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); color: var(--ink); }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: currentColor; }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; border: 1px solid transparent; border-radius: var(--radius); padding: 11px 18px; cursor: pointer; font-size: 0.9rem; font-weight: 700; line-height: 1.2; transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease; }
.btn:hover { transform: translateY(-1px); }
.btn--small { min-height: 38px; padding: 8px 15px; font-size: 0.8rem; }
.btn--primary { background: var(--red); color: var(--white); box-shadow: 0 7px 17px rgba(225, 11, 23, 0.16); }
.btn--primary:hover { background: var(--red-dark); }
.btn--outline-dark { border-color: #aeb3b7; background: var(--white); color: var(--ink); }

.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); background: var(--white); }
.hero__paint { --cursor-x: 48%; --cursor-y: 42%; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(242, 90, 10, 0.035), transparent 15rem); }
.hero__content { position: relative; z-index: 1; display: grid; grid-template-columns: 0.91fr 1.09fr; width: var(--container); min-height: 556px; margin: 0 auto; }
.hero__copy { display: flex; flex-direction: column; justify-content: center; max-width: 580px; padding: 56px 52px 100px 16px; }
.hero h1 { color: var(--orange); font-size: clamp(3.85rem, 5.3vw, 5rem); line-height: 0.96; white-space: nowrap; }
.hero h1 span { display: block; margin-bottom: 12px; color: var(--ink); font-size: clamp(1.7rem, 2.7vw, 2.6rem); line-height: 1.1; }
.hero__slogan { margin: 17px 0 0; color: var(--gold); font-family: var(--font-art); font-size: clamp(1.3rem, 2vw, 1.85rem); font-style: italic; font-weight: 600; line-height: 1.25; }
.hero__lead { max-width: 52ch; margin: 19px 0 0; color: #555b60; font-size: 0.96rem; line-height: 1.75; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 25px; }
.btn--phone { min-width: 174px; gap: 12px; padding: 10px 18px; }
.btn--phone svg { width: 23px; height: 23px; flex: 0 0 auto; }
.btn--phone span { display: grid; gap: 1px; text-align: left; }
.btn--phone strong { font-size: 0.95rem; }
.btn--phone small { font-size: 0.65rem; font-weight: 500; opacity: 0.8; }
.hero__media { position: relative; min-width: 0; overflow: hidden; background: #eee8e1; }
.slide { position: absolute; inset: 0; opacity: 0; transform: scale(1.025); transition: opacity 800ms ease, transform 1200ms ease; }
.slide.is-active { opacity: 1; transform: scale(1); }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-dots { position: absolute; right: 24px; bottom: 24px; display: flex; gap: 7px; }
.slide-dots span { width: 7px; height: 7px; border: 1px solid var(--white); border-radius: 50%; background: rgba(255, 255, 255, 0.45); box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); }
.slide-dots span.is-active { background: var(--red); }
.hero-proof { position: absolute; z-index: 2; bottom: 0; left: max(24px, calc((100vw - 1240px) / 2)); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); width: min(720px, calc(100vw - 48px)); border: 1px solid var(--line); border-bottom: 0; border-radius: 999px 999px 0 0; background: rgba(255, 255, 255, 0.96); box-shadow: var(--shadow-sm); padding: 13px 24px; }
.hero-proof div { position: relative; display: grid; gap: 1px; padding: 0 15px 0 31px; }
.hero-proof div:not(:last-child) { border-right: 1px solid var(--line); }
.hero-proof div::before { position: absolute; top: 4px; left: 8px; width: 12px; height: 12px; border: 2px solid var(--red); border-radius: 50%; content: ""; }
.hero-proof div::after { position: absolute; top: 7px; left: 12px; width: 5px; height: 3px; border-bottom: 2px solid var(--red); border-left: 2px solid var(--red); content: ""; transform: rotate(-45deg); }
.hero-proof strong { font-size: 0.68rem; line-height: 1.35; }
.hero-proof span { color: var(--muted); font-size: 0.58rem; line-height: 1.35; }

.section { width: var(--container); margin: 0 auto; padding: 58px 0; }
.section-title { max-width: 760px; margin-bottom: 24px; }
.section-title--center { max-width: 850px; margin-right: auto; margin-left: auto; text-align: center; }
.section-title > p,
.section-note { margin: 0 0 8px; color: var(--red); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; }
.section-title h2 { font-size: clamp(1.55rem, 2.5vw, 2.25rem); }
.service-band { padding-top: 40px; }
.service-band .section-title { margin-bottom: 20px; }
.service-band .section-title h2 { font-size: clamp(1.05rem, 1.5vw, 1.22rem); text-transform: uppercase; }
.service-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 9px; }
.service-card { overflow: hidden; min-width: 0; border: 1px solid #d9b58c; border-radius: var(--radius); background: var(--white); transition: box-shadow 180ms ease, transform 180ms ease; }
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.service-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.service-card div { min-height: 72px; padding: 11px 10px; text-align: center; }
.service-card h3 { font-size: 0.78rem; line-height: 1.35; }
.service-card p { margin: 3px 0 0; color: var(--muted); font-size: 0.64rem; line-height: 1.4; }

.process-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fbfbfa; }
.process-band__inner { padding-top: 43px; padding-bottom: 48px; }
.timeline { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0; margin-top: 25px; }
.timeline article { position: relative; min-height: 108px; padding: 10px 26px 8px 57px; }
.timeline article:not(:last-child)::after { position: absolute; top: 38px; right: -3px; width: 22px; height: 1px; background: #bfc3c6; content: ""; }
.timeline span { position: absolute; top: 7px; left: 12px; color: var(--red); font-size: 1rem; font-weight: 800; }
.timeline span::after { position: absolute; top: 27px; left: 0; width: 29px; height: 29px; border: 1px solid #c7cbce; border-radius: 50%; content: ""; }
.timeline h3 { margin: 4px 0 7px; font-size: 0.84rem; }
.timeline p { margin: 0; color: var(--muted); font-size: 0.69rem; line-height: 1.5; }

.value-grid { display: grid; grid-template-columns: 1fr 1fr 0.9fr; gap: 14px; align-items: stretch; }
.value-panel,
.location-panel { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.value-grid h2 { font-size: clamp(1.35rem, 2vw, 1.8rem); }
.check-list { display: grid; gap: 8px; margin: 20px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 23px; color: #4c5256; font-size: 0.8rem; }
.check-list li::before { position: absolute; top: 0.45em; left: 1px; width: 10px; height: 6px; border-bottom: 2px solid var(--red); border-left: 2px solid var(--red); content: ""; transform: rotate(-45deg); }
.location-panel { position: relative; overflow: hidden; background: #fafafa; }
.location-panel::after { position: absolute; right: -32px; bottom: -38px; width: 130px; height: 130px; border: 24px solid rgba(225, 11, 23, 0.08); border-radius: 50%; content: ""; }
.location-panel p:not(.section-note) { max-width: 38ch; margin: 13px 0; color: var(--muted); font-size: 0.82rem; }
.location-link { position: relative; z-index: 1; color: var(--red); font-size: 0.8rem; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.value-image { overflow: hidden; min-height: 270px; border-radius: var(--radius); }
.value-image img { width: 100%; height: 100%; object-fit: cover; }
.local-seo { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; border-top: 1px solid var(--line); padding-top: 48px; padding-bottom: 48px; }
.local-seo h2 { max-width: 18ch; font-size: clamp(1.55rem, 2.5vw, 2.2rem); }
.local-seo > p { margin: 0; color: var(--muted); }
.faq { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 42px; align-items: start; border-top: 1px solid var(--line); }
.faq-list { display: grid; gap: 9px; }
details { border-bottom: 1px solid var(--line); padding: 14px 2px; }
summary { cursor: pointer; color: var(--ink); font-size: 0.88rem; font-weight: 700; }
details p { margin: 11px 0 0; color: var(--muted); font-size: 0.82rem; }

.site-footer { position: relative; overflow: hidden; border-top: 3px solid #d69a29; background: #202529; color: rgba(255, 255, 255, 0.72); }
.footer-highlight { border-bottom: 1px solid rgba(255, 255, 255, 0.1); background: #292f33; }
.footer-highlight__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; width: var(--container); min-height: 82px; margin: 0 auto; padding: 15px 0; }
.footer-highlight__inner > div { display: grid; gap: 3px; }
.footer-highlight__inner span { color: #e8b34e; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; }
.footer-highlight__inner strong { color: var(--white); font-size: 0.94rem; font-weight: 600; text-transform: none; }
.footer-highlight__inner > a { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; min-height: 44px; border: 1px solid rgba(232, 179, 78, 0.5); border-radius: var(--radius); padding: 9px 16px; color: #ffd985; font-size: 0.82rem; font-weight: 700; }
.footer-highlight__inner > a:hover { border-color: #ffd985; background: rgba(255, 255, 255, 0.05); color: var(--white); }
.footer-highlight__inner svg { width: 18px; height: 18px; }
.site-footer__inner { display: grid; grid-template-columns: 1.12fr 0.7fr 1.25fr 0.93fr; gap: 42px; width: var(--container); margin: 0 auto; padding: 48px 0 42px; }
.site-footer h2 { margin: 3px 0 18px; color: var(--white); font-size: 0.76rem; font-weight: 700; text-transform: uppercase; }
.footer-logo { display: block; width: 196px; }
.footer-logo img { width: 100%; height: auto; }
.footer-brand > p { max-width: 35ch; margin: 10px 0 0; font-size: 0.73rem; line-height: 1.65; }
.footer-brand .footer-slogan { margin-top: 8px; color: #e8b34e; font-family: var(--font-art); font-size: 0.92rem; font-style: italic; font-weight: 600; }
.footer-socials { display: flex; gap: 8px; margin-top: 18px; }
.social-icon { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 50%; color: var(--white); font-family: Arial, sans-serif; font-size: 1rem; font-weight: 700; transition: border-color 160ms ease, background 160ms ease, transform 160ms ease; }
.social-icon:hover { border-color: transparent; color: var(--white); transform: translateY(-2px); }
.social-icon--facebook:hover { background: #1877f2; }
.social-icon--zalo:hover { background: #0877c9; }
.footer-nav { display: flex; flex-direction: column; align-items: flex-start; }
.footer-nav a,
.footer-online > a { display: flex; align-items: center; gap: 9px; width: fit-content; min-height: 30px; color: rgba(255, 255, 255, 0.72); font-size: 0.73rem; }
.footer-nav a:hover,
.footer-online > a:hover,
.footer-contact a:hover { color: #ffd985; }
.footer-nav svg,
.footer-online > a svg { width: 15px; height: 15px; color: #e8b34e; }
.footer-contact address { display: grid; gap: 13px; font-size: 0.73rem; font-style: normal; }
.footer-contact address > div { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; }
.footer-contact address svg { width: 17px; height: 17px; margin-top: 3px; color: #e8b34e; }
.footer-contact address p { display: grid; gap: 3px; margin: 0; }
.footer-contact address a { color: rgba(255, 255, 255, 0.82); }
.footer-hours { display: grid; grid-template-columns: 18px 1fr; gap: 10px; margin-bottom: 20px; }
.footer-hours svg { width: 17px; height: 17px; margin-top: 3px; color: #e8b34e; }
.footer-hours p { display: grid; gap: 2px; margin: 0; }
.footer-hours strong { color: var(--white); font-size: 0.76rem; }
.footer-hours span { font-size: 0.69rem; }
.footer-online h2:nth-of-type(2) { margin-top: 18px; margin-bottom: 8px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: var(--container); min-height: 54px; margin: 0 auto; border-top: 1px solid rgba(255, 255, 255, 0.11); color: rgba(255, 255, 255, 0.46); font-size: 0.65rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { display: inline-flex; align-items: center; gap: 5px; color: rgba(255, 255, 255, 0.66); }
.footer-bottom a:hover { color: #ffd985; }
.footer-bottom svg { width: 13px; height: 13px; }
.floating-contact { position: fixed; right: 18px; bottom: 20px; z-index: 45; display: grid; justify-items: end; gap: 8px; width: 126px; pointer-events: none; }
.floating-contact__item { display: grid; overflow: hidden; grid-template-columns: 22px max-content; align-items: center; gap: 9px; width: 46px; min-height: 46px; border: 1px solid rgba(255, 255, 255, 0.28); border-radius: 23px; padding: 8px 11px; color: var(--white); box-shadow: 0 8px 24px rgba(20, 24, 27, 0.2); font-size: 0.72rem; font-weight: 700; pointer-events: auto; transition: width 180ms ease, filter 160ms ease, transform 160ms ease; }
.floating-contact__item span { opacity: 0; transition: opacity 120ms ease 20ms; }
.floating-contact__item:hover,
.floating-contact__item:focus-visible { width: 126px; color: var(--white); filter: brightness(1.08); transform: translateX(-3px); }
.floating-contact__item:hover span,
.floating-contact__item:focus-visible span { opacity: 1; }
.floating-contact__item svg { width: 20px; height: 20px; }
.floating-contact__item b { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border: 1px solid rgba(255, 255, 255, 0.78); border-radius: 50%; font-family: Arial, sans-serif; font-size: 0.8rem; line-height: 1; }
.floating-contact__item--phone { background: #d80d19; }
.floating-contact__item--zalo { background: #0877c9; }
.floating-contact__item--facebook { background: #1877f2; }
.lightbox-open .floating-contact { opacity: 0; pointer-events: none; }

.page-hero { border-bottom: 1px solid var(--line); background: linear-gradient(180deg, #fff, #fbfbfb); }
.page-hero > div { width: var(--container); margin: 0 auto; padding: 46px 0 36px; text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 3.5vw, 2.85rem); }
.page-hero p:last-child { max-width: 70ch; margin: 10px auto 0; color: var(--muted); font-size: 0.86rem; }
.page-hero [data-advice-count] { color: var(--red); font-weight: 600; white-space: nowrap; }
.article-list { max-width: 1000px; padding-top: 32px; padding-bottom: 64px; }
.article-row { display: grid; grid-template-columns: 190px 1fr; gap: 22px; align-items: center; border-bottom: 1px solid var(--line); padding: 15px 0; }
.article-row:first-child { padding-top: 0; }
.article-row__image { display: block; overflow: hidden; width: 190px; border-radius: 4px; }
.article-row img { width: 190px; aspect-ratio: 16 / 10; object-fit: cover; transition: transform 220ms ease; }
.article-row:hover img { transform: scale(1.025); }
.article-row__meta { display: flex; flex-wrap: wrap; gap: 7px 14px; margin-bottom: 4px; color: var(--muted); font-size: 0.65rem; }
.article-row__meta span:first-child { color: var(--red); font-weight: 700; }
.article-row h2 { font-size: clamp(1.05rem, 1.6vw, 1.32rem); line-height: 1.35; }
.article-row p { display: -webkit-box; overflow: hidden; margin: 6px 0; color: var(--muted); font-size: 0.76rem; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.article-row a { color: var(--red); font-size: 0.72rem; font-weight: 700; }
.article-row h2 a { color: var(--ink); font-size: inherit; }
.article-row h2 a:hover { color: var(--red); }
.article-loading { width: 100%; margin: 0; padding: 45px 0; color: var(--muted); text-align: center; }
.noscript-notice { width: var(--container); margin: 0 auto 48px; border: 1px solid #efdad3; border-radius: var(--radius); background: #fff6f2; padding: 16px; text-align: center; }

.article-detail { width: min(920px, calc(100vw - 48px)); margin: 0 auto; padding: 38px 0 68px; }
.article-breadcrumb { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 32px; color: var(--muted); font-size: 0.72rem; }
.article-breadcrumb a { color: var(--red); font-weight: 600; }
.article-header { max-width: 850px; margin: 0 auto 30px; text-align: center; }
.article-header h1 { font-size: clamp(2rem, 4.5vw, 3.35rem); line-height: 1.14; }
.article-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; margin-top: 17px; color: var(--muted); font-size: 0.72rem; }
.article-meta > * { position: relative; }
.article-meta > *:not(:last-child)::after { position: absolute; top: 50%; right: -11px; width: 3px; height: 3px; border-radius: 50%; background: #adb1b4; content: ""; }
.article-cover { margin: 0 0 35px; }
.article-cover img { width: 100%; max-height: 560px; border-radius: var(--radius); object-fit: cover; }
.article-cover figcaption { margin-top: 8px; color: var(--muted); font-size: 0.68rem; text-align: center; }
.article-content { max-width: 760px; margin: 0 auto; color: #3d4347; font-size: 0.98rem; line-height: 1.85; }
.article-content > p { margin: 0 0 20px; }
.article-content .article-lead { margin-bottom: 30px; color: var(--ink); font-family: var(--font-art); font-size: clamp(1.12rem, 2vw, 1.35rem); font-weight: 600; line-height: 1.65; }
.article-content__heading { margin: 38px 0 14px; font-size: clamp(1.35rem, 2.4vw, 1.75rem); line-height: 1.35; }
.article-content__list { display: grid; gap: 10px; margin: 4px 0 26px; padding-left: 22px; }
.article-content__list li { padding-left: 5px; }
.article-inline-image { margin: 32px 0; }
.article-inline-image img { width: 100%; max-height: 500px; border-radius: var(--radius); object-fit: cover; }
.article-inline-image figcaption { margin-top: 8px; color: var(--muted); font-size: 0.68rem; text-align: center; }
.article-tip { margin: 30px 0; border-left: 4px solid var(--gold); background: #fffaf1; padding: 18px 20px; }
.article-tip strong { display: block; margin-bottom: 4px; color: var(--ink); }
.article-tip p { margin: 0; color: #555b60; }
.article-table-wrap { overflow-x: auto; margin: 26px 0; border: 1px solid var(--line); border-radius: var(--radius); }
.article-table { width: 100%; min-width: 570px; border-collapse: collapse; font-size: 0.78rem; line-height: 1.5; }
.article-table th,
.article-table td { border-bottom: 1px solid var(--line); padding: 12px 14px; text-align: left; vertical-align: top; }
.article-table th { background: #f7f7f6; color: var(--ink); font-weight: 700; }
.article-table tr:last-child td { border-bottom: 0; }
.article-contact { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 48px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 28px 0; }
.article-contact h2 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
.article-contact p { max-width: 56ch; margin: 7px 0 0; color: var(--muted); font-size: 0.8rem; }
.article-contact__actions { display: flex; flex: 0 0 auto; gap: 9px; }
.article-state { min-height: 54vh; padding: 90px 0; text-align: center; }
.article-state h1,
.article-state h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.article-state p { margin: 12px auto 24px; color: var(--muted); }
.related-section { border-top: 1px solid var(--line); background: #fbfbfa; }
.related-section__inner { width: var(--container); margin: 0 auto; padding: 48px 0 58px; }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.related-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.related-card a { display: grid; }
.related-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.related-card span { margin: 12px 14px 4px; color: var(--red); font-size: 0.66rem; font-weight: 700; text-transform: uppercase; }
.related-card h3 { min-height: 58px; padding: 0 14px 16px; font-size: 0.92rem; line-height: 1.4; }

.gallery-app { padding-top: 34px; padding-bottom: 64px; }
.gallery-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 16px; }
.gallery-toolbar h2 { font-size: clamp(1.35rem, 2vw, 1.8rem); }
.gallery-count { color: var(--muted); font-size: 0.74rem; font-weight: 600; }
.filter-row { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 23px; }
.filter-btn { min-width: 38px; min-height: 34px; border: 1px solid var(--line); border-radius: 4px; background: var(--white); color: var(--ink); padding: 7px 10px; cursor: pointer; font-size: 0.7rem; font-weight: 600; }
.filter-btn:hover { border-color: #bdc1c4; }
.filter-btn[aria-pressed="true"] { border-color: var(--red); background: var(--red); color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.gallery-card { overflow: hidden; min-width: 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); padding: 0; cursor: zoom-in; text-align: left; transition: box-shadow 160ms ease, transform 160ms ease; }
.gallery-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.gallery-card img { width: 100%; aspect-ratio: 4 / 3; background: var(--soft); object-fit: cover; }
.gallery-card > span { display: grid; gap: 2px; padding: 10px 11px; }
.gallery-card strong { overflow: hidden; font-size: 0.76rem; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
.gallery-card small { color: var(--muted); font-size: 0.62rem; text-transform: uppercase; }
.empty-state { border: 1px dashed #d9b7ad; border-radius: var(--radius); background: #fff9f6; padding: 34px; text-align: center; }
.empty-state h2 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
.empty-state p { margin: 8px 0 0; color: var(--muted); font-size: 0.82rem; }
.lightbox { position: fixed; inset: 0; z-index: 90; display: grid; grid-template-columns: 56px minmax(0, 1fr) 56px; place-items: center; background: rgba(25, 28, 31, 0.95); padding: 24px; }
.lightbox[hidden] { display: none; }
.lightbox figure { display: grid; gap: 12px; max-width: min(1000px, 78vw); max-height: 90vh; margin: 0; }
.lightbox img { max-width: 100%; max-height: 78vh; margin: 0 auto; border-radius: 4px; object-fit: contain; box-shadow: 0 26px 65px rgba(0, 0, 0, 0.38); }
.lightbox figcaption { color: var(--white); font-size: 0.82rem; font-weight: 600; text-align: center; }
.lightbox__close { display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 50%; background: transparent; color: var(--white); cursor: pointer; }
.lightbox__close { position: fixed; top: 19px; right: 19px; width: 38px; height: 38px; font-size: 1.6rem; line-height: 1; }
.lightbox__nav { width: 42px; height: 52px; border: 0; background: transparent; color: var(--white); cursor: pointer; font-family: Arial, sans-serif; font-size: 2rem; font-weight: 400; line-height: 1; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8); }

@media (max-width: 1060px) {
  .site-header__inner { grid-template-columns: 130px 1fr auto; }
  .main-nav { gap: 18px; }
  .header-phone span { display: none; }
  .header-phone { min-width: 38px; justify-content: center; padding: 8px 10px; }
  .hero__content { grid-template-columns: 0.95fr 1.05fr; min-height: 520px; }
  .hero__copy { padding-right: 34px; }
  .hero h1 { font-size: clamp(3.5rem, 6.5vw, 4.55rem); }
  .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
  .service-card div { min-height: 66px; }
  .timeline article { padding-left: 48px; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .value-image { grid-column: 1 / -1; min-height: 340px; }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 38px 56px; }
}

@media (max-width: 820px) {
  :root { --container: min(100vw - 32px, 1240px); }
  .site-header__inner { grid-template-columns: 1fr auto; min-height: 68px; }
  .site-header { min-height: 68px; }
  .brand { width: 112px; height: 48px; }
  .brand img { width: 100%; height: auto; }
  .menu-toggle { display: block; grid-column: 2; grid-row: 1; }
  .header-actions { display: none; }
  .main-nav { position: fixed; top: 68px; right: 16px; left: 16px; display: none; flex-direction: column; align-items: stretch; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); padding: 8px; box-shadow: var(--shadow-lg); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 14px 12px; }
  .main-nav a::after { display: none; }
  .hero__content { grid-template-columns: 1fr; min-height: auto; }
  .hero__copy { max-width: 680px; padding: 46px 0 34px; }
  .hero__media { min-height: 440px; }
  .hero-proof { position: relative; bottom: auto; left: auto; width: var(--container); margin: -34px auto 0; border-bottom: 1px solid var(--line); border-radius: var(--radius); }
  .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .timeline article { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
  .timeline article:not(:last-child)::after { display: none; }
  .timeline article:last-child { grid-column: 1 / -1; }
  .local-seo,
  .faq { grid-template-columns: 1fr; gap: 24px; }
  .footer-highlight__inner { min-height: 74px; }
  .article-row { grid-template-columns: 160px 1fr; }
  .article-row__image,
  .article-row img { width: 160px; }
  .article-contact { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 580px) {
  :root { --container: min(100vw - 24px, 1240px); }
  body { font-size: 14px; }
  .hero__copy { padding-top: 36px; }
  .hero h1 { font-size: clamp(2.75rem, 13vw, 3.8rem); }
  .hero h1 span { font-size: 1.55rem; }
  .hero__slogan { font-size: 1.18rem; }
  .hero__actions { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .btn--phone { min-width: 0; padding: 10px 9px; }
  .btn--phone svg { width: 20px; height: 20px; }
  .btn--phone strong { font-size: 0.8rem; }
  .hero__media { min-height: 320px; }
  .hero-proof { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: -16px; border-radius: var(--radius); padding: 14px 9px; }
  .hero-proof div { padding: 5px 8px 5px 28px; }
  .hero-proof div:nth-child(2) { border-right: 0; }
  .hero-proof div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .hero-proof div::before { top: 9px; left: 7px; }
  .hero-proof div::after { top: 12px; left: 11px; }
  .section { padding: 42px 0; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .process-band__inner { padding-top: 38px; padding-bottom: 38px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline article:last-child { grid-column: auto; }
  .value-grid { grid-template-columns: 1fr; }
  .value-image { grid-column: auto; min-height: 250px; }
  .footer-highlight__inner { align-items: flex-start; flex-direction: column; gap: 12px; padding: 18px 0; }
  .footer-highlight__inner > a { width: 100%; justify-content: center; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 32px; padding: 38px 0 34px; }
  .footer-logo { width: 184px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 6px; min-height: 74px; padding: 15px 160px 15px 0; }
  .floating-contact { right: 10px; bottom: 12px; display: flex; gap: 7px; width: auto; }
  .floating-contact__item { display: flex; justify-content: center; width: 46px; min-height: 46px; padding: 0; border-radius: 50%; }
  .floating-contact__item span { position: absolute; overflow: hidden; width: 1px; height: 1px; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
  .floating-contact__item:hover,
  .floating-contact__item:focus-visible { width: 46px; transform: translateY(-2px); }
  .page-hero > div { padding: 38px 0 30px; }
  .article-list { padding-top: 20px; }
  .article-row { grid-template-columns: 112px 1fr; gap: 14px; align-items: start; padding: 14px 0; }
  .article-row__image,
  .article-row img { width: 112px; }
  .article-row img { aspect-ratio: 1 / 1; }
  .article-row__meta { gap: 3px 9px; }
  .article-row__meta span:last-child { display: none; }
  .article-row h2 { font-size: 0.92rem; }
  .article-row p { -webkit-line-clamp: 2; font-size: 0.7rem; }
  .article-detail { width: min(100vw - 24px, 920px); padding-top: 24px; }
  .article-breadcrumb { margin-bottom: 22px; }
  .article-header { text-align: left; }
  .article-header h1 { font-size: clamp(1.75rem, 8vw, 2.4rem); }
  .article-header .section-note { margin-bottom: 10px; }
  .article-meta { justify-content: flex-start; gap: 6px 14px; }
  .article-meta > *:not(:last-child)::after { right: -8px; }
  .article-cover { margin-right: -12px; margin-left: -12px; }
  .article-cover img { border-radius: 0; }
  .article-inline-image { margin-right: -12px; margin-left: -12px; }
  .article-inline-image img { border-radius: 0; }
  .article-content { font-size: 0.92rem; line-height: 1.78; }
  .article-content__heading { margin-top: 32px; }
  .article-contact__actions { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .article-contact__actions .btn { min-width: 0; padding-right: 10px; padding-left: 10px; }
  .related-grid { grid-template-columns: 1fr; }
  .related-card a { grid-template-columns: 112px 1fr; grid-template-rows: auto 1fr; }
  .related-card img { grid-row: 1 / 3; width: 112px; height: 100%; aspect-ratio: 1 / 1; }
  .related-card span { margin-top: 11px; }
  .related-card h3 { min-height: 0; padding-bottom: 12px; font-size: 0.82rem; }
  .gallery-toolbar { align-items: start; flex-direction: column; gap: 8px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .gallery-card > span { padding: 8px; }
  .lightbox { display: flex; align-items: center; justify-content: center; padding: 0; }
  .lightbox figure { width: 100vw; max-width: none; max-height: 100dvh; gap: 10px; }
  .lightbox img { width: 100vw; max-width: none; max-height: calc(100dvh - 76px); border-radius: 0; box-shadow: none; }
  .lightbox figcaption { padding: 0 44px 12px; }
  .lightbox__nav { position: fixed; z-index: 2; top: 50%; width: auto; height: auto; padding: 14px 8px; font-size: 1.75rem; transform: translateY(-50%); }
  .lightbox__nav--prev { left: 2px; }
  .lightbox__nav--next { right: 2px; }
}

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