/* ============================================
   MANZELLS — Clean & Modern Stylesheet
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================ */

:root {
  --black: #0e0e0e;
  --off-black: #1a1a1a;
  --dark-grey: #2c2c2c;
  --mid-grey: #6b6b6b;
  --light-grey: #e8e5e0;
  --off-white: #f7f5f2;
  --white: #ffffff;
  --accent: #b8955a;
  --accent-light: #d4b07a;
  --accent-dark: #8a6a35;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --nav-height: 72px;
  --section-padding: 90px;
  --container-max: 1200px;
  --radius: 2px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--off-black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-padding) 0; }
.bg-light { background: var(--off-white); }
.bg-dark { background: var(--off-black); }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }

p { font-size: 1rem; line-height: 1.7; color: var(--mid-grey); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-label.light { color: var(--accent-light); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { max-width: 500px; margin: 0 auto; }

.link-arrow {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--accent);
  transition: gap var(--transition);
}
.link-arrow:hover { color: var(--accent-dark); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-outline {
  background: transparent;
  color: var(--off-black);
  border: 1px solid var(--off-black);
}
.btn-outline:hover { background: var(--off-black); color: var(--white); }

.btn-full { width: 100%; justify-content: center; }

.center-cta { text-align: center; margin-top: 3rem; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
  background: white;
  border-radius: 6px;
  padding: 6px 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid-grey);
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--off-black); }

.nav-cta {
  background: var(--off-black) !important;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.72rem !important;
}
.nav-cta:hover { background: var(--dark-grey) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--off-black);
  transition: all var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--light-grey);
  padding: 1.5rem 24px;
  gap: 1.25rem;
}
.nav-mobile a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-black);
}
.nav-mobile.open { display: flex; }

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  padding-top: var(--nav-height);
  animation: heroFadeUp 1s 0.3s both;
}

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

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin-bottom: 2.25rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-phone {
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 2;
}
.hero-phone a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: color var(--transition);
}
.hero-phone a:hover { color: var(--white); }

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--off-black);
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 40px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
}

/* ---- INTRO GRID ---- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-text h2 { margin-bottom: 1.25rem; }
.intro-text p { margin-bottom: 0.75rem; }

.intro-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9rem; }

/* ---- BEFORE/AFTER GRID ---- */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ba-pair {
  position: relative;
}

.ba-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--off-black);
  color: var(--white);
  padding: 4px 10px;
  margin-bottom: 8px;
  border-radius: var(--radius);
}
.after-label { background: var(--accent); }

.ba-pair img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2rem;
  border-radius: var(--radius);
}

.stars { color: var(--accent); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial p { color: rgba(255,255,255,0.75); font-size: 0.95rem; font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-light); }

.light { color: var(--white); }

/* ---- CTA BAND ---- */
.cta-band { background: var(--off-white); border-top: 1px solid var(--light-grey); }
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: 2.2rem; margin-bottom: 0.4rem; }
.cta-band p { color: var(--mid-grey); }
.cta-band-actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ---- PAGE HERO ---- */
.page-hero {
  background: var(--off-black);
  padding: calc(var(--nav-height) + 80px) 24px 80px;
  text-align: center;
}
.page-hero-content h1 { color: var(--white); }
.page-hero-content .section-label { color: var(--accent-light); }

/* ---- VALUES GRID ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.value-card { padding: 1.5rem 0; border-top: 2px solid var(--accent); }
.value-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--light-grey);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.value-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; }

/* ---- PROCESS ---- */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 160px;
  padding: 1.5rem;
}

.process-num {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.process-step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.875rem; }

.process-arrow {
  font-size: 1.5rem;
  color: var(--light-grey);
  align-self: center;
  flex-shrink: 0;
  padding-top: 0.25rem;
}

/* ---- SECTION DIVIDER ---- */
.section-divider { height: 1px; background: var(--light-grey); margin: 0 24px; }

/* ---- SERVICE BLOCK ---- */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-block-text h2 { margin-bottom: 1rem; }
.service-block-text p { margin-bottom: 1rem; }

.service-list {
  margin: 1.25rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.service-list li {
  font-size: 0.875rem;
  color: var(--mid-grey);
  padding-left: 1rem;
  position: relative;
}
.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

.service-block-images img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius);
}

.ba-pair-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--off-black);
  color: var(--white);
  padding: 4px 10px;
  margin-bottom: 8px;
  border-radius: var(--radius);
}

/* ---- PORTFOLIO GALLERY ---- */
.project-details {
  display: flex;
  gap: 0;
  background: var(--off-white);
  border-radius: var(--radius);
  margin-bottom: 3rem;
  overflow: hidden;
  flex-wrap: wrap;
}

.project-detail-item {
  flex: 1;
  min-width: 160px;
  padding: 1.25rem 1.75rem;
  border-right: 1px solid var(--light-grey);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.project-detail-item:last-child { border-right: none; }

.detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.project-detail-item span:last-child { font-size: 0.9rem; color: var(--off-black); }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
}
.gallery-item:hover { opacity: 0.9; transform: scale(1.01); }
.gallery-wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

/* ---- LIGHTBOX ---- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

#lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 2rem;
  opacity: 0.7;
  transition: opacity var(--transition);
  padding: 8px;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }
.lightbox-close { top: 20px; right: 24px; font-size: 1.5rem; }
.lightbox-prev { left: 24px; font-size: 3rem; }
.lightbox-next { right: 24px; font-size: 3rem; }

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }

.contact-detail strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2px;
}

.contact-detail a, .contact-detail span {
  font-size: 0.95rem;
  color: var(--off-black);
  line-height: 1.5;
}
.contact-detail a:hover { color: var(--accent); }

/* Form */
.contact-form-wrap {
  background: var(--off-white);
  padding: 2.5rem;
  border-radius: var(--radius);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-black);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--off-black);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 149, 90, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; }

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: #aaa;
  margin-top: 0.75rem;
}

.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-top: 1rem;
  text-align: center;
}
.form-success.show { display: block; }

/* ---- BREADCRUMBS ---- */
.breadcrumb {
  background: var(--charcoal);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.8rem;
}
.breadcrumb-list li { display: flex; align-items: center; gap: 0.5rem; }
.breadcrumb-list a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.15s; }
.breadcrumb-list a:hover { color: rgba(255,255,255,0.85); }
.breadcrumb-list .breadcrumb-sep { color: rgba(255,255,255,0.25); }
.breadcrumb-list .breadcrumb-current { color: rgba(255,255,255,0.85); }

/* ---- RELATED ARTICLES ---- */
.related-articles { border-top: 1px solid var(--light-grey); padding-top: 3rem; margin-top: 1rem; }
.related-articles h3 {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (max-width: 600px) { .related-grid { grid-template-columns: 1fr; } }

/* ---- BLOG LISTING ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white, #fff);
  border: 1px solid var(--light-grey);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.blog-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.blog-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-card-category {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 0.6rem;
}
.blog-card-title {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.blog-card-excerpt { font-size: 0.95rem; color: var(--mid-grey); line-height: 1.65; flex: 1; }
.blog-card-meta { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--light-grey); display: flex; justify-content: space-between; align-items: center; }
.blog-card-date { font-size: 0.8rem; color: var(--mid-grey); font-family: var(--font-body); }
.blog-card-link { font-size: 0.85rem; font-weight: 500; color: var(--charcoal); text-decoration: none; letter-spacing: 0.03em; }
.blog-card-link:hover { text-decoration: underline; }

/* ---- BLOG POST ---- */
.blog-post-hero { background: var(--charcoal); padding: 80px 0 60px; }
.blog-post-hero .container { max-width: 780px; }
.blog-post-category { font-family: var(--font-body); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 1rem; display: block; }
.blog-post-title { font-family: var(--font-heading, 'Cormorant Garamond', serif); font-size: clamp(2rem, 5vw, 3rem); font-weight: 400; color: #fff; line-height: 1.2; margin-bottom: 1.25rem; }
.blog-post-meta { font-size: 0.85rem; color: rgba(255,255,255,0.45); font-family: var(--font-body); }
.blog-post-cover { width: 100%; max-height: 480px; object-fit: cover; display: block; }
.blog-post-body { max-width: 780px; margin: 0 auto; padding: 3rem 0 4rem; }
.blog-post-body h2 { font-family: var(--font-heading, 'Cormorant Garamond', serif); font-size: 1.9rem; font-weight: 500; color: var(--charcoal); margin: 2.5rem 0 0.8rem; }
.blog-post-body h3 { font-family: var(--font-heading, 'Cormorant Garamond', serif); font-size: 1.35rem; font-weight: 500; color: var(--charcoal); margin: 2rem 0 0.6rem; }
.blog-post-body p { font-size: 1.05rem; line-height: 1.8; color: var(--charcoal); margin-bottom: 1.25rem; }
.blog-post-body ul, .blog-post-body ol { margin: 0 0 1.25rem 1.5rem; }
.blog-post-body li { font-size: 1.05rem; line-height: 1.8; color: var(--charcoal); margin-bottom: 0.4rem; }
.blog-post-body strong { font-weight: 600; }
.blog-pullquote {
  border-left: 3px solid var(--charcoal);
  margin: 2rem 0;
  padding: 0.5rem 0 0.5rem 1.75rem;
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: 1.45rem;
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.5;
}
.blog-cost-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0 2rem; }
.blog-cost-table th { background: var(--charcoal); color: #fff; font-family: var(--font-body); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; padding: 0.75rem 1rem; text-align: left; }
.blog-cost-table td { padding: 0.85rem 1rem; font-size: 0.95rem; color: var(--charcoal); border-bottom: 1px solid var(--light-grey); }
.blog-cost-table tr:last-child td { border-bottom: none; }
.blog-cost-table tr:nth-child(even) td { background: var(--off-white); }
.blog-cta-box {
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  padding: 2rem 2.5rem;
  margin: 3rem 0;
  text-align: center;
}
.blog-cta-box h3 { font-family: var(--font-heading, 'Cormorant Garamond', serif); font-size: 1.8rem; margin-bottom: 0.6rem; font-weight: 500; }
.blog-cta-box p { color: var(--mid-grey); margin-bottom: 1.25rem; }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-post-body { padding: 2rem 0 3rem; }
  .blog-pullquote { font-size: 1.2rem; }
}

/* ---- FAQ ---- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--light-grey); }
.faq-item:first-child { border-top: 1px solid var(--light-grey); }
.faq-question {
  list-style: none;
  padding: 1.2rem 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--charcoal);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: '+'; font-size: 1.4rem; font-weight: 300; flex-shrink: 0; transition: transform 0.2s; }
details[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 0 1.2rem; color: var(--mid-grey); line-height: 1.7; margin: 0; }

/* ---- AREAS WE SERVE ---- */
.areas-grid { display: flex; flex-wrap: wrap; gap: 0.6rem 1rem; justify-content: center; margin-top: 1.5rem; }
.area-tag {
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  color: var(--mid-grey);
  font-family: var(--font-body);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--black);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  margin-bottom: 0;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-contact-info {
  margin-top: 1rem !important;
}
.footer-contact-info a {
  color: var(--accent-light) !important;
  font-size: 0.875rem;
  line-height: 1.8;
}
.footer-contact-info a:hover { color: var(--accent) !important; }

.footer-links h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}

.footer-links a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}

/* ---- FADE-IN ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: none; }
.fade-delay-1 { transition-delay: 0.12s; }
.fade-delay-2 { transition-delay: 0.24s; }
.fade-delay-3 { transition-delay: 0.36s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .gallery-wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  :root { --section-padding: 60px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-headline { font-size: 3.5rem; }
  .stats-bar { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat { padding: 16px 24px; }

  .intro-grid,
  .service-block,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .service-block.reverse { direction: ltr; }

  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr 1fr; }

  .process-steps { flex-direction: column; gap: 16px; }
  .process-arrow { display: none; }

  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-wide { grid-column: span 2; }

  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .project-details { flex-direction: column; }
  .project-detail-item { border-right: none; border-bottom: 1px solid var(--light-grey); }

  .form-row { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.8rem; }
  .hero-actions { flex-direction: column; }
  .hero-phone { display: none; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-wide { grid-column: span 1; aspect-ratio: 16/9; }
}

.hidden { display: none; }

/* ---- SOCIAL ICONS ---- */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  transition: background 0.2s, border-color 0.2s;
}
.footer-social a:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.5);
}
