:root {
  --line: rgba(255, 255, 255, 0.1);
  --text: #f4f5f6;
  --muted: #b4bac1;
  --accent: #d8b173;
  --footer-bg: #8f7b61;
  --max: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(216, 177, 115, 0.08), transparent 26%),
    linear-gradient(180deg, #1e242b 0%, #171c22 28%, #11161b 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at center, black 28%, transparent 75%);
  opacity: 0.18;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
}

.header-inner {
  width: 100%;
  min-height: 82px;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(23, 29, 35, 0.44);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand strong,
.footer-brand strong {
  font-size: 1rem;
}

.brand-badge {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #f0d8aa, var(--accent));
  color: #111;
  font-weight: 800;
}

.main-nav {
  display: flex;
  gap: 26px;
  color: #dde1e6;
  font-size: 0.93rem;
}

.main-nav a:hover,
.phone-link:hover {
  color: var(--accent);
}

.header-actions,
.footer-contact {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-link {
  color: #edf1f4;
  font-weight: 700;
}

.primary-cta,
.secondary-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.primary-cta:hover,
.secondary-cta:hover {
  transform: translateY(-1px);
}

.primary-cta {
  background: linear-gradient(135deg, #edd3a4, var(--accent));
  color: #101214;
}

.secondary-cta {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

.hero {
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
}

.hero-slider,
.hero-slide,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.94);
  transform: scale(1.04);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 23, 28, 0.58) 0%, rgba(18, 23, 28, 0.12) 52%, rgba(18, 23, 28, 0.46) 100%),
    linear-gradient(180deg, rgba(18, 23, 28, 0.12) 0%, rgba(18, 23, 28, 0.4) 100%);
}

.hero-content,
.hero-controls,
.image-strip,
.services-section,
.testimonials-section,
.gallery-section,
.brands-section,
.claims-section,
.contact-section {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.hero-content {
  padding-top: 168px;
  padding-bottom: 62px;
}

.hero-kicker,
.section-heading p,
.claims-copy p,
.contact-copy p {
  margin: 0 0 12px;
  color: #e0e4e8;
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.claims-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.6rem, 8vw, 6.8rem);
  line-height: 0.92;
}

.hero-copy {
  max-width: 34ch;
  margin: 20px 0 0;
  color: #eef1f4;
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-bottom {
  position: relative;
  inset: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 900px;
  margin-top: 42px;
  padding: 18px 22px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  background: rgba(16, 21, 26, 0.34);
  backdrop-filter: blur(14px);
}

.hero-stat {
  padding: 0 12px 0 0;
  border-right: 1px solid rgba(255,255,255,0.18);
}

.hero-stat:last-child {
  border-right: 0;
}

.hero-stat span {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
}

.hero-stat small {
  display: block;
  margin-top: 6px;
  color: #e0e4e8;
}

.hero-controls {
  position: absolute;
  inset: auto 0 42px 0;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.26);
  cursor: pointer;
}

.hero-dot.is-active {
  width: 42px;
  background: var(--accent);
}

.image-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.image-card,
.gallery-item,
.contact-visual {
  min-height: 290px;
  overflow: hidden;
  border-radius: 18px;
}

.image-card.large {
  min-height: 420px;
}

.image-card img,
.service-block img,
.gallery-item img,
.contact-visual img {
  height: 100%;
  object-fit: cover;
}

.services-section,
.testimonials-section,
.gallery-section,
.brands-section,
.claims-section,
.contact-section {
  padding-top: 96px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading.align-left {
  justify-content: flex-start;
}

.section-heading h2,
.claims-copy h2,
.contact-copy h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.95;
  max-width: 10ch;
}

.services-intro {
  max-width: 760px;
  margin: -6px 0 28px;
}

.services-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.service-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.service-block {
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
}

.service-block img {
  min-height: 360px;
  border-radius: 18px;
}

.service-block div {
  padding: 20px 10px 6px;
}

.service-block h3 {
  margin: 0 0 10px;
  font-size: 1.26rem;
}

.service-block p,
.claims-list span,
.contact-lines span,
.contact-lines a {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.testimonials-section {
  width: 100%;
}

.testimonials-heading {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto 28px;
  justify-content: flex-start;
}

.testimonials-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0%, black 7%, black 93%, transparent 100%);
}

.testimonials-track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 0 24px;
  animation: testimonial-loop 28s linear infinite;
}

.testimonial-card {
  width: 380px;
  flex: 0 0 380px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.testimonial-card p {
  margin: 0 0 20px;
  color: #eef1f4;
  line-height: 1.75;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card span {
  margin-top: 6px;
  color: var(--muted);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 18px;
}

.portfolio-card {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
}

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

.portfolio-card p {
  margin: 0;
  padding: 16px 18px 18px;
  color: #eceff2;
  font-size: 0.98rem;
}

.brand-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  mask-image: linear-gradient(90deg, transparent 0%, black 7%, black 93%, transparent 100%);
}

.brand-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: brand-loop 34s linear infinite;
}

.brand-slide {
  width: 320px;
  flex: 0 0 320px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.brand-slide img {
  height: 220px;
  object-fit: cover;
}

.brand-slide span {
  display: block;
  padding: 14px 16px 16px;
  color: #ebeff2;
  font-size: 0.95rem;
}

.claims-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.claims-list {
  display: grid;
  gap: 18px;
}

.claims-list div {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.claims-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.8fr 0.85fr 1.1fr;
  gap: 20px;
  padding-bottom: 70px;
}

.contact-copy {
  padding: 20px 8px 20px 20px;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-lines a {
  color: var(--text);
}

.map-embed {
  min-height: 100%;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  filter: grayscale(1) contrast(1.05) saturate(0.8);
}

.cert-strip {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto 0;
  padding: 10px 0 0;
}

.cert-strip-inner {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(244, 245, 246, 0.54);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  filter: grayscale(1);
}

@keyframes brand-loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 11px));
  }
}

@keyframes testimonial-loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 11px));
  }
}

.site-footer {
  width: 100%;
  margin-top: 34px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.02)),
    linear-gradient(135deg, #7f6e59 0%, var(--footer-bg) 45%, #64584b 100%);
  color: #14171b;
}

.footer-inner {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  min-height: 110px;
  padding: 30px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.footer-brand {
  color: #111;
}

.footer-brand small {
  display: block;
  margin-top: 6px;
  color: rgba(20, 23, 27, 0.76);
}

.footer-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  color: rgba(20, 23, 27, 0.76);
  font-size: 0.9rem;
}

.footer-contact a {
  color: #111;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.19,1,.22,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .header-inner,
  .service-gallery,
  .portfolio-grid,
  .claims-section,
  .contact-section,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .main-nav,
  .header-actions,
  .footer-contact,
  .footer-meta {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: auto;
    padding-bottom: 180px;
  }

  .hero-controls {
    inset: auto 0 24px 0;
    justify-content: flex-start;
  }

  .image-strip {
    grid-template-columns: 1fr;
  }

  .brand-slide {
    width: 280px;
    flex-basis: 280px;
  }

  .testimonial-card {
    width: 320px;
    flex-basis: 320px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: auto;
    padding: 14px 16px 12px;
    align-items: flex-start;
    gap: 10px;
  }

  .hero-content,
  .hero-controls,
  .image-strip,
  .services-section,
  .testimonials-section,
  .gallery-section,
  .brands-section,
  .claims-section,
  .contact-section,
  .cert-strip,
  .footer-inner {
    width: min(calc(100% - 24px), var(--max));
  }

  .main-nav,
  .header-actions {
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 0.76rem;
    width: auto;
    justify-content: flex-start;
  }

  .brand {
    width: 100%;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand-badge {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 2px;
  }

  .header-actions {
    order: 2;
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }

  .phone-link {
    font-size: 0.84rem;
  }

  .primary-cta,
  .secondary-cta {
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.84rem;
  }

  .hero-content {
    padding-top: 176px;
    padding-bottom: 34px;
  }

  .hero h1 {
    max-width: 8.5ch;
    font-size: clamp(2.9rem, 12vw, 4.6rem);
    line-height: 0.95;
  }

  .hero-copy {
    max-width: 28ch;
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .hero-buttons {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 26px;
    padding: 14px 16px;
    border-radius: 18px;
  }

  .hero-stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    padding: 0 0 14px;
  }

  .hero-stat:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .hero-controls {
    inset: auto 0 18px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2,
  .claims-copy h2,
  .contact-copy h2 {
    max-width: 11ch;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .services-intro {
    margin: -2px 0 22px;
  }

  .services-intro p {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .service-gallery,
  .portfolio-grid {
    gap: 18px;
  }

  .service-block img,
  .portfolio-card img {
    min-height: 240px;
  }

  .service-block div,
  .portfolio-card p {
    padding-left: 14px;
    padding-right: 14px;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .brand-marquee {
    mask-image: none;
  }

  .testimonials-heading {
    width: min(calc(100% - 24px), var(--max));
  }

  .testimonials-marquee {
    mask-image: none;
  }

  .testimonials-track {
    padding: 0 12px;
    gap: 16px;
    animation-duration: 22s;
  }

  .testimonial-card {
    width: 280px;
    flex-basis: 280px;
    padding: 22px;
  }

  .testimonial-card p {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .brand-track {
    gap: 16px;
    animation-duration: 24s;
  }

  .brand-slide {
    width: 240px;
    flex-basis: 240px;
  }

  .brand-slide img {
    height: 180px;
  }

  .claims-list div {
    padding: 18px 0;
  }

  .contact-copy {
    padding: 8px 0 4px;
  }

  .contact-lines {
    margin-top: 18px;
    gap: 10px;
  }

  .map-embed iframe {
    min-height: 320px;
  }

  .footer-inner {
    gap: 16px;
    padding: 24px 0;
  }

  .cert-strip-inner {
    flex-direction: column;
    gap: 12px;
    letter-spacing: 0.16em;
  }
}
