/* Service Page Styles */
.svc-hero {
  min-height: 70vh; position: relative;
  display: flex; align-items: flex-end;
  padding-top: 94px; overflow: hidden;
}
.svc-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
  filter: brightness(.55);
}
.svc-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,18,10,.92) 0%, rgba(30,18,10,.3) 60%, transparent 100%);
}
.svc-hero-content {
  position: relative; z-index: 1;
  padding: 0 80px 80px; max-width: 800px;
}
.svc-breadcrumb {
  display: flex; gap: 8px; align-items: center;
  margin-bottom: 24px;
}
.svc-breadcrumb a, .svc-breadcrumb span {
  font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; color: rgba(255,255,255,.55); font-weight: 400;
}
.svc-breadcrumb a:hover { color: var(--gold); }
.svc-breadcrumb .sep { color: rgba(255,255,255,.3); }
.svc-breadcrumb .current { color: var(--gold); }
.svc-hero-eyebrow { color: var(--gold); font-size: 14px; letter-spacing: 4px; text-transform: uppercase; font-weight: 400; margin-bottom: 18px; display: block; }
.svc-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(48px, 6vw, 78px); font-weight: 300; color: var(--white); line-height: 1.05; margin-bottom: 16px; }
.svc-hero-sub { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 300; font-style: italic; color: rgba(255,255,255,.7); margin-bottom: 34px; line-height: 1.5; }
.svc-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* main content */
.svc-main { padding: 0 80px; }
.svc-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 90px 0; align-items: center; }
.svc-intro-text .section-title { margin-bottom: 28px; }
.svc-intro-text p { font-size: 17px; line-height: 1.9; color: var(--text); margin-bottom: 18px; }
.svc-intro-img { position: relative; }
.svc-intro-img img { width: 100%; height: 480px; object-fit: cover; }
.svc-intro-img::before {
  content: ''; position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 1px solid var(--gold); z-index: -1; opacity: .5;
}

/* info blocks */
.svc-info-blocks { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: #2a2a2a; margin: 0 -80px; }
.info-block { background: #1e1e1e; padding: 48px 40px; }
.info-block-icon {
  width: 52px; height: 52px; border: 1px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  color: var(--gold);
}
.info-block-icon svg { width: 22px; height: 22px; fill: currentColor; }
.info-block h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: #f0f0f0; margin-bottom: 12px; }
.info-block p { font-size: 16px; line-height: 1.85; color: var(--text); }

/* benefits */
.svc-benefits { padding: 90px 0; }
.svc-benefits-header { margin-bottom: 48px; }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.benefit-item { display: flex; gap: 16px; align-items: flex-start; padding: 28px; background: #242424; }
.benefit-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.benefit-icon svg { width: 18px; height: 18px; fill: var(--white); }
.benefit-text h4 { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 400; color: #f0f0f0; margin-bottom: 6px; }
.benefit-text p { font-size: 15px; line-height: 1.75; color: var(--text); }

/* gallery */
.svc-gallery { background: var(--espresso); padding: 80px; margin: 0 -80px; }
.svc-gallery .section-eyebrow { color: var(--gold-lt); margin-bottom: 12px; }
.svc-gallery .section-title { color: var(--cream); margin-bottom: 40px; }
.svc-gallery .section-title em { color: var(--gold-lt); }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.gallery-grid img { width: 100%; height: 340px; object-fit: cover; display: block; transition: transform .5s ease; }
.gallery-grid img:hover { transform: scale(1.03); }
.gallery-grid .gallery-item { overflow: hidden; position: relative; }
.gallery-grid .gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(42,26,14,.5) 0%, transparent 50%);
  opacity: 0; transition: opacity .35s;
}
.gallery-grid .gallery-item:hover::after { opacity: 1; }

/* FAQ */
.svc-faq { padding: 90px 0; }
.faq-header { margin-bottom: 48px; }
.faq-item {
  border: none !important;
  border-bottom: 1px solid rgba(201,169,110,.18) !important;
  background: transparent !important;
  border-radius: 0 !important;
}
.faq-item:first-child { border-top: 1px solid rgba(201,169,110,.18) !important; }
.faq-question {
  width: 100%; background: none !important; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; text-align: left;
  font-family: 'Jost', sans-serif; font-size: 18px; font-weight: 500;
  color: #f0f0f0 !important;
  transition: color .2s;
}
.faq-question:hover { color: #c9a96e !important; }
.faq-question svg { width: 18px; height: 18px; fill: #c9a96e; flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .45s ease, padding .3s; }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer p { font-family: 'Jost', sans-serif; font-size: 15px; line-height: 1.9; color: rgba(255,255,255,.72) !important; padding-bottom: 24px; }

/* instructions */
.svc-instructions { background: #242424; padding: 80px; margin: 0 -80px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.instruction-col h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: #f0f0f0; margin-bottom: 28px; padding-bottom: 16px; border-bottom: 1px solid var(--gold); }
.instruction-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.instruction-list li { display: flex; gap: 12px; align-items: flex-start; }
.instr-num { width: 24px; height: 24px; border-radius: 50%; background: var(--espresso); color: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 500; flex-shrink: 0; margin-top: 1px; }
.instruction-list li span { font-size: 16px; line-height: 1.75; color: #f0f0f0; }

/* service CTA */
.svc-cta {
  padding: 90px 0; text-align: center;
}
.svc-cta .section-title { margin-bottom: 16px; }
.svc-cta p { font-size: 15px; color: rgba(255,255,255,.65); margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.8; }
.svc-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* related services */
.related-services { background: #2a2a2a; padding: 80px; margin: 0 -80px; }
.related-services .section-eyebrow { color: var(--gold); }
.related-services .section-title { margin-bottom: 40px; color: #f0f0f0; }
.related-services .section-title em { color: rgba(255,255,255,.65); }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.related-card { background: #1e1e1e; text-decoration: none; display: block; overflow: hidden; position: relative; transition: transform .3s; }
.related-card:hover { transform: translateY(-4px); }
.related-card img { width: 100%; height: 200px; object-fit: cover; transition: transform .5s; }
.related-card:hover img { transform: scale(1.05); }
.related-card-body { padding: 20px 22px; }
.related-card-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: #f0f0f0; margin-bottom: 6px; }
.related-card-desc { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.6; }
.related-card-arrow { color: var(--gold); font-size: 18px; position: absolute; top: 16px; right: 18px; opacity: 0; transition: opacity .25s, transform .25s; }
.related-card:hover .related-card-arrow { opacity: 1; transform: translateX(4px); }

/* disclaimer */
.disclaimer { background: #1e1e1e; padding: 30px 80px; border-top: 1px solid var(--sand); }
.disclaimer p { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.7; max-width: 900px; }

/* responsive */
@media(max-width:900px) {
  .svc-hero { min-height: 60vh; padding-top: 140px; }
  .svc-hero-content { padding: 0 20px 48px; }
  .svc-main { padding: 0 20px; }
  .svc-intro { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .svc-intro-img { order: -1; }
  .svc-intro-img img { height: 280px; }
  .svc-intro-img::before { display: none; }
  .svc-info-blocks { grid-template-columns: 1fr; margin: 0; }
  .info-block { padding: 36px 24px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .svc-gallery { padding: 48px 24px; margin: 0; }
  .gallery-grid { grid-template-columns: 1fr; gap: 8px; }
  .gallery-grid img { height: 240px; }
  .svc-faq { padding: 48px 0; }
  .svc-instructions { grid-template-columns: 1fr; padding: 48px 24px; margin: 0; }
  .related-services { padding: 48px 24px; margin: 0; }
  .related-grid { grid-template-columns: 1fr; gap: 12px; }
  .related-card img { height: 180px; }
  .disclaimer { padding: 20px; }
  .svc-cta { padding: 48px 0; }
}

/* ── FAQ styles for new service pages ── */
.faq-item {
  border: none !important;
  border-bottom: 1px solid rgba(201,169,110,.18) !important;
  background: transparent !important;
  border-radius: 0 !important;
  margin-bottom: 0;
}
.faq-item:first-of-type { border-top: 1px solid rgba(201,169,110,.18) !important; }
.faq-q {
  color: #f0f0f0 !important; -webkit-text-fill-color: #f0f0f0 !important;
  font-size: 20px !important; font-weight: 500 !important;
  width: 100%; background: none !important; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; text-align: left;
  font-family: 'Jost', sans-serif;
  letter-spacing: .3px;
  transition: color .2s;
}
.faq-q:hover { color: #c9a96e !important; -webkit-text-fill-color: #c9a96e !important; }
.faq-icon {
  font-size: 22px; font-weight: 300; color: #c9a96e !important;
  -webkit-text-fill-color: #c9a96e !important;
  flex-shrink: 0; margin-left: 20px; line-height: 1;
  transition: transform .3s; font-style: normal;
}
.faq-a {
  padding: 0 0 22px;
  overflow: hidden;
  display: none;
}
.faq-a.open { display: block; }
.faq-a p {
  font-family: 'Jost', sans-serif !important;
  font-size: 15px !important; line-height: 1.9 !important;
  color: rgba(255,255,255,.72) !important;
  -webkit-text-fill-color: rgba(255,255,255,.72) !important;
}

/* Ideal for / What to expect lists */
section ul > li, section ol > li {
  font-size: 16px; line-height: 1.7; color: rgba(255,255,255,.65);
  padding-left: 20px; position: relative;
}
section ul > li::before {
  content: '✦'; position: absolute; left: 0;
  color: var(--gold); font-size: 10px; top: 5px;
}
section ol > li strong {
  color: #f0f0f0; font-weight: 600;
}

@media (max-width: 900px) {
  section[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  section[style*="padding:90px 80px"] {
    padding: 60px 20px !important;
  }
  section[style*="padding:90px 80px;background:#1a1a1a"] {
    padding: 60px 20px !important;
  }
  section[style*="padding:90px 80px;background:#1c1c1c"] {
    padding: 60px 20px !important;
  }
  section[style*="padding:90px 80px;background:#1a1a1a"] {
    padding: 60px 20px !important;
  }
}

/* ── CTA Banner ── */
.cta-banner {
  background: #1a1a1a;
  padding: 90px 80px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,169,110,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner .section-eyebrow { color: var(--gold) !important; font-weight: 700; letter-spacing: 5px; }
.cta-banner .section-title { color: #f0f0f0 !important; margin-bottom: 12px; }
.cta-banner .section-title em { color: var(--gold) !important; font-style: italic; }
.cta-banner p { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,.75); max-width: 500px; }

/* ── Related Services ── */
.related-services { padding: 70px 80px; background: #1e1e1e; }
.related-title { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; background:#1a1a1a; border: 1px solid rgba(201,169,110,.25); text-decoration: none; transition: border-color .25s, transform .25s; }
.related-card:hover { border-color: var(--gold); transform: translateX(4px); }
.related-card-name { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; color: #f0f0f0; margin-bottom: 4px; }
.related-card-desc { font-size: 13px; color: rgba(255,255,255,.65); }
.related-card-arrow { color: var(--gold); font-size: 20px; flex-shrink: 0; }

@media (max-width: 900px) {
  .cta-banner { flex-direction: column; padding: 60px 20px; text-align: center; }
  .cta-banner p { max-width: 100%; }
  .related-services { padding: 50px 20px; }
  .related-grid { grid-template-columns: 1fr; }
}

/* ── Related title text ── */
.related-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px !important; letter-spacing: 6px; text-transform: uppercase;
  color: var(--gold) !important; -webkit-text-fill-color: var(--gold) !important;
  font-weight: 700; margin-bottom: 28px;
}
.related-card-name {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 20px !important; font-weight: 600;
  color: #ffffff !important; -webkit-text-fill-color: #ffffff !important;
  margin-bottom: 5px; line-height: 1.2; letter-spacing: 0.3px;
}
.related-card-desc {
  font-family: 'Jost', sans-serif !important;
  font-size: 13px !important; line-height: 1.55;
  color: rgba(255,255,255,.82) !important; -webkit-text-fill-color: rgba(255,255,255,.82) !important;
}

/* ── CTA banner on new pages ── */
.cta-banner {
  background: #1a1a1a;
  padding: 90px 80px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold);
  position: relative; overflow: hidden;
}
.cta-banner .section-eyebrow { color: var(--gold) !important; font-weight: 700; letter-spacing: 5px; }
.cta-banner .section-title { color: #f0f0f0 !important; font-size: clamp(28px,3vw,46px); margin-bottom: 12px; }
.cta-banner .section-title em { color: var(--gold) !important; }
.cta-banner p { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,.75); max-width: 500px; }
@media (max-width: 900px) {
  .cta-banner { flex-direction: column; padding: 60px 20px; text-align: center; }
  .cta-banner p { max-width: 100%; }
}

@media(max-width:900px){
  .related-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .related-card { 
    flex-direction: column !important; align-items: flex-start !important;
    padding: 0 !important;
    overflow: hidden !important;
  }
  .related-card img { 
    width: 100% !important; height: 200px !important; 
    object-fit: cover !important; display: block !important;
  }
  .related-card-body { padding: 16px 20px !important; width: 100% !important; }
  .related-card-name { font-size: 20px !important; }
  .related-card-desc { font-size: 14px !important; }
  .related-card-arrow { position: absolute !important; top: 16px !important; right: 16px !important; }
  .related-services { padding: 48px 20px !important; }
  .related-title { font-size: 12px !important; letter-spacing: 4px !important; }
}
