:root {
  --bg: #07090d;
  --bg-soft: #0d1118;
  --bg-card: #121821;
  --text: #f4f1ea;
  --muted: #b7b2a6;
  --gold: #c4a052;
  --gold-deep: #a8843a;
  --gold-soft: rgba(196, 160, 82, 0.16);
  --line: rgba(244, 241, 234, 0.1);
  --font: "Manrope", system-ui, sans-serif;
  --display: "Outfit", "Manrope", sans-serif;
  --container: 1240px;
  --narrow: 760px;
  --header: 132px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1.12;
  margin: 0 0 1rem;
  font-weight: 650;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }

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

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

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.lead { color: var(--muted); font-size: 1.05rem; }

.eyebrow {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible,
.hero .hero__content {
  opacity: 1;
  transform: none;
}

.reveal--delay { transition-delay: 0.12s; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: 650 0.82rem/1 var(--font);
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: 0.3s var(--ease);
}

.btn--lg { padding: 1.05rem 1.7rem; }

.btn--gold {
  background: linear-gradient(180deg, #e4c57a, var(--gold));
  color: #1a1408;
  box-shadow: 0 0 0 1px rgba(212, 175, 90, 0.35), 0 10px 30px rgba(212, 175, 90, 0.18);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(212, 175, 90, 0.35);
}

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

.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header);
  background: transparent;
  transition: background 0.3s var(--ease), box-shadow 0.3s;
}

.site-header.is-scrolled,
body:not(.home) .site-header {
  background: rgba(7, 9, 13, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

.site-header__inner {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-logo,
.site-branding .custom-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.site-logo__img,
.site-branding .custom-logo {
  height: 116px;
  width: auto;
  max-width: 140px;
}

.site-logo--footer .site-logo__img {
  height: 132px;
  max-width: 160px;
}

.site-nav__list {
  display: flex;
  gap: 1.4rem;
}

.site-nav a {
  font-size: 0.92rem;
  color: rgba(244, 241, 234, 0.82);
}

.site-nav .current-menu-item > a,
.site-nav a:hover {
  color: var(--gold);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--text);
}

.nav-toggle__lines,
.nav-toggle__lines span {
  display: block;
}

.nav-toggle__lines span {
  width: 20px;
  height: 1.5px;
  margin: 5px auto;
  background: currentColor;
}

.mobile-menu[hidden] { display: none; }

.mobile-menu.is-open { display: block; }

.mobile-menu__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 50;
}

.mobile-menu__panel {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(88vw, 360px);
  background: var(--bg-soft);
  z-index: 51;
  padding: 1.25rem 1.4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu__head,
.mobile-menu__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu__list { display: grid; gap: 0.85rem; font-size: 1.15rem; }

.mobile-menu__close {
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 2rem;
}

.site-main { min-height: 50vh; }

.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
}

.hero-slider,
.hero-slider__slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slider__slide {
  opacity: 0;
  transition: opacity 0.8s var(--ease);
}

.hero-slider__slide.is-active { opacity: 1; z-index: 1; }

.hero-slider__slide img,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.88) 0%, rgba(7, 9, 13, 0.42) 55%, rgba(7, 9, 13, 0.58) 100%),
    linear-gradient(180deg, rgba(7, 9, 13, 0.45), transparent 28%, rgba(7, 9, 13, 0.8));
}

.hero__layout {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: calc(var(--header) + 2rem) 0 5rem;
}

.hero__kicker {
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.85rem;
  font-family: var(--font);
  font-weight: 700;
}

.hero__title { max-width: 14ch; }
.hero__subtitle { max-width: 38ch; color: rgba(244, 241, 234, 0.8); }

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.2rem 0 1.6rem;
}

.hero__badges span {
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(212, 175, 90, 0.35);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.78rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.hero-slider__prev,
.hero-slider__next {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(7, 9, 13, 0.35);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

.hero-slider__prev { left: 1.2rem; }
.hero-slider__next { right: 1.2rem; }

.hero-slider__dots {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 3;
  display: flex;
  gap: 0.45rem;
}

.hero-slider__dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.35);
  padding: 0;
  cursor: pointer;
}

.hero-slider__dot.is-active {
  width: 28px;
  background: var(--gold);
}

.section { padding: 5.5rem 0; }
.section--dark { background: var(--bg-soft); }

.section-intro { margin-bottom: 2.4rem; max-width: 720px; }
.section-intro--center { margin-inline: auto; text-align: center; }
.section-intro--split {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
}

.services-grid,
.projects-grid,
.why-grid,
.reviews-grid,
.blog-grid {
  display: grid;
  gap: 1.1rem;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.35s var(--ease), border-color 0.35s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 90, 0.4);
}

.service-card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; }
.service-card__body { padding: 1.2rem 1.25rem 1.4rem; }
.service-card__link { color: var(--gold); font-size: 0.86rem; }

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

.why-card,
.process-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.35rem;
}

.why-card__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--gold-soft);
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.process-card span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.4rem;
}

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

.project-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 240px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
}

.project-card__meta {
  position: absolute;
  inset: auto 0 0;
  padding: 1.1rem;
  background: linear-gradient(transparent, rgba(7, 9, 13, 0.92));
  display: grid;
  gap: 0.2rem;
}

.project-card__meta span { color: var(--gold); font-size: 0.78rem; }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.partner-logo {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 1.15rem 1.25rem;
}

.partner-logo img {
  max-height: 58px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partners-empty {
  border: 1px dashed rgba(212, 175, 90, 0.35);
  padding: 2rem;
  border-radius: 16px;
  color: var(--muted);
}

.cta-band {
  background:
    radial-gradient(circle at 20% 20%, rgba(212, 175, 90, 0.16), transparent 40%),
    var(--bg-soft);
}

.cta-band__inner,
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

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

.review-card {
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.35rem;
}

.review-card footer {
  display: flex;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.review-card footer strong { color: var(--text); }

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  background: transparent;
  border: 0;
  color: var(--text);
  text-align: left;
  font: 650 1rem/1.4 var(--display);
  cursor: pointer;
}

.faq-item__q[aria-expanded="true"] span { color: var(--gold); }
.faq-item__a { color: var(--muted); padding-bottom: 1rem; }

.quote-section__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.quote-form-wrap,
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem;
}

.quote-form__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}

.quote-form__quick a {
  color: var(--gold);
  border: 1px solid rgba(212, 175, 90, 0.3);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.86rem;
}

.form-row { margin-bottom: 0.95rem; }
.form-row--half { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }

label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  color: var(--muted);
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #0b0f15;
  color: var(--text);
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  font: inherit;
}

input:focus, select:focus, textarea:focus {
  outline: 1px solid var(--gold);
}

.form-notice { padding: 0.75rem 0.9rem; border-radius: 10px; }
.form-notice--success { background: rgba(70, 160, 90, 0.16); }
.form-notice--error { background: rgba(180, 60, 60, 0.18); }

.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: end;
  padding: calc(var(--header) + 3rem) 0 3.5rem;
  overflow: hidden;
}

.page-hero__bg,
.page-hero__overlay { position: absolute; inset: 0; }

.page-hero__bg img,
.page-hero__bg { width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay { background: linear-gradient(180deg, rgba(7, 9, 13, 0.35), rgba(7, 9, 13, 0.88)); }
.page-hero__content { position: relative; z-index: 1; max-width: 760px; }
.page-hero__lead { color: rgba(244, 241, 234, 0.78); }

.about-section__grid,
.contact-page__grid,
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: start;
}

.about-section__media img { border-radius: 18px; width: 100%; height: 100%; object-fit: cover; }

.info-cards { display: grid; gap: 0.8rem; margin-top: 1.4rem; }
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem 1rem;
}

.info-card span { display: block; color: var(--gold); font-size: 0.75rem; }

.contact-page__top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.contact-quick {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  display: grid;
  gap: 0.3rem;
}

.contact-quick span { color: var(--gold); font-size: 0.75rem; }
.contact-map iframe {
  width: 100%;
  min-height: 460px;
  border: 0;
  border-radius: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.gallery-item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-card);
}

.gallery-item img { width: 100%; height: 240px; object-fit: cover; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item figcaption { padding: 0.7rem 0.9rem; color: var(--muted); font-size: 0.86rem; }

.service-detail__aside {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.4rem;
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.blog-grid { grid-template-columns: repeat(3, 1fr); }
.blog-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.blog-card__body { padding: 1.1rem 1.2rem 1.3rem; }
.blog-card time { color: var(--gold); font-size: 0.78rem; }

.entry-content :where(p, ul, ol) { color: var(--muted); }
.entry-content ul,
.entry-content ol { padding-left: 1.2rem; list-style: disc; margin-bottom: 1rem; }
.entry-content a { color: var(--gold); }

.site-footer {
  background: #05070a;
  border-top: 1px solid var(--line);
  padding: 4rem 0 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2rem;
}

.site-footer h3 { font-size: 1rem; color: var(--gold); }
.site-footer p,
.footer-links a,
.footer-contact { color: var(--muted); }
.footer-links { display: grid; gap: 0.45rem; }
.footer-links--cols { grid-template-columns: 1fr 1fr; }
.footer-contact { display: grid; gap: 0.7rem; }
.footer-contact li { display: flex; gap: 0.5rem; align-items: start; }
.footer-legal { font-size: 0.78rem; }

.site-footer__bottom {
  margin-top: 2.4rem;
  border-top: 1px solid var(--line);
  padding: 1rem 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.float-wa {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #1ebd5a;
  color: #fff;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  box-shadow: 0 10px 30px rgba(30, 189, 90, 0.35);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 88vh; }
.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 2.4rem;
}

@media (max-width: 1100px) {
  .services-grid,
  .reviews-grid,
  .blog-grid,
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid,
  .why-grid,
  .process-grid,
  .site-footer__grid,
  .contact-page__top { grid-template-columns: repeat(2, 1fr); }
  .quote-section__grid,
  .about-section__grid,
  .contact-page__grid,
  .service-detail { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  :root { --header: 112px; }
  .site-nav,
  .header-phone { display: none; }
  .nav-toggle { display: block; }
  .section-intro--split { display: block; }
  .hero-slider__prev,
  .hero-slider__next { display: none; }
  .site-logo__img,
  .site-branding .custom-logo {
    height: 96px;
    max-width: 118px;
  }
}

@media (max-width: 640px) {
  .services-grid,
  .projects-grid,
  .why-grid,
  .process-grid,
  .reviews-grid,
  .blog-grid,
  .gallery-grid,
  .contact-page__top,
  .form-row--half,
  .site-footer__grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: auto; }
  .hero { height: 92svh; min-height: 560px; }
  .float-wa span { display: none; }
}
