@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --red:          #C8102E;
  --red-dark:     #A00D24;
  --dark:         #1A1A1A;
  --dark-2:       #252525;
  --stone:        #7A6352;
  --gold:         #B8934A;
  --off-white:    #F7F3EE;
  --gray-100:     #EFE9E1;
  --gray-200:     #DDD5C8;
  --gray-400:     #ADA49A;
  --gray-500:     #7D756C;
  --gray-700:     #4A4440;
  --white:        #FFFFFF;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --max-w:       1240px;
  --section-pad: 5rem;

  --shadow-sm:  0 1px 4px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.18);
  --shadow-xl:  0 24px 60px rgba(0,0,0,0.25);

  --ease: 0.25s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.625rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 700; font-family: var(--font-sans); letter-spacing: 0.02em; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-secondary:hover { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn-outline { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--white); }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 0.9rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(20,20,20,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow var(--ease);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.4); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo { flex-shrink: 0; }
.logo img { height: 50px; width: auto; max-width: none; }
.main-nav { display: flex; align-items: center; }
.nav-item { position: relative; }
.nav-link {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  transition: color var(--ease);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0.875rem; right: 0.875rem;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #1A1A1A;
  border-top: 2px solid var(--red);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--red);
  min-width: 250px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--ease);
  box-shadow: var(--shadow-xl);
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; }
.nav-dropdown a {
  display: block;
  padding: 0.575rem 1.25rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.68);
  border-left: 2px solid transparent;
  transition: all var(--ease);
}
.nav-dropdown a:hover {
  color: var(--white);
  border-left-color: var(--red);
  padding-left: 1.5rem;
  background: rgba(255,255,255,0.04);
}

.header-cta { display: flex; align-items: center; gap: 1.25rem; flex-shrink: 0; }
.header-phone {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color var(--ease);
}
.header-phone:hover { color: var(--red); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px 4px;
}
.menu-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  transition: all var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE NAV
   ============================================================ */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #111;
  display: flex;
  flex-direction: column;
  padding: 6rem 2rem 3rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  font-size: 1.2rem;
  font-family: var(--font-serif);
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--ease);
}
.mobile-nav-link:hover { color: var(--white); }
.mobile-nav-sub { padding: 0.5rem 1.25rem; }
.mobile-nav-sub a {
  display: block;
  padding: 0.45rem 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color var(--ease);
}
.mobile-nav-sub a:hover { color: rgba(255,255,255,0.85); }
.mobile-nav-phone {
  display: block;
  margin-top: 2rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.mobile-nav-phone:hover { color: var(--red); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 7s ease-out;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(20,20,20,0.88) 0%,
    rgba(20,20,20,0.65) 55%,
    rgba(20,20,20,0.4) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding-top: 78px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--red); }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; text-shadow: 0 2px 24px rgba(0,0,0,0.35); }
.hero-tagline {
  font-size: 1.125rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.75rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
}
.trust-chip svg { color: var(--red); flex-shrink: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  animation: scrollBounce 2.2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50% { transform: translateX(-50%) translateY(-8px); opacity: 0.7; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar { background: var(--red); padding: 1.125rem 0; }
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.trust-bar-item {
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--white);
  font-size: 0.875rem; font-weight: 600;
}
.trust-bar-item svg { opacity: 0.9; flex-shrink: 0; }
.trust-bar-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.3); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: var(--section-pad) 0; }
.section-light { background: var(--off-white); }
.section-dark { background: var(--dark); color: var(--white); }
.section-stone { background: var(--gray-100); }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red); margin-bottom: 1rem;
}
.section-label::before, .section-label::after { content: ''; width: 22px; height: 1px; background: var(--red); }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.0625rem; color: var(--gray-500); line-height: 1.75; margin: 0; }
.section-dark .section-header p { color: rgba(255,255,255,0.6); }

.divider { width: 56px; height: 3px; background: var(--red); margin: 1.25rem auto; }
.divider-left { margin: 1.25rem 0; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 2px;
  background: var(--gray-200);
  border: 2px solid var(--gray-200);
}
.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: background var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--ease);
}
.service-card:hover { background: var(--off-white); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon { width: 44px; height: 44px; margin-bottom: 1.25rem; color: var(--red); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.65; margin-bottom: 1.25rem; }
.service-link {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--red);
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap var(--ease);
}
.service-link:hover { gap: 0.8rem; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5px; background: rgba(255,255,255,0.06); }
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(2,1fr); max-width: 620px; margin: 0 auto; } }
.why-item { padding: 3rem 2rem; text-align: center; background: var(--dark-2); }
.why-number {
  font-family: var(--font-serif);
  font-size: 3.75rem; font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.why-item h4 {
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--white); margin-bottom: 0.5rem;
}
.why-item p { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin: 0; }
.quote-includes { display: grid; grid-template-columns: 1fr; gap: 1.25rem; max-width: 980px; margin: 0 auto; }
@media (min-width: 768px) { .quote-includes { grid-template-columns: repeat(3,1fr); } }
.qi-item { display: flex; gap: 0.85rem; align-items: flex-start; background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px; padding: 1.5rem; }
.qi-check { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--red); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 700; }
.qi-item h4 { font-size: 1rem; margin-bottom: 0.35rem; }
.qi-item p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; margin: 0; }
.video-embed { position: relative; width: 100%; max-width: 860px; margin: 0 auto; aspect-ratio: 16/9; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.15); background: #000; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-preview {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-auto-rows: 215px;
  gap: 0.5rem;
}
.gallery-preview .gi { height: 100%; }
.gallery-preview .gi:first-child { grid-column: span 2; grid-row: span 2; }
.gi {
  position: relative;
  overflow: hidden;
  background: var(--gray-200);
  cursor: pointer;
}
.gi img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.gi:hover img { transform: scale(1.06); }
.gi-overlay {
  position: absolute; inset: 0;
  background: rgba(20,20,20,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--ease);
}
.gi:hover .gi-overlay { opacity: 1; }
.gi-overlay svg { color: var(--white); }

.gallery-filter {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 2.5rem; justify-content: center;
}
.filter-btn {
  padding: 0.5rem 1.2rem;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  background: var(--white); border: 1.5px solid var(--gray-200);
  color: var(--gray-700); cursor: pointer;
  transition: all var(--ease);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--red); border-color: var(--red); color: var(--white);
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.5rem;
}
.gallery-masonry .gi { aspect-ratio: 4/3; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 1.5rem; }
.tc {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--red);
  padding: 2rem;
  transition: box-shadow var(--ease);
}
.tc:hover { box-shadow: var(--shadow-md); }
.stars { display: flex; gap: 2px; margin-bottom: 1rem; color: #F5A623; font-size: 1rem; }
.tc-text {
  font-size: 0.9375rem; line-height: 1.75;
  color: var(--gray-700); font-style: italic;
  margin-bottom: 1.25rem;
}
.tc-text::before { content: '\201C'; }
.tc-text::after  { content: '\201D'; }
.tc-author { font-weight: 700; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; }
.tc-date { font-size: 0.8rem; color: var(--gray-400); margin-top: 0.2rem; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { background: var(--red); padding: 4.5rem 0; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.88); font-size: 1.0625rem; margin-bottom: 2.25rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.btn-white { background: var(--white); color: var(--red); border-color: var(--white); font-weight: 700; }
.btn-white:hover { background: transparent; color: var(--white); border-color: var(--white); }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  background: var(--dark);
  padding: 8.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.25;
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
  margin-bottom: 1rem; flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--ease); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { opacity: 0.35; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.72); max-width: 600px; line-height: 1.7; }

/* ============================================================
   SERVICE PAGE LAYOUT
   ============================================================ */
.service-content { padding: 5rem 0; }
.service-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) { .service-layout { grid-template-columns: 1fr 340px; } }

.service-body > * + * { margin-top: 1.25rem; }
.service-body h2 { font-size: 1.875rem; margin-top: 2.5rem !important; }
.service-body h2:first-child { margin-top: 0 !important; }
.service-body h3 { font-size: 1.2rem; font-family: var(--font-sans); font-weight: 700; color: var(--dark); margin-top: 2rem !important; }
.service-body p { color: var(--gray-700); line-height: 1.8; }
.service-body ul { margin: 1rem 0 1.5rem; }
.service-body ul li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: var(--gray-700); font-size: 0.9375rem;
}
.service-body ul li::before {
  content: '';
  position: absolute; left: 0; top: 0.88rem;
  width: 8px; height: 2px; background: var(--red);
}
.service-body img { width: 100%; margin: 2rem 0; border: 4px solid var(--gray-100); }
.service-body .callout {
  border-left: 4px solid var(--red);
  background: var(--off-white);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.service-body .callout p { margin: 0; font-weight: 500; }

.sidebar-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.sidebar-card h4 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gray-500); margin-bottom: 1.25rem;
  padding-bottom: 0.75rem; border-bottom: 1px solid var(--gray-200);
}
.sidebar-card .btn { width: 100%; justify-content: center; }
.sidebar-services a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.575rem 0;
  font-size: 0.9rem; color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
  transition: color var(--ease);
}
.sidebar-services a:hover { color: var(--red); }
.sidebar-services li:last-child a { border-bottom: none; }
.sidebar-contact { background: var(--dark); color: var(--white); }
.sidebar-contact h4 { color: rgba(255,255,255,0.45); border-color: rgba(255,255,255,0.1); }
.c-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 0.2rem; }
.c-value { margin-bottom: 1rem; overflow-wrap: anywhere; }
.c-value a { color: var(--white); font-weight: 500; }
.c-value a[href^="mailto"] { font-size: 0.8125rem; letter-spacing: -0.01em; }
.c-value a:hover { color: var(--red); }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(320px,1fr)); gap: 2rem; }
.blog-card { border: 1px solid var(--gray-200); overflow: hidden; transition: box-shadow var(--ease); }
.blog-card:hover { box-shadow: var(--shadow-lg); }
.bc-img { aspect-ratio: 16/9; overflow: hidden; background: var(--gray-100); }
.bc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .bc-img img { transform: scale(1.04); }
.bc-body { padding: 1.75rem; }
.bc-meta { display: flex; gap: 1rem; font-size: 0.78rem; color: var(--gray-500); margin-bottom: 0.75rem; flex-wrap: wrap; }
.bc-cat { font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--red); }
.blog-card h3 { font-size: 1.175rem; margin-bottom: 0.75rem; }
.blog-card h3 a:hover { color: var(--red); }
.blog-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.65; margin-bottom: 1.25rem; }
.read-more {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--red); display: inline-flex; align-items: center; gap: 0.4rem;
}

.post-content { padding: 5rem 0; }
.post-inner { max-width: 820px; margin: 0 auto; }
.post-meta { display: flex; gap: 1rem; font-size: 0.82rem; color: var(--gray-500); margin-bottom: 0.75rem; }
.post-meta .bc-cat { color: var(--red); }
.post-inner h1 { margin-bottom: 2rem; }
.post-body h2 { font-size: 1.75rem; margin: 2.5rem 0 1rem; }
.post-body h3 { font-size: 1.25rem; font-family: var(--font-sans); font-weight: 700; margin: 2rem 0 0.75rem; }
.post-body p { color: var(--gray-700); line-height: 1.85; margin-bottom: 1.25rem; }
.post-body ul { margin: 1rem 0 1.5rem; padding-left: 1.5rem; }
.post-body ul li { margin-bottom: 0.5rem; color: var(--gray-700); }
.post-body img { margin: 2rem 0; }
.post-body .callout {
  border-left: 4px solid var(--red);
  background: var(--off-white);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.post-body .callout p { margin: 0; font-weight: 500; color: var(--gray-700); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 900px) { .contact-layout { grid-template-columns: 1fr 360px; } }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label {
  display: block;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray-700); margin-bottom: 0.4rem;
}
input, select, textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-sans); font-size: 0.9375rem;
  color: var(--dark); background: var(--white);
  border: 1.5px solid var(--gray-200);
  transition: border-color var(--ease);
  appearance: none; border-radius: 0;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--red); }
textarea { min-height: 120px; resize: vertical; }
.checkbox-group { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-top: 0.5rem; }
.check-item { display: flex; align-items: flex-start; gap: 0.5rem; cursor: pointer; font-size: 0.875rem; color: var(--gray-700); }
.check-item input[type="checkbox"] { appearance: auto; -webkit-appearance: auto; width: 18px; height: 18px; padding: 0; border: none; border-radius: 0; margin-top: 3px; accent-color: var(--red); }
.form-note { font-size: 0.82rem; color: var(--gray-500); margin-top: 0.75rem; }

.contact-info-panel { background: var(--dark); color: var(--white); padding: 2.5rem; height: fit-content; }
.contact-info-panel h3 { color: var(--white); margin-bottom: 2rem; font-size: 1.2rem; }
.ci-item { margin-bottom: 1.75rem; }
.ci-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); margin-bottom: 0.3rem; }
.ci-value { font-size: 0.9375rem; color: rgba(255,255,255,0.85); }
.ci-value a { color: rgba(255,255,255,0.85); transition: color var(--ease); }
.ci-value a:hover { color: var(--red); }
.areas-wrap { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.75rem; }
.area-tag {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.25rem 0.7rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.65);
}
.map-embed { margin-top: 2rem; }
.map-embed iframe { display: block; border: 3px solid var(--gray-200); }

.contact-section { padding: 4rem 0 5rem; }
.contact-form-wrap h2 { font-size: 1.5rem; margin-bottom: 1.75rem; }
.contact-info-card { background: var(--off-white); padding: 1.75rem; margin-bottom: 1.5rem; }
.contact-info-card h3 { font-size: 1rem; margin-bottom: 1.25rem; color: var(--dark); }
.ci-icon { width: 36px; height: 36px; background: var(--red); color: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; border-radius: 4px; }
.ci-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.ci-item .ci-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 0.2rem; }
.ci-item .ci-value { font-size: 0.9375rem; color: var(--dark); font-weight: 500; }
.ci-item .ci-value a { color: var(--dark); }
.ci-item .ci-value a:hover { color: var(--red); }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-top: 0.5rem; }
.checkbox-label { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; font-size: 0.875rem; color: var(--gray-700); font-weight: 400; letter-spacing: 0; text-transform: none; }
.checkbox-label input[type="checkbox"] { appearance: auto; -webkit-appearance: auto; width: 18px; height: 18px; padding: 0; border: none; border-radius: 0; flex-shrink: 0; accent-color: var(--red); cursor: pointer; }
.req { color: var(--red); }
@media (max-width: 600px) { .checkbox-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: start; }
@media (min-width: 900px) { .about-intro { grid-template-columns: 1fr 1fr; } }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--red); color: var(--white);
  padding: 1.5rem; text-align: center; min-width: 130px;
}
.about-badge .num { font-family: var(--font-serif); font-size: 3rem; font-weight: 700; line-height: 1; }
.about-badge .lbl { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.9; margin-top: 0.3rem; }
.about-text .section-label { justify-content: flex-start; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { color: var(--gray-700); line-height: 1.8; }
.cred-list { margin: 2rem 0; }
.cred-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--gray-200); }
.cred-icon { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.cred-text h4 { font-size: 0.9375rem; margin-bottom: 0.2rem; }
.cred-text p { font-size: 0.875rem; color: var(--gray-500); margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #0F0F0F; color: rgba(255,255,255,0.55); padding: 4rem 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2.5rem; margin-bottom: 3rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-logo { display: block; margin-bottom: 1.25rem; height: 84px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.75; margin-bottom: 1.25rem; }
.footer-phone { display: block; font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; }
.footer-phone:hover { color: var(--red); }
.footer-email a { font-size: 0.875rem; color: rgba(255,255,255,0.55); }
.footer-email a:hover { color: var(--white); }
.footer-col h5 {
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color var(--ease); }
.footer-links a:hover { color: var(--white); }
.footer-areas { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.f-area-tag {
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
  padding: 0.2rem 0.6rem; border: 1px solid rgba(255,255,255,0.09);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
  font-size: 0.78rem;
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: rgba(255,255,255,0.75); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.25s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lb-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: white;
  font-size: 2rem; line-height: 1; opacity: 0.6;
  cursor: pointer; transition: opacity 0.2s;
}
.lb-close:hover { opacity: 1; }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: none; color: white;
  width: 3rem; height: 3rem; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s;
}
.lb-nav:hover { background: rgba(255,255,255,0.2); }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-caption {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,0.7); color: rgba(255,255,255,0.85);
  font-size: 0.875rem; padding: 0.5rem 1rem; white-space: nowrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Header switches to the hamburger menu once the full nav no longer fits */
@media (max-width: 1080px) {
  .main-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
}
@media (max-width: 900px) {
  :root { --section-pad: 3.5rem; }
  .gallery-preview { grid-template-columns: repeat(2,1fr); grid-auto-rows: 180px; }
  .gallery-preview .gi:first-child { grid-column: span 2; grid-row: span 1; height: 220px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .about-badge { bottom: -1rem; right: -0.5rem; }
}
@media (max-width: 600px) {
  :root { --section-pad: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-preview { grid-template-columns: repeat(2,1fr); grid-auto-rows: 42vw; }
  .gallery-preview .gi:first-child { grid-column: span 2; grid-row: span 1; height: auto; aspect-ratio: 16/10; }
  .trust-bar-inner { flex-direction: column; align-items: flex-start; }
  .trust-bar-divider { display: none; }
  .hero-trust { flex-direction: column; gap: 0.75rem; }
  .checkbox-group { grid-template-columns: 1fr; }
}

/* ── Mobile hardening ─────────────────────────────────────── */
/* Prevent any element from forcing horizontal scroll on phones */
html, body { max-width: 100%; overflow-x: hidden; }

@media (max-width: 600px) {
  .container { padding: 0 1.15rem; }
  /* Hero: comfortable height + readable spacing on phones */
  .hero { height: auto; min-height: 88vh; padding: 6rem 0 3.5rem; }
  .hero-content { padding-top: 1rem; }
  .hero-scroll { display: none; }
  /* Full-width, easy-to-tap primary actions */
  .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; justify-content: center; }
  /* Roomier tap targets in the slide-in menu */
  .mobile-nav-link { padding: 1.1rem 0; font-size: 1.35rem; }
}

@media (max-width: 400px) {
  .why-grid { grid-template-columns: 1fr; }
  .gallery-preview { grid-template-columns: 1fr; grid-auto-rows: 62vw; }
  .gallery-preview .gi:first-child { grid-column: 1; }
}

/* ============================================================
   BLOG — LISTING PAGE CARD STYLES (alias for .bc-* pattern)
   ============================================================ */
.blog-card-img-link { display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--gray-100); }
.blog-card-img-link img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img-link img { transform: scale(1.04); }
.blog-card-body { padding: 1.75rem; }
.blog-card-meta { display: flex; gap: 1rem; font-size: 0.78rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
.blog-cat { font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--red); }
.blog-date { color: var(--gray-500); }
.blog-card h2 { font-size: 1.175rem; margin-bottom: 0.75rem; }
.blog-card h2 a { color: var(--dark); }
.blog-card h2 a:hover { color: var(--red); }
.blog-read-more { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); }

/* ============================================================
   BLOG POST LAYOUT
   ============================================================ */
.post-layout {}
.post-hero { position: relative; min-height: 360px; display: flex; align-items: flex-end; overflow: hidden; }
.post-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.4); }
.post-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%); }
.post-hero .container { position: relative; z-index: 1; padding-top: 4rem; padding-bottom: 3rem; }
.post-hero-content { max-width: 800px; }
.post-cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); margin-bottom: 0.75rem; }
.post-hero h1 { color: var(--white); font-size: clamp(1.6rem, 3.5vw, 2.5rem); margin-bottom: 0.75rem; }
.post-hero .post-meta { color: rgba(255,255,255,0.65); font-size: 0.875rem; }
.post-content-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; padding: 4rem 0 5rem; }
@media (min-width: 900px) { .post-content-layout { grid-template-columns: 1fr 300px; } }
.post-lead { font-size: 1.125rem; color: var(--gray-600); line-height: 1.75; font-style: italic; border-left: 4px solid var(--red); padding-left: 1.25rem; margin-bottom: 2rem; }
.post-body ol { margin: 1rem 0 1.5rem; padding-left: 1.5rem; }
.post-body ol li { margin-bottom: 0.5rem; color: var(--gray-700); }
.post-cta { background: var(--off-white); border-left: 4px solid var(--red); padding: 2rem; margin-top: 3rem; }
.post-cta h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.post-cta p { color: var(--gray-700); margin: 0; }
.post-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

/* ============================================================
   TESTIMONIALS PAGE
   ============================================================ */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--red);
  padding: 1.75rem;
  transition: box-shadow var(--ease);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.tc-stars { color: #F5A623; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.tc-text { font-size: 0.9375rem; line-height: 1.75; color: var(--gray-700); font-style: italic; margin-bottom: 1.25rem; }
.tc-author { display: flex; gap: 0.5rem; align-items: center; font-size: 0.875rem; }
.tc-author strong { font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--dark); }
.tc-author span { color: var(--gray-500); font-style: normal; }

/* ============================================================
   UTILITIES
   ============================================================ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-center { text-align: center; }
.text-red { color: var(--red); }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.gap-1 { gap: 1rem; }


/* ============================================================
   HOMEPAGE ISSUE PICKER
   ============================================================ */
.pk-sec{padding:calc(78px + 2.4rem) 0 3.2rem;background:var(--off-white)}
.pk-lead{margin:0 0 1.7rem}
.pk-eyebrow{display:inline-flex;align-items:center;gap:.7rem;font-size:.72rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:var(--red);margin-bottom:.9rem}
.pk-eyebrow::before{content:'';width:26px;height:2px;background:var(--red)}
.pk-lead h1{font-size:clamp(2rem,4vw,3rem);color:var(--dark);margin-bottom:.5rem}
.pk-lead p{color:var(--gray-500);font-size:1.05rem;max-width:62ch;margin:0}
.pk-cta-row{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:1.5rem;margin-top:1.5rem}
.cert-logo{display:inline-flex;align-items:center;justify-content:center;transition:opacity var(--ease)}
.cert-logo:hover{opacity:.8}
.cert-logo img{height:56px;width:auto;display:block}
.cert-logo-wett img{filter:brightness(0)}
.pk-logo{height:96px;width:auto;margin:0 auto 1.1rem;display:block}
.pk-cards{display:grid;grid-template-columns:1fr 1fr;gap:1.4rem;align-items:start}
.pk-card{background:var(--white);border:1px solid var(--gray-200);border-radius:14px;box-shadow:0 12px 34px rgba(40,28,14,.07)}
.pk-pick{padding:1.6rem 1.5rem}
.pk-h2{font-family:var(--font-serif);font-size:1.25rem;text-transform:uppercase;letter-spacing:.02em;color:var(--dark)}
.pk-sub{color:var(--gray-500);font-size:.86rem;margin:.35rem 0 1.15rem}
.pk-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:.7rem}
.pk-thumb{position:relative;aspect-ratio:4/3;border-radius:11px;overflow:hidden;border:3px solid transparent;background:var(--gray-200);padding:0;cursor:pointer;box-shadow:0 4px 13px rgba(30,20,10,.12);transition:box-shadow .18s,border-color .18s}
.pk-ph{position:absolute;inset:0}
.pk-ph img{width:100%;height:100%;object-fit:cover;transition:transform .45s}
.pk-thumb:hover .pk-ph img{transform:scale(1.06)}
.pk-lab{position:absolute;left:0;right:0;bottom:0;background:var(--red);color:#fff;font-size:.62rem;font-weight:700;letter-spacing:.05em;text-transform:uppercase;text-align:center;padding:.44rem .25rem;line-height:1.15}
.pk-thumb.on{border-color:var(--dark);box-shadow:0 9px 22px rgba(30,20,10,.24)}
.pk-thumb.on::after{content:'';position:absolute;top:.4rem;right:.4rem;width:17px;height:17px;border-radius:50%;background:var(--dark) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center no-repeat}
.pk-hint{display:flex;align-items:center;gap:.55rem;margin-top:1.05rem;color:var(--gray-500);font-size:.82rem}
.pk-hint svg{color:var(--stone);flex:0 0 auto}
.pk-detail{padding:2rem 2rem 2.1rem;position:sticky;top:calc(78px + 1rem)}
.pk-dhead{display:flex;align-items:center;gap:1.1rem;margin-bottom:1.3rem}
.pk-dicon{width:70px;height:70px;border-radius:50%;border:1.5px solid var(--gray-200);display:flex;align-items:center;justify-content:center;color:var(--dark);flex:0 0 auto}
.pk-dicon svg{width:36px;height:36px}
.pk-dhead h3{font-size:clamp(1.7rem,2.8vw,2.2rem);color:var(--dark)}
.pk-ul{width:60px;height:3px;background:var(--gold);margin-top:.55rem}
.pk-dimg{border-radius:12px;overflow:hidden;margin-bottom:1.5rem;aspect-ratio:16/9;background:var(--gray-100);border:1px solid var(--gray-200)}
.pk-dimg.pk-tall{aspect-ratio:3/4}
.pk-dimg img{width:100%;height:100%;object-fit:cover;display:block}
.pk-desc{color:var(--gray-700);line-height:1.8;margin-bottom:1.5rem;font-size:1.05rem;max-width:62ch}
.pk-help{display:flex;gap:1rem;align-items:flex-start;background:var(--off-white);border:1px solid var(--gray-200);border-radius:12px;padding:1.2rem 1.3rem;margin-bottom:1.6rem;max-width:62ch}
.pk-help-ic{width:50px;height:50px;border-radius:50%;background:var(--red);color:#fff;display:flex;align-items:center;justify-content:center;flex:0 0 auto}
.pk-help b{display:block;font-size:1.02rem;margin-bottom:.15rem;color:var(--dark)}
.pk-help p{font-size:.92rem;color:var(--gray-700);margin:0;line-height:1.6}
.pk-cta{display:flex;flex-wrap:wrap;gap:.7rem}
.pk-cta .btn{padding:.9rem 1.4rem}
@media(max-width:900px){.pk-cards{grid-template-columns:1fr}.pk-detail{position:static}}
@media(max-width:600px){.pk-grid{grid-template-columns:repeat(2,1fr)}.pk-sec{padding-top:calc(78px + 1.4rem)}}

/* Google rating strip (testimonials) */
.rev-rating{display:flex;flex-wrap:wrap;align-items:center;gap:1rem 1.6rem;background:var(--white);border:1px solid var(--gray-200);border-left:4px solid var(--red);border-radius:12px;padding:1.3rem 1.6rem;margin:0 auto 2.4rem;max-width:760px}
.rr-num{font-family:var(--font-serif);font-weight:700;font-size:2.6rem;color:var(--dark);line-height:1}
.rr-stars{color:#F5A623;font-size:1.15rem;letter-spacing:2px}
.rr-cap{font-size:.85rem;color:var(--gray-500);margin-top:.15rem}
.rr-cap b{color:var(--dark)}
.rr-g{display:flex;align-items:center;gap:.5rem;margin-left:auto;color:var(--gray-700)}
.rr-g span{font-size:.82rem;font-weight:600}
.rr-g:hover{color:var(--red)}
@media(max-width:600px){.rr-g{margin-left:0}}
