:root {
  --accent: #d02e26;
  --accent-dark: #a82219;
  --accent-tint: #fceceb;
  --accent-soft: #f07a63;
  --dark: #17171a;
  --dark-2: #212126;
  --ink: #221c17;
  --body: #4d443c;
  --muted: #786d63;
  --gray-bg: #f7f4ef;
  --line: #e9e3da;
  --radius: 14px;
  --radius-btn: 6px;
  --shadow-soft: 0 10px 30px rgba(33, 25, 21, 0.12);
  --shadow-card: 0 4px 18px rgba(33, 25, 21, 0.08);
  --shadow-hover: 0 14px 34px rgba(33, 25, 21, 0.14);
  --sec-y: clamp(4rem, 8vw, 6.25rem);
  --nav-h: 72px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body);
  background: #ffffff;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

body h1,
body h2,
body h3 {
  font-family: 'Sora', system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

body h1 {
  font-size: clamp(2.05rem, 4.3vw, 3.05rem);
  font-weight: 800;
  line-height: 1.08;
}

body h2 {
  font-size: clamp(1.65rem, 3.1vw, 2.3rem);
  font-weight: 700;
}

body h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--dark);
  color: #fff;
  padding: 10px 18px;
  z-index: 300;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.container {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.topbar {
  background: var(--dark);
  color: #cec6bd;
  font-size: 0.84rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-usp {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.topbar-usp-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #efe9e2;
  font-weight: 600;
  white-space: nowrap;
}

.topbar-usp-item svg {
  color: #efa02c;
  flex: 0 0 auto;
}

.topbar-usp-item--extra {
  color: #b5aca2;
  font-weight: 500;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #e6e8ec;
  font-weight: 500;
}

.topbar-link svg {
  color: var(--accent-soft);
  flex: 0 0 auto;
}

.topbar-link:hover {
  color: #ffffff;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 120;
  background: var(--dark);
}

.nav.scrolled {
  box-shadow: 0 8px 28px rgba(8, 8, 12, 0.35);
}

.nav-inner {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img {
  height: 44px;
  width: auto;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links li a {
  display: inline-block;
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 0.94rem;
  border-radius: var(--radius-btn);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-links li a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-links li a.nav-cta {
  background: var(--accent);
  color: #ffffff;
  padding: 11px 20px;
  margin-left: 8px;
}

.nav-links li a.nav-cta:hover {
  background: var(--accent-dark);
  color: #ffffff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(21, 22, 26, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 110;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: var(--radius-btn);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(21, 22, 26, 0.18);
}

.btn-light {
  background: #ffffff;
  color: var(--ink);
}

.btn-light:hover {
  background: #e9ebee;
  color: var(--ink);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid #d8d1c7;
}

.btn-ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: rgba(33, 25, 21, 0.04);
}

.hero {
  position: relative;
  min-height: clamp(580px, 88vh, 840px);
  display: flex;
  align-items: center;
  overflow: clip;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero-slide.active {
  opacity: 1;
  animation: heroZoom 9s ease-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.07);
  }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(30, 20, 13, 0.82) 0%, rgba(30, 20, 13, 0.56) 48%, rgba(30, 20, 13, 0.26) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 72px;
  padding-bottom: 72px;
}

.hero-content h1 {
  color: #ffffff;
  max-width: 720px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.hero-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  max-width: 540px;
  margin-top: 20px;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
}

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

.hero-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.hero-chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-btn);
  background: rgba(30, 20, 13, 0.5);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.86rem;
}

.hero-chips li::before {
  content: "\2713";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  flex: 0 0 auto;
}

.section {
  padding-top: var(--sec-y);
  padding-bottom: var(--sec-y);
}

.section--gray {
  background: var(--gray-bg);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(2.6rem, 5vw, 4rem);
}

.section-head p {
  margin-top: 14px;
  font-size: 1rem;
}

.statement-text {
  text-align: center;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink);
}

.text-link {
  color: var(--accent);
  font-weight: 600;
}

.text-link:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.statement-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.6rem);
  max-width: 1020px;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
}

.statement-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.statement-badge-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-btn);
  background: var(--accent-tint);
  color: var(--accent);
  flex: 0 0 auto;
}

.statement-badge-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.statement-badge-text strong {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.08rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.statement-badge-text span {
  font-size: 0.92rem;
  color: var(--muted);
}

.statement-more {
  text-align: center;
  margin-top: clamp(2rem, 4vw, 2.8rem);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.98rem;
}

.arrow-link svg {
  transition: transform 0.2s ease;
}

.arrow-link:hover {
  color: var(--accent-dark);
}

.arrow-link:hover svg {
  transform: translateX(4px);
}

.feature-panel {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.feature-media {
  position: relative;
  min-height: 380px;
}

.feature-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-body {
  padding: clamp(1.8rem, 3.5vw, 3.2rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.feature-body h3 {
  font-size: 1.45rem;
}

.feature-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.feature-body > p {
  margin-top: 14px;
}

.tag-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
  width: 100%;
}

.tag-grid li {
  background: var(--gray-bg);
  border-radius: var(--radius-btn);
  padding: 11px 15px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}



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

.service-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.service-card-media {
  overflow: hidden;
}

.service-card-media img,
.service-card-media video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: var(--dark);
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-media img,
.service-card:hover .service-card-media video {
  transform: scale(1.04);
}

.service-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 24px 26px 28px;
}

.service-card-body h3 {
  font-size: 1.14rem;
}

.service-card-body p {
  margin-top: 10px;
  font-size: 0.95rem;
  color: var(--body);
}

.service-card-body .arrow-link {
  margin-top: auto;
  padding-top: 18px;
}

.process-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-top: 22px;
}

.process-panel h3 {
  font-size: 1.3rem;
  margin-bottom: clamp(1.4rem, 3vw, 2rem);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.4rem, 3vw, 2.2rem);
}

.process-step strong {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.02rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.process-step strong::before {
  content: "\2713";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-btn);
  background: var(--accent);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 700;
  flex: 0 0 auto;
}

.process-step span {
  display: block;
  margin-top: 9px;
  font-size: 0.93rem;
  color: var(--body);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 2.5vw, 1.6rem);
}

.project-step--video {
  grid-row: span 2;
}

.video-fill {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  background: var(--dark);
}

.video-fill video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-step {
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.project-step img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.project-step figcaption {
  padding: 16px 20px 20px;
}

.project-step figcaption strong {
  display: block;
  font-family: 'Sora', system-ui, sans-serif;
  color: var(--ink);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.project-step figcaption span {
  display: block;
  font-size: 0.93rem;
  color: var(--body);
  margin-top: 4px;
}

.reviews-widget {
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
  min-height: 140px;
}

.stats-band {
  position: relative;
  background: var(--dark);
  padding-top: clamp(4rem, 8vw, 6rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  overflow: clip;
}

.stats-band-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-band-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 18, 12, 0.66) 0%, rgba(28, 18, 12, 0.56) 100%);
}

.stats-band-inner {
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}

.stat strong {
  display: block;
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2.1rem, 4.2vw, 2.9rem);
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 1rem;
}

.stats-cta {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(1.8rem, 4vw, 2.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  text-align: center;
}

.stats-cta p {
  color: #ffffff;
  font-size: 1.08rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.stats-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: clamp(220px, 23vw, 330px);
  gap: 18px;
}

.gallery-item {
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-subhead {
  margin-top: clamp(2.6rem, 5vw, 3.6rem);
}

.gallery-more {
  text-align: center;
  margin-top: clamp(1.8rem, 3.5vw, 2.4rem);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.split-text p {
  margin-top: 20px;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-tel {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.contact-tel-text {
  display: flex;
  flex-direction: column;
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
}

.contact-tel-text small {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.contact-tel:hover .contact-tel-text {
  color: var(--accent);
}

.contact-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-btn);
  background: var(--accent-tint);
  color: var(--accent);
  flex: 0 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.contact-left > p {
  margin-top: 18px;
  max-width: 440px;
}

.contact-info-list {
  list-style: none;
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.contact-info-text strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.contact-info-text a,
.contact-info-text span {
  color: var(--body);
  font-size: 0.98rem;
  overflow-wrap: anywhere;
}

.contact-info-text a:hover {
  color: var(--accent);
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 28px;
  box-shadow: var(--shadow-card);
  background: #ffffff;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 240px;
  border: none;
}

.contact-form-panel {
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: clamp(1.6rem, 3vw, 2.4rem);
}

#contact-form {
  max-width: 100%;
  min-width: 0;
  display: grid;
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 7px;
}

.form-group label {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.92rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #d4d7dd;
  border-radius: var(--radius-btn);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.96rem;
  color: var(--ink);
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8b909a;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(179, 36, 50, 0.15);
}

.form-group textarea {
  resize: vertical;
}

.btn-submit {
  width: 100%;
}

.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.ms-recaptcha-notice {
  text-align: center;
}

.footer {
  background: var(--dark);
  color: #c3bab1;
  padding-top: clamp(3.5rem, 7vw, 5rem);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
  padding-bottom: clamp(2rem, 4vw, 2.8rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top-brand {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.footer-top-brand img {
  height: 64px;
  width: auto;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(255, 255, 255, 0.14);
  flex: 0 0 auto;
}

.footer-top-brand p {
  font-size: 0.95rem;
  max-width: 420px;
}

.footer-top-actions {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2rem);
  flex-wrap: wrap;
}

.footer-tel {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.footer-tel .contact-ico {
  background: rgba(208, 46, 38, 0.22);
  color: var(--accent-soft);
}

.footer-tel-text {
  display: flex;
  flex-direction: column;
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #ffffff;
  line-height: 1.25;
}

.footer-tel-text small {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #a99e93;
}

.footer-tel:hover .footer-tel-text {
  color: var(--accent-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.4fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-top: clamp(2rem, 4vw, 2.8rem);
  padding-bottom: clamp(2.2rem, 4vw, 3rem);
}

.footer-col h3 {
  color: #ffffff;
  font-size: 1.02rem;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-col a,
.footer-col span {
  color: #c3bab1;
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-icon-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.footer-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-btn);
  background: rgba(208, 46, 38, 0.2);
  color: var(--accent-soft);
  flex: 0 0 auto;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  padding-bottom: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 0.86rem;
  color: #94897d;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(13, 14, 17, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 200;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(88vw, 1100px);
  max-height: 84vh;
  border-radius: var(--radius-btn);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-btn);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.fade-in,
.fade-in-left,
.fade-in-right {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

@media (min-width: 901px) {
  .fade-in-left {
    transform: translateX(-30px);
  }

  .fade-in-right {
    transform: translateX(30px);
  }
}

.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.nav-links li.has-sub {
  position: relative;
}

.nav-links li.has-sub > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-caret {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
}

.nav-sub {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 248px;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-btn);
  padding: 8px;
  box-shadow: 0 18px 36px rgba(12, 8, 5, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.nav-links li.has-sub:hover .nav-sub,
.nav-links li.has-sub:focus-within .nav-sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-sub li a {
  display: block;
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.92rem;
}

.subhero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(340px, 44vh, 470px);
  overflow: clip;
}

.subhero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subhero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24, 16, 11, 0.86) 0%, rgba(24, 16, 11, 0.64) 52%, rgba(24, 16, 11, 0.34) 100%);
}

.subhero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
}

.subhero h1 {
  color: #ffffff;
  max-width: 780px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.subhero-lead {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  max-width: 620px;
  margin-top: 18px;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
}

.pagehead {
  background: var(--dark);
  padding-top: clamp(2.2rem, 5vw, 3.2rem);
  padding-bottom: clamp(2.4rem, 5vw, 3.4rem);
}

.pagehead h1 {
  color: #ffffff;
  max-width: 800px;
}

.pagehead .subhero-lead {
  text-shadow: none;
}

.cta-panel {
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: clamp(1.8rem, 4vw, 3rem);
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.cta-panel p {
  margin-top: 14px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.crumbs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.crumbs a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.crumbs a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.crumbs span {
  color: rgba(255, 255, 255, 0.62);
}

.crumbs-sep {
  color: rgba(255, 255, 255, 0.38);
}

.split--flip .split-media {
  order: -1;
}

.rich {
  max-width: 800px;
}

.rich p + p,
.rich p + ul,
.rich ul + p {
  margin-top: 16px;
}

.rich > h2 + p,
.rich > h3 + p {
  margin-top: 16px;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 11px;
  margin-top: 20px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--body);
}

.check-list svg {
  color: var(--accent);
  flex: 0 0 auto;
  margin-top: 4px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 22px;
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary:hover {
  color: var(--accent);
}

.faq-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex: 0 0 auto;
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-ico {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 22px 20px;
}

.faq-body p {
  font-size: 0.97rem;
}

.faq-body p + p {
  margin-top: 14px;
}

.cta-band {
  background: var(--dark);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.cta-band-inner {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band h2 {
  color: #ffffff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  margin-top: 16px;
  font-size: 1.05rem;
}

.cta-band-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.area-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3.2vw, 2.6rem);
  margin-top: clamp(2rem, 4vw, 2.8rem);
}

.area-panel h3 {
  font-size: 1.25rem;
}

.area-panel > p {
  margin-top: 14px;
  max-width: 760px;
}

.area-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.area-list li {
  background: var(--gray-bg);
  border-radius: var(--radius-btn);
  padding: 9px 15px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}

.slideshow {
  position: relative;
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
}

.slideshow-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3 / 2;
}

.slideshow-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.slideshow-slide.active {
  opacity: 1;
}

.slideshow-btn {
  position: absolute;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  transform: translateY(-50%);
  border: none;
  border-radius: var(--radius-btn);
  background: rgba(19, 13, 9, 0.55);
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.2s ease;
  z-index: 2;
}

.slideshow-btn:hover {
  background: rgba(19, 13, 9, 0.8);
}

.slideshow-btn:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
}

.slideshow-prev {
  left: 14px;
}

.slideshow-next {
  right: 14px;
}

.slideshow-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
}

.slideshow-caption {
  font-size: 0.95rem;
  color: var(--muted);
  min-height: 1.7em;
}

.slideshow-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  flex: 0 0 auto;
}

.slideshow-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #d3ccc2;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.slideshow-dot:hover {
  background: var(--accent-soft);
}

.slideshow-dot.active {
  background: var(--accent);
  transform: scale(1.35);
}

.slideshow-dot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 clamp(1.5rem, 4vw, 3rem);
  margin-top: clamp(1.6rem, 3vw, 2.2rem);
}

.facts-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.facts-row dt {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.facts-row dd {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.02rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
}

.facts-row dd a {
  color: var(--ink);
}

.facts-row dd a:hover {
  color: var(--accent);
}

.video-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.video-card {
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.video-card video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: var(--dark);
}

.video-card figcaption {
  padding: 16px 20px 20px;
}

.video-card figcaption strong {
  display: block;
  font-family: 'Sora', system-ui, sans-serif;
  color: var(--ink);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.video-card figcaption span {
  display: block;
  font-size: 0.93rem;
  color: var(--body);
  margin-top: 4px;
}

.gallery-note {
  text-align: center;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  margin-top: clamp(2rem, 4vw, 2.6rem);
  font-size: 0.95rem;
  color: var(--muted);
}

.policy {
  max-width: 800px;
}

.policy h2 {
  font-size: 1.4rem;
  margin-top: clamp(2.2rem, 4vw, 3rem);
}

.policy h2:first-child {
  margin-top: 0;
}

.policy p,
.policy ul {
  margin-top: 14px;
}

.policy ul {
  padding-left: 22px;
}

.policy li + li {
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .service-card-body {
    padding: 20px 20px 24px;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px 24px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 34px rgba(20, 13, 9, 0.4);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links li a {
    display: block;
    padding: 15px 8px;
    font-size: 1.02rem;
    border-radius: 0;
  }

  .nav-links li a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-links li a.nav-cta {
    margin-left: 0;
    margin-top: 14px;
    text-align: center;
    border-radius: var(--radius-btn);
  }

  .feature-panel {
    grid-template-columns: 1fr;
  }

  .feature-media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .service-cards {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .split-media,
  .split--flip .split-media {
    order: 2;
  }

  .nav-caret {
    display: none;
  }

  .nav-sub {
    position: static;
    min-width: 0;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 12px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .nav-sub li a {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.96rem;
    padding: 13px 8px;
  }

    .facts {
    grid-template-columns: 1fr;
  }

  .video-cards {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-step--video {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .project-step--video .video-fill {
    flex: 0 0 auto;
    aspect-ratio: 4 / 3;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-score {
    padding-right: 0;
  }

}

@media (max-width: 640px) {
  .topbar-link--mail,
  .topbar-usp-item--extra {
    display: none;
  }

  .topbar-usp-item {
    font-size: 0.8rem;
  }

  .footer-top-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-top-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .footer-top-actions .btn {
    width: 100%;
  }

  .hero {
    min-height: 580px;
  }

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

  .hero-buttons .btn {
    flex: 1 1 100%;
  }

  .statement-cols {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .tag-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: clamp(130px, 42vw, 200px);
    gap: 12px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .stats-cta-buttons .btn {
    flex: 1 1 100%;
  }

  .contact-grid > div {
    min-width: 0;
    max-width: 100%;
  }

  .slideshow-frame {
    aspect-ratio: 4 / 3;
  }

  .slideshow-btn {
    width: 40px;
    height: 40px;
  }

  .slideshow-prev {
    left: 8px;
  }

  .slideshow-next {
    right: 8px;
  }

  .slideshow-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cta-band-buttons .btn {
    flex: 1 1 100%;
  }
}

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

  .hero-slide.active {
    animation: none;
  }

  .hero-slide {
    transition: none;
  }

  .fade-in,
  .fade-in-left,
  .fade-in-right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .gallery-item img,
  .service-card-media img,
  .service-card-media video,
  .arrow-link svg,
  .slideshow-slide,
  .faq-ico {
    transition: none;
  }
}
