﻿:root {
  --ink: #f8fbff;
  --muted: #c8d3e4;
  --navy-950: #071426;
  --navy-900: #0b1d35;
  --navy-800: #10294a;
  --blue-700: #173f79;
  --blue-600: #235a9f;
  --steel: #8aa4c4;
  --line: rgba(255, 255, 255, 0.16);
  --amber: #f1b84b;
  --paper: #f3f6fa;
  --dark-text: #172033;
  --radius: 8px;
  --shadow: 0 24px 60px rgba(3, 10, 22, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--navy-950);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 58px);
  background: rgba(7, 20, 38, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--ink);
  color: var(--navy-900);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 17px;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 15px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

.language-switcher {
  display: inline-flex;
  justify-self: end;
  gap: 6px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.lang-button {
  display: grid;
  place-items: center;
  min-width: 42px;
  min-height: 34px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.lang-button.is-active {
  color: var(--navy-900);
  background: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 38px;
  place-items: center;
  gap: 5px;
  padding: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-menu-open .nav-toggle span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .nav-toggle span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 92svh;
  padding-top: 86px;
  background: var(--navy-900);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 38, 0.96) 0%, rgba(13, 37, 68, 0.88) 43%, rgba(13, 37, 68, 0.42) 100%),
    url("assets/hero-renovation.jpg?v=15") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 140px;
  background: var(--blue-700);
  clip-path: polygon(0 34%, 48% 34%, 58% 100%, 0 100%);
}

.halftone {
  position: absolute;
  top: 84px;
  right: 0;
  width: 320px;
  height: 260px;
  opacity: 0.28;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.38) 0 4px, transparent 4px);
  background-size: 22px 22px;
  mask-image: linear-gradient(130deg, transparent 0%, #000 35%, #000 80%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  align-items: center;
  gap: clamp(24px, 4vw, 70px);
  width: min(1180px, calc(100% - 36px));
  min-height: calc(92svh - 86px);
  margin: 0 auto;
  padding: clamp(26px, 4vw, 58px) 0 64px;
}

.section-kicker {
  margin: 0 0 16px;
  color: var(--steel);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 16px;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.18;
  text-transform: uppercase;
}

.service-checklist {
  display: grid;
  gap: 5px;
  max-width: 560px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  font-size: clamp(16px, 1.4vw, 19px);
}

.service-checklist li {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: start;
  gap: 12px;
}

.check-icon {
  position: relative;
  width: 25px;
  height: 25px;
  margin-top: 3px;
  border: 3px solid var(--ink);
  border-radius: 4px;
}

.check-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 46%;
  width: 13px;
  height: 7px;
  border-left: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hero-note {
  max-width: 520px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--navy-900);
  background: var(--ink);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.button-icon {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  font-size: 17px;
  line-height: 1;
}

.hero-media {
  position: relative;
  min-height: 560px;
}

.poly-image {
  position: absolute;
  overflow: hidden;
  margin: 0;
  background: var(--blue-700);
  box-shadow: var(--shadow);
  clip-path: polygon(12% 0, 88% 0, 100% 50%, 88% 100%, 12% 100%, 0 50%);
}

.poly-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 12px solid var(--blue-700);
  clip-path: inherit;
  pointer-events: none;
}

.poly-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poly-large {
  right: 5%;
  top: 28%;
  width: min(470px, 82%);
  aspect-ratio: 1.35;
}

.poly-top {
  top: 5%;
  right: 0;
  width: min(350px, 58%);
  aspect-ratio: 1.45;
}

.poly-bottom {
  right: 10%;
  bottom: 0;
  width: min(390px, 66%);
  aspect-ratio: 1.3;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  display: grid;
  gap: 4px;
  min-height: 132px;
  align-content: center;
  padding: 24px clamp(18px, 5vw, 72px);
  background: var(--blue-700);
}

.trust-item strong {
  font-family: Impact, "Arial Narrow", sans-serif;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.trust-item strong.trust-item-title {
  max-width: 420px;
  font-family: inherit;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.12;
  text-transform: none;
}

.trust-item span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 4vw, 58px);
}

.services-section {
  color: var(--dark-text);
  background: var(--paper);
}

.seo-section {
  color: var(--dark-text);
  background: #fff;
}

.seo-copy {
  display: grid;
  gap: 12px;
  width: min(920px, 100%);
  margin: 0 auto;
}

.seo-copy p {
  margin: 0;
  color: #4f5d72;
  font-size: 18px;
}

.faq-section {
  color: var(--dark-text);
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(960px, 100%);
  margin: 0 auto;
}

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

.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 16px;
  align-items: center;
  min-height: 76px;
  padding: 18px clamp(18px, 3vw, 26px);
  color: var(--dark-text);
  cursor: pointer;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 900;
  line-height: 1.22;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--blue-600);
  background: #e8eef6;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 clamp(18px, 3vw, 26px) 22px;
  color: #4f5d72;
  font-size: 18px;
  line-height: 1.62;
}

.section-heading {
  width: min(880px, 100%);
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading .section-kicker,
.work-copy .section-kicker,
.contact-copy .section-kicker {
  color: var(--blue-600);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-heading p:not(.section-kicker),
.work-copy p:not(.section-kicker),
.contact-copy p:not(.section-kicker) {
  color: #4f5d72;
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.service-card {
  min-height: 180px;
  padding: 24px;
  color: var(--dark-text);
  background: #fff;
  border: 1px solid #dbe3ee;
  border-radius: var(--radius);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.16;
}

.service-card p {
  color: #556478;
}

.service-number {
  display: block;
  margin-bottom: 20px;
  color: var(--blue-600);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 34px;
  line-height: 1;
}

.gallery-section {
  color: var(--dark-text);
  background: #fff;
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.85fr);
  align-items: end;
  gap: clamp(22px, 5vw, 70px);
  width: min(1180px, 100%);
  margin: 0 auto 34px;
}

.gallery-heading .section-kicker {
  color: var(--blue-600);
}

.gallery-heading p:not(.section-kicker) {
  margin-bottom: 0;
  color: #4f5d72;
  font-size: 18px;
}

.gallery-heading-compact {
  grid-template-columns: 1fr;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 150px;
  gap: 12px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.photo-tile {
  position: relative;
  overflow: hidden;
  min-height: 0;
  margin: 0;
  background: var(--navy-900);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(3, 10, 22, 0.14);
  cursor: zoom-in;
}

.photo-tile.is-hidden {
  display: none;
}

.photo-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(7, 20, 38, 0.12);
  pointer-events: none;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.photo-tile:hover img,
.photo-tile:focus-within img {
  transform: scale(1.03);
}

.photo-tile figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.gallery-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(1180px, 100%);
  margin: 22px auto 0;
}

.gallery-page-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  background: var(--blue-700);
  border: 1px solid rgba(7, 20, 38, 0.14);
  border-radius: 50%;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.gallery-page-button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.gallery-page-status {
  min-width: 78px;
  color: #4f5d72;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.photo-tile-wide {
  grid-column: span 1;
}

.photo-tile-tall {
  grid-row: span 1;
}

.lightbox {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(3, 10, 22, 0.86);
  touch-action: pan-y;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-image {
  max-width: min(100%, 1100px);
  max-height: min(82vh, 820px);
  object-fit: contain;
  background: var(--navy-950);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-close {
  position: absolute;
  top: clamp(14px, 3vw, 28px);
  right: clamp(14px, 3vw, 28px);
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

body.lightbox-open {
  overflow: hidden;
}

.work-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: start;
  gap: clamp(28px, 5vw, 80px);
  background:
    linear-gradient(rgba(7, 20, 38, 0.84), rgba(7, 20, 38, 0.9)),
    url("assets/painting-work.jpg?v=15") center / cover fixed;
}

.work-copy {
  max-width: 560px;
}

.work-copy .section-kicker {
  color: var(--steel);
}

.work-copy p:not(.section-kicker) {
  color: var(--muted);
}

.process-list {
  display: grid;
  gap: 12px;
}

.process-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  min-height: 88px;
  border-top: 1px solid var(--line);
}

.process-item span {
  color: var(--amber);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 38px;
}

.process-item p {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
}

.contact-section {
  padding: clamp(58px, 7vw, 92px) clamp(18px, 4vw, 58px);
  color: var(--dark-text);
  background:
    linear-gradient(90deg, rgba(7, 20, 38, 0.72) 0%, rgba(7, 20, 38, 0.44) 46%, rgba(7, 20, 38, 0.06) 78%),
    linear-gradient(180deg, #f7fafc 0%, #e7eef6 100%),
    var(--light);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.82fr);
  gap: clamp(24px, 4vw, 48px);
  width: min(1080px, 100%);
  margin: 0 auto;
  align-items: stretch;
}

.contact-copy {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 18px;
  height: 100%;
}

.contact-copy h2 {
  max-width: 620px;
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 950;
  line-height: 1.02;
  text-shadow: 0 3px 18px rgba(6, 20, 38, 0.58), 0 1px 2px rgba(6, 20, 38, 0.72);
}

.contact-copy p:not(.section-kicker) {
  max-width: 580px;
  color: #f7fbff;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.65;
  text-shadow: 0 2px 12px rgba(6, 20, 38, 0.58), 0 1px 2px rgba(6, 20, 38, 0.66);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 11px 17px;
  color: var(--navy-900);
  background: #fff;
  border: 1px solid rgba(14, 40, 68, 0.14);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(14, 40, 68, 0.08);
  font-size: 14px;
  font-weight: 900;
}

.contact-action-primary {
  color: #fff;
  background: var(--blue-600);
  border-color: var(--blue-600);
}

.contact-action-whatsapp {
  color: #0d3b24;
  background: #fff;
}

.whatsapp-mark {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.28);
}

.whatsapp-mark svg {
  width: 19px;
  height: 19px;
  fill: #fff;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 9px;
  margin-top: 2px;
  height: 100%;
}

.contact-item {
  display: grid;
  align-content: start;
  gap: 5px;
  min-height: 82px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(14, 40, 68, 0.12);
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(14, 40, 68, 0.08);
}

.contact-item-wide {
  grid-column: 1 / -1;
}

.contact-item-label {
  color: #355a82;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-copy .contact-item a,
.contact-copy .contact-item p {
  margin: 0;
  color: #0b2038;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.28;
  text-shadow: none;
  overflow-wrap: normal;
  word-break: normal;
}

.contact-copy .contact-item a {
  color: #0b2038;
  text-decoration: none;
}

.contact-copy .contact-item a[href^="mailto:"] {
  font-size: 14px;
  white-space: nowrap;
}

.contact-form {
  display: grid;
  align-content: start;
  gap: 12px;
  height: 100%;
  padding: clamp(18px, 2.4vw, 26px);
  color: var(--ink);
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  outline: 0;
  padding: 11px 12px;
  font-size: 15px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.contact-form select {
  min-height: 44px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:
    calc(100% - 21px) 21px,
    calc(100% - 15px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.contact-form select option {
  color: var(--dark-text);
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 118px;
}

.field-meta {
  display: flex;
  justify-content: flex-end;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.spam-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  padding: 12px 14px;
  color: var(--navy-900);
  background: #d8f5df;
  border-radius: 6px;
  font-weight: 800;
}

.form-status[data-status="error"] {
  color: #fff;
  background: #b3261e;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-link {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: #0b2038;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(6, 20, 38, 0.18);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
}

.social-link-instagram {
  background: #b33f78;
}

.social-link-tiktok {
  background: #10151f;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr) auto;
  align-items: center;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 58px);
  color: var(--muted);
  background: var(--navy-950);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.footer-brand {
  display: grid;
  gap: 4px;
}

.footer-brand p:first-child {
  color: var(--ink);
  font-weight: 900;
}

.footer-credit {
  color: var(--steel);
  font-size: 13px;
  font-weight: 700;
}

.footer-credit a {
  color: var(--ink);
  text-decoration: none;
}

.footer-credit a:hover {
  text-decoration: underline;
}

.footer-hours {
  display: grid;
  gap: 4px;
}

.footer-hours > span {
  color: var(--steel);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-hours p {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.footer-social {
  justify-self: end;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 14px;
    right: 14px;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 8px;
    color: var(--ink);
    background: rgba(7, 20, 38, 0.96);
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 20px 42px rgba(3, 10, 22, 0.34);
  }

  .site-header.is-menu-open .nav-links {
    display: grid;
  }

  .nav-links a {
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 6px;
    font-weight: 800;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-toggle {
    display: grid;
  }

  .hero-inner,
  .work-section,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: start;
    padding-bottom: 44px;
  }

  .hero-media {
    min-height: 430px;
  }

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

  .gallery-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 140px;
  }

  .work-section {
    background-attachment: scroll;
  }
}

@media (max-height: 760px) and (min-width: 981px) {
  .hero-note {
    display: none;
  }

  .hero-actions {
    margin-bottom: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: sticky;
    padding: 12px 14px;
    gap: 12px;
  }

  .brand span:last-child {
    max-width: 128px;
    font-size: 11px;
    line-height: 1.2;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }

  .language-switcher {
    gap: 2px;
  }

  .lang-button {
    min-width: 30px;
    min-height: 30px;
    font-size: 13px;
  }

  .nav-toggle {
    width: 38px;
    height: 36px;
    padding: 8px;
  }

  .hero {
    min-height: auto;
    padding-top: 0;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(7, 20, 38, 0.94), rgba(10, 31, 58, 0.86)),
      url("assets/hero-renovation.jpg?v=15") center / cover no-repeat;
  }

  .hero-inner {
    min-height: auto;
    width: min(100% - 28px, 1180px);
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(39px, 14vw, 62px);
  }

  .hero-lead {
    font-size: 20px;
  }

  .service-checklist {
    font-size: 17px;
  }

  .hero-note {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .hero-media {
    min-height: 350px;
  }

  .poly-large {
    right: 0;
    top: 24%;
    width: 86%;
  }

  .poly-top {
    width: 62%;
  }

  .poly-bottom {
    right: 0;
    width: 70%;
  }

  .trust-strip,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 10px;
  }

  .photo-tile,
  .photo-tile-wide,
  .photo-tile-tall {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1;
  }

  .trust-item {
    min-height: 104px;
  }

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

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

  .process-item p {
    font-size: 17px;
  }

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

  .contact-actions {
    display: grid;
  }

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

  .contact-item {
    min-height: auto;
  }

  .contact-form {
    padding: 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
  }

  .footer-brand,
  .footer-hours {
    width: 100%;
    min-width: 0;
  }

  .site-footer p {
    overflow-wrap: anywhere;
  }

  .footer-social {
    justify-self: center;
    justify-content: center;
    max-width: 100%;
    flex-wrap: wrap;
  }
}

@media (max-width: 380px) {
  .site-header {
    gap: 8px;
    padding: 10px 12px;
  }

  .brand span:last-child {
    max-width: 96px;
    font-size: 10px;
  }

  .language-switcher {
    padding: 3px;
  }

  .lang-button {
    min-width: 28px;
  }

  .nav-toggle {
    width: 36px;
  }
}

