:root {
  color-scheme: light;
  --ink: #171a1f;
  --muted: #5d6a76;
  --paper: #ffffff;
  --soft: #f3f8fb;
  --line: #d6e5ee;
  --steel: #61717e;
  --navy: #003f63;
  --navy-dark: #06283f;
  --blue: #9ed2ee;
  --blue-soft: #dceff8;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

body,
button,
input,
textarea {
  font: inherit;
}

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

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

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid rgba(214, 229, 238, 0.92);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

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

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

.brand strong {
  color: var(--navy);
  font-size: 17px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 28px);
  color: var(--navy-dark);
  font-size: 14px;
  font-weight: 750;
}

.nav a,
.footer a {
  text-underline-offset: 4px;
}

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

.header-call {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 6px;
  background: var(--navy);
  color: white;
  font-weight: 850;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(590px, 86vh, 790px);
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 24, 39, 0.95), rgba(3, 31, 50, 0.82) 44%, rgba(4, 35, 55, 0.26) 78%),
    linear-gradient(0deg, rgba(4, 35, 55, 0.5), rgba(4, 35, 55, 0.08) 30%);
}

.hero-content {
  position: relative;
  align-self: center;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 82px);
  padding-bottom: 70px;
  color: white;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.38);
}

.eyebrow {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin-top: 13px;
  font-size: clamp(42px, 6.2vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 650px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.48;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.button.primary {
  background: var(--blue);
  color: var(--navy-dark);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.66);
  color: white;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 4px rgba(158, 210, 238, 0.22),
    0 16px 34px rgba(158, 210, 238, 0.28);
}

.button.secondary:hover {
  border-color: var(--blue);
  background: rgba(158, 210, 238, 0.14);
}

.whatsapp-button {
  gap: 9px;
}

.whatsapp-button svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.whatsapp-button svg path {
  fill: white;
}

.whatsapp-button:hover,
.whatsapp-contact:hover {
  box-shadow:
    0 0 0 4px rgba(37, 211, 102, 0.22),
    0 16px 34px rgba(37, 211, 102, 0.24);
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(1120px, calc(100% - 36px));
  margin: -58px auto 0;
  overflow: hidden;
  border: 1px solid rgba(158, 210, 238, 0.34);
  border-radius: 8px;
  background: var(--navy-dark);
  box-shadow: 0 26px 70px rgba(0, 42, 66, 0.22);
}

.trust-strip div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  align-items: start;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    var(--navy-dark);
}

.trust-strip div + div {
  border-left: 1px solid rgba(158, 210, 238, 0.24);
}

.trust-number {
  display: grid;
  grid-row: span 2;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(158, 210, 238, 0.36);
  border-radius: 8px;
  background: rgba(158, 210, 238, 0.14);
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0;
}

.trust-icon {
  font-size: 22px;
}

.trust-years {
  gap: 1px;
  font-size: 15px;
  line-height: 1;
}

.trust-years small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-strip strong {
  color: white;
  font-size: 17px;
  line-height: 1.22;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.45;
}

.section,
.who-help,
.prevention,
.assessment,
.service-grid,
.service-summary,
.authenticity,
.process,
.metal-art,
.gallery,
.reviews,
.seo-faq,
.band,
.contact {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  padding: clamp(70px, 10vw, 120px) 0;
}

.section h2,
.band h2,
.contact h2 {
  margin-top: 10px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section p,
.band p,
.contact p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.who-help {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 64px);
  padding-top: clamp(78px, 10vw, 124px);
  padding-bottom: clamp(62px, 9vw, 108px);
}

.who-help-heading h2 {
  margin-top: 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

.who-help-heading p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

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

.help-grid article,
.help-grid a {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: 0 14px 34px rgba(6, 40, 63, 0.06);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.help-grid a {
  padding-bottom: 58px;
}

.help-grid a::after {
  content: "View page";
  position: absolute;
  left: 22px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 6px;
  background: var(--navy-dark);
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.help-grid a:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  box-shadow: 0 18px 42px rgba(6, 40, 63, 0.12);
}

.help-grid h3 {
  color: var(--navy);
  font-size: 21px;
  line-height: 1.16;
}

.help-grid p {
  color: var(--muted);
  line-height: 1.58;
}

.prevention {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
  padding: clamp(30px, 5vw, 52px);
  margin-bottom: clamp(62px, 9vw, 108px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(220, 239, 248, 0.96), rgba(243, 248, 251, 0.96)),
    var(--soft);
  border: 1px solid var(--line);
}

.prevention-copy h2 {
  margin-top: 10px;
  color: var(--navy-dark);
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

.prevention-copy p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.prevention-visual {
  align-self: stretch;
}

.prevention-visual figure {
  height: 100%;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(0, 63, 99, 0.14);
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(6, 40, 63, 0.16);
}

.prevention-visual img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: 50% 50%;
}

.prevention-panel {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding: 20px;
  border-radius: 8px;
  background: var(--navy-dark);
  color: white;
}

.prevention-panel h3 {
  font-size: 22px;
  line-height: 1.14;
}

.prevention-panel p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.5;
}

.prevention-panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 44px;
  margin-top: 6px;
  padding: 0 14px;
  border-radius: 6px;
  background: var(--blue);
  color: var(--navy-dark);
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
}

.assessment {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
  padding: clamp(42px, 7vw, 82px) 0;
}

.assessment-heading h2 {
  margin-top: 10px;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

.assessment-heading p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.assessment-form,
.assessment-result {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.assessment-form {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 3vw, 32px);
}

.assessment-contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.assessment label {
  color: var(--navy-dark);
  font-weight: 800;
  line-height: 1.35;
}

.assessment-contact label {
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.assessment input[type="text"],
.assessment input[type="email"] {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  color: var(--ink);
}

.assessment fieldset {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.assessment legend {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 21px;
  font-weight: 850;
}

.assessment fieldset label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid rgba(0, 63, 99, 0.12);
  border-radius: 8px;
  background: white;
  font-weight: 650;
}

.assessment input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--navy);
}

.assessment-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.assessment-privacy {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.assessment-result {
  grid-column: 2;
  display: grid;
  gap: 12px;
  padding: 24px;
  border-color: rgba(0, 63, 99, 0.22);
  background: var(--navy-dark);
  color: white;
}

.assessment-result[hidden] {
  display: none;
}

.assessment-result h3 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.assessment-message {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.assessment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.assessment-result .button.secondary {
  border-color: rgba(255, 255, 255, 0.48);
}

.authenticity {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-bottom: clamp(62px, 9vw, 108px);
}

.authenticity-copy h2 {
  margin-top: 10px;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.04;
  letter-spacing: 0;
}

.authenticity-copy p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.authenticity-photos {
  display: block;
}

.authenticity-photos figure {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}

.authenticity-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.metal-art {
  display: grid;
  grid-template-columns: minmax(220px, 0.44fr) minmax(0, 1.56fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding-bottom: clamp(70px, 10vw, 118px);
}

.metal-art-copy {
  position: sticky;
  top: 100px;
}

.metal-art-copy h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

.metal-art-copy p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.metal-art-marquee {
  position: relative;
  overflow: hidden;
  padding: 4px 0 10px;
}

.metal-art-marquee::before,
.metal-art-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 54px;
  content: "";
  pointer-events: none;
}

.metal-art-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), rgba(255, 255, 255, 0));
}

.metal-art-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), rgba(255, 255, 255, 0));
}

.metal-art-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: metal-art-scroll 38s linear infinite;
}

.metal-art-marquee:hover .metal-art-track {
  animation-play-state: paused;
}

.metal-art-track figure {
  position: relative;
  flex: 0 0 clamp(250px, 28vw, 340px);
  aspect-ratio: 1 / 1;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}

.metal-art-track figure:nth-child(6n + 1) {
  flex-basis: clamp(300px, 34vw, 420px);
  aspect-ratio: 1 / 1;
}

.metal-art-track img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  cursor: zoom-in;
}

.process {
  padding: clamp(58px, 8vw, 90px) clamp(20px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: white;
  margin-bottom: clamp(58px, 8vw, 90px);
}

.process-heading {
  max-width: 820px;
}

.process-heading h2 {
  margin-top: 10px;
  max-width: 760px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

.process-heading p {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.62;
}

.process-heading .eyebrow {
  margin-top: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.process-steps article {
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.process-steps span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.process-steps h3 {
  font-size: 22px;
  line-height: 1.14;
}

.process-steps p,
.process-note {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.58;
}

.process-note {
  margin-top: 22px;
  max-width: 850px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: clamp(56px, 8vw, 92px);
}

.service-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  padding: 0 0 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card > :not(.service-image) {
  margin-right: 28px;
  margin-left: 28px;
}

.service-card h3 {
  font-size: 24px;
  line-height: 1.12;
}

.service-card p,
.service-card li {
  color: var(--muted);
  line-height: 1.58;
}

.service-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
}

.service-link {
  align-self: end;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 6px;
  background: var(--navy-dark);
  color: white;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.service-link:hover {
  background: var(--navy);
}

.checker-button {
  justify-self: start;
  width: fit-content;
  min-width: 220px;
  box-shadow: 0 12px 28px rgba(0, 63, 99, 0.16);
}

.checker-button:hover {
  background: var(--blue);
  color: var(--navy-dark);
}

.page-intro {
  display: grid;
  gap: 18px;
}

.page-intro p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.service-summary article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.service-summary h3 {
  font-size: 21px;
  line-height: 1.18;
}

.service-summary p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.58;
}

.gallery {
  padding-bottom: clamp(70px, 10vw, 118px);
}

.gallery-heading {
  margin-bottom: 24px;
}

.gallery-heading h2 {
  color: var(--navy-dark);
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}

.gallery-heading-simple h2 {
  margin: 0;
}

.gallery-marquee {
  position: relative;
  overflow: hidden;
  padding: 4px 0 10px;
}

.gallery-marquee::before,
.gallery-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 76px;
  content: "";
  pointer-events: none;
}

.gallery-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), rgba(255, 255, 255, 0));
}

.gallery-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), rgba(255, 255, 255, 0));
}

.gallery-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: gallery-scroll 88s linear infinite;
}

.gallery-marquee:hover .gallery-track {
  animation-play-state: paused;
}

.gallery-track figure {
  position: relative;
  flex: 0 0 clamp(250px, 28vw, 350px);
  aspect-ratio: 1 / 1;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}

.gallery-track figure:nth-child(5n + 1) {
  flex-basis: clamp(300px, 34vw, 430px);
}

.gallery-track img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  cursor: zoom-in;
}

.reviews {
  padding: clamp(58px, 8vw, 90px) 0;
  border-top: 1px solid var(--line);
}

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

.reviews-heading h2 {
  margin-top: 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

.google-stars {
  margin-left: 8px;
  color: #fbbc04;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.reviews-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 15px;
  border-radius: 6px;
  background: var(--navy);
  color: white;
  font-weight: 850;
  white-space: nowrap;
}

.review-marquee {
  position: relative;
  overflow: hidden;
  padding: 4px 0;
}

.review-marquee::before,
.review-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 70px;
  content: "";
  pointer-events: none;
}

.review-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), rgba(255, 255, 255, 0));
}

.review-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), rgba(255, 255, 255, 0));
}

.review-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: review-scroll 48s linear infinite;
}

.review-marquee:hover .review-track {
  animation-play-state: paused;
}

.review-card {
  display: grid;
  align-content: start;
  gap: 12px;
  width: min(365px, calc(100vw - 54px));
  min-height: 245px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: 0 14px 34px rgba(0, 63, 99, 0.08);
}

.stars {
  color: var(--navy);
  font-size: 19px;
  letter-spacing: 0.08em;
}

.review-card p {
  color: var(--ink);
  line-height: 1.58;
}

.review-card strong {
  color: var(--navy);
  font-size: 16px;
}

.review-card span {
  color: var(--muted);
  font-size: 13px;
}

@keyframes review-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

@keyframes gallery-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

@keyframes metal-art-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.82fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(44px, 7vw, 72px);
  border-radius: 8px;
  background: var(--navy-dark);
  color: white;
}

.band p {
  color: rgba(255, 255, 255, 0.78);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
}

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

.why-list {
  display: grid;
  gap: 20px;
}

.seo-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(62px, 9vw, 100px) 0;
  border-bottom: 1px solid var(--line);
}

.faq-heading h2 {
  margin-top: 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

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

.faq-grid article {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.faq-grid h3 {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.18;
}

.faq-grid p {
  color: var(--muted);
  line-height: 1.58;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  padding: clamp(64px, 9vw, 105px) 0;
}

.contact-hint {
  margin-top: 16px;
  padding: 16px 18px;
  border-left: 4px solid var(--blue);
  border-radius: 6px;
  background: var(--soft);
}

address {
  display: grid;
  gap: 10px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  font-style: normal;
}

address strong {
  font-size: 22px;
}

address span {
  color: var(--muted);
}

address a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 5px;
  padding: 0 14px;
  border-radius: 6px;
  background: var(--navy);
  color: white;
  font-weight: 850;
}

address a.whatsapp-contact {
  background: #128c4a;
}

address a.google-contact {
  background: #1a73e8;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(4, 35, 55, 0.88);
}

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

.lightbox img {
  max-width: min(1120px, 94vw);
  max-height: 86vh;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-weight: 850;
  cursor: pointer;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 52px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

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

.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 10px 14px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .header-call {
    grid-column: 2;
    grid-row: 1;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    overflow-x: auto;
    padding: 4px 0 2px;
    scrollbar-width: thin;
  }

  .nav a {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 8px 11px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--soft);
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 700px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(4, 35, 55, 0.76), rgba(4, 35, 55, 0.74)),
      linear-gradient(0deg, rgba(4, 35, 55, 0.38), rgba(4, 35, 55, 0));
  }

  .hero-content {
    align-self: end;
    margin: 0 auto;
  }

  .trust-strip,
  .service-grid,
  .service-summary,
  .section,
  .who-help,
  .prevention,
  .assessment,
  .authenticity,
  .metal-art,
  .reviews-heading,
  .seo-faq,
  .band,
  .contact {
    grid-template-columns: 1fr;
  }

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

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

  .trust-strip div {
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: center;
  }

  .trust-strip div + div {
    border-top: 1px solid rgba(158, 210, 238, 0.24);
    border-left: 0;
  }

  .trust-number {
    align-self: center;
  }

  .prevention > *,
  .section > *,
  .assessment > *,
  .contact > *,
  .service-summary > *,
  .service-grid > * {
    min-width: 0;
  }

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

  .assessment-result {
    grid-column: auto;
  }

  .prevention-visual {
    align-self: auto;
  }

  .prevention-visual figure,
  .prevention-visual img {
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
  }

  .prevention-visual img {
    width: 100%;
    object-fit: contain;
  }

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

  .metal-art-copy {
    position: static;
  }

  .reviews-heading {
    align-items: start;
    flex-direction: column;
  }

  .authenticity-photos {
    display: block;
  }

  .authenticity-photos figure {
    min-height: 320px;
  }

  .gallery-track figure {
    flex-basis: clamp(240px, 58vw, 340px);
  }

  .section {
    padding: 70px 0;
  }
}

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

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand small {
    display: none;
  }

  .header-call {
    min-height: 38px;
    padding: 0 11px;
    font-size: 13px;
  }

  .hero {
    min-height: 680px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .lead {
    font-size: 17px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .prevention-panel a {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
  }

  .trust-strip {
    margin-top: -34px;
  }

  .trust-strip div,
  .service-card,
  .band,
  address {
    padding: 22px;
  }

  .service-card {
    padding: 0 0 22px;
  }

  .service-card > :not(.service-image) {
    margin-right: 22px;
    margin-left: 22px;
  }

  .gallery-track figure,
  .metal-art-track figure {
    min-height: 0;
  }

  .metal-art-marquee::before,
  .metal-art-marquee::after,
  .gallery-marquee::before,
  .gallery-marquee::after,
  .review-marquee::before,
  .review-marquee::after {
    width: 24px;
  }

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

  .footer-brand {
    align-items: flex-start;
  }
}

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

  .review-marquee {
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .gallery-marquee {
    overflow-x: auto;
  }

  .metal-art-marquee {
    overflow-x: auto;
  }

  .metal-art-track,
  .gallery-track,
  .review-track {
    animation: none;
  }
}
