:root {
  --bg: #fffdf9;
  --bg-soft: #ffffff;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --surface-deep: #fff4e8;
  --line: rgba(206, 176, 138, 0.22);
  --line-strong: rgba(206, 176, 138, 0.34);
  --text: #2d3748;
  --muted: #6b7280;
  --gold: #bf8d56;
  --gold-soft: #f7e7cf;
  --blue: #8eb4d5;
  --rose: #d4a4a0;
  --shadow: 0 24px 60px rgba(223, 195, 158, 0.2);
  --shadow-soft: 0 12px 28px rgba(223, 195, 158, 0.16);
  --radius-xl: 32px;
  --radius-lg: 26px;
  --radius-md: 20px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

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

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  color: var(--text);
  background: #fffdf9;
  font-family: 'Manrope', 'Noto Sans SC', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea {
  font: inherit;
}

textarea {
  resize: vertical;
}

.page-ambient {
  display: none;
}

.container {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fffdf9;
  border-bottom: 1px solid rgba(206, 176, 138, 0.18);
  box-shadow: 0 4px 12px rgba(231, 217, 197, 0.08);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(222, 205, 181, 0.45);
  transition: transform 0.3s ease;
}

.brand:hover img {
  transform: scale(1.05) rotate(2deg);
}

.brand strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
}

.brand span,
.site-footer p,
.section-note {
  color: var(--muted);
}

.brand span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 14px;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), #f0d1a6);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-nav a:hover,
.site-nav a.is-active,
.text-link:hover,
.news-card h3 a:hover,
.related-news-item:hover {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.header-cta::before,
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.header-cta:hover::before,
.btn-primary:hover::before {
  left: 100%;
}

.header-cta,
.btn-primary {
  background: linear-gradient(135deg, #d29d5d 0%, #e4bc87 52%, #f7e0c0 100%);
  color: #fff;
  box-shadow: 0 18px 40px rgba(222, 183, 130, 0.3);
  font-weight: 600;
}

.btn-secondary {
  color: var(--text);
  background: #ffffff;
  border: 1px solid rgba(206, 176, 138, 0.22);
  box-shadow: var(--shadow-soft);
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(222, 183, 130, 0.35);
}

.btn-block {
  width: 100%;
}

.section-shell {
  padding: 80px 0;
}

.section-shell-soft {
  background: #faf8f5;
}

.section-strip {
  padding-top: 0;
  padding-bottom: 0;
}

/* ====== Hero Banner (Full-width Carousel) ====== */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: 92vh;
  overflow: hidden;
  background: #1a202c;
}

.hero-banner__track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  height: 92vh;
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 50%, #2d3748 100%);
}

.hero-banner__slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
}

.hero-banner__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.45) 50%, rgba(15, 23, 42, 0.2) 100%);
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-banner__content {
  max-width: 720px;
  padding: 40px 0;
}

.hero-banner__eyebrow {
  color: #f6e0c4;
}

.hero-banner__eyebrow::before {
  background: #f6e0c4;
}

.hero-banner__title {
  margin: 20px 0 0;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.12;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.03em;
  transition: opacity 0.4s ease;
}

.hero-banner__desc {
  margin-top: 24px;
  font-size: 19px;
  color: #ffffff;
  line-height: 1.85;
  max-width: 540px;
  transition: opacity 0.4s ease;
}

.hero-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.hero-banner__actions .btn-secondary {
  color: #ffffff;
  background: #4a5568;
  border: 1px solid #718096;
  backdrop-filter: none;
}

.hero-banner__actions .btn-secondary:hover {
  background: #2d3748;
}

.hero-banner__dots {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.hero-banner__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #718096;
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.hero-banner__dot.is-active {
  width: 34px;
  background: #ffffff;
}

/* ====== Footer ====== */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(206, 176, 138, 0.12);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand strong {
  font-size: 18px;
  color: #1a202c;
  display: block;
  margin-bottom: 4px;
}

.footer-brand p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.footer-logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
}

.footer-contact-info {
  display: flex;
  gap: 48px;
}

.footer-contact-item {
  text-align: right;
}

.footer-contact-item span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.footer-contact-item strong {
  font-size: 16px;
  color: #1a202c;
  font-weight: 600;
}

.footer-qr-section {
  display: flex;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(206, 176, 138, 0.12);
}

.footer-qr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-qr-card img {
  width: 110px;
  height: 110px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-qr-card span {
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.hero-copy h1,
.page-hero__content h1,
.section-head h2,
.cta-banner h2,
.article-header h1,
.contact-form-wrap h2,
.contact-block__intro h2 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: #1a202c;
  font-weight: 700;
}

.hero-copy h1 {
  margin-top: 16px;
  font-size: clamp(38px, 5.8vw, 58px);
  max-width: 13ch;
  line-height: 1.16;
}

.page-hero__content {
  max-width: 780px;
  padding: 100px 0 20px;
}

.page-hero__content h1 {
  margin-top: 16px;
  font-size: clamp(40px, 7vw, 64px);
}

.hero-copy p,
.page-hero__content p,
.section-head p,
.service-card p,
.case-card p,
.contact-block p,
.contact-form-wrap p,
.article-content p,
.news-card p,
.fit-card p,
.process-card p,
.contact-promise-card p,
.cta-banner p {
  color: var(--muted);
  line-height: 1.9;
}

.hero-copy p {
  max-width: 700px;
  margin-top: 22px;
  font-size: 18px;
  color: #4a5568;
  line-height: 1.95;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.trust-points,
.marquee-strip,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-points {
  margin-top: 0;
  justify-content: center;
}

.trust-points span,
.marquee-strip span,
.process-card__index,
.case-card__tag,
.news-card__meta span,
.panel-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.trust-points span,
.marquee-strip span,
.news-card__meta span {
  min-height: 42px;
  padding: 0 20px;
  background: #ffffff;
  border: 1px solid rgba(206, 176, 138, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

.hero-stage {
  display: grid;
  gap: 18px;
}

.hero-panel,
.hero-metric-card,
.hero-showcase-card,
.stat-grid article,
.service-card,
.case-card,
.news-card,
.process-card,
.fit-card,
.contact-block,
.contact-form-wrap,
.contact-promise-card,
.contact-meta div,
.qr-card-page,
.cta-banner,
.article-card,
.article-side-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(223, 195, 158, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-panel:hover,
.service-card:hover,
.case-card:hover,
.news-card:hover,
.process-card:hover,
.fit-card:hover,
.contact-promise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(223, 195, 158, 0.18);
  border-color: var(--line-strong);
}

.hero-panel,
.hero-showcase-card,
.contact-block,
.contact-form-wrap,
.article-card,
.article-side-card,
.cta-banner {
  padding: 30px;
}

.hero-panel-lead {
  background: #fffdfb;
}

.panel-kicker {
  min-height: 34px;
  padding: 0 14px;
  color: var(--gold);
  background: rgba(247, 231, 207, 0.88);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel h3,
.hero-showcase-copy h3 {
  margin: 16px 0 10px;
  font-size: 28px;
  line-height: 1.25;
  color: #2d3748;
  font-weight: 600;
}

.hero-panel p,
.hero-showcase-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.hero-metric-card span,
.contact-meta span,
.news-card__footer span,
.article-meta span {
  color: var(--muted);
  font-size: 13px;
}

.hero-metric-card p,
.news-card__footer,
.related-news-item span {
  margin: 10px 0 0;
  color: var(--muted);
}

.hero-gallery-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(223, 195, 158, 0.08);
}

.hero-gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.hero-gallery-head h3 {
  margin: 14px 0 0;
  font-size: 28px;
  line-height: 1.24;
  color: #2d3748;
  font-weight: 600;
}

.hero-gallery-shell {
  overflow: hidden;
  border-radius: 30px;
}

.hero-gallery-track {
  display: flex;
  transition: transform 0.55s ease;
}

.hero-gallery-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: 560px;
  overflow: hidden;
  border-radius: 30px;
}

.hero-gallery-slide__media,
.hero-gallery-slide__media img {
  width: 100%;
  height: 100%;
}

.hero-gallery-slide__media img {
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-gallery-slide:hover .hero-gallery-slide__media img {
  transform: scale(1.05);
}

.hero-gallery-slide__overlay {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  max-width: 420px;
  padding: 24px 24px 22px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(223, 195, 158, 0.08);
}

.hero-gallery-slide__label {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-gallery-slide__overlay h4 {
  margin: 12px 0 0;
  font-size: 30px;
  line-height: 1.18;
  color: #1a202c;
  font-weight: 700;
}

.hero-gallery-slide__overlay p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.hero-gallery-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-gallery-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(191, 141, 86, 0.24);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-gallery-dot.is-active {
  width: 34px;
  background: linear-gradient(90deg, #d5a064, #e9c99f);
}

.marquee-strip {
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
  justify-content: center;
}

.section-head {
  margin-bottom: 48px;
}

.section-head-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.section-head-split > * {
  flex: 1;
}

.section-head h2,
.cta-banner h2,
.contact-form-wrap h2,
.contact-block__intro h2,
.compact-head h2 {
  margin-top: 16px;
  font-size: clamp(28px, 4vw, 42px);
  color: #1a202c;
  font-weight: 700;
  line-height: 1.2;
}

.section-head p {
  margin: 0;
  max-width: 480px;
  font-size: 16px;
}

.stat-grid,
.service-grid,
.feature-grid,
.news-grid,
.process-grid,
.fit-grid,
.contact-promises,
.qr-grid-page {
  display: grid;
  gap: 24px;
}


.brand-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.brand-showcase-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

.brand-showcase-card__media {
  aspect-ratio: 16 / 10;
}

.brand-showcase-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.brand-showcase-card:hover .brand-showcase-card__media img {
  transform: scale(1.08);
}

.brand-showcase-card__body {
  padding: 28px;
}

.brand-showcase-card__body h3 {
  margin: 0;
  font-size: 22px;
  color: #1a202c;
  font-weight: 700;
}

.brand-showcase-card__body p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

.stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-grid article,
.service-card,
.fit-card,
.process-card,
.contact-promise-card,
.qr-card-page {
  padding: 24px;
}

.stat-grid strong {
  display: block;
  font-size: 28px;
  color: #2d3748;
  font-weight: 700;
}

.stat-grid span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.8;
}

.service-grid,
.fit-grid,
.contact-promises,
.qr-grid-page {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.fit-card,
.process-card,
.contact-promise-card {
  padding: 32px;
}

.service-card h3,
.case-card h3,
.news-card h3,
.fit-card h3,
.process-card h3,
.contact-promise-card strong,
.article-side-card h2 {
  margin: 0;
  font-size: 22px;
  color: #1a202c;
  font-weight: 700;
  line-height: 1.35;
}

.service-card p,
.fit-card p,
.process-card p,
.contact-promise-card p,
.case-card p,
.news-card p,
.article-content p {
  margin: 14px 0 0;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.75;
}

.feature-grid,
.case-list,
.news-grid-full {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-list {
  display: grid;
  gap: 28px;
}

.case-card__media {
  margin: -8px -8px 18px;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 16 / 10;
}

.case-card {
  padding: 28px;
}

.case-card__media img,
.news-card__media img,
.article-cover-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-card:hover .case-card__media img,
.news-card:hover .news-card__media img {
  transform: scale(1.06);
}

.case-card__tag {
  min-height: 34px;
  padding: 0 14px;
  color: var(--gold);
  background: rgba(247, 231, 207, 0.86);
  font-size: 12px;
  font-weight: 700;
}

.case-card strong {
  display: block;
  margin-top: 20px;
  font-size: 15px;
  color: #2d3748;
  font-weight: 600;
}

.case-card--gold {
  background: #fffdf9;
}

.case-card--blue {
  background: #fcfdff;
}

.case-card--rose {
  background: #fffdfc;
}

.news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-card {
  overflow: hidden;
}

.news-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(251, 235, 213, 0.98), rgba(234, 243, 252, 0.98));
}

.news-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(24, 33, 49, 0.44);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.news-card__body {
  padding: 24px;
}

.news-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.news-card h3 {
  margin-top: 18px;
  font-size: 22px;
  line-height: 1.35;
}

.news-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.text-link,
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
}

.back-link {
  margin-bottom: 18px;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card__index {
  min-width: 46px;
  min-height: 46px;
  color: #fff;
  background: linear-gradient(135deg, #d5a064, #efcfaa);
  font-weight: 800;
}

.contact-grid-page {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 48px;
  align-items: start;
  padding-top: 80px;
}

.article-shell .back-link {
  grid-column: 1 / -1;
}

.contact-block__intro p {
  margin-top: 14px;
}

.contact-promises,
.contact-meta,
.qr-grid-page {
  margin-top: 24px;
}

.contact-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-meta div {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.contact-meta div strong {
  display: block;
  margin-top: 12px;
  font-size: 20px;
  line-height: 1.45;
  color: #1a202c;
  font-weight: 700;
}

.contact-form-page {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-form-page label {
  display: grid;
  gap: 10px;
}

.contact-form-page label span {
  font-size: 14px;
  font-weight: 700;
}

.contact-form-page input,
.contact-form-page textarea {
  width: 100%;
  padding: 16px 18px;
  color: var(--text);
  background: #ffffff;
  border: 1px solid rgba(206, 176, 138, 0.24);
  border-radius: 20px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-page input:focus,
.contact-form-page textarea:focus {
  border-color: rgba(182, 138, 85, 0.6);
  box-shadow: 0 0 0 4px rgba(182, 138, 85, 0.12);
}

.form-message {
  min-height: 24px;
  margin: 0;
}

.form-message.is-success {
  color: #2f7a55;
}

.form-message.is-error {
  color: #b15d58;
}

.qr-card-page {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.qr-card-page__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(206, 176, 138, 0.18);
}

.qr-card-page strong {
  display: block;
  margin-top: 16px;
  font-size: 18px;
  color: #1a202c;
  font-weight: 700;
}

.qr-card-page p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.qr-card-page__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  color: var(--muted);
  text-align: center;
  line-height: 1.8;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(135deg, #f7f0e6 0%, #faf5ee 50%, #f0ebe3 100%);
  position: relative;
  overflow: hidden;
  padding: 48px;
  border-radius: 24px;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -15%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(191, 141, 86, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner p,
.site-footer p {
  margin: 14px 0 0;
}

.article-header {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(133, 102, 63, 0.14);
}

.article-meta {
  margin-top: 20px;
}

.article-cover-wrap {
  margin-top: 28px;
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: 16 / 8.2;
  background: linear-gradient(135deg, rgba(251, 235, 213, 0.98), rgba(234, 243, 252, 0.98));
}

.article-cover-wrap.is-empty {
  display: none;
}

.article-content {
  margin-top: 28px;
  font-size: 16px;
}

.article-content h2,
.article-content h3 {
  margin: 28px 0 0;
}

.compact-head {
  margin-bottom: 14px;
}

.compact-head h2 {
  font-size: 28px;
}

.related-news-list {
  display: grid;
  gap: 12px;
}

.related-news-item {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(206, 176, 138, 0.18);
}

.related-news-item strong {
  font-size: 16px;
  line-height: 1.5;
}

.section-note {
  margin: 18px 0 0;
  text-align: center;
}

.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

.pagination-btn,
.pagination-status {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(223, 195, 158, 0.06);
}

.pagination-btn {
  min-width: 112px;
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-weight: 700;
}

.pagination-btn.disabled {
  opacity: 0.4;
  cursor: default;
}

.pagination-status {
  min-height: 48px;
  padding: 10px 22px;
  display: grid;
  text-align: center;
}

.pagination-status strong {
  font-size: 15px;
  color: #2d3748;
  font-weight: 700;
}

.pagination-status span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

/* ====== Tools Section ====== */
.tools-category {
  margin-bottom: 48px;
}

.tools-category:last-child {
  margin-bottom: 0;
}

.tools-category__title {
  font-size: 22px;
  font-weight: 700;
  color: #1a202c;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(206, 176, 138, 0.18);
  letter-spacing: -0.02em;
}

.tools-category__title::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 10px;
  vertical-align: middle;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.tool-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(206, 176, 138, 0.15);
  transition: all 0.25s ease;
  cursor: default;
}

.tool-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(210, 157, 93, 0.12);
  transform: translateY(-2px);
}

.tool-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.tool-item__icon--img { background: #fef3e2; }
.tool-item__icon--video { background: #e8f4fd; }
.tool-item__icon--pdf { background: #fde8e8; }
.tool-item__icon--doc { background: #e8fdf0; }
.tool-item__icon--other { background: #f3e8fd; }

.tool-item__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

.tools-intro-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 780px;
  margin-top: 16px;
}

/* ====== Tools CTA on homepage ====== */
.tools-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #faf8f5 0%, #fff4e8 100%);
  border: 1px solid rgba(206, 176, 138, 0.15);
}

.tools-cta-strip p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.tools-cta-strip .tools-cta-link {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  transition: color 0.2s;
}

.tools-cta-strip .tools-cta-link:hover {
  color: #a07030;
}

.site-footer {
  padding: 60px 0 56px;
  background: linear-gradient(180deg, #fffdf9 0%, #fffaf4 100%);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(133, 102, 63, 0.12);
}

/* ====== Floating QR Button ====== */
.floating-qr-wrap {
  position: fixed;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  z-index: 100;
}

.floating-qr-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d29d5d 0%, #e4bc87 52%, #f7e0c0 100%);
  border: 0;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(210, 157, 93, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.floating-qr-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 36px rgba(210, 157, 93, 0.5);
}

.floating-qr-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.floating-qr-btn .qr-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(210, 157, 93, 0.3);
  animation: qrPulse 2s ease-out infinite;
}

@keyframes qrPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.floating-qr-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(206, 176, 138, 0.15);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 180px;
}

.floating-qr-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.floating-qr-panel .qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.floating-qr-panel img {
  width: 150px;
  height: 150px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.floating-qr-panel .qr-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.floating-qr-panel .qr-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 24px;
  height: 24px;
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.floating-qr-panel .qr-close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--text);
}

@media (max-width: 1080px) {
  .hero-grid,
  .contact-grid-page,
  .article-shell,
  .hero-gallery-head {
    grid-template-columns: 1fr;
  }

  .stat-grid,
  .process-grid,
  .feature-grid,
  .news-grid,
  .case-list,
  .brand-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head-split,
  .cta-banner,
  .footer-inner,
  .footer-top,
  .header-inner {
    align-items: flex-start;
  }

  .section-head-split,
  .cta-banner,
  .footer-inner,
  .footer-top {
    flex-direction: column;
  }

  .footer-contact-info {
    flex-direction: column;
    gap: 16px;
  }

  .footer-contact-item {
    text-align: left;
  }
}

@media (max-width: 820px) {
  .site-nav {
    display: none;
  }

  .hero-banner {
    min-height: 560px;
  }

  .hero-banner__track {
    height: 560px;
  }

  .hero-grid {
    min-height: auto;
    padding: 72px 0 16px;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .stat-grid,
  .service-grid,
  .feature-grid,
  .news-grid,
  .process-grid,
  .fit-grid,
  .contact-promises,
  .qr-grid-page,
  .contact-meta,
  .case-list,
  .brand-showcase-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap,
  .contact-block,
  .article-card,
  .article-side-card,
  .hero-panel,
  .hero-gallery-card,
  .cta-banner {
    padding: 24px;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .header-cta {
    width: 100%;
  }

  .hero-gallery-slide {
    min-height: 420px;
  }

  .page-hero__content {
    padding-top: 84px;
  }

  .article-shell {
    padding-top: 64px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100%, calc(100% - 24px));
  }

  .hero-banner {
    min-height: 480px;
  }

  .hero-banner__track {
    height: 480px;
  }

  .hero-banner__desc {
    font-size: 15px;
  }

  .section-shell {
    padding: 56px 0;
  }

  .hero-copy h1,
  .page-hero__content h1,
  .section-head h2,
  .cta-banner h2,
  .contact-form-wrap h2,
  .contact-block__intro h2,
  .article-header h1 {
    line-height: 1.08;
  }

  .hero-actions,
  .hero-banner__actions,
  .news-card__footer,
  .news-pagination {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-gallery-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-gallery-slide__overlay {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
    padding: 20px;
  }

  .hero-gallery-slide__overlay h4 {
    font-size: 24px;
  }

  .pagination-status {
    border-radius: 24px;
  }

  .btn,
  .btn-secondary,
  .btn-primary {
    width: 100%;
  }

  .footer-qr-section {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .floating-qr-wrap {
    top: 50%;
    right: 16px;
    bottom: auto;
  }

  .floating-qr-btn {
    width: 52px;
    height: 52px;
  }

  .floating-qr-panel {
    right: 0;
    bottom: 64px;
    padding: 16px;
    gap: 16px;
  }

  .floating-qr-panel img {
    width: 130px;
    height: 130px;
  }
}
