:root {
  --brand-bg: #0f1115;
  --brand-surface: #171b22;
  --brand-text: #f7f7f5;
  --brand-muted: #b7bdc8;
  --brand-accent: #c99d66;
  --brand-accent-strong: #d9af7a;
  --light-bg: #f4f2ef;
  --light-surface: #ffffff;
  --light-text: #1f232b;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  --max-width: 1160px;
  --space-1: 0.5rem;
  --space-2: 0.85rem;
  --space-3: 1.2rem;
  --space-4: 1.7rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  color: var(--light-text);
  background: var(--light-bg);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  color: #000;
  padding: 0.4rem 0.7rem;
  border-radius: 0.4rem;
  z-index: 999;
}

.container {
  width: min(100% - 2.4rem, var(--max-width));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2.4rem, 780px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--brand-bg) 90%, #000);
  color: var(--brand-text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: clamp(30px, 3.2vw, 42px);
  width: auto;
  display: block;
  mix-blend-mode: screen;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--brand-text);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--brand-text);
  border-radius: 8px;
  padding: 0.45rem 0.75rem;
}

.hero {
  background: radial-gradient(circle at 10% 15%, #232a35, var(--brand-bg));
  color: var(--brand-text);
  padding: clamp(3.4rem, 5.5vw, 5.2rem) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  color: var(--brand-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  max-width: 16ch;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.lead {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--brand-muted);
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.35rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid var(--brand-accent);
  background: var(--brand-accent);
  color: #1c140a;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  transition: 180ms ease;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  background: var(--brand-accent-strong);
  border-color: var(--brand-accent-strong);
}

.btn-ghost {
  background: transparent;
  color: var(--brand-text);
  border-color: rgba(255, 255, 255, 0.32);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.58);
}

.btn-small {
  padding: 0.55rem 0.9rem;
  font-size: 0.95rem;
}

.btn-secondary {
  background: transparent;
  color: var(--light-text);
  border-color: #6b7280;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: #edf0f4;
  border-color: #4b5563;
}

.section-actions {
  margin-top: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.section-dark .section-actions .btn-secondary {
  color: var(--brand-text);
  border-color: rgba(255, 255, 255, 0.45);
}

.section-dark .section-actions .btn-secondary:hover,
.section-dark .section-actions .btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.65);
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 1.2rem 1.25rem;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-size: 1.25rem;
}

.hero-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.section {
  padding: clamp(2.8rem, 4.6vw, 4.4rem) 0;
}

.section p {
  margin: 0;
}

.section p + p {
  margin-top: 0.85rem;
}

.section > .container {
  display: grid;
  gap: var(--space-3);
}

.section-light {
  background: #ece8e2;
}

.section-dark {
  background: var(--brand-bg);
  color: var(--brand-text);
}

.section-dark p {
  color: var(--brand-muted);
}

.plan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  margin-top: 0.5rem;
}

@media (min-width: 640px) {
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (min-width: 960px) {
  .plan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
  }
}

.plan-card {
  position: relative;
  background: var(--light-surface);
  border-radius: var(--radius);
  border: 1px solid rgba(15, 17, 21, 0.08);
  box-shadow: 0 4px 24px rgba(15, 17, 21, 0.07);
  padding: 1.5rem 1.4rem 1.45rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.4rem;
  right: 1.4rem;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--brand-accent), var(--brand-accent-strong));
  opacity: 0.95;
}

.plan-card-head {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.85rem;
  width: 100%;
  margin-bottom: 0.65rem;
}

.plan-card-head h3 {
  font-size: 1.12rem;
  margin: 0;
  padding-top: 0.35rem;
  letter-spacing: -0.01em;
  color: var(--light-text);
  line-height: 1.35;
  flex: 1;
  min-width: 0;
}

.plan-card > p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.6;
  color: #4a5260;
  flex: 1;
}

.step {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(160deg, var(--brand-accent-strong), var(--brand-accent));
  color: #1a1309;
  border: 2px solid rgba(26, 19, 9, 0.12);
  box-shadow: 0 2px 10px rgba(201, 157, 102, 0.35);
}

.section-intro {
  max-width: 72ch;
  color: #3f4551;
}

.services-grid {
  margin-top: 0.35rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-grid {
  margin-top: 0.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: start;
}

.before-after-grid {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: start;
}

.gallery-card {
  margin: 0;
  background: #fff;
  border: 1px solid #ddd6cb;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-self: start;
}

.gallery-card img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
}

.gallery-card figcaption {
  padding: 0.55rem 0.7rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #2b3038;
  background: #f5f3ef;
  margin: 0;
}

.before-after-title {
  margin-top: 1.25rem;
}

.problem-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1rem;
  align-items: center;
}

.problem-image-wrap {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #d8d0c4;
  box-shadow: var(--shadow);
}

.problem-image {
  width: 100%;
  height: clamp(280px, 36vw, 470px);
  object-fit: cover;
  display: block;
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1rem;
  align-items: center;
}

.guide-layout article {
  order: 2;
}

.guide-layout .guide-image-wrap {
  order: 1;
}

.guide-image-wrap {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
}

.guide-image {
  width: 100%;
  height: clamp(280px, 36vw, 470px);
  object-fit: cover;
  display: block;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.05rem 1.1rem;
  border: 1px solid #ddd6cb;
}

.service-card ul,
.split ul {
  margin: 0;
  padding-left: 1rem;
}

.service-note {
  margin-top: 0.35rem;
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.section-stakes-success {
  background: linear-gradient(180deg, #e8e4de 0%, var(--light-bg) 45%, var(--light-bg) 100%);
}

.stakes-success-grid {
  gap: 1.35rem;
  align-items: stretch;
}

.stakes-card,
.success-card {
  margin: 0;
  padding: 1.5rem 1.45rem 1.5rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 17, 21, 0.08);
  box-shadow: 0 6px 28px rgba(15, 17, 21, 0.08);
}

.stakes-card {
  background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 55%);
  border-left: 4px solid #64748b;
}

.success-card {
  background: linear-gradient(135deg, #faf6f0 0%, #ffffff 50%);
  border-left: 4px solid var(--brand-accent);
}

.stakes-label,
.success-label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
}

.success-label {
  color: var(--brand-accent);
}

.stakes-card h2,
.success-card h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
}

.stakes-lead {
  margin: 0 0 0.9rem;
  font-weight: 600;
  color: #2d3340;
  line-height: 1.55;
  font-size: 1.02rem;
}

.stakes-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.stakes-list li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.55rem;
  color: #4a5260;
  line-height: 1.55;
  font-size: 0.98rem;
}

.stakes-list li:last-child {
  margin-bottom: 0;
}

.stakes-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #94a3b8;
}

.stakes-footer {
  margin: 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(100, 116, 139, 0.2);
  font-size: 0.96rem;
  font-weight: 600;
  color: #3f4551;
  line-height: 1.5;
}

.success-lead {
  margin: 0 0 0.85rem;
  color: #3f4551;
  line-height: 1.6;
  font-size: 1.02rem;
}

.success-tagline {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: rgba(201, 157, 102, 0.14);
  border: 1px solid rgba(201, 157, 102, 0.4);
  font-weight: 600;
  color: #2d2618;
  line-height: 1.45;
  font-size: 1rem;
}

.stakes-success-cta {
  margin-top: 1.35rem;
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 0.85rem;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.markets-section {
  text-align: center;
}

.markets-section > p {
  max-width: 76ch;
  margin-inline: auto;
}

.market-card {
  margin: 0;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.04);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.35rem;
  min-height: 118px;
}

.market-card h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--brand-text);
}

.market-card p {
  margin: 0;
  color: var(--brand-muted);
  line-height: 1.45;
}

details {
  border: 1px solid #d7d9dd;
  background: #fff;
  border-radius: 10px;
  padding: 0.72rem 0.95rem;
}

details + details {
  margin-top: 0.8rem;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

.section-cta {
  background: linear-gradient(165deg, #131821, #0f1115);
  color: var(--brand-text);
  padding: clamp(2.4rem, 4vw, 3.2rem) 0;
}

.center {
  text-align: center;
}

.section-cta .center {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
}

.section-cta h2 {
  margin: 0;
  max-width: 24ch;
  font-size: clamp(1.75rem, 4vw, 3rem);
}

.section-cta p {
  margin: 0;
  max-width: 62ch;
  color: var(--brand-muted);
}

.section-cta .btn {
  margin-top: 0.25rem;
}

.contact-fine {
  margin: 0.35rem 0 0;
  color: var(--brand-muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.contact-hero h1 {
  max-width: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr);
  gap: 1rem;
  align-items: start;
}

.contact-card {
  background: #fff;
  border: 1px solid #ddd6cb;
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.estimate-form {
  display: grid;
  gap: 0.9rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.estimate-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  border: 1px solid #cfd3da;
  border-radius: 10px;
  background: #fff;
  color: #1f232b;
  padding: 0.68rem 0.72rem;
  font: inherit;
}

.estimate-form textarea {
  resize: vertical;
}

.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--brand-accent) 65%, #ffffff);
  outline-offset: 1px;
  border-color: var(--brand-accent);
}

.contact-info-card p {
  margin: 0;
}

.contact-info-card p + p {
  margin-top: 0.55rem;
}

.contact-actions {
  justify-content: flex-start;
}

.site-footer {
  background: #090b0f;
  color: var(--brand-muted);
  padding: 1.15rem 0 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-muted);
  text-decoration: none;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--brand-accent);
  border-color: rgba(201, 157, 102, 0.7);
  background: rgba(201, 157, 102, 0.1);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.services-hero h1 {
  max-width: 18ch;
  margin-inline: auto;
}

.services-hero-actions {
  justify-content: center;
}

.services-toc-wrap {
  max-width: 920px;
  margin-inline: auto;
}

.services-toc-wrap h2,
.services-toc-wrap .section-intro {
  text-align: center;
}

.services-toc-wrap .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.services-toc {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin-top: 0.65rem;
  width: 100%;
}

@media (min-width: 540px) {
  .services-toc {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 820px) {
  .services-toc {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

.services-toc a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  padding: 0.55rem 0.85rem;
  min-height: 2.75rem;
  border-radius: 999px;
  border: 1px solid #cfd3da;
  background: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.3;
}

.services-toc a:hover,
.services-toc a:focus-visible {
  border-color: #aab1bd;
  background: #f1f3f6;
}

.service-block {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1rem;
  align-items: center;
}

.service-block.reverse {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.service-block.reverse > div {
  order: 2;
}

.service-block.reverse .service-image-card {
  order: 1;
}

.service-list {
  margin: 0;
  padding-left: 1rem;
}

.service-image-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #d6d0c6;
  box-shadow: var(--shadow);
}

.service-image-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.services-section-actions {
  flex-wrap: nowrap;
  gap: 0.75rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .markets-grid {
    grid-template-columns: 1fr;
  }

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

  .problem-layout {
    grid-template-columns: 1fr;
  }

  .guide-layout {
    grid-template-columns: 1fr;
  }

  .guide-layout article,
  .guide-layout .guide-image-wrap {
    order: initial;
  }

  .section {
    padding: clamp(2.35rem, 4vw, 3rem) 0;
  }

  .contact-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: center;
  }

  .market-card {
    min-height: 96px;
  }

  .service-block,
  .service-block.reverse {
    grid-template-columns: 1fr;
  }

  .service-block.reverse > div,
  .service-block.reverse .service-image-card {
    order: initial;
  }

  .service-image-card img {
    height: 260px;
  }
}

@media (max-width: 700px) {
  .gallery-grid,
  .before-after-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-card img {
    height: 225px;
  }

  .services-section-actions {
    flex-wrap: wrap;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    right: 1.2rem;
    top: 72px;
    width: min(270px, calc(100vw - 2.4rem));
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    background: var(--brand-surface);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
  }

  .site-nav.open {
    display: flex;
  }
}
