*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1e1b18;
  background:
    radial-gradient(circle at 0 0, #3f3a33 0, #1a1714 38%),
    linear-gradient(to bottom, #1a1714 38%, #f5f0e6 38%, #f5f0e6 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #b45309;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button {
  font: inherit;
  cursor: pointer;
}

.top-strip-inner,
.header-inner,
.band-inner,
.canvas-inner,
.hero-inner,
.footer-inner,
.footer-bottom {
  width: min(1120px, 100% - 2.8rem);
  margin: 0 auto;
}

.top-strip {
  background: #3f3a33;
  color: #f5f0e6;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(250, 250, 249, 0.12);
}

.top-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.4rem 0;
}

.top-strip-location {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.top-strip-note {
  opacity: 0.9;
}

.top-strip-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(248, 250, 229, 0.14);
  color: #fefce8;
}

.top-strip-phone i {
  font-size: 0.82rem;
}

.main-header {
  background: transparent;
  color: #f5f0e6;
  padding: 0.75rem 0 0.4rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #fefce8;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 1.25rem;
  background: radial-gradient(circle at 20% 15%, #f97316, #92400e);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
}

.brand-short {
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fef9c3;
  font-size: 0.95rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 600;
  font-size: 1rem;
}

.brand-tagline {
  font-size: 0.78rem;
  opacity: 0.85;
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(254, 249, 195, 0.3);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #fefce8;
}

.nav {
  font-size: 0.9rem;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-list a {
  color: #fefce8;
  position: relative;
  padding-bottom: 0.15rem;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f97316, #22c55e);
  transition: width 0.16s ease-out;
}

.nav-list a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #f97316, #22c55e);
  color: #2b2015;
  border-color: rgba(120, 113, 108, 0.5);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.45);
}

.btn-primary:hover {
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.65);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: #3f3a33;
  border-color: rgba(120, 113, 108, 0.4);
}

.btn-ghost:hover {
  background: rgba(250, 250, 249, 0.5);
}

.hero-lab {
  padding: 2.4rem 0 3.2rem;
  color: #fefce8;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.hero-label {
  margin-bottom: 0.85rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(250, 250, 249, 0.35);
  font-size: 0.8rem;
  background: rgba(15, 23, 42, 0.35);
}

.hero-pill i {
  color: #fed7aa;
}

.hero-lab h1 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.25;
  margin: 0 0 0.9rem;
}

.hero-lead {
  margin: 0 0 1.4rem;
  max-width: 36rem;
  color: #fefce8;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.hero-microgrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0;
}

.hero-microgrid div {
  padding: 0.65rem 0.7rem;
  border-radius: 0.9rem;
  background: rgba(15, 23, 42, 0.3);
  border: 1px solid rgba(250, 250, 249, 0.18);
}

.hero-microgrid dt {
  font-size: 0.78rem;
  opacity: 0.9;
}

.hero-microgrid dd {
  margin: 0.1rem 0 0;
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-panel {
  background: #1f1a17;
  border-radius: 1.4rem;
  padding: 1.15rem 1.15rem 1rem;
  border: 1px solid rgba(250, 250, 249, 0.16);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.55);
}

.hero-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.hero-panel-title {
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-panel-title i {
  color: #f97316;
}

.hero-panel-status {
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #fef9c3;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
}

.hero-panel-body {
  display: grid;
  row-gap: 0.55rem;
  padding: 0.6rem 0;
}

.hero-panel-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

.hero-panel-label {
  opacity: 0.9;
}

.hero-panel-value {
  font-weight: 600;
}

.hero-panel-chip {
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.chip-warn {
  background: rgba(248, 113, 113, 0.18);
  color: #fecaca;
}

.hero-panel-footer {
  margin-top: 0.6rem;
}

.hero-panel-footer p {
  font-size: 0.8rem;
  margin: 0 0 0.4rem;
  opacity: 0.9;
}

.hero-panel-footer img {
  border-radius: 1.05rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.band {
  padding: 3rem 0;
}

.band-soft {
  background: #f5f0e6;
}

.band-striped {
  background: #f4e7d5;
}

.band-moduli {
  background: #fff7ed;
}

.band-method {
  background: #f9fafb;
}

.band-gallery {
  background: #f5f5f4;
}

.band-faq {
  background: #fefce8;
}

.band-contact {
  background: linear-gradient(to right, #fef3c7, #dcfce7);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 1.9rem;
}

.section-head-left {
  text-align: left;
  margin-left: 0;
}

.section-head h2 {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
  color: #1c1917;
}

.section-head p {
  margin: 0;
  color: #57534e;
}

.band-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.band-soft .band-inner {
  flex-direction: row;
  align-items: flex-start;
}

.band-text {
  flex: 1.1;
}

.band-text h2 {
  margin-top: 0;
}

.band-text p + p {
  margin-top: 0.6rem;
}

.band-pillars {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.band-pillars li {
  padding: 0.9rem 0.9rem 0.8rem;
  border-radius: 0.9rem;
  background: #fefce8;
  border: 1px solid #e7e5e4;
}

.band-pillars h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.band-pillars p {
  margin: 0;
  font-size: 0.9rem;
}

.tiles-rows {
  display: grid;
  gap: 1rem;
}

.tile-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: flex-start;
  background: rgba(250, 250, 249, 0.7);
  border-radius: 1.1rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid #e7e5e4;
}

.tile-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #451a03;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fed7aa;
}

.tile-body h3 {
  margin: 0 0 0.3rem;
}

.tile-body p {
  margin: 0;
  font-size: 0.9rem;
}

.canvas-section {
  background: #f9fafb;
  padding: 3rem 0;
}

.canvas-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: flex-start;
}

.canvas-steps {
  display: grid;
  gap: 1rem;
}

.canvas-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.75rem 0.8rem;
  border-radius: 0.9rem;
  background: #ffffff;
  border: 1px dashed #e4e4e7;
}

.canvas-step-badge {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #f97316;
  color: #fefce8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.canvas-step h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.canvas-step p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.canvas-illustration img {
  border-radius: 1.2rem;
  border: 1px solid #e4e4e7;
}

.canvas-caption {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: #6b7280;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.module-card {
  background: #fffbeb;
  border-radius: 1.1rem;
  padding: 1.1rem 1.1rem 1rem;
  border: 1px solid #fed7aa;
}

.module-card-highlight {
  background: #dcfce7;
  border-color: #bbf7d0;
}

.module-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
}

.module-card ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
}

.method-steps {
  display: grid;
  gap: 1rem;
}

.method-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: flex-start;
  padding: 0.8rem 0.9rem;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
}

.method-index {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #22c55e;
  color: #052e16;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.method-body h3 {
  margin: 0 0 0.3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 0.8rem 0.8rem 0.7rem;
  border: 1px solid #e4e4e7;
}

.gallery-item img {
  border-radius: 0.8rem;
  margin-bottom: 0.5rem;
}

.gallery-item figcaption {
  font-size: 0.85rem;
  color: #57534e;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.faq-item {
  background: #fefce8;
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid #e7e5e4;
}

.faq-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.faq-item p {
  margin: 0;
  font-size: 0.9rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-info h2 {
  margin-top: 0;
}

.contact-list {
  list-style: none;
  margin: 1rem 0 0.7rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.contact-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.9rem;
}

.contact-list i {
  margin-top: 0.15rem;
  color: #854d0e;
}

.contact-small {
  font-size: 0.85rem;
  color: #57534e;
}

.contact-form-wrap {
  background: #fefce8;
  border-radius: 1.3rem;
  padding: 1.2rem 1.3rem 1.1rem;
  border: 1px solid #facc15;
  box-shadow: 0 12px 24px rgba(120, 113, 108, 0.3);
}

.contact-form .field {
  margin-bottom: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #292524;
}

.contact-form input,
.contact-form textarea {
  border-radius: 0.7rem;
  border: 1px solid #d6d3d1;
  padding: 0.55rem 0.7rem;
  font-size: 0.92rem;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 1px rgba(248, 171, 85, 0.4);
}

.field-check {
  margin-top: 0.15rem;
}

.check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: #44403c;
}

.check-label input {
  margin-top: 0.2rem;
}

.cookie-bar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 40;
  background: #1f1a17;
  color: #f5f0e6;
  border-top: 1px solid rgba(248, 250, 229, 0.25);
  display: none;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 0.9rem 0.2rem;
}

.cookie-title {
  margin: 0 0 0.3rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.cookie-title i {
  color: #facc15;
  margin-right: 0.35rem;
}

.cookie-body {
  margin: 0;
  font-size: 0.84rem;
  color: #e7e5e4;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer {
  background: #1c1917;
  color: #e7e5e4;
  padding: 2.3rem 0 1.2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr;
  gap: 2.1rem;
  margin-bottom: 1.4rem;
}

.footer h3,
.footer h4 {
  margin: 0 0 0.6rem;
}

.footer p {
  margin: 0;
  font-size: 0.9rem;
  color: #d6d3d1;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: #f5f5f4;
}

.footer-links a:hover {
  color: #fed7aa;
}

.footer-bottom {
  border-top: 1px solid rgba(87, 83, 78, 0.9);
  padding-top: 0.7rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #a8a29e;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.modal-backdrop.visible {
  display: flex;
}

.modal-window {
  background: #f9fafb;
  border-radius: 1.1rem;
  padding: 1.4rem 1.4rem 1.2rem;
  max-width: 420px;
  width: calc(100% - 2.6rem);
  position: relative;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  border: none;
  background: transparent;
  color: #6b7280;
}

.modal-window h2 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: #111827;
}

.modal-window h2 i {
  color: #22c55e;
  margin-right: 0.4rem;
}

.modal-window p {
  margin: 0 0 0.45rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.modal-hint {
  font-size: 0.8rem;
}

.band-reviews {
  background: #fff7ed;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.review-card {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1rem 1rem 0.9rem;
  border: 1px solid #fed7aa;
  box-shadow: 0 10px 24px rgba(120, 113, 108, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.review-role {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #92400e;
}

.review-text {
  margin: 0;
  font-size: 0.9rem;
  color: #44403c;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.8rem;
  color: #57534e;
}

.review-name {
  font-weight: 600;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: 0.1rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 171, 85, 0.8);
  background: rgba(255, 251, 235, 0.9);
}

@media (max-width: 960px) {
  .top-strip-inner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .hero-inner,
  .band-soft .band-inner,
  .canvas-grid,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
    display: grid;
  }

  .hero-panel {
    margin-top: 0.5rem;
  }

  .modules-grid,
  .gallery-grid,
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .footer-col:last-child {
    grid-column: 1 / -1;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 88px;
    background: #292524;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease-out, opacity 0.18s ease-out;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.7rem 1.4rem 0.9rem;
  }

  .hero-lab {
    padding-top: 2rem;
  }

  .hero-microgrid {
    grid-template-columns: minmax(0, 1fr);
  }

  .modules-grid,
  .gallery-grid,
  .faq-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;
  }

  .reviews-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
