/* ============================================
   N&M RESTORATION — Global Stylesheet
   White-base, clean, professional
   LiteFrame CMS: goes in /style.css
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&display=swap');

/* ---- Variables ---- */
:root {
  --gold: #D4A825;
  --gold-light: #e2be4a;
  --yellow: #FFD700;
  --black: #111111;
  --black-soft: #1a1a1a;
  --dark: #0d0d0d;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --gray-100: #f4f5f8;
  --gray-200: #e8e9ed;
  --gray-300: #d1d3d8;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #1f2937;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --container: 1400px;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition-fast); }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
}

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 100px 0; }
.section-alt { background: var(--gray-100); }
.section-dark { background: var(--black); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.text-gold { color: var(--gold); }

/* ---- Section Headers ---- */
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header .section-label { display: block; text-align: center; }
.section-header h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
.section-desc {
  color: var(--gray-500);
  max-width: 600px;
  margin: 8px auto 0;
}
.section-header--row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  flex-wrap: wrap;
  gap: 16px;
}

/* ---- Prose (wysiwyg output) ---- */
.prose { color: var(--gray-500); line-height: 1.8; }
.prose p { margin-bottom: 16px; }
.prose a { color: var(--gold); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 16px; }
.prose li { margin-bottom: 8px; line-height: 1.7; }
.prose blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(212,168,37,0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--gray-700);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,37,0.3);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gray-300);
  color: var(--gray-700);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--black-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.logo img {
  height: 55px;
  width: auto;
  transition: var(--transition);
  filter: brightness(0) invert(1);
}
.site-header.scrolled .logo img {
  height: 45px;
  filter: none;
}
/* Interior pages: header starts solid */
.site-header.header-solid { background: var(--white); padding: 10px 0; box-shadow: 0 2px 20px rgba(0,0,0,0.04); border-bottom: 1px solid rgba(0,0,0,0.06); }
.site-header.header-solid .logo img { filter: none; height: 45px; }
.site-header.header-solid .desktop-nav > .nav-item > a,
.site-header.header-solid .desktop-nav > .nav-item > .nav-trigger { color: var(--gray-700); }
.site-header.header-solid .desktop-nav > .nav-item > a:hover,
.site-header.header-solid .desktop-nav > .nav-item > .nav-trigger:hover { color: var(--gold); background: rgba(212,168,37,0.06); }
.site-header.header-solid .header-phone { color: var(--gray-900); }
.site-header.header-solid .hamburger span { background: var(--gray-900); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  transition: var(--transition);
}
.site-header.scrolled .header-phone { color: var(--gray-900); }
.header-phone svg { width: 18px; height: 18px; stroke: var(--gold); }
.estimate-btn {
  padding: 10px 24px;
  font-size: 0.85rem;
  background: var(--gold);
  color: var(--white);
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
}
.estimate-btn:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 20px rgba(212,168,37,0.4);
  transform: translateY(-1px);
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.desktop-nav > .nav-item { position: relative; }
.desktop-nav > .nav-item > a,
.desktop-nav > .nav-item > .nav-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  border-radius: 8px;
  transition: var(--transition-fast);
  cursor: pointer;
  background: none;
  border: none;
}
.site-header.scrolled .desktop-nav > .nav-item > a,
.site-header.scrolled .desktop-nav > .nav-item > .nav-trigger { color: var(--gray-700); }
.desktop-nav > .nav-item > a:hover,
.desktop-nav > .nav-item > .nav-trigger:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.site-header.scrolled .desktop-nav > .nav-item > a:hover,
.site-header.scrolled .desktop-nav > .nav-item > .nav-trigger:hover { color: var(--gold); background: rgba(212,168,37,0.06); }
.nav-trigger .arrow { width: 12px; height: 12px; transition: var(--transition-fast); }
.nav-item:hover .nav-trigger .arrow { transform: rotate(180deg); }

/* Mega-menu Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 260px;
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  padding: 8px;
  padding-top: 16px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  pointer-events: none;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 16px;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.dropdown a {
  display: block;
  padding: 10px 16px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 8px;
  transition: var(--transition-fast);
}
.dropdown a:hover {
  color: var(--gold);
  background: rgba(212,168,37,0.06);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.site-header.scrolled .hamburger span { background: var(--gray-900); }
.hamburger.active span { background: var(--white) !important; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Mobile Flyout */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  height: 100dvh;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 1050;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 100px 32px 40px;
}
.mobile-nav.active { right: 0; }
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 10;
}
.mobile-nav-close svg { width: 22px; height: 22px; stroke: var(--white); }
.mobile-nav-close:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.25); }
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-nav-overlay.active { opacity: 1; visibility: visible; }
.mobile-nav .mobile-logo { height: 40px; margin-bottom: 40px; filter: brightness(0) invert(1); }
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-links > li > a,
.mobile-nav-links > li > .mobile-dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 8px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  background: none;
  border-top: none; border-left: none; border-right: none;
  width: 100%;
  text-align: left;
}
.mobile-nav-links > li > a:hover,
.mobile-nav-links > li > .mobile-dropdown-trigger:hover { color: var(--gold); }
.mobile-dropdown-trigger .m-arrow { width: 20px; height: 20px; transition: var(--transition); }
.mobile-dropdown-trigger.open .m-arrow { transform: rotate(180deg); }
.mobile-sub-menu { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.mobile-sub-menu.open { max-height: 600px; }
.mobile-sub-menu a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  border-left: 2px solid rgba(255,255,255,0.08);
  margin-left: 8px;
}
.mobile-sub-menu a:hover { color: var(--yellow); border-color: var(--yellow); }
.mobile-nav-cta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-nav-cta .btn { justify-content: center; text-align: center; }
.mobile-nav-cta .btn-outline { border-color: rgba(255,255,255,0.3); color: var(--white); }

/* ============================================
   HOMEPAGE HERO (full-screen with bg image)
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.7);
  z-index: 1;
}
.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 750px;
  color: var(--white);
}
.hero-content h1 { color: var(--white); }
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}
.hero-phone {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 32px;
}
.hero-phone a { color: var(--yellow); text-decoration: none; }
.hero-phone a:hover { text-decoration: underline; }
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero .btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}
.hero .btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Reviews section */
.reviews-section { padding: 60px 0; background: var(--off-white); }

/* ============================================
   PAGE HERO (Interior pages — dark band)
   ============================================ */
.page-hero {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}
.page-hero h1 { color: var(--white); }
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
}

/* ============================================
   INTRO / TWO-COLUMN SECTIONS
   ============================================ */
.intro-section { padding: 100px 0; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.intro-grid.reverse { direction: rtl; }
.intro-grid.reverse > * { direction: ltr; }
.intro-text h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 8px; }
.intro-text h3,
.intro-accent { font-size: 1.15rem; font-weight: 600; color: var(--gold); margin-bottom: 20px; }
.intro-text p { color: var(--gray-500); margin-bottom: 16px; line-height: 1.8; }
.intro-image { border-radius: var(--radius-lg); overflow: hidden; }
.intro-image img { width: 100%; height: 450px; object-fit: cover; }

/* ============================================
   FEATURES / VALUES GRID
   ============================================ */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-card {
  flex: 0 0 calc(33.333% - 16px);
  padding: 36px 28px;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(212,168,37,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.3rem;
  color: var(--gold);
}
.feature-icon svg {
  width: 24px; height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; }

/* ============================================
   VIDEO SPOTLIGHT (centered, testimonial-style)
   ============================================ */
.video-spotlight__embed {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 50.625%; /* 16:9 at 900px */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}
.video-spotlight__embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
  border-radius: var(--radius);
}

/* ============================================
   TEAM
   ============================================ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { overflow: hidden; text-align: center; background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius); transition: var(--transition); }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.team-card-image { height: 300px; overflow: hidden; }
.team-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.team-card:hover .team-card-image img { transform: scale(1.05); }
.team-card-body { padding: 24px; }
.team-card-body h3 { font-size: 1.15rem; margin-bottom: 4px; }
.team-card-body .role { color: var(--gold); font-size: 0.85rem; font-weight: 600; margin-bottom: 12px; }
.team-card-body p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; }

/* ============================================
   FORMS
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; color: var(--gray-700); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gray-900);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,168,37,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* Contact info card */
.contact-info-card { padding: 40px; background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius); }
.contact-info-card h3 { font-size: 1.3rem; margin-bottom: 24px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(212,168,37,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2; }
.contact-info-item h4 { font-size: 0.95rem; margin-bottom: 2px; }
.contact-info-item p { font-size: 0.9rem; color: var(--gray-500); }

/* Service area */
.service-area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.area-card { padding: 24px; text-align: center; background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius); }
.area-card h4 { font-size: 1rem; margin-bottom: 4px; }
.area-card p { font-size: 0.9rem; color: var(--gold); font-weight: 600; }

/* ============================================
   BLOG LAYOUTS
   ============================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { overflow: hidden; display: flex; flex-direction: column; background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius); transition: var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.blog-card-image { height: 220px; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-card-body .meta { font-size: 0.8rem; color: var(--gray-500); margin-bottom: 10px; display: flex; align-items: center; gap: 12px; }
.blog-card-body .meta .cat { color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.blog-card-body h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.35; }
.blog-card-body .excerpt { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 16px; line-height: 1.6; }
.blog-card-body .read-more { margin-top: auto; font-size: 0.85rem; color: var(--gold); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.blog-card-body .read-more:hover { gap: 8px; }

/* Blog single */
.blog-single-layout { display: grid; grid-template-columns: 1fr 360px; gap: 48px; padding: 80px 0 100px; }
.blog-content h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 16px; }
.blog-content .blog-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; font-size: 0.85rem; color: var(--gray-500); }
.blog-content .blog-meta .cat { color: var(--gold); font-weight: 600; }
.blog-content .featured-image { width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius); margin-bottom: 40px; }
.blog-content .post-body h2 { font-size: 1.5rem; margin: 40px 0 16px; }
.blog-content .post-body p { color: var(--gray-500); margin-bottom: 20px; line-height: 1.9; }
.blog-content .post-body ul { padding-left: 24px; margin-bottom: 20px; }
.blog-content .post-body li { color: var(--gray-500); margin-bottom: 8px; line-height: 1.7; }

/* Sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card { padding: 28px; background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius); }
.sidebar-card h3 { font-size: 1rem; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.sidebar-card .sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sidebar-card .sidebar-links a { font-size: 0.9rem; color: var(--gray-500); display: flex; align-items: center; gap: 8px; }
.sidebar-card .sidebar-links a:hover { color: var(--gold); }
.sidebar-card .sidebar-links a::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); opacity: 0.4; }
.sidebar-recent-post { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.04); }
.sidebar-recent-post:last-child { border-bottom: none; }
.sidebar-recent-post img { width: 60px; height: 60px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.sidebar-recent-post h4 { font-size: 0.85rem; line-height: 1.35; margin-bottom: 4px; }
.sidebar-recent-post .date { font-size: 0.75rem; color: var(--gray-500); }
.sidebar-cta { padding: 32px; text-align: center; background: rgba(212,168,37,0.06); border-color: rgba(212,168,37,0.12); }
.sidebar-cta h3 { border: none; padding: 0; margin-bottom: 10px; }
.sidebar-cta p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 20px; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination a, .pagination span { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 10px; font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; border: 1px solid var(--gray-200); color: var(--gray-500); transition: var(--transition-fast); }
.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination .active { background: var(--gold); color: var(--white); border-color: transparent; }

/* ============================================
   SERVICE AREA PAGE
   ============================================ */
.sa-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; padding: 80px 0 100px; }
.sa-content h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin: 40px 0 16px; }
.sa-content h3 { font-size: 1.15rem; margin: 32px 0 12px; }
.sa-content p { color: var(--gray-500); margin-bottom: 20px; line-height: 1.9; }
.sa-content ul { padding-left: 24px; margin-bottom: 20px; }
.sa-content li { color: var(--gray-500); margin-bottom: 10px; line-height: 1.7; }
.sa-content li strong { color: var(--gray-900); }
.sa-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sa-sidebar-nav { padding: 28px; background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius); }
.sa-sidebar-nav h3 { font-size: 1rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.sa-sidebar-nav ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.sa-sidebar-nav a { display: block; padding: 10px 14px; font-size: 0.9rem; color: var(--gray-700); border-radius: 8px; transition: var(--transition-fast); }
.sa-sidebar-nav a:hover { color: var(--gold); background: rgba(212,168,37,0.06); }
.sa-why-section { padding: 60px 0; }
.sa-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.sa-why-grid h3 { color: var(--gold); font-size: 1rem; margin-bottom: 12px; }
.sa-why-grid h2 { margin-bottom: 16px; }
.sa-why-grid p { color: var(--gray-500); line-height: 1.8; }
.embed-placeholder { border: 2px dashed var(--gray-300); border-radius: var(--radius); padding: 60px 32px; text-align: center; color: var(--gray-500); font-family: var(--font-display); font-size: 0.95rem; font-weight: 500; background: var(--gray-100); }
.embed-placeholder .placeholder-label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-300); margin-bottom: 8px; }

/* ============================================
   COLLECTION CARDS (services + articles)
   ============================================ */
/* Service card */
.nm-service-card { display: flex; flex-direction: column; border-radius: var(--radius); overflow: hidden; background: var(--white); border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 2px 12px rgba(0,0,0,0.04); transition: transform 0.3s ease, box-shadow 0.3s ease; text-decoration: none; color: inherit; height: 100%; }
.nm-service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.nm-service-card__image { height: 220px; overflow: hidden; }
.nm-service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.nm-service-card:hover .nm-service-card__image img { transform: scale(1.05); }
.nm-service-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.nm-service-card__title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--black); margin: 0 0 8px; line-height: 1.3; }
.nm-service-card__excerpt { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; margin: 0 0 16px; flex: 1; }
.nm-service-card__link { font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 4px; margin-top: auto; transition: gap 0.2s ease; }
.nm-service-card:hover .nm-service-card__link { gap: 8px; }

/* Article card */
.nm-article-card { display: flex; flex-direction: column; border-radius: var(--radius); overflow: hidden; background: var(--white); border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 2px 12px rgba(0,0,0,0.04); transition: transform 0.3s ease, box-shadow 0.3s ease; text-decoration: none; color: inherit; height: 100%; }
.nm-article-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.nm-article-card__image { height: 200px; overflow: hidden; }
.nm-article-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.nm-article-card:hover .nm-article-card__image img { transform: scale(1.05); }
.nm-article-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.nm-article-card__meta { display: flex; align-items: center; gap: 12px; font-size: 0.78rem; margin-bottom: 10px; }
.nm-article-card__cat { color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.nm-article-card__date { color: var(--gray-500); }
.nm-article-card__title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--black); margin: 0 0 10px; line-height: 1.35; }
.nm-article-card__excerpt { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; margin: 0 0 16px; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.nm-article-card__link { font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 4px; margin-top: auto; transition: gap 0.2s ease; }
.nm-article-card:hover .nm-article-card__link { gap: 8px; }

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.page-hero-intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 24px;
}
.page-hero-intro a { color: var(--gold); }
.page-hero .hero-actions { margin-top: 24px; }
.page-hero .btn-outline { border-color: rgba(255,255,255,0.3); color: var(--white); }
.page-hero .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.svc-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
.svc-two-col:has(.svc-side-image) {
  grid-template-columns: 1fr 1fr;
}
.svc-two-col .svc-content-block { max-width: none; }
.svc-content-block { max-width: 850px; }
.svc-content-block h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 20px; }
.svc-side-image { border-radius: var(--radius); overflow: hidden; }
.svc-side-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); min-height: 300px; }

/* Highlights grid */
.highlights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 900px;
}
.highlight-item {
  flex: 0 0 calc(50% - 8px);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.5;
}
.highlight-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(212,168,37,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlight-check svg { stroke: var(--gold); }

/* Gallery grid */
.svc-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}
.svc-gallery__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 220px;
}
.svc-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.svc-gallery__item:hover img { transform: scale(1.05); }

/* FAQ */
.faq-list { max-width: 850px; }
.faq-item {
  padding: 32px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.faq-item:first-child { padding-top: 0; }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--black);
}
.faq-answer { color: var(--gray-500); }
.faq-img {
  float: right;
  max-width: 300px;
  margin: 0 0 16px 24px;
  border-radius: var(--radius-sm);
}

@media (max-width: 768px) {
  .svc-two-col:has(.svc-side-image) { grid-template-columns: 1fr; }
  .faq-img { float: none; max-width: 100%; margin: 0 0 16px 0; }
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  padding: 80px 0;
  text-align: center;
  background: var(--gold);
  color: var(--black);
}
.cta-band h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 12px; color: var(--black); }
.cta-band p { font-size: 1.1rem; opacity: 0.7; margin-bottom: 24px; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 0 0;
  color: var(--white);
}
.site-footer h4 { color: var(--white); }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo img { height: 50px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.5); margin-bottom: 20px; line-height: 1.6; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: var(--transition-fast); }
.footer-socials a:hover { background: rgba(212,168,37,0.1); border-color: var(--gold); }
.footer-socials a svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.6); }
.footer-socials a:hover svg { fill: var(--gold); }
.footer-links h4 { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
  .header-phone { display: none; }
  .intro-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-grid.reverse { direction: ltr; }
  .features-grid .feature-card { flex: 0 0 calc(50% - 12px); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-single-layout { grid-template-columns: 1fr; }
  .blog-sidebar { order: -1; }
  .sa-layout { grid-template-columns: 1fr; gap: 40px; }
  .sa-sidebar { order: -1; }
  .sa-why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .page-hero { padding: 140px 0 70px; }
  .features-grid .feature-card { flex: 0 0 100%; }
  .highlight-item { flex: 0 0 100%; }
  .team-grid, .blog-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row, .service-area-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-header--row { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .cta-band { padding: 60px 0; }
  .mobile-nav { max-width: 100%; }
  .mobile-nav-links > li > a,
  .mobile-nav-links > li > .mobile-dropdown-trigger { font-size: 1.25rem; }
}

/* Focus & Accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.skip-link { position: absolute; top: -100%; left: 16px; padding: 12px 24px; background: var(--gold); color: var(--white); font-weight: 700; border-radius: 0 0 8px 8px; z-index: 10000; transition: top 0.2s; }
.skip-link:focus { top: 0; }