:root {
  --bg: #121315;
  --bg-soft: #1a1d20;
  --surface: #f4efe7;
  --surface-2: #ece4d8;
  --panel: #fcfaf7;
  --text: #191919;
  --text-soft: #595753;
  --white: #fffdf9;
  --accent: #d4451f;
  --accent-strong: #fb6a3e;
  --line-dark: rgba(255, 255, 255, 0.12);
  --line-light: rgba(25, 25, 25, 0.1);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
  --radius: 26px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.14em;
}

p,
ul,
dl {
  margin: 0;
}

ul {
  padding-left: 1.1rem;
}

iframe {
  border: 0;
}

details summary {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--accent);
  border-radius: 999px;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.topbar {
  background: #0c0d0f;
  color: rgba(255, 253, 249, 0.8);
  border-bottom: 1px solid var(--line-dark);
}

.topbar__inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  font-size: 0.92rem;
}

.topbar__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
}

.topbar a:hover,
.site-nav a:hover,
.footer-nav a:hover,
.price-note a:hover,
.contact-card a:hover,
.address-card a:hover,
.faq-list a:hover {
  color: var(--accent-strong);
}

.brand,
.topbar a,
.site-nav a,
.footer-nav a,
.button {
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent-strong);
  outline-offset: 4px;
  border-radius: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(18, 19, 21, 0.88);
  border-bottom: 1px solid var(--line-dark);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 84px;
}

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

.brand img,
.site-footer img {
  width: 220px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: rgba(255, 253, 249, 0.88);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem 0.9rem;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
}

.nav-toggle span:not(.nav-toggle__label) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
}

.nav-toggle__label {
  font: inherit;
  font-size: 0.95rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.45rem;
  font-weight: 800;
  border-radius: 999px;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--compact {
  min-height: 44px;
  padding-inline: 1.15rem;
}

.button--solid {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 18px 40px rgba(212, 69, 31, 0.3);
}

.button--ghost,
.button--ghost-dark {
  border: 1px solid currentColor;
}

.button--ghost {
  color: var(--white);
}

.button--ghost-dark {
  color: var(--text);
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: inline-flex;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 2rem;
  background:
    radial-gradient(circle at top left, rgba(251, 106, 62, 0.24), transparent 30%),
    linear-gradient(180deg, #111315 0%, #171a1d 52%, #1f2326 100%);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, transparent 0 68%, rgba(255, 255, 255, 0.03) 68% 71%, transparent 71% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 88px);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.hero__content {
  padding-block: 1rem;
}

.section-kicker {
  margin-bottom: 1rem;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.hero h1,
.section-heading h2,
.story-card h2,
.contact-copy h2,
.cta-panel h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.01em;
  line-height: 0.96;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 8vw, 6.6rem);
}

.hero__lead {
  max-width: 60ch;
  margin-top: 1.3rem;
  color: rgba(255, 253, 249, 0.82);
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
  padding: 0;
  list-style: none;
}

.hero__chips li {
  padding: 0.68rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: rgba(255, 253, 249, 0.88);
}

.hero__media {
  position: relative;
}

.hero-card {
  position: relative;
  min-height: 560px;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-dark);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 538px;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero-card__badge {
  position: absolute;
  max-width: 260px;
  padding: 1rem 1.1rem;
  color: var(--white);
  background: rgba(12, 13, 15, 0.78);
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  backdrop-filter: blur(18px);
}

.hero-card__badge strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.hero-card__badge span {
  display: block;
  color: rgba(255, 253, 249, 0.75);
  font-size: 0.94rem;
  line-height: 1.4;
}

.hero-card__badge--top {
  display: none;
  top: 2rem;
  left: -1rem;
}

.hero-card__badge--bottom {
  right: -1rem;
  bottom: 2rem;
}

.stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.2rem;
}

.stat-card {
  padding: 1.4rem 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-dark);
  border-radius: 22px;
}

.stat-card strong,
.process-grid span {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.1rem);
  color: var(--accent-strong);
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 0.4rem;
  color: rgba(255, 253, 249, 0.8);
}

.section {
  padding: 5.8rem 0;
}

.section--light {
  background:
    radial-gradient(circle at top right, rgba(212, 69, 31, 0.06), transparent 18%),
    var(--surface);
}

.section--dark {
  color: var(--white);
  background:
    radial-gradient(circle at bottom left, rgba(251, 106, 62, 0.18), transparent 20%),
    linear-gradient(180deg, #171a1d, #111315);
}

.section--accent {
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(212, 69, 31, 0.1), rgba(212, 69, 31, 0.03)),
    var(--surface-2);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-heading--left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2,
.story-card h2,
.contact-copy h2 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
}

.section-heading p:last-child,
.story-card p,
.contact-copy .section-heading p:last-child {
  margin-top: 1rem;
  color: var(--text-soft);
}

.section--dark .section-heading p:last-child,
.section--dark .story-card p,
.section--dark .contact-copy .section-heading p:last-child {
  color: rgba(255, 253, 249, 0.76);
}

.service-grid,
.price-grid,
.process-grid,
.contact-cards {
  display: grid;
  gap: 1rem;
}

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

.service-card,
.price-card,
.story-card,
.contact-card,
.address-card,
.cta-panel,
.process-grid article {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-card {
  padding: 1.7rem;
  background: var(--panel);
  border: 1px solid var(--line-light);
}

.service-card h3,
.price-card h3,
.principles h3,
.contact-card h3,
.site-footer h3,
.faq-list summary {
  margin: 0 0 0.9rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: 0.01em;
}

.service-card ul {
  color: var(--text-soft);
}

.service-card li + li {
  margin-top: 0.45rem;
}

.story-grid,
.faq-grid,
.contact-grid {
  display: grid;
  gap: 1.4rem;
}

.story-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  align-items: start;
}

.story-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-dark);
}

.story-card p + p {
  margin-top: 1rem;
}

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

.principles article {
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.principles p {
  color: rgba(255, 253, 249, 0.76);
}

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

.price-card {
  padding: 1.7rem;
  background: var(--panel);
  border: 1px solid var(--line-light);
}

.price-card dl {
  display: grid;
  gap: 0.35rem;
}

.price-card dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.82rem 0;
  border-bottom: 1px solid rgba(25, 25, 25, 0.08);
}

.price-card dt {
  color: var(--text-soft);
}

.price-card dd {
  margin: 0;
  font-weight: 800;
  white-space: nowrap;
}

.price-note {
  margin-top: 1rem;
  padding: 1.1rem 1.2rem;
  text-align: center;
  background: rgba(212, 69, 31, 0.08);
  border: 1px solid rgba(212, 69, 31, 0.18);
  border-radius: 20px;
}

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

.process-grid article {
  padding: 1.6rem;
  background: rgba(255, 253, 249, 0.7);
  border: 1px solid rgba(25, 25, 25, 0.08);
}

.process-grid h3 {
  margin: 0.8rem 0 0.65rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.process-grid p {
  color: var(--text-soft);
}

.faq-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-list details {
  padding: 1.2rem 1.3rem;
  background: var(--panel);
  border: 1px solid var(--line-light);
  border-radius: 22px;
}

.faq-list summary {
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin-top: 0.8rem;
  color: var(--text-soft);
}

.cta-panel {
  padding: 1.8rem;
  color: var(--text);
  background: linear-gradient(135deg, rgba(251, 106, 62, 0.18), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(25, 25, 25, 0.08);
}

.cta-panel p:not(.section-kicker) {
  margin-top: 1rem;
  color: var(--text-soft);
}

.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  align-items: start;
}

.contact-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.contact-card {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-dark);
}

.contact-card p {
  color: rgba(255, 253, 249, 0.82);
}

.address-card {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
  padding: 1.5rem;
  font-style: normal;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-dark);
}

.address-card span,
.address-card a {
  color: rgba(255, 253, 249, 0.82);
}

.map-card {
  overflow: hidden;
  min-height: 520px;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  filter: saturate(0.85) contrast(1.04);
}

.site-footer {
  color: rgba(255, 253, 249, 0.82);
  background: #0a0b0d;
  border-top: 1px solid var(--line-dark);
}

.site-footer__inner,
.site-footer__bottom {
  display: grid;
  gap: 2rem;
}

.site-footer__inner {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  padding: 3rem 0 2rem;
}

.site-footer__inner p {
  color: rgba(255, 253, 249, 0.66);
}

.footer-nav {
  display: grid;
  gap: 0.45rem;
}

.site-footer__bottom {
  padding: 1rem 0 2rem;
  border-top: 1px solid var(--line-dark);
}

section[id] {
  scroll-margin-top: 110px;
}

@media (max-width: 1080px) {
  .hero__grid,
  .story-grid,
  .faq-grid,
  .contact-grid,
  .site-footer__inner,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .price-grid,
  .contact-cards,
  .principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card__badge--top {
    left: 1.5rem;
  }

  .hero-card__badge--bottom {
    right: 1.5rem;
  }
}

@media (max-width: 820px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
  }

  .topbar {
    display: none;
  }

  .site-header__inner {
    min-height: 76px;
  }

  .nav-toggle {
    display: none;
  }

  .js-enabled .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(18, 19, 21, 0.98);
    border: 1px solid var(--line-dark);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .js-enabled .site-nav {
    display: none;
  }

  .js-enabled body.nav-open .site-nav {
    display: flex;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .stats,
  .service-grid,
  .price-grid,
  .contact-cards,
  .principles {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .map-card,
  .map-card iframe {
    min-height: 360px;
  }

  .hero-card__badge--top {
    display: block;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--container));
  }

  .brand img,
  .site-footer img {
    width: 178px;
  }

  .hero-card {
    min-height: 400px;
    padding: 0.7rem;
  }

  .hero-card img {
    min-height: 385px;
  }

  .hero-card__badge {
    position: static;
    max-width: none;
    margin-top: 0.8rem;
  }

  .section {
    padding: 4.4rem 0;
  }

  .service-card,
  .price-card,
  .story-card,
  .contact-card,
  .address-card,
  .cta-panel,
  .process-grid article {
    padding: 1.25rem;
  }

  .faq-list summary,
  .service-card h3,
  .price-card h3,
  .principles h3,
  .contact-card h3,
  .site-footer h3 {
    font-size: 1.55rem;
  }
}
