:root {
  --ink: #17202a;
  --muted: #5f6b76;
  --cream: #fff7eb;
  --paper: #ffffff;
  --line: #e8dfd2;
  --orange: #f28c28;
  --orange-dark: #c86612;
  --navy: #12213a;
  --green: #2f8f5b;
  --shadow: 0 18px 50px rgba(18, 33, 58, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  background: linear-gradient(rgba(255, 247, 235, 0.78), rgba(255, 247, 235, 0.86)), url("../images/trees-background.png") center / cover fixed no-repeat;
  color: var(--ink);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--navy);
  color: white;
  padding: 10px 14px;
  z-index: 9999;
}
.skip-link:focus { left: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 247, 235, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232, 223, 210, 0.85);
}
.navbar {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  color: var(--navy);
}
.logo-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange), #ffd36a);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(242, 140, 40, 0.35);
}
.logo-text { letter-spacing: -0.02em; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 700;
}
.nav-links a {
  text-decoration: none;
  color: var(--navy);
}
.nav-links a:hover { color: var(--orange-dark); }
.nav-cta {
  background: var(--navy);
  color: white !important;
  padding: 10px 16px;
  border-radius: 999px;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--navy);
  border-radius: 12px;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: white;
}

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
  padding: 70px 0 58px;
}
.hero-content h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.85rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  margin: 12px 0 24px;
  color: var(--navy);
}
.eyebrow {
  margin: 0;
  color: var(--orange-dark);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 900;
}
.hero-copy {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 26px;
}
.hero-content {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(18, 33, 58, 0.08);
}

.hero-actions,
.cta-band {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), #ffd36a);
  color: var(--navy);
  box-shadow: 0 12px 26px rgba(242, 140, 40, 0.30);
}
.btn-secondary {
  background: white;
  color: var(--navy);
  border: 1px solid var(--line);
}
.btn-light {
  background: white;
  color: var(--navy);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
  max-width: 560px;
}
.trust-row div {
  background: rgba(255,255,255,0.68);
  border: 1px solid var(--line);
  padding: 15px;
  border-radius: 18px;
}
.trust-row strong {
  display: block;
  color: var(--navy);
  font-size: 1.3rem;
}
.trust-row span {
  color: var(--muted);
  font-size: 0.9rem;
}
.hero-card {
  background: linear-gradient(180deg, #ffffff, #fff0d9);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 26px;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}
.hero-card img {
  width: 100%;
  border-radius: 24px;
  background: var(--navy);
}
.hero-card-text {
  margin-top: 18px;
  background: var(--navy);
  color: white;
  padding: 22px;
  border-radius: 22px;
}
.hero-card-text h2 { margin: 0 0 6px; }
.hero-card-text p { margin: 0; color: rgba(255,255,255,0.78); }

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}
.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 24px;
  padding: 20px;
}
.section-heading h2,
.about-content h2,
.contact-info h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: -0.045em;
  margin: 10px 0 14px;
  color: var(--navy);
}
.section-heading p,
.about-content p,
.contact-info p { color: var(--muted); }
.service-grid,
.project-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card,
.project-card,
.review-grid blockquote,
.contact-card,
.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 26px rgba(18, 33, 58, 0.06);
}
.service-card {
  padding: 24px;
}
.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: #fff0d9;
  font-size: 1.45rem;
  margin-bottom: 18px;
}
.service-card h3,
.project-card h3 { margin: 0 0 8px; color: var(--navy); }
.service-card p,
.project-card p { margin: 0; color: var(--muted); }

.about-section,
.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}
.about-image {
  background: white;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding: 12px 0 12px 34px;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.project-card { overflow: hidden; }
.project-card div { padding: 20px; }

.video-section {
  padding-top: 34px;
}
.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: #000;
  aspect-ratio: 16 / 9;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.review-grid blockquote {
  margin: 0;
  padding: 24px;
}
.review-grid p {
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0 0 16px;
  font-weight: 700;
}
.review-grid cite { color: var(--muted); font-style: normal; }

.cta-band {
  width: min(1180px, calc(100% - 32px));
  margin: 50px auto 10px;
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--navy), #203f68);
  color: white;
  justify-content: space-between;
}
.cta-band h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}
.cta-band p { margin: 8px 0 0; color: rgba(255,255,255,0.75); }

.contact-section { align-items: start; }
.contact-card {
  display: grid;
  gap: 3px;
  padding: 17px;
  margin-top: 14px;
}
.contact-card strong { color: var(--navy); }
.contact-card a,
.contact-card span { color: var(--muted); text-decoration: none; }
.contact-card a:hover { color: var(--orange-dark); }
.contact-form {
  padding: 26px;
  display: grid;
  gap: 12px;
}
.form-note {
  background: #fff0d9;
  border: 1px solid #ffd9a3;
  padding: 12px 14px;
  border-radius: 14px;
  margin: 0 0 6px;
  color: #74501c;
  font-weight: 700;
}
label { font-weight: 800; color: var(--navy); }
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  background: #fffdf8;
  color: var(--ink);
}
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(242, 140, 40, 0.25);
  border-color: var(--orange);
}
.site-footer {
  padding: 36px 16px;
  text-align: center;
  background: var(--navy);
  color: rgba(255,255,255,0.76);
}
.site-footer p { margin: 6px 0; }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow);
  }
  .nav-links.show { display: flex; }
  .nav-links a { display: block; padding: 8px; }
  .hero,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }
  .hero { min-height: 0; padding-top: 44px; }
  .service-grid,
  .project-grid,
  .review-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .service-grid,
  .project-grid,
  .review-grid,
  .trust-row { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 3rem; }
  .cta-band { align-items: flex-start; }
}


/* ===== Dynamic / interactive website upgrades ===== */
.dynamic-hero { position: relative; }
.dynamic-hero::after {
  content: "";
  position: absolute;
  inset: 30px -18px;
  z-index: -1;
  border-radius: 42px;
  background: radial-gradient(circle at 20% 15%, rgba(255,255,255,0.60), transparent 34%), radial-gradient(circle at 80% 45%, rgba(47,143,91,0.20), transparent 30%);
  pointer-events: none;
}
.type-highlight {
  display: inline-block;
  color: var(--orange-dark);
  min-width: 235px;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.word-out { opacity: 0; transform: translateY(8px); }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.75s ease, transform 0.75s ease; }
.revealed { opacity: 1; transform: translateY(0); }
.stats-row strong { font-size: 1.45rem; }
.service-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: -10px 0 28px; }
.filter-btn {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.84);
  color: var(--navy);
  border-radius: 999px;
  padding: 11px 17px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.filter-btn:hover, .filter-btn.active { transform: translateY(-2px); background: var(--navy); color: white; }
.card-hidden { display: none; }
.gallery-shell { display: grid; grid-template-columns: 54px 1fr 54px; align-items: center; gap: 16px; }
.gallery-btn {
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.project-carousel { grid-template-columns: 1fr; }
.project-carousel .project-card { display: none; animation: softPop 0.45s ease; }
.project-carousel .active-project { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; }
.project-carousel .project-card img { height: 320px; width: 100%; object-fit: cover; }
.review-slider {
  max-width: 780px;
  margin: 0 auto;
  background: rgba(255,255,255,0.84);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: center;
}
.review-slide { display: none; margin: 0; animation: softPop 0.35s ease; }
.review-slide.active-review { display: block; }
.review-slide p { color: var(--navy); font-size: clamp(1.35rem, 3vw, 2.2rem); font-family: "Playfair Display", Georgia, serif; line-height: 1.1; margin: 0 0 14px; }
.review-slide cite { color: var(--muted); font-style: normal; font-weight: 700; }
.slider-dots { display: flex; justify-content: center; gap: 10px; margin-top: 24px; }
.dot { width: 13px; height: 13px; border: 0; border-radius: 50%; background: #d8cec0; cursor: pointer; }
.dot.active-dot { background: var(--orange-dark); }
.faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq-list details { background: rgba(255,255,255,0.86); border: 1px solid var(--line); border-radius: 20px; padding: 18px 20px; box-shadow: 0 8px 26px rgba(18, 33, 58, 0.06); }
.faq-list summary { cursor: pointer; color: var(--navy); font-weight: 900; }
.faq-list p { color: var(--muted); margin: 12px 0 0; }
.quote-preview { background: #f1fff6; border: 1px solid rgba(47, 143, 91, 0.25); border-radius: 16px; padding: 14px; color: var(--navy); }
.quote-preview p { margin: 6px 0 0; color: var(--muted); }
.floating-actions { position: fixed; right: 18px; bottom: 18px; z-index: 60; display: flex; gap: 10px; }
.floating-actions a, .back-to-top { border: 0; border-radius: 999px; background: var(--navy); color: white; padding: 12px 15px; text-decoration: none; font-weight: 900; box-shadow: var(--shadow); cursor: pointer; }
.back-to-top { position: fixed; left: 18px; bottom: 18px; z-index: 60; width: 48px; height: 48px; opacity: 0; pointer-events: none; transition: opacity 0.25s ease, transform 0.25s ease; transform: translateY(8px); }
.show-back-to-top { opacity: 1; pointer-events: auto; transform: translateY(0); }
@keyframes softPop { from { opacity: 0; transform: scale(0.985); } to { opacity: 1; transform: scale(1); } }
@media (max-width: 900px) {
  .project-carousel .active-project { grid-template-columns: 1fr; }
  .project-carousel .project-card img { height: auto; }
}
@media (max-width: 620px) {
  .type-highlight { min-width: auto; }
  .gallery-shell { grid-template-columns: 1fr; }
  .gallery-btn { width: 100%; border-radius: 18px; }
  .floating-actions { right: 12px; bottom: 12px; }
  .floating-actions a { padding: 10px 12px; }
}


.rating-card {
  max-width: 920px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: center;
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.rating-card strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--navy);
  font-size: 4rem;
  line-height: 0.9;
}

.rating-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.stars,
.review-rating {
  display: inline-block;
  color: var(--orange-dark);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.review-rating {
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.review-slide p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 700px) {
  .rating-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
}


/* ===== Photo and video gallery updates ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.video-card {
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.video-card h3 {
  margin: 16px 0 6px;
  color: var(--navy);
}

.video-card p {
  margin: 0;
  color: var(--muted);
}

.video-frame video,
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.project-carousel .project-card img {
  background: #fff7eb;
  object-fit: contain;
  padding: 10px;
}

@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== Video note card for missing direct clips ===== */
.video-note {
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(18, 33, 58, 0.92), rgba(47, 143, 91, 0.82));
  color: white;
  border-radius: 22px;
  padding: 24px;
}

.video-note strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
  margin-bottom: 10px;
}

.video-note p {
  color: rgba(255,255,255,0.82);
  margin: 0;
}


/* ===== All video slots update ===== */
.video-subheading {
  margin-top: 42px;
}

.playable-video-grid {
  margin-bottom: 38px;
}

.clip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.clip-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 8px 26px rgba(18, 33, 58, 0.06);
}

.clip-thumb {
  position: relative;
  min-height: 170px;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 25% 20%, rgba(255,255,255,0.30), transparent 28%),
    linear-gradient(135deg, rgba(18,33,58,0.94), rgba(47,143,91,0.82));
}

.play-badge {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--navy);
  font-weight: 900;
  box-shadow: var(--shadow);
}

.duration-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(0,0,0,0.72);
  color: white;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 900;
  font-size: 0.9rem;
}

.clip-card h3 {
  color: var(--navy);
  margin: 14px 0 6px;
}

.clip-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.92rem;
}


/* ===== Same-style video placeholders ===== */
.video-placeholder-frame {
  background: linear-gradient(135deg, rgba(18,33,58,0.96), rgba(47,143,91,0.86));
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px;
  color: white;
}

.video-placeholder .play-badge {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  color: var(--navy);
  font-weight: 900;
  box-shadow: var(--shadow);
}

.video-placeholder .duration-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: rgba(0,0,0,0.72);
  color: white;
  border-radius: 999px;
  padding: 7px 11px;
  font-weight: 900;
  font-size: 0.92rem;
}

.video-placeholder p {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 88px;
  margin: 0;
  color: rgba(255,255,255,0.86);
  font-weight: 800;
  text-align: left;
}

.clip-grid,
.clip-card {
  display: contents;
}


/* ===== Professional video section cleanup ===== */
.video-section .section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.video-grid {
  align-items: stretch;
}

.video-card {
  overflow: hidden;
}

.video-card h3 {
  letter-spacing: -0.02em;
}

.video-card p {
  line-height: 1.55;
}

/* Hide any older placeholder styles if cached or left behind */
.video-placeholder-frame,
.video-placeholder,
.clip-grid,
.clip-card {
  display: none !important;
}


/* ===== Dynamic video captions ===== */
.video-card {
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-card:hover {
  transform: translateY(-4px);
}

.video-frame {
  overflow: hidden;
}

.video-caption-overlay {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(18, 33, 58, 0.18), rgba(18, 33, 58, 0.92));
  color: white;
  pointer-events: none;
  transform: translateY(8px);
  opacity: 0.95;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.video-card:hover .video-caption-overlay {
  transform: translateY(0);
  opacity: 1;
}

.caption-chip,
.video-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.caption-chip {
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  padding: 6px 10px;
  margin-bottom: 8px;
}

.video-caption-overlay h3 {
  margin: 0 0 4px;
  color: white;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.05;
}

.video-caption-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  line-height: 1.35;
}

.video-caption-body {
  padding-top: 16px;
}

.video-tag {
  background: rgba(218, 156, 24, 0.15);
  color: var(--orange-dark);
  padding: 7px 10px;
  margin-bottom: 10px;
}

.video-caption-body h3 {
  margin-top: 0;
}

.caption-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.caption-points li {
  background: rgba(47, 143, 91, 0.10);
  color: var(--navy);
  border: 1px solid rgba(47, 143, 91, 0.16);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.82rem;
  font-weight: 800;
}

.featured-video-card {
  border: 1px solid rgba(218, 156, 24, 0.24);
}

@media (max-width: 620px) {
  .video-caption-overlay {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 12px;
  }

  .video-caption-overlay p {
    display: none;
  }

  .caption-points li {
    font-size: 0.78rem;
  }
}


/* ===== Clean professional caption polish ===== */
.video-section .section-heading h2 {
  letter-spacing: -0.03em;
}

.video-caption-overlay {
  background: linear-gradient(180deg, rgba(18, 33, 58, 0.08), rgba(18, 33, 58, 0.88));
}

.caption-chip,
.video-tag {
  letter-spacing: 0.08em;
}

.caption-points li {
  background: rgba(18, 33, 58, 0.06);
  border-color: rgba(18, 33, 58, 0.10);
}

.video-caption-body p {
  color: var(--muted);
}


/* ===== Clean quote/contact section ===== */
.quote-form h3 {
  margin-top: 0;
}

.quote-form .btn {
  margin-top: 12px;
}

.contact-section .contact-info p:not(.eyebrow) {
  max-width: 42rem;
}
