@charset "UTF-8";

:root {
  --ink: #071426;
  --muted: #607086;
  --paper: #ffffff;
  --soft: #f4f8fc;
  --line: #d8e3ef;
  --green: #0757b7;
  --green-dark: #061629;
  --terracotta: #0f73d9;
  --gold: #f2b84b;
  --shadow: 0 18px 48px rgba(6, 22, 41, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

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

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 20;
  padding: 10px 14px;
  background: var(--green-dark);
  color: white;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(6, 22, 41, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  isolation: isolate;
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-header::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 22, 41, 0.74), rgba(6, 22, 41, 0.56)),
    url("../images/hero-real.jpg") center/cover no-repeat;
  filter: blur(12px) saturate(1.06);
  transform: scale(1.05);
}

.site-header::after {
  z-index: -1;
  background: linear-gradient(180deg, rgba(6, 22, 41, 0.2), rgba(6, 22, 41, 0.62));
}

.top-contact {
  color: white;
  background: rgba(6, 22, 41, 0.48);
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-contact-inner {
  min-height: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  justify-content: flex-start;
}

.top-contact a {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  min-width: 0;
  color: white;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}

.top-contact a:last-child {
  flex: 1 1 320px;
  justify-content: flex-end;
  white-space: normal;
  text-align: right;
}

.top-contact a span {
  min-width: 0;
}

.top-contact a:hover,
.top-contact a:focus {
  color: var(--gold);
}

.top-contact svg,
.icon-link svg,
.floating-contact svg,
.method-card svg,
.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

a[href*="wa.me"] svg,
.method-card[href*="wa.me"] svg,
.floating-contact a[href*="wa.me"] svg {
  color: #25d366;
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 2px 6px rgba(37, 211, 102, 0.28));
}

.header-inner {
  min-height: 86px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-self: start;
  min-width: 0;
  margin-left: -20px;
  text-decoration: none;
}

.brand-logo {
  width: 258px;
  height: 76px;
  object-fit: contain;
}

.custom-logo {
  width: 258px;
  max-height: 76px;
  object-fit: contain;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text small {
  color: rgba(255, 255, 255, 0.72);
}

.primary-nav {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-left: auto;
  min-width: 0;
}

.menu,
.footer-menu {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.menu a:hover,
.menu a:focus {
  color: white;
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span:not(.screen-reader-text) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: white;
}

.hero-slider-section {
  padding: 28px 0 34px;
  background:
    linear-gradient(130deg, rgba(7, 87, 183, 0.11), transparent 42%),
    var(--soft);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--green-dark);
  box-shadow: var(--shadow);
}

.hero-slider-track {
  position: relative;
  min-height: 620px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.018);
  transition: opacity 0.8s ease, visibility 0.8s ease, transform 1.1s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 22, 41, 0.82) 0%, rgba(6, 22, 41, 0.64) 42%, rgba(6, 22, 41, 0.24) 100%),
    linear-gradient(180deg, rgba(7, 87, 183, 0.2) 0%, rgba(6, 22, 41, 0.16) 100%);
}

.hero-tone-construction::after {
  background:
    linear-gradient(90deg, rgba(6, 22, 41, 0.84) 0%, rgba(6, 22, 41, 0.56) 44%, rgba(6, 22, 41, 0.18) 100%),
    linear-gradient(180deg, rgba(15, 115, 217, 0.18) 0%, rgba(6, 22, 41, 0.14) 100%);
}

.hero-tone-scaffold::after {
  background:
    linear-gradient(90deg, rgba(6, 22, 41, 0.82) 0%, rgba(9, 42, 81, 0.58) 46%, rgba(6, 22, 41, 0.16) 100%),
    linear-gradient(180deg, rgba(36, 126, 229, 0.22) 0%, rgba(6, 22, 41, 0.12) 100%);
}

.hero-tone-panel::after {
  background:
    linear-gradient(90deg, rgba(6, 22, 41, 0.84) 0%, rgba(18, 64, 117, 0.54) 44%, rgba(6, 22, 41, 0.14) 100%),
    linear-gradient(180deg, rgba(242, 184, 75, 0.18) 0%, rgba(6, 22, 41, 0.12) 100%);
}

.hero-tone-balcony::after {
  background:
    linear-gradient(90deg, rgba(6, 22, 41, 0.8) 0%, rgba(7, 87, 183, 0.5) 42%, rgba(6, 22, 41, 0.12) 100%),
    linear-gradient(180deg, rgba(37, 211, 102, 0.12) 0%, rgba(6, 22, 41, 0.12) 100%);
}

.hero-tone-outdoor::after {
  background:
    linear-gradient(90deg, rgba(6, 22, 41, 0.8) 0%, rgba(9, 91, 78, 0.48) 42%, rgba(6, 22, 41, 0.12) 100%),
    linear-gradient(180deg, rgba(242, 184, 75, 0.16) 0%, rgba(6, 22, 41, 0.12) 100%);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  transform: scale(1.1);
  filter: saturate(1.05) contrast(1.02) brightness(0.9);
  transition: transform 5s ease, filter 0.8s ease;
}

.hero-slide.is-active img {
  transform: scale(1);
  filter: saturate(1.12) contrast(1.04) brightness(0.96);
}

.hero-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 0;
  width: min(620px, calc(100% - 112px));
  padding: 64px 0 96px 56px;
  color: white;
}

.hero-slider-section h1,
.section h2,
.page-hero h1 {
  margin: 0;
  color: var(--green-dark);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-slider-section h1 {
  max-width: 560px;
  font-size: clamp(28px, 4.8vw, 52px);
  color: white;
}

.hero-slider-section p {
  max-width: 500px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--terracotta);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.btn svg {
  margin-right: 7px;
}

.btn-primary {
  color: white;
  background: var(--terracotta);
}

.btn-call {
  color: var(--green-dark);
  background: var(--gold);
}

.btn-ghost {
  color: var(--green-dark);
  border: 1px solid var(--green);
  background: white;
}

.hero-slide-label {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 8px;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hero-slider-controls {
  position: absolute;
  right: 20px;
  bottom: 72px;
  z-index: 3;
  display: flex;
  gap: 12px;
  align-items: center;
}

.hero-arrow,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-arrow {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  font-size: 28px;
  line-height: 1;
}

.hero-arrow:hover,
.hero-arrow:focus,
.hero-dot:hover,
.hero-dot:focus {
  background: rgba(255, 255, 255, 0.24);
}

.hero-dots {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

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

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

.trust-strip {
  padding: 20px 0;
  background: var(--green-dark);
  color: white;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-grid div {
  min-height: 74px;
  padding: 14px 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--gold);
  font-size: 24px;
  line-height: 1.1;
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 82px 0;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section h2 {
  max-width: 760px;
  font-size: clamp(32px, 5vw, 58px);
}

.cards {
  display: grid;
  gap: 18px;
}

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

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

.service-card,
.post-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.service-card h3 {
  margin: 18px 0 10px;
  color: var(--green-dark);
  font-size: 24px;
  line-height: 1.18;
}

.service-card h3 a {
  color: inherit;
  text-decoration: none;
}

.service-card h3 a:hover,
.service-card h3 a:focus {
  color: var(--terracotta);
}

.service-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--soft);
}

.service-card p,
.post-card p,
.content-area {
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--green-dark);
  font-weight: 700;
}

.service-card li {
  position: relative;
  padding-left: 18px;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--gold);
  font-weight: 900;
}

.service-note {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.service-note strong {
  color: var(--green-dark);
  white-space: nowrap;
}

.service-note span {
  color: var(--muted);
}

.gallery-section {
  background: var(--soft);
}

.example-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.example-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.example-gallery img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.example-gallery figcaption {
  padding: 14px 16px 16px;
  color: var(--green-dark);
  font-weight: 800;
}

.split-band {
  background: var(--green-dark);
  color: white;
}

.split-band h2 {
  color: white;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 48px;
}

.steps {
  display: grid;
  gap: 16px;
}

.steps div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.steps strong {
  color: var(--gold);
  font-size: 22px;
}

.steps p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.light-steps div {
  border-color: var(--line);
  background: white;
}

.light-steps strong {
  color: var(--green-dark);
}

.light-steps p {
  color: var(--muted);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 34px;
  border-radius: 8px;
  background: var(--soft);
}

.contact-panel p {
  max-width: 720px;
  color: var(--muted);
}

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

.contact-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.method-card {
  display: grid;
  min-height: 106px;
  align-content: center;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--green-dark);
  text-decoration: none;
}

.method-card span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.method-card strong {
  overflow-wrap: anywhere;
}

.quote-box {
  padding: 24px;
  border-radius: 8px;
  background: var(--green-dark);
  color: white;
  box-shadow: var(--shadow);
}

.quote-box h3 {
  margin: 0 0 18px;
  font-size: 26px;
  line-height: 1.15;
}

.quote-form {
  display: grid;
  gap: 14px;
}

.quote-form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.quote-form select option {
  color: var(--ink);
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.quote-form .btn {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.page-hero {
  padding: 70px 0 44px;
  background: var(--soft);
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.content-area {
  max-width: 760px;
  font-size: 18px;
}

.content-area h2,
.content-area h3 {
  color: var(--green-dark);
  line-height: 1.18;
}

.about-grid {
  align-items: start;
}

.service-detail-grid,
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 36px;
  align-items: start;
}

.service-detail-image {
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 8px;
  object-fit: cover;
  background: white;
  box-shadow: var(--shadow);
}

.side-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 8px;
  background: var(--soft);
}

.side-panel strong {
  color: var(--green-dark);
  font-size: 22px;
}

.side-panel p {
  margin: 0;
  color: var(--muted);
}

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

.post-card h2 {
  margin-top: 0;
}

.post-card h2 a {
  color: inherit;
  text-decoration: none;
}

.post-card h2 a:hover,
.post-card h2 a:focus {
  color: var(--terracotta);
}

.product-section,
.article-section {
  background: var(--soft);
}

.site-footer {
  padding: 52px 0 86px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--green-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.7fr;
  gap: 32px;
}

.footer-title {
  display: block;
  margin-bottom: 12px;
  color: white;
}

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

.footer-shortcuts {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.footer-menu a,
.site-footer a {
  color: white;
  text-decoration: none;
}

.icon-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.floating-contact a {
  min-height: 42px;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  padding: 10px 13px;
  border-radius: 8px;
  color: white;
  background: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.floating-contact a:first-child {
  background: var(--gold);
  color: var(--green-dark);
}

.floating-contact a[href*="wa.me"] {
  background: #25d366;
  color: white;
}

.floating-contact a[href*="wa.me"] svg {
  color: white;
  filter: none;
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(8px);
  transition:
    opacity 0.82s ease,
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.82s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-animate="zoom"] {
  transform: translateY(18px) scale(0.985);
  filter: blur(10px) saturate(0.94);
}

[data-animate="float"] {
  transform: translate3d(0, 26px, 0) scale(0.96) rotate(0.8deg);
  filter: blur(10px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: none;
}

.site-header [data-animate] {
  transition-duration: 0.88s;
}

.top-contact-inner a,
.brand,
.primary-nav .menu > li,
.nav-toggle {
  transform-origin: center bottom;
}

.hero-overlay > * {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.is-active .hero-overlay > * {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide.is-active .hero-overlay > .eyebrow {
  transition-delay: 0.08s;
}

.hero-slide.is-active .hero-overlay > h1 {
  transition-delay: 0.14s;
}

.hero-slide.is-active .hero-overlay > p {
  transition-delay: 0.2s;
}

.hero-slide.is-active .hero-overlay > .hero-actions {
  transition-delay: 0.28s;
}

.service-card,
.post-card,
.method-card,
.example-gallery figure,
.steps div,
.quote-box,
.contact-panel,
.service-note,
.side-panel {
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.service-card:hover,
.post-card:hover,
.method-card:hover,
.example-gallery figure:hover,
.steps div:hover,
.quote-box:hover,
.contact-panel:hover,
.side-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(6, 22, 41, 0.12);
}

.service-card:hover,
.post-card:hover,
.method-card:hover,
.example-gallery figure:hover,
.side-panel:hover {
  border-color: rgba(15, 115, 217, 0.24);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-animate],
  .hero-overlay > *,
  .hero-slide,
  .hero-slide img,
  .service-card,
  .post-card,
  .method-card,
  .example-gallery figure,
  .steps div,
  .quote-box,
  .contact-panel,
  .service-note,
  .side-panel {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
}

@media (max-width: 880px) {
  .header-inner {
    min-height: 74px;
    gap: 14px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .primary-nav {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    padding-bottom: 14px;
  }

  .primary-nav.is-open {
    display: block;
  }

  .menu {
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
  }

  .top-contact-inner {
    justify-content: flex-start;
  }

  .top-contact a:last-child {
    flex-basis: 100%;
    justify-content: flex-start;
    text-align: left;
  }

  .top-contact {
    display: none;
  }

  .brand-logo,
  .custom-logo {
    width: 198px;
    height: 62px;
    max-height: 62px;
  }

  .split-grid,
  .contact-panel,
  .contact-grid,
  .service-detail-grid,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards.three,
  .service-grid,
  .example-gallery,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-slider-track,
  .hero-slide img {
    min-height: 540px;
  }

  .hero-overlay {
    width: min(100%, calc(100% - 40px));
    padding: 44px 20px 116px;
  }

  .hero-slider-controls {
    right: 16px;
    left: 16px;
    bottom: 16px;
    justify-content: space-between;
  }

  .hero-slide-label {
    right: 16px;
    left: 16px;
    bottom: 82px;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .hero-slider-section {
    padding-top: 42px;
  }

  .hero-slider-section h1 {
    font-size: 30px;
  }

  .hero-slider-track,
  .hero-slide img {
    min-height: 500px;
  }

  .hero-overlay {
    padding: 34px 18px 112px;
  }

  .hero-slider-controls {
    gap: 8px;
  }

  .hero-arrow {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

  .hero-dots {
    flex: 1;
    justify-content: center;
  }

  .hero-slide-label {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 13px;
    text-align: center;
  }

  .brand-logo {
    width: 170px;
    height: 54px;
  }

  .custom-logo {
    width: 170px;
    max-height: 54px;
  }

  .cards.three,
  .service-grid,
  .contact-methods,
  .example-gallery,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .contact-panel {
    padding: 24px;
  }

  .service-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-contact {
    right: 10px;
    left: 10px;
    bottom: 10px;
    justify-content: center;
  }

  .floating-contact a {
    flex: 1;
    padding: 10px 8px;
    font-size: 13px;
  }
}
