/* Primary: 다크 틸 #1a4a4a — 인테리어·리폼 업종 자동 선정 */
:root {
  --primary: #1a4a4a;
  --primary-hover: #24635f;
  --primary-light: #e8f4f2;
  --accent: #2d7a6a;
  --bg-white: #fff;
  --bg-light: #f8fafc;
  --bg-alt: #f1f5f4;
  --footer-bg: #1e293b;
  --text-dark: #1a2e2e;
  --text-body: #374151;
  --text-muted: #6b7280;
  --border: #e2e8f0;
  --card-radius: 1rem;
  --card-shadow: 0 2px 16px rgba(26,74,74,0.08);
  --card-shadow-hover: 0 12px 32px rgba(26,74,74,0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans KR', 'Pretendard', sans-serif;
  color: var(--text-body);
  background: var(--bg-white);
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-height: 1.7;
}

/* ── ANIMATIONS ── */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.fade-in-up.is-visible { opacity: 1; transform: translateY(0); }

/* ── HEADER ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226,232,240,0.6);
  transition: all 0.3s ease;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text-dark);
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 5px;
}
.logo-icon span {
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  display: block;
}
.logo-text { font-weight: 800; font-size: 1.1rem; color: var(--text-dark); }
.logo-sub { font-size: 1.1rem; font-weight: 400; color: #888; display: inline; margin-left: 0.4rem; }

.desktop-nav { display: flex; gap: 2rem; list-style: none; }
.desktop-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.2s;
}
.desktop-nav a:hover { color: var(--primary); }

.btn-header-cta {
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-header-cta:hover { background: var(--primary-hover); }

/* Mobile nav */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  z-index: 999;
  padding: 1rem 1.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { color: var(--primary); }
.mobile-nav .btn-cta-mobile {
  display: block;
  margin-top: 1rem;
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 0.875rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 768px) {
  .desktop-nav, .btn-header-cta { display: none; }
  .hamburger { display: flex; }
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-img-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.42);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 1.5rem 3rem;
  max-width: 860px;
  margin: 0 auto;
  color: #fff;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  margin-bottom: 1rem;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
/* Hero STEP */
.hero-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.hero-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  margin: 0.25rem;
}
.step-num {
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-text { font-size: 0.85rem; font-weight: 500; }
.step-arrow {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  margin: 0 0.25rem;
  align-self: center;
}
.btn-hero-cta {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(26,74,74,0.4);
}
.btn-hero-cta:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,74,74,0.5);
}

/* ── SECTION COMMON ── */
section { padding: 5rem 1.5rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 560px;
  line-height: 1.7;
}
.section-header { margin-bottom: 3rem; }

/* ── SERVICE GRID ── */
#services { background: var(--bg-light); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
@media (max-width: 1024px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }

.service-card {
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--primary);
}
.service-thumb {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.service-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.service-card:hover .service-thumb img { transform: scale(1.04); }
.service-body { padding: 0.875rem; }
.service-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--primary);
  color: #fff;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}
.service-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}
.service-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-more {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 0.5rem;
  transition: color 0.2s;
  display: block;
}
.service-card:hover .service-more { color: var(--primary); }

/* ── PORTFOLIO ── */
#portfolio { background: var(--bg-white); }
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.portfolio-grid.expanded { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 640px) {
  .portfolio-grid,
  .portfolio-grid.expanded { grid-template-columns: 1fr; }
}
.card-hidden { display: none; }
.card-wrap {
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.card-wrap:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-3px);
}
.card-image-wrap {
  display: flex;
  overflow: hidden;
  border-radius: var(--card-radius) var(--card-radius) 0 0;
}
.card-image-wrap .img-cell {
  flex: 1;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}
.card-image-wrap .img-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.card-wrap:hover .card-image-wrap .img-cell img { transform: scale(1.03); }
.card-image-wrap .img-cell + .img-cell { border-left: 1px solid rgba(255,255,255,0.6); }
.label-before {
  position: absolute;
  bottom: 0; left: 0;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.5rem;
  border-radius: 0 0.25rem 0 0;
}
.label-after {
  position: absolute;
  bottom: 0; right: 0;
  background: var(--primary);
  color: #fff;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem 0 0 0;
}
.card-body { padding: 1.25rem; }
.card-meta {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
}
.card-tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--primary);
}
.card-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}
.card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}
.card-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.btn-load-more {
  display: block;
  margin: 2.5rem auto 0;
  padding: 0.875rem 2.5rem;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-load-more:hover { background: var(--primary); color: #fff; }

/* ── PROCESS ── */
#process { background: var(--bg-light); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process-grid { grid-template-columns: 1fr; } }

.process-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  position: relative;
}
.process-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.process-icon {
  width: 48px; height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.process-icon svg { width: 24px; height: 24px; color: var(--primary); }
.process-title { font-size: 1rem; font-weight: 800; color: var(--text-dark); margin-bottom: 0.5rem; }
.process-desc { font-size: 0.83rem; color: var(--text-muted); font-weight: 300; line-height: 1.6; }

/* ── FAQ ── */
#faq { background: var(--bg-white); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  overflow: hidden;
  background: #fff;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}
.faq-q:hover { color: var(--primary); }
.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.faq-icon svg { width: 12px; height: 12px; color: var(--text-muted); transition: transform 0.3s; }
.faq-item.open .faq-icon { background: var(--primary); border-color: var(--primary); }
.faq-item.open .faq-icon svg { color: #fff; transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-a { display: block; }

/* ── CTA SECTION ── */
#cta {
  background: linear-gradient(135deg, #1e3a3a 0%, #1a4a4a 50%, #1a3d4f 100%);
  color: #fff;
  text-align: center;
}
.cta-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.cta-desc {
  font-size: 1rem;
  opacity: 0.8;
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.9;
}
.trust-badge svg { width: 18px; height: 18px; opacity: 0.7; }
.btn-cta-main {
  display: inline-block;
  background: #fff;
  color: var(--primary);
  padding: 1rem 2.5rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-cta-main:hover { background: var(--primary-light); transform: translateY(-2px); }

/* ── MAIN PAGE BANNER ── */
.main-banner {
  background: var(--primary-light);
  border: 1px solid var(--primary);
  border-radius: var(--card-radius);
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
}
.main-banner h3 { font-size: 1.1rem; font-weight: 800; color: var(--primary); margin-bottom: 0.5rem; }
.main-banner p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }
.btn-main-link {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-main-link:hover { background: var(--primary-hover); }

/* ── RELATED PAGES ── */
.related-pages { display: flex; gap: 1rem; flex-wrap: wrap; }
.related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--primary);
  border-radius: 999px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.related-link:hover { background: var(--primary); color: #fff; }

/* ── FOOTER ── */
footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 1.5rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo { margin-bottom: 1rem; }
.footer-logo .logo-text { color: #fff; }
.footer-brand-desc {
  font-size: 0.83rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.footer-biz {
  font-size: 0.75rem;
  line-height: 1.8;
  opacity: 0.55;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.95); }
.footer-cta-btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  margin-top: 0.75rem;
}
.footer-cta-btn:hover { background: var(--primary-hover); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  opacity: 0.45;
}

/* ── FLOATING BUTTON ── */
#floating-btn {
  position: fixed;
  bottom: 1.75rem;
  right: 1.5rem;
  z-index: 900;
}
.floating-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  background: var(--primary);
  color: #fff;
  padding: 0.875rem 1.25rem;
  border-radius: 1rem;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(26,74,74,0.4);
  transition: all 0.3s;
}
.floating-cta:hover { background: var(--primary-hover); transform: translateY(-3px); }
.floating-cta svg { width: 22px; height: 22px; }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-sep { opacity: 0.4; }
.breadcrumb-current { color: var(--primary); font-weight: 600; }
.breadcrumb-wrap { margin-top: 64px; background: var(--bg-light); border-bottom: 1px solid var(--border); }

/* ── 404 ── */
.page-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem;
}
.page-404 h1 { font-size: 5rem; font-weight: 800; color: var(--primary); opacity: 0.2; }
.page-404 h2 { font-size: 1.5rem; font-weight: 800; color: var(--text-dark); margin-bottom: 1rem; }
.page-404 p { color: var(--text-muted); margin-bottom: 2rem; }
.btn-back-home {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.875rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

/* ── CONSULTATION PAGE ── */
.consult-form {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2.5rem;
  box-shadow: var(--card-shadow);
}
.consult-notice {
  background: var(--primary-light);
  border-left: 3px solid var(--primary);
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 2rem;
}
.contact-methods { display: flex; gap: 1rem; flex-direction: column; }
.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: var(--card-radius);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.contact-btn-call {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
}
.contact-btn-call:hover { background: var(--primary-hover); border-color: var(--primary-hover); }
.contact-btn-sms {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.contact-btn-sms:hover { background: var(--primary-light); }
.contact-btn svg { width: 22px; height: 22px; }
.contact-info { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.contact-info-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
}
.contact-info-label { color: var(--text-muted); font-weight: 400; }
.contact-info-value { font-weight: 600; color: var(--text-dark); }

/* ── SITEMAP PAGE ── */
.sitemap-hero {
  background: linear-gradient(135deg, #1e3a3a, #1a4a4a);
  color: #fff;
  padding: 5rem 1.5rem 3rem;
  text-align: center;
  margin-top: 64px;
}
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .sitemap-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .sitemap-grid { grid-template-columns: repeat(2, 1fr); } }
.sitemap-card {
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #fff;
  transition: all 0.3s;
}
.sitemap-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); border-color: var(--primary); }
.sitemap-card-img { aspect-ratio: 4/3; overflow: hidden; }
.sitemap-card-img img { width: 100%; height: 100%; object-fit: cover; }
.sitemap-card-body { padding: 1rem; }
.sitemap-card-title { font-size: 0.9rem; font-weight: 800; color: var(--text-dark); margin-bottom: 0.25rem; }
.sitemap-card-desc { font-size: 0.75rem; color: var(--text-muted); }
