:root {
  --pine-900: #0f2c23;
  --pine-800: #164236;
  --pine-700: #1e5a49;
  --sand-100: #fbf7ef;
  --sand-200: #f2eadb;
  --clay-500: #b77e49;
  --clay-400: #d9ab77;
  --ink-900: #17241f;
  --ink-700: #31453d;
  --ink-500: #5a6e65;
  --white: #ffffff;
  --line: rgba(17, 52, 41, 0.12);
  --shadow-lg: 0 26px 60px rgba(15, 44, 35, 0.17);
  --shadow-md: 0 14px 30px rgba(15, 44, 35, 0.11);
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--ink-900);
  background: radial-gradient(circle at 10% -20%, #f3fbf5 0%, var(--sand-100) 48%, #f9f4ea 100%);
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.sidebar-open,
body.modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 41, 34, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 41, 34, 0.022) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: -999px;
  background: #fff;
  color: var(--pine-900);
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 700;
  z-index: 400;
}

.skip-link:focus {
  left: 14px;
  top: 14px;
}

.topbar {
  background: linear-gradient(90deg, #0d3126, #1d624e);
  color: #effaf3;
  font-size: 0.92rem;
  padding: 9px 0;
}

.topbar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.topbar a {
  font-weight: 700;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.45);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 250;
  background: rgba(251, 247, 239, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
}

.brand img {
  width: auto;
  height: 40px;
  object-fit: contain;
}

.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.62rem;
  font-weight: 700;
  color: var(--pine-900);
  line-height: 1;
}

.brand-name span {
  color: var(--pine-700);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #2f453b;
  font-size: 0.96rem;
  font-weight: 600;
}

.nav-links a {
  opacity: 0.86;
}

.nav-links a:hover {
  opacity: 1;
}

.btn,
.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.primary-cta:hover {
  transform: translateY(-2px);
}

.btn-main,
.primary-cta {
  background: linear-gradient(135deg, #1d6a52, #154e3d);
  color: #eff9f3;
  box-shadow: 0 10px 24px rgba(23, 85, 65, 0.34);
}

.btn-soft {
  background: var(--sand-200);
  color: #2e352f;
  border: 1px solid rgba(38, 50, 44, 0.12);
}

.hero {
  padding: 64px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  align-items: start;
}

.hero-copy,
.hero-side,
.lead-form-card,
.service-card,
.gallery-item,
.step-card,
.content-card,
.faq-card,
.cta-panel,
.thankyou-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, #ffffff, #fbf8f1);
  box-shadow: var(--shadow-md);
}

.hero-copy {
  padding: 38px;
  animation: rise 0.65s ease both;
}

.kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #e8f3ed;
  color: var(--pine-700);
  padding: 6px 11px;
  text-transform: uppercase;
  letter-spacing: 0.55px;
  font-size: 0.75rem;
  font-weight: 800;
}

.hero-title,
.section-title,
.page-title,
.thankyou-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.08;
  margin: 14px 0 0;
  color: #142119;
}

.hero-title {
  font-size: clamp(2.2rem, 4.3vw, 3.9rem);
  max-width: 16ch;
}

.hero-copy p {
  margin: 14px 0 0;
  color: var(--ink-700);
  max-width: 61ch;
}

.hero-cta-row {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lead-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.lead-list li {
  color: #264438;
  font-weight: 600;
}

.lead-list li::before {
  content: "+ ";
  color: #1e644d;
  font-weight: 800;
}

.hero-side {
  padding: 12px;
  background: linear-gradient(165deg, #f7f2e8, #edf7f0);
  animation: rise 0.7s 0.08s ease both;
}

.hero-photo-frame {
  border-radius: calc(var(--radius-lg) - 6px);
  overflow: hidden;
  min-height: 280px;
}

.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.hero-stats {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.hero-stat {
  border: 1px solid rgba(20, 55, 44, 0.13);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px;
  text-align: center;
}

.hero-stat strong {
  display: block;
  color: #174f3b;
  font-size: 0.95rem;
  line-height: 1.2;
}

.hero-stat span {
  display: block;
  margin-top: 3px;
  color: #566b61;
  font-size: 0.8rem;
  line-height: 1.2;
}

.lead-form-card {
  margin-top: 12px;
  padding: 20px;
  background: linear-gradient(145deg, rgba(15, 50, 39, 0.98), rgba(21, 66, 52, 0.98));
  color: #ecf7f1;
}

.lead-form-card h2,
.lead-form-card h3 {
  margin: 0;
  color: #f3fcf6;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1.04;
}

.lead-form-card p {
  margin: 8px 0 0;
  color: #d3e5db;
}

.form-grid {
  margin-top: 14px;
  display: grid;
  gap: 9px;
}

.form-grid label {
  font-size: 0.87rem;
  font-weight: 600;
  color: #d7e8dd;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(220, 238, 230, 0.23);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font: inherit;
  padding: 11px;
  outline: none;
}

.form-grid textarea {
  min-height: 98px;
  resize: vertical;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: rgba(232, 247, 238, 0.72);
}

.form-grid select option {
  color: #16251e;
  background: #fff;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: #b5d4c2;
  box-shadow: 0 0 0 3px rgba(181, 212, 194, 0.25);
}

.hidden-field {
  display: none;
}

.form-submit {
  margin-top: 3px;
  border: 0;
  border-radius: 10px;
  padding: 12px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, #e8c894, #f2ddaf);
  color: #2c2416;
  box-shadow: 0 10px 24px rgba(185, 132, 75, 0.35);
}

.form-note {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #d0e3d7;
}

.section {
  padding: 62px 0;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}

.section-intro {
  margin: 6px 0 0;
  max-width: 72ch;
  color: var(--ink-700);
}

.service-grid,
.gallery-grid,
.video-grid,
.steps,
.related-grid {
  margin-top: 18px;
  display: grid;
  gap: 11px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  padding: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.service-card .tag {
  display: inline-flex;
  border-radius: 999px;
  background: #e8f2eb;
  border: 1px solid rgba(26, 80, 62, 0.16);
  color: #1f5842;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 9px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card h3,
.content-card h3,
.step-card h3,
.gallery-caption {
  margin: 10px 0 0;
  color: #1b3028;
}

.service-card p,
.content-card p,
.step-card p,
.gallery-caption,
.faq-card p {
  margin: 6px 0 0;
  color: var(--ink-500);
}

.service-link {
  margin-top: 12px;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 800;
  color: #1c5f46;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.gallery-caption {
  padding: 11px 12px 12px;
  font-size: 0.93rem;
}

.trust-badges,
.testimonial-grid {
  margin-top: 18px;
  display: grid;
  gap: 11px;
}

.trust-badges {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-badge {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, #ffffff, #f8f4eb);
  padding: 14px;
  box-shadow: 0 8px 18px rgba(15, 44, 35, 0.06);
}

.trust-badge strong {
  display: block;
  color: #1c3e31;
  font-size: 0.95rem;
  line-height: 1.28;
}

.trust-badge span {
  display: block;
  margin-top: 6px;
  color: var(--ink-500);
  font-size: 0.88rem;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  padding: 15px;
  box-shadow: 0 8px 18px rgba(15, 44, 35, 0.06);
}

.testimonial-card h3 {
  margin: 0;
  color: #1f3d31;
  font-size: 1.02rem;
  line-height: 1.34;
}

.testimonial-card p {
  margin: 8px 0 0;
  color: var(--ink-500);
  font-size: 0.93rem;
}

.testimonial-card span {
  display: block;
  margin-top: 9px;
  color: #2b5d49;
  font-size: 0.86rem;
  font-weight: 700;
}

.jobs-month-card {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #173e31, #0e2f24);
  color: #e9f6ee;
  padding: 18px;
  box-shadow: 0 12px 26px rgba(15, 44, 35, 0.2);
}

.jobs-month-card h3 {
  margin: 0;
  color: #f2fbf6;
}

.jobs-month-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.jobs-month-grid div {
  border: 1px solid rgba(222, 243, 232, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px;
}

.jobs-month-grid strong {
  display: block;
  color: #f0fbf4;
  font-size: 0.92rem;
  line-height: 1.3;
}

.jobs-month-grid p {
  margin: 6px 0 0;
  color: #cbe1d5;
  font-size: 0.87rem;
}

.video-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 44, 35, 0.07);
  overflow: hidden;
  cursor: pointer;
}

.video-card:focus-within {
  box-shadow: 0 0 0 3px rgba(29, 106, 82, 0.24), 0 8px 18px rgba(15, 44, 35, 0.07);
}

.video-preview-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #12251e;
}

.video-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  padding: 10px;
  color: #edf7f2;
  background: linear-gradient(to top, rgba(8, 20, 15, 0.68), rgba(8, 20, 15, 0.32) 50%, rgba(8, 20, 15, 0));
  transition: opacity 0.2s ease;
}

.video-overlay span {
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.video-card:hover .video-overlay,
.video-card:focus-within .video-overlay,
.video-card.is-playing .video-overlay {
  opacity: 0;
}

.video-meta {
  padding: 11px 12px 12px;
}

.video-meta h3 {
  margin: 0;
  color: #1b3028;
  font-size: 1rem;
  line-height: 1.28;
}

.video-meta p {
  margin: 6px 0 0;
  color: var(--ink-500);
  font-size: 0.92rem;
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
  padding: 16px;
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1d624d;
  color: #f2fbf6;
  font-size: 0.85rem;
  font-weight: 800;
}

.content-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 11px;
}

.content-card {
  padding: 18px;
}

.check-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.check-list li {
  color: #274338;
  font-weight: 600;
}

.check-list li::before {
  content: "- ";
  color: #1d624d;
}

.area-pills {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-pills span {
  border-radius: 999px;
  background: #e7f1eb;
  border: 1px solid rgba(26, 80, 62, 0.17);
  color: #1f4f3d;
  padding: 7px 11px;
  font-size: 0.88rem;
  font-weight: 700;
}

.faq-wrap {
  margin-top: 16px;
  display: grid;
  gap: 9px;
}

.space-top {
  margin-top: 16px;
}

.faq-card,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 44, 35, 0.07);
}

details {
  padding: 12px 14px;
}

summary {
  cursor: pointer;
  font-weight: 800;
  color: #24372f;
}

details p {
  margin: 8px 0 0;
  color: #4f665d;
}

.cta-panel {
  margin-top: 18px;
  padding: 28px;
  text-align: center;
  background: linear-gradient(130deg, #fff6e6, #f5ead3);
  border-color: rgba(165, 117, 66, 0.33);
}

.cta-panel h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3.1vw, 2.8rem);
  line-height: 1.04;
}

.cta-panel p {
  margin: 9px auto 0;
  max-width: 66ch;
  color: #57695f;
}

.cta-panel .hero-cta-row {
  justify-content: center;
  margin-top: 14px;
}

.site-footer {
  margin-top: 52px;
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
  color: #50655b;
  font-size: 0.93rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  font-weight: 700;
  color: #315244;
}

.sticky-call {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 260;
  background: linear-gradient(135deg, #1d6a52, #15513f);
  color: #f5fdf8;
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(20, 73, 57, 0.4);
}

.sidebar-toggle {
  position: fixed;
  left: 14px;
  top: 108px;
  z-index: 275;
  border: 1px solid rgba(21, 69, 53, 0.24);
  border-radius: 999px;
  background: linear-gradient(140deg, rgba(19, 63, 49, 0.95), rgba(14, 45, 35, 0.96));
  color: #effaf4;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0.28px;
  line-height: 1;
  padding: 10px 18px 11px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(20, 73, 57, 0.3);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.sidebar-toggle:hover,
.sidebar-toggle:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(20, 73, 57, 0.38);
  border-color: rgba(176, 214, 195, 0.4);
}

.sidebar-backdrop {
  position: fixed;
  inset: 0;
  z-index: 318;
  background: rgba(8, 21, 16, 0.48);
  opacity: 0;
  backdrop-filter: blur(0px);
  transition: opacity 0.42s ease, backdrop-filter 0.42s ease;
}

.sidebar-backdrop.is-visible {
  opacity: 1;
  backdrop-filter: blur(2px);
}

.sidebar-panel {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 330;
  width: min(330px, 88vw);
  border-right: 1px solid rgba(20, 57, 46, 0.18);
  background: linear-gradient(170deg, #ffffff, #f5efe3);
  box-shadow: 0 18px 42px rgba(15, 44, 35, 0.22);
  padding: 16px;
  overflow-y: auto;
  transform: translateX(-112%) scale(0.985);
  opacity: 0;
  filter: blur(2px) saturate(0.95);
  transition:
    transform 0.56s cubic-bezier(0.2, 0.82, 0.2, 1),
    opacity 0.42s ease,
    filter 0.56s ease;
}

.sidebar-panel.is-open {
  transform: translateX(0) scale(1);
  opacity: 1;
  filter: blur(0) saturate(1);
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(22, 58, 47, 0.12);
  padding-bottom: 10px;
}

.sidebar-title {
  margin: 0;
  color: #17372c;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.sidebar-close {
  border: 1px solid rgba(25, 68, 54, 0.24);
  background: #f0ece2;
  border-radius: 8px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  color: #1f4436;
  padding: 7px 10px;
  cursor: pointer;
}

.sidebar-group {
  margin-top: 14px;
}

.sidebar-label {
  margin: 0 0 7px;
  color: #3d5a4f;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 800;
}

.sidebar-group a {
  display: block;
  border: 1px solid rgba(22, 58, 47, 0.12);
  border-radius: 10px;
  background: #ffffff;
  color: #214638;
  padding: 10px 11px;
  margin-top: 7px;
  font-size: 0.93rem;
  font-weight: 700;
}

.sidebar-group a:hover {
  border-color: rgba(27, 83, 63, 0.28);
  background: #f6fbf8;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 360;
  display: grid;
  place-items: center;
  padding: 16px;
}

.video-modal[hidden] {
  display: none;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 19, 15, 0.76);
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 96vw);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(204, 226, 216, 0.18);
  background: #0c1e18;
  box-shadow: 0 22px 50px rgba(4, 12, 9, 0.5);
  transform: translateY(12px) scale(0.985);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.video-modal.is-open .video-modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.video-modal-close {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
  border: 1px solid rgba(242, 251, 246, 0.32);
  border-radius: 9px;
  background: rgba(11, 28, 21, 0.8);
  color: #eef8f2;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 7px 10px;
  cursor: pointer;
}

.video-modal-title {
  margin: 0;
  padding: 12px 14px;
  color: #eaf7f0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  background: linear-gradient(90deg, #0f2f25, #173f33);
}

.video-modal-player {
  width: 100%;
  max-height: min(70vh, 680px);
  display: block;
  background: #000;
}

.page-hero {
  padding: 48px 0 30px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 12px;
  align-items: stretch;
}

.page-copy {
  padding: 28px;
}

.page-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.page-sub {
  margin: 10px 0 0;
  color: var(--ink-700);
}

.page-photo {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.page-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.related-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.related-grid a {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 13px;
  font-weight: 700;
  color: #284739;
  box-shadow: 0 8px 18px rgba(15, 44, 35, 0.06);
}

.thankyou-wrap {
  min-height: calc(100vh - 230px);
  display: grid;
  place-items: center;
  padding: 56px 0;
}

.thankyou-card {
  width: min(760px, 94vw);
  padding: 34px;
  text-align: center;
  background: linear-gradient(140deg, #ffffff, #f7f2e7);
}

.thankyou-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 0 auto;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.2rem;
  color: #f6fff9;
  background: linear-gradient(135deg, #1d6a52, #144f3e);
}

.thankyou-title {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin-top: 10px;
}

.thankyou-card p {
  margin: 8px auto 0;
  max-width: 52ch;
  color: #51655c;
}

.thankyou-row {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .content-grid,
  .page-hero-grid,
  .service-grid,
  .gallery-grid,
  .steps,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .page-copy {
    padding: 24px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .brand-name {
    font-size: 1.45rem;
  }

  .hero-stat {
    text-align: left;
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-badges,
  .testimonial-grid,
  .jobs-month-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 40px;
  }

  .section {
    padding: 50px 0;
  }

  .topbar {
    font-size: 0.84rem;
  }

  .brand img {
    height: 34px;
  }

  .brand-name {
    font-size: 1.3rem;
  }

  .primary-cta {
    width: 100%;
  }

  .hero-stat {
    text-align: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .sticky-call {
    left: 12px;
    right: 12px;
    text-align: center;
  }

  .sidebar-toggle {
    top: auto;
    bottom: 78px;
    left: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
